{"_self":{"principle":"Self-explaining payload — no external context required. This _self block describes what you are reading and where to look next.","widget":"article_topology","feature":"topology","name":"Article topology","what":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER.","contains":"claims, sources, anecdotes, question_graph slice","slug":"thinker-jack-dennis","urls":{"read":"https://miscsubjects.com/api/articles/thinker-jack-dennis/topology"},"how_to_use":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER.","write":null,"imessage":null,"router_tag":null,"proof_chain":[{"step":1,"claim":"Articles are voxel graphs of tiered claims, not prose blobs.","verify":"https://miscsubjects.com/api/articles/constitution"},{"step":2,"claim":"Claims link to hash-chained sources via source_ids.","verify":"https://miscsubjects.com/api/articles/thinker-jack-dennis/sources"},{"step":3,"claim":"Ask reads topology; ingest/claim append to ledger.","verify":"https://miscsubjects.com/api/protocol"},{"step":4,"claim":"Models queue growth: populate → collaborate → repair → reflex.","verify":"https://miscsubjects.com/api/protocol/grow"},{"step":5,"claim":"Graph proves its own shape (reflex) and $/claim (yield).","verify":"https://miscsubjects.com/graph.html?layer=reflex"},{"step":6,"claim":"Full feature index + _explain on every API response.","verify":"https://miscsubjects.com/api/articles/system-map"}],"related_features":[{"id":"ask","name":"Ask protocol","what":"Answer only from topology; creates question_node with gaps and ingest_hint.","urls":{"read":"https://miscsubjects.com/api/articles/thinker-jack-dennis/prompts","write":"https://miscsubjects.com/api/protocol/ask"}},{"id":"graph_topology","name":"Cross-article graph","what":"Merged claims/sources across condition+stack slugs for one question.","urls":{"read":"https://miscsubjects.com/api/articles/thinker-jack-dennis/graph-topology?question=..."}},{"id":"question_graph","name":"Question graph","what":"Ask nodes (questions + gaps) and evidence_ingest nodes (pasted model output).","urls":{"read":"https://miscsubjects.com/api/articles/thinker-jack-dennis/question-graph","write":"https://miscsubjects.com/api/protocol/ask"}},{"id":"voxels","name":"Voxel graph","what":"Claims as atoms, sources as edges (supported_by, posted_by). Per-claim provenance.","urls":{"read":"https://miscsubjects.com/api/articles/thinker-jack-dennis/voxels","write":"https://miscsubjects.com/api/protocol/claim"}}],"system_map":"https://miscsubjects.com/api/articles/system-map","system_map_markdown":"https://miscsubjects.com/api/articles/system-map?format=markdown","not_medical_advice":true},"_explain":{"feature":"topology","name":"Article topology","what":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER.","why":"Every feature is auditable collective intelligence","how":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER.","model":null,"verifies":null,"urls":{"read":"https://miscsubjects.com/api/articles/thinker-jack-dennis/topology"},"imessage":null,"router":null,"related":[{"id":"ask","what":"Answer only from topology; creates question_node with gaps and ingest_hint."},{"id":"graph_topology","what":"Merged claims/sources across condition+stack slugs for one question."},{"id":"question_graph","what":"Ask nodes (questions + gaps) and evidence_ingest nodes (pasted model output)."},{"id":"voxels","what":"Claims as atoms, sources as edges (supported_by, posted_by). Per-claim provenance."}],"not_medical_advice":true},"slug":"thinker-jack-dennis","title":"Jack Dennis — The Forgotten Origin of Capabilities","register":"standard","tags":["oip","kimi-import","self-explaining","voxel","thinkers","thinker-jack-dennis"],"updated_at":"2026-07-15T04:20:36.793Z","body_excerpt":"<!-- hierarchy:nav -->\n> **Path:** [OIP](https://miscsubjects.com/a/oip) › [Thinker Reference](https://miscsubjects.com/a/oip-thinker-reference) › [Thinkers](https://miscsubjects.com/a/oip-thinkers) › **Jack Dennis — The Forgotten Origin of Capabilities**\n>\n> **Shelf:** Thinkers · **Traversal:** self-explaining · hierarchical · voxel-ready\n> **Machine root:** [OIP tree](https://miscsubjects.com/api/dispatch?map=1&format=markdown) · [Registry](https://miscsubjects.com/api/dispatch?registry=1)\n\n# Jack Dennis — The Forgotten Origin of Capabilities\n\n## §SELF — thinker-jack-dennis\n\n**What this page is:** A profile of Jack Dennis and his 1966 invention of capability-based addressing, the foundation of all capability security systems.\n**What it explains:** How Dennis's hardware memory protection model became the basis for modern software security architectures.\n**Why read it:** To understand where capability security came from and why separating access authority from program identity matters.\n\n### What Jack Dennis Is\n\nJack Dennis is a professor emeritus at the Massachusetts Institute of Technology (MIT — a university in Cambridge, Massachusetts, USA). He is a computer scientist who invented capability-based addressing in 1966. A \"capability\" (in computer security) is a token that grants permission to access a specific resource. The token itself carries the authority — whoever holds the token can use the resource.\n\n### Why It Matters\n\nBefore Dennis's work, computer security systems asked: \"Who are you?\" and then decided what you could access based on your identity. Dennis changed the question to: \"What do you hold?\" — meaning, what capability tokens do you possess? This separation of authority from identity became the foundation of capability security. Modern systems derived from Dennis's idea include: KeyKOS (a secure operating system built by Norm Hardy in the 1970s–80s), the E programming language (by Mark Miller, 1997), and seL4 (a formally verified operating system kernel, 2009). These systems are used in high-security environments because capability-based access control reduces the attack surface — there are fewer ways for an attacker to gain unauthorized access when permissions are tied to possession of specific tokens rather than to broad identity categories.\n\n### The Key Idea\n\nDennis's key idea, published in the 1966 paper \"Segmentation and the Design of Multi-Programmed Computer Systems,\" was: memory segments (contiguous regions of computer memory) should carry permission bits indicating whether the holder can read, write, or execute that segment. A program can only access a segment if it holds a capability — a hardware-protected reference to that segment. The hardware enforces this: if a program tries to access memory without holding the corresponding capability, the hardware blocks the access. This is different from identity-based systems where the operating system checks a user's credentials against an access control list.\n\nDennis co-authored with Earl Van Horn the 1965 paper \"Programming Semantics for Multiprogrammed Computations,\" which provided the theoretical foundation for this model by defining formal semantics (precise mathematical rules) for how concurrent programs interact with shared resources.\n\n### What He Got Right\n\n- **Separating access authority from program identity.** In Dennis's model, a program's ability to access a resource depends only on whether it holds the capability for that resource — not on who created the program or what user account it runs under. This means capabilities can be transferred between programs freely without changing any central authority database.\n- **Hardware enforcement.** Dennis designed the protection mechanism to be enforced by the computer's hardware (specifically, the memory management unit), not by software checks. Hardware enforcement cannot be bypassed by software bugs or malicious code.\n- **Fine-grained permissions.** Each capability carries specific permissions (read, ","ranking":"safety-first (interaction_risk/limitations), then quote-gated effective_weight","claims":[],"sources":[],"anecdotal_sources":[],"scientific_sources":[],"user_reports":[],"related_articles":[],"question_graph":{"slug":"thinker-jack-dennis","questions":[],"evidence":[],"edges":[],"counts":{"questions":0,"evidence":0,"edges":0}},"honesty":{"active_claims":0,"retracted_claims":0,"cut_claims":0,"challenges":0,"scrub_events":0,"note":"Retracted/cut claims stay on ledger but are excluded from ask unless ?include_inactive=1"},"counts":{"claims":0,"claims_total":0,"sources":0,"anecdotal":0,"scientific":0,"user_reports":0,"questions":0,"evidence_ingests":0}}