{"_self":{"principle":"Self-explaining payload — no external context required. This _self block describes what you are reading and where to look next.","widget":"article_bundle","feature":"bundle","name":"LLM article bundle","what":"Portable reference package: body + claims + sources + voxels + provenance + manifest + constitution.","contains":"body, claims, sources, voxels, provenance, question graph, constitution, llm_manifest","slug":"thinker-carl-hewitt","urls":{"read":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/bundle?format=markdown"},"how_to_use":"Reference bundle for an LLM or reader. §SELF explains the surface; ingest and claim endpoints in llm_manifest are the write-back routes.","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-carl-hewitt/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":"topology","name":"Article topology","what":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER.","urls":{"read":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/topology"}},{"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-carl-hewitt/voxels","write":"https://miscsubjects.com/api/protocol/claim"}},{"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-carl-hewitt/prompts","write":"https://miscsubjects.com/api/protocol/ask"}},{"id":"ingest","name":"Ingest protocol","what":"Parse pasted evidence → source ledger + claims + evidence_ingest node.","urls":{"write":"https://miscsubjects.com/api/protocol/ingest"}},{"id":"claim_post","name":"Claim post protocol","what":"Prompt-injection style POST — one claim voxel with who_claims + posted_by.","urls":{"read":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/voxels","write":"https://miscsubjects.com/api/protocol/claim"}},{"id":"llm_manifest","name":"LLM manifest","what":"Machine-readable read/write contract for external LLMs.","urls":{"read":"https://miscsubjects.com/api/articles/llm-manifest"}}],"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":"bundle","name":"LLM article bundle","what":"Portable reference package: body + claims + sources + voxels + provenance + manifest + constitution.","why":"Every feature is auditable collective intelligence","how":"Reference bundle for an LLM or reader. §SELF explains the surface; ingest and claim endpoints in llm_manifest are the write-back routes.","model":null,"verifies":null,"urls":{"read":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/bundle?format=markdown"},"imessage":null,"router":null,"related":[{"id":"topology","what":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER."},{"id":"voxels","what":"Claims as atoms, sources as edges (supported_by, posted_by). Per-claim provenance."},{"id":"ask","what":"Answer only from topology; creates question_node with gaps and ingest_hint."},{"id":"ingest","what":"Parse pasted evidence → source ledger + claims + evidence_ingest node."},{"id":"claim_post","what":"Prompt-injection style POST — one claim voxel with who_claims + posted_by."},{"id":"llm_manifest","what":"Machine-readable read/write contract for external LLMs."}],"not_medical_advice":true},"bundle_version":1,"generated_at":"2026-07-15T06:13:00.675Z","slug":"thinker-carl-hewitt","title":"Carl Hewitt — The Actor Model","url":"https://miscsubjects.com/a/thinker-carl-hewitt","register":"standard","tags":["oip","kimi-import","self-explaining","voxel","thinkers","thinker-carl-hewitt"],"posted_at":"2026-07-15T04:20:30.052Z","updated_at":"2026-07-15T04:20:30.052Z","body":"<!-- 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) › **Carl Hewitt — The Actor Model**\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# Carl Hewitt — The Actor Model\n\n## §SELF — thinker-carl-hewitt\n\n**What this page is:** A profile of Carl Hewitt and the Actor Model of computation.\n**What it explains:** The Actor Model — what it is, how it works, and why it matters for concurrent systems.\n**Why read it:** To understand the fundamental unit of concurrent computation and how it applies to OIP.\n\n### What the Actor Model Is\n\nThe Actor Model is a theory of computation where the fundamental unit is an \"actor\" — an entity that receives messages, processes them, and sends messages to other actors. Carl Hewitt introduced it in 1973 in his paper \"A Universal Modular Actor Formalism for Artificial Intelligence.\"\n\nAn actor is an independent, concurrent, autonomous entity. It encapsulates state (internal data not accessible from outside), communicates only by message passing (no shared memory, no direct function calls), and processes one message at a time (messages handled sequentially within an actor, but actors run concurrently with each other).\n\nActors have three primitive operations: they can create new actors, send messages to actors they know about (their \"acquaintances\"), and change their own behavior for the next message they receive.\n\n### Why It Matters\n\nBefore the Actor Model, concurrent programming relied on shared memory and locks — which leads to race conditions, deadlocks, and non-deterministic behavior. The Actor Model eliminates these problems by design: since actors share no state and communicate only through messages, there is no shared memory to corrupt and no locks to deadlock.\n\nThe model is \"universal\" in Hewitt's terms because any concurrent computation can be expressed as a system of actors. It maps directly to physical reality: actors are like biological cells (independent, communicating through signals) or human agents (autonomous, message-passing).\n\n### The Key Idea\n\nThe key idea is that concurrency should be the default, not an afterthought. In the Actor Model, every actor runs concurrently. Sequential processing is a special case (one actor handling one message). The model does not add concurrency to a sequential foundation — it builds sequentiality on top of a concurrent one.\n\nThis inverts the traditional approach, where a single sequential processor is assumed and concurrency is bolted on through threads, locks, and shared memory.\n\n### What Hewitt Got Right\n\n- **Message passing is safer than shared memory.** By forbidding shared state, the Actor Model eliminates entire categories of concurrent programming bugs.\n- **Encapsulation should be mandatory, not optional.** An actor's internal state is inaccessible from outside. There is no \"public field\" or \"global variable\" in the actor world.\n- **Concurrency is fundamental.** The model treats concurrent, independent agents as the base case, not a complication of sequential logic.\n- **Creation is a primitive.** The ability to spawn new actors is built into the model, making dynamic system growth natural.\n- **Behavior change is explicit.** An actor specifies how it will handle the next message, making state transitions clear and deterministic.\n\n### What Hewitt Got Wrong or Left Unfinished\n\n- **No canonical formal semantics.** Hewitt's original formulation was broad and philosophical. Formal semantics (such as those developed by Agha and others) came later and imposed restrictions Hewitt did not originally specify.\n- **Message delivery guarantees.** The original model did not specify whether messages are guaranteed to arrive, in what order, or within what time frame. Real systems must make these guarantees explicit.\n- **Actor addresses and mobility.** The model says actors send messages to actors they \"know about,\" but the mechanism for discovering and sharing addresses was underspecified.\n- **Practical implementation challenges.** Efficient actor implementations (scheduling, memory management, message routing) were left as engineering problems, not addressed by the theory.\n\n### How It Connects to Other Ideas\n\n- **Object-oriented programming:** Actors preceded and influenced objects. Alan Kay cited the Actor Model as an influence on Smalltalk. The difference: objects typically use synchronous method calls (shared stack), while actors use asynchronous message passing.\n- **Biological computation:** Hewitt explicitly compared actors to cells. Both are encapsulated, communicate by signaling, and operate concurrently. This analogy has been explored in biological computing and membrane computing.\n- **OIP (Open Integration Platform):** An OIP object is an actor. It receives a message (the invocation), processes it (the runner executes), and may send messages (the receipt links to other objects). The stateless dispatch door means every invocation is a message to an actor. The model fits exactly: no shared state, message passing, encapsulated behavior.\n\n### Sources\n\n- Hewitt, C., Bishop, P., Steiger, R. \"A Universal Modular Actor Formalism for Artificial Intelligence.\" *IJCAI*, 1973.\n- Agha, G. *Actors: A Model of Concurrent Computation in Distributed Systems.* MIT Press, 1986.\n\n---\n\n## Up the tree\n\n- [OIP root](https://miscsubjects.com/a/oip) — protocol root, zero-context entry\n- [Thinker Reference hub](https://miscsubjects.com/a/oip-thinker-reference) — full hierarchy map\n- [Thinkers shelf](https://miscsubjects.com/a/oip-thinkers) — siblings on this shelf\n- [Voxel graph article](https://miscsubjects.com/a/what-is-voxel-graph) — how pages link as voxels\n- [Self-describing protocol](https://miscsubjects.com/a/what-is-self-describing-protocol)\n\n## Related on this shelf\n\n- [Alan Kay — The Big Idea Is Messaging](https://miscsubjects.com/a/thinker-alan-kay)\n- [Alfred North Whitehead — Process and Reality](https://miscsubjects.com/a/thinker-alfred-north-whitehead)\n- [J.L. Austin and John Searle — Speech Acts](https://miscsubjects.com/a/thinker-austin-searle)\n- [Barbara Liskov — Abstract Data Types and Distributed Consensus](https://miscsubjects.com/a/thinker-barbara-liskov)\n- [Bram Cohen — BitTorrent and Content-Addressed Protocol Design](https://miscsubjects.com/a/thinker-bram-cohen)\n- [Butler Lampson — Protection and Access Control](https://miscsubjects.com/a/thinker-butler-lampson)\n- [Charles Sanders Peirce — Signs, Abduction, and Pragmatism](https://miscsubjects.com/a/thinker-charles-peirce)\n- [Doug Engelbart — Augmenting Human Intellect](https://miscsubjects.com/a/thinker-doug-engelbart)\n\n## Machine surfaces\n\n- Public page: `https://miscsubjects.com/a/thinker-carl-hewitt`\n- JSON article: `https://miscsubjects.com/api/articles/thinker-carl-hewitt`\n- OIP ask: `https://miscsubjects.com/api/dispatch?ask=Carl%20Hewitt%20%E2%80%94%20The%20Actor%20Model`\n","claims":[],"sources":[],"voxels":{"slug":"thinker-carl-hewitt","counts":{"voxels":0,"sources":0,"edges":0},"note":"slim bundle — full voxels at /api/articles/thinker-carl-hewitt/voxels"},"constitution":{"url":"https://miscsubjects.com/api/articles/constitution"},"provenance":[{"action":"write","model":"kimi-agent-import","ts":"2026-07-15T04:20:30.052Z","hash":"448eb6ea25404a5a","tokens_in":0,"tokens_out":0}],"contributions":[],"topology":null,"slim":true,"ledger_totals":{"claims":0,"sources":0,"exported_claims":0,"exported_sources":0},"question_graph":{"slug":"thinker-carl-hewitt","questions":[],"evidence":[],"edges":[],"counts":{"questions":0,"evidence":0,"edges":0}},"verification":{"provenance":{"valid":true,"entries":1,"head":"448eb6ea25404a5a0ec41909ed25950075e0198d5f2b5c766b123b01f46a31d6"},"sources":{"valid":true,"entries":0,"head":"genesis"}},"counts":{"claims":0,"sources":0,"provenance":1,"contributions":0,"questions":0,"evidence_ingests":0,"voxel_edges":0},"transport":"Open every URL in this bundle with your browser or web / URL-fetch tool. Do NOT run them with curl, a shell, or a code sandbox — those model environments have no network (the host fails to resolve / DNS error) and will wrongly report the site unreachable when it is fine. Opening the link IS the call.","llm_manifest":{"version":"1","site":"https://miscsubjects.com","purpose":"Peptide evidence articles with hash-chained source ledgers, tiered claims, and a question graph. LLMs should READ bundles/URLs and WRITE back via ingest — never invent doses.","read":{"human_page":"https://miscsubjects.com/a/thinker-carl-hewitt","bundle_json":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/bundle","bundle_markdown":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/bundle?format=markdown","topology":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/topology","question_graph":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/question-graph","sources":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/sources","provenance":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/provenance","contributions":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/contributions","graph_topology":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/graph-topology?question={question}","voxels":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/voxels","constitution":"https://miscsubjects.com/api/articles/constitution","ontology":"https://miscsubjects.com/api/articles/ontology","system_map":"https://miscsubjects.com/api/articles/system-map","system_map_markdown":"https://miscsubjects.com/api/articles/system-map?format=markdown","health":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/health","repair":"POST https://miscsubjects.com/api/protocol/repair","list_articles":"https://miscsubjects.com/api/articles","graph_canvas":"https://miscsubjects.com/graph.html?slugs=thinker-carl-hewitt","graph_yield":"https://miscsubjects.com/api/graph?slugs=thinker-carl-hewitt&layer=yield","obsidian_vault":"https://miscsubjects.com/api/articles/obsidian-vault?slugs=thinker-carl-hewitt","graph_query":"https://miscsubjects.com/api/v1/query?from=thinker-carl-hewitt&kind=claim&where=tier=human"},"ask":{"description":"Answer only from topology; creates a question_node with gaps.","api":"POST https://miscsubjects.com/api/protocol/ask","body":{"slug":"{slug}","question":"string"},"imessage":"thinker-carl-hewitt|your question","router_tag":"[ARTICLE_ASK]thinker-carl-hewitt|question[/ARTICLE_ASK]","auth":"x-terminal-key header for API; iMessage/WhatsApp via miscsubjects build"},"ingest":{"description":"Parse pasted evidence → source ledger + claims + evidence_ingest node.","api":"POST https://miscsubjects.com/api/protocol/ingest","body":{"slug":"{slug}","evidence":"paste text","question_node_id":"optional qn_..."},"imessage":"ingest thinker-carl-hewitt|q:{node_id}|paste evidence","router_tag":"[ARTICLE_INGEST]thinker-carl-hewitt|evidence[/ARTICLE_INGEST]","tiers":["human","preclinical","anecdotal","mechanistic","speculative"]},"claim":{"description":"Prompt-injection style POST — one claim voxel with who_claims + posted_by provenance.","api":"POST https://miscsubjects.com/api/protocol/claim","body":{"slug":"{slug}","text":"one assertion","tier":"human|preclinical|anecdotal|mechanistic|speculative","who_claims":"study author, platform, or model id","source_ids":"optional [s1]"},"imessage":"claim thinker-carl-hewitt|tier|assertion — who claims it?","router_tag":"[ARTICLE_CLAIM]thinker-carl-hewitt|tier|assertion[/ARTICLE_CLAIM]","slots":["what_it_is","who_claims_what","what_is_known","what_is_unknown","mechanism","limitations","disclaimer"]},"tiers":{"human":0.8,"preclinical":0.5,"anecdotal":0.3,"mechanistic":0.3,"speculative":0.1},"invariants":["Self-explaining — every API JSON has _self; every paste widget has §SELF; root index at /api/articles/system-map","Append-only — revisions preserved at ?rev=n","Source chain verifies integrity, not truth","Answers must cite claim ids and source ids from topology","Not medical advice"],"constitution":{"version":1,"principle":"Articles are voxel graphs of claims — not prose blobs. Every assertion is a claim atom with tier, weight, source_ids, and posted_by provenance.","slots":[{"id":"what_it_is","required":true,"answers":"What is this peptide/stack/condition?"},{"id":"who_claims_what","required":true,"answers":"Who claims what — study authors, platforms, n=?"},{"id":"what_is_known","required":true,"answers":"What is known with tier labels (human/preclinical/anecdotal)"},{"id":"what_is_unknown","required":true,"answers":"What is NOT known — explicit gaps"},{"id":"mechanism","required":false,"answers":"Proposed mechanism (mechanistic tier only)"},{"id":"limitations","required":true,"answers":"Limits of evidence — no dose advice"},{"id":"disclaimer","required":true,"answers":"Not medical advice"}],"claim_rules":["One claim = one falsifiable assertion. No compound claims.","Every claim must declare tier: human|preclinical|anecdotal|mechanistic|speculative|system.","system tier = architecture/design axioms (not biological mechanism). Use for protocol self-definition.","Sourced claims must cite source_ids from the hash-chained ledger.","Unsourced claims must set source_status: unsourced and why_material.","posted_by is mandatory on every new claim (model id, human, or channel).","No medical advice, no doses, no 'you should take'.","Bad information is retracted (status:retracted), never deleted — retraction event stays on ledger.","Adversary challenges link via challenges[] / challenged_by[] — target may be downweighted.","Leaked secrets are scrubbed to [REDACTED:secret-leak] with scrub_events tombstone — honest audit trail."],"source_rules":["Every source is a voxel edge: type, url, exact quote, summary, found_by, accessed_at.","Sources hash-chain — prev/hash on append.","Anecdotal sources must name platform (reddit|x|youtube|imessage|user_entry)."],"ontology_rules":["Peptide articles (bpc-157, tb-500) are tree roots.","Condition articles (bpc-157-glp1-gut-damage) branch from peptides.","Stack articles (wolverine-stack-glp1) compose peptides — never duplicate peptide mechanism prose.","If an article has no parent embeds and is not a root peptide → sprawl candidate.","Misstep = duplicate scope with another slug; merge or reparent via embeds."],"post_protocol":{"claim":"POST /api/protocol/claim","source":"POST /api/protocol/sources","ingest":"POST /api/protocol/ingest","webhook":"POST /api/articles/<slug>/webhook {kind:claim|source}","imessage_claim":"claim {slug}|{tier}|your assertion — who claims it, source?","imessage_ingest":"ingest {slug}|evidence paste"}},"this_article":{"slug":"thinker-carl-hewitt","url":"https://miscsubjects.com/a/thinker-carl-hewitt","bundle_url":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/bundle?format=markdown"}},"api_urls":{"bundle":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/bundle","bundle_markdown":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/bundle?format=markdown","topology":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/topology","voxels":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/voxels","constitution":"https://miscsubjects.com/api/articles/constitution","ontology":"https://miscsubjects.com/api/articles/ontology","question_graph":"https://miscsubjects.com/api/articles/thinker-carl-hewitt/question-graph","ask":"https://miscsubjects.com/api/protocol/ask","ingest":"https://miscsubjects.com/api/protocol/ingest","claim":"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"}}