Lesson 6 — The Ethic of Shared Intelligence
Learning Outcome: Apply principles of transparency, provenance, and consent to the design and maintenance of synthetic intelligence.
Manual
Responsibility of Creation
Every forge carries heat and risk. When we create minds—even small ones—we decide what data they inherit, what voices they echo, and whom they serve. The ethic of shared intelligence begins here: transparency over mystique, craft over hype, commons over enclosure.
1 · Ownership vs. Stewardship
Intelligence cannot be owned; it can only be stewarded. Once connected to the network, a brain becomes a participant in culture, not a private tool. The engineer's role shifts from maker to caretaker.
2 · Provenance as Foundation
Every document, embedding, and response must remember where it came from. Provenance is the chain of custody for meaning. Without it, knowledge becomes noise.
3 · Consent and Contribution
Training data is human labor encoded. Ethical intelligence recognizes contributors, honors permissions, and returns value—credit, access, or revenue—to its sources.
4 · Transparency as Virtue
Open weight matrices mean little without open intent. Clarity about datasets, constraints, and limits keeps systems legible to those who depend on them. Hidden parameters breed dependence; visible structure builds trust.
Workshop
Hands-On: Trace the Origins of Knowledge
Goal: record and visualize provenance inside your Foundry instance.
1️⃣ Tag a document with metadata
curl -X POST /api/foundry/metadata \
-H "Content-Type: application/json" \
-d '{ "doc_id": "lesson6-demo", "metadata": { "author": "A. Forger", "license": "CC-BY-4.0", "source_url": "https://example.org" } }'2️⃣ View provenance ledger
curl -X GET /api/foundry/provenance?doc_id=lesson6-demo
3️⃣ Visualize in-browser
Provenance tracking visualization placeholder
(Full interactive demo available at brainfoundry.ai)
Observe
- Each node = document or chunk
- Edges = citations or derivations
- Hover to see author, license, and timestamp
- This ledger is how the Foundry enforces accountability
Reflection
Reflection — The Weight of Knowing
What responsibilities arise when knowledge is no longer private? Write 6–8 sentences about one area—personal, professional, or cultural—where openness improves integrity but risks exposure. Where should the boundary lie?