## §SELF — miscsubjects portable reference

**Principle:** Self-explaining payload — no external context required. This _self block describes what you are reading and where to look next.

**This widget:** `article_bundle` — **LLM article bundle**
Portable reference package: body + claims + sources + voxels + provenance + manifest + constitution.
- **article slug:** `thinker-jack-dennis`
- **contains:** body, claims, sources, voxels, provenance, question graph, constitution, llm_manifest
- **how to use:** Reference block for Grok/GPT/Gemini. Section §SELF explains the system.
- **read:** https://miscsubjects.com/api/articles/thinker-jack-dennis/bundle?format=markdown

### Logical proof (verify each step)
1. Articles are voxel graphs of tiered claims, not prose blobs. → https://miscsubjects.com/api/articles/constitution
2. Claims link to hash-chained sources via source_ids. → https://miscsubjects.com/api/articles/thinker-jack-dennis/sources
3. Ask reads topology; ingest/claim append to ledger. → https://miscsubjects.com/api/protocol
4. Models queue growth: populate → collaborate → repair → reflex. → https://miscsubjects.com/api/protocol/grow
5. Graph proves its own shape (reflex) and $/claim (yield). → https://miscsubjects.com/graph.html?layer=reflex
6. Full feature index + _explain on every API response. → https://miscsubjects.com/api/articles/system-map

### Related features (explains other parts of the system)
- **topology** — Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER. · https://miscsubjects.com/api/articles/thinker-jack-dennis/topology
- **voxels** — Claims as atoms, sources as edges (supported_by, posted_by). Per-claim provenance. · https://miscsubjects.com/api/articles/thinker-jack-dennis/voxels
- **ask** — Answer only from topology; creates question_node with gaps and ingest_hint. · https://miscsubjects.com/api/articles/thinker-jack-dennis/prompts
- **ingest** — Parse pasted evidence → source ledger + claims + evidence_ingest node.
- **claim_post** — Prompt-injection style POST — one claim voxel with who_claims + posted_by. · https://miscsubjects.com/api/articles/thinker-jack-dennis/voxels
- **llm_manifest** — Machine-readable read/write contract for external LLMs. · https://miscsubjects.com/api/articles/llm-manifest

### Full index
- JSON: https://miscsubjects.com/api/articles/system-map
- Markdown: https://miscsubjects.com/api/articles/system-map?format=markdown

*Not medical advice. Tier-honest. Cite claim/source ids.*

---

# miscsubjects article bundle

> Reference bundle for Grok, GPT, Gemini, or a human reader. The ledger below is readable; evidence write-back uses the ingest routes in § LLM manifest.

## Article
- **slug:** `thinker-jack-dennis`
- **title:** Jack Dennis — The Forgotten Origin of Capabilities
- **url:** https://miscsubjects.com/a/thinker-jack-dennis
- **register:** standard
- **updated:** 2026-07-15T04:20:36.793Z
- **tags:** oip, kimi-import, self-explaining, voxel, thinkers, thinker-jack-dennis

## Body

<!-- hierarchy:nav -->
> **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**
>
> **Shelf:** Thinkers · **Traversal:** self-explaining · hierarchical · voxel-ready
> **Machine root:** [OIP tree](https://miscsubjects.com/api/dispatch?map=1&format=markdown) · [Registry](https://miscsubjects.com/api/dispatch?registry=1)

# Jack Dennis — The Forgotten Origin of Capabilities

## §SELF — thinker-jack-dennis

**What this page is:** A profile of Jack Dennis and his 1966 invention of capability-based addressing, the foundation of all capability security systems.
**What it explains:** How Dennis's hardware memory protection model became the basis for modern software security architectures.
**Why read it:** To understand where capability security came from and why separating access authority from program identity matters.

### What Jack Dennis Is

Jack 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.

### Why It Matters

Before 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.

### The Key Idea

Dennis'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.

Dennis 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.

### What He Got Right

- **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.
- **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.
- **Fine-grained permissions.** Each capability carries specific permissions (read, write, execute) for a specific memory segment. This is more precise than broad categories like "administrator" or "user."

### What He Got Wrong or Left Unfinished

- **Hardware capability machines were never mass-produced.** Dennis's design required specialized hardware that was not built commercially. General-purpose computers used simpler memory protection schemes. Without the hardware, capability-based security remained a theoretical concept for decades.
- **Software implementations were necessary but came later.** Because the hardware was not adopted, researchers had to implement capability semantics in software. Norm Hardy's KeyKOS (built at Key Logic in the 1980s) was the first practical pure-capability operating system. Mark Miller's E language (1997) brought capabilities to distributed programming. These implementations proved the model works but required decades of additional engineering.
- **No solution for capability revocation.** Dennis's original model did not specify how to take back a capability once granted. If Program A gives Program B a capability to access a file, how can A later revoke that access? This problem was solved in later systems (KeyKOS used a mechanism called "segment keys" that could be invalidated), but Dennis's original paper did not address it.

### How It Connects to Other Ideas

- **Access control lists (ACLs).** ACLs are the alternative to capabilities. In an ACL system, each resource has a list of who can access it. In a capability system, each subject has a list of what it can access. The two models are mathematically equivalent in expressive power but differ in practical properties: capabilities are easier to delegate (you hand over the token), while ACLs are easier to audit (you check one list to see who has access). Dennis's work established the capability side of this fundamental divide.
- **Object-capability security (ocap).** Modern secure programming languages like E and Caja use "object capabilities" — the same principle as Dennis's memory capabilities, but applied to software objects rather than hardware memory segments. An object can only call methods on another object if it holds a reference (capability) to it. This is a direct conceptual descendant of Dennis's 1966 design.
- **OIP capability tokens.** The Open Integrity Protocol (OIP) uses capability tokens as a web-native expression of Dennis's idea. In OIP, possession of a token grants access to a resource, and the token's permissions are scoped (limited in what they allow). This is the same structure as Dennis's hardware capabilities — a protected reference with embedded permissions — implemented as cryptographic tokens on the web instead of hardware memory references.

### Sources

- Dennis, J. B. (1966). "Segmentation and the Design of Multi-Programmed Computer Systems." *Journal of the ACM*, 12(4), 589–602.
- Dennis, J. B., & Van Horn, E. C. (1966). "Programming Semantics for Multiprogrammed Computations." *Communications of the ACM*, 9(3), 143–155.

---

## Up the tree

- [OIP root](https://miscsubjects.com/a/oip) — protocol root, zero-context entry
- [Thinker Reference hub](https://miscsubjects.com/a/oip-thinker-reference) — full hierarchy map
- [Thinkers shelf](https://miscsubjects.com/a/oip-thinkers) — siblings on this shelf
- [Voxel graph article](https://miscsubjects.com/a/what-is-voxel-graph) — how pages link as voxels
- [Self-describing protocol](https://miscsubjects.com/a/what-is-self-describing-protocol)

## Related on this shelf

- [Alan Kay — The Big Idea Is Messaging](https://miscsubjects.com/a/thinker-alan-kay)
- [Alfred North Whitehead — Process and Reality](https://miscsubjects.com/a/thinker-alfred-north-whitehead)
- [J.L. Austin and John Searle — Speech Acts](https://miscsubjects.com/a/thinker-austin-searle)
- [Barbara Liskov — Abstract Data Types and Distributed Consensus](https://miscsubjects.com/a/thinker-barbara-liskov)
- [Bram Cohen — BitTorrent and Content-Addressed Protocol Design](https://miscsubjects.com/a/thinker-bram-cohen)
- [Butler Lampson — Protection and Access Control](https://miscsubjects.com/a/thinker-butler-lampson)
- [Carl Hewitt — The Actor Model](https://miscsubjects.com/a/thinker-carl-hewitt)
- [Charles Sanders Peirce — Signs, Abduction, and Pragmatism](https://miscsubjects.com/a/thinker-charles-peirce)

## Machine surfaces

- Public page: `https://miscsubjects.com/a/thinker-jack-dennis`
- JSON article: `https://miscsubjects.com/api/articles/thinker-jack-dennis`
- OIP ask: `https://miscsubjects.com/api/dispatch?ask=Jack%20Dennis%20%E2%80%94%20The%20Forgotten%20Origin%20of%20Capabilities`


## Claims (0)


## Voxel graph (0 atoms · 0 edges)
- full graph: https://miscsubjects.com/api/articles/thinker-jack-dennis/voxels

## Article constitution

- full: https://miscsubjects.com/api/articles/constitution

## Source ledger (0)
- chain valid: yes · head: `genesis`

## Provenance (1 model passes)
- chain valid: yes · head: `249e53442ba9d9e6`

- write · kimi-agent-import · 2026-07-15T04:20 · hash `249e53442ba9`

## Question graph
- questions: 0 · evidence ingests: 0

## LLM manifest — how to communicate with this ledger

- system map: https://miscsubjects.com/api/articles/system-map?format=markdown
- topology (ranked): https://miscsubjects.com/api/articles/thinker-jack-dennis/topology
- ingest: POST https://miscsubjects.com/api/protocol/ingest
- claim: POST https://miscsubjects.com/api/protocol/claim

### Quick actions for this article
- **Read live:** https://miscsubjects.com/api/articles/thinker-jack-dennis/topology
- **Ask (API):** POST https://miscsubjects.com/api/protocol/ask `{"slug":"thinker-jack-dennis","question":"..."}`
- **Ingest your findings:** POST https://miscsubjects.com/api/protocol/ingest or text `ingest thinker-jack-dennis|your evidence`
- **Post one claim:** POST https://miscsubjects.com/api/protocol/claim or text `claim thinker-jack-dennis|tier|assertion`
- **iMessage ask:** `thinker-jack-dennis|your question`
- **System map:** https://miscsubjects.com/api/articles/system-map?format=markdown


---

## §SELF — miscsubjects portable reference

**Principle:** Self-explaining payload — no external context required. This _self block describes what you are reading and where to look next.

**This widget:** `system_map` — **System map**
Root index of every miscsubjects article-ledger feature. Start here if you have zero context.
- **article slug:** `thinker-jack-dennis`
- **contains:** body, claims, sources, voxels, provenance, question graph, constitution, llm_manifest
- **how to use:** Root index of every miscsubjects article-ledger feature. Start here if you have zero context.
- **read:** https://miscsubjects.com/api/articles/system-map

### Logical proof (verify each step)
1. Articles are voxel graphs of tiered claims, not prose blobs. → https://miscsubjects.com/api/articles/constitution
2. Claims link to hash-chained sources via source_ids. → https://miscsubjects.com/api/articles/thinker-jack-dennis/sources
3. Ask reads topology; ingest/claim append to ledger. → https://miscsubjects.com/api/protocol
4. Models queue growth: populate → collaborate → repair → reflex. → https://miscsubjects.com/api/protocol/grow
5. Graph proves its own shape (reflex) and $/claim (yield). → https://miscsubjects.com/graph.html?layer=reflex
6. Full feature index + _explain on every API response. → https://miscsubjects.com/api/articles/system-map

### Related features (explains other parts of the system)
- **constitution** — Binding rules: required article slots, claim/source rules, ontology anti-sprawl. · https://miscsubjects.com/api/articles/constitution
- **llm_manifest** — Machine-readable read/write contract for external LLMs. · https://miscsubjects.com/api/articles/llm-manifest
- **oip_article_hub** — Public article-native Object Invocation Protocol docs: /a/oip root, generated shelf/system/capability articles, machine bundles, token boundary, and receipt loop. · https://miscsubjects.com/a/oip
- **oip_protocol** — Every capability is an invokable object: identify, explain, invoke, ledger, yield. · https://miscsubjects.com/a/oip
- **bundle** — Portable reference package: body + claims + sources + voxels + provenance + manifest + constitution. · https://miscsubjects.com/api/articles/thinker-jack-dennis/bundle?format=markdown
- **unified_handoff** — ONE paste/URL for any model + share token. Same self-explaining pattern as article bundle, but whole build. · https://miscsubjects.com/api/handoff?format=markdown

### Full index
- JSON: https://miscsubjects.com/api/articles/system-map
- Markdown: https://miscsubjects.com/api/articles/system-map?format=markdown

*Not medical advice. Tier-honest. Cite claim/source ids.*