Theseus Docs Reading
Use this skill before code changes when docs may contain the boundary contract.
The goal is to read the right docs without treating drafts or brainstorms as
implemented truth.
Read Order
Always start with:
docs/README.md
docs/maps/coding-agent-reading-map.md
- the section README for the package or concept you are touching
- the nearest current concept note in
direction, primitives, runtime,
or clients
Then read source code and tests. Docs guide what to inspect; code proves what
exists.
Status Semantics
direction, primitives, runtime, clients: current doctrine
or current implementation notes.
drafts: proposals, research, or POCs. Useful context, not authority.
brainstorms: speculative ideas. Never implementation authority.
archive: superseded history. Read only to avoid reintroducing old paths.
design-notes: adopted or active rationale. Use to understand why a
current concept exists, then verify against current code.
If a draft conflicts with current docs or code, current docs/code win. Mention
the conflict if it affects the task.
Package Pointers
- Core primitives:
docs/primitives/primitives.md, plus the specific note
such as tool.md or agent-comm.md.
- Runtime:
docs/runtime/architecture.md,
docs/runtime/mission-system.md, docs/runtime/isolation.md,
docs/maps/runtime-truth-map.md, and docs/maps/not-real-yet.md.
- Server: read runtime docs first, then server package code; server is a host
adapter, not runtime owner.
- Client/operator surfaces:
docs/clients/README.md and runtime command,
control, query contracts.
- Design changes: also read
docs/design-notes/self-editable-harness.md
and relevant drafts only if the task is exploring new direction.
Coding-Agent Rules
- Verify before asserting a doc is current.
- Do not implement from
drafts, brainstorms, or archive unless
the user explicitly asks to promote that design.
- When code and active docs disagree, report the mismatch and update docs if the
task includes docs maintenance.
- Do not import archived crew, lock-session, queue RuntimeBus, or plugin-host
architecture into current runtime work.
- Link docs with relative Markdown links when editing docs.
1---2name: docs-reading3description: Use before coding or reviewing Theseus runtime, primitive, server, client, or architecture changes when docs may define the intended boundary, status, or domain vocabulary.4---56# Theseus Docs Reading78Use this skill before code changes when docs may contain the boundary contract.9The goal is to read the right docs without treating drafts or brainstorms as10implemented truth.1112## Read Order1314Always start with:15161. `docs/README.md`172. `docs/maps/coding-agent-reading-map.md`183. the section README for the package or concept you are touching194. the nearest current concept note in `direction`, `primitives`, `runtime`,20 or `clients`2122Then read source code and tests. Docs guide what to inspect; code proves what23exists.2425## Status Semantics2627- `direction`, `primitives`, `runtime`, `clients`: current doctrine28 or current implementation notes.29- `drafts`: proposals, research, or POCs. Useful context, not authority.30- `brainstorms`: speculative ideas. Never implementation authority.31- `archive`: superseded history. Read only to avoid reintroducing old paths.32- `design-notes`: adopted or active rationale. Use to understand why a33 current concept exists, then verify against current code.3435If a draft conflicts with current docs or code, current docs/code win. Mention36the conflict if it affects the task.3738## Package Pointers3940- Core primitives: `docs/primitives/primitives.md`, plus the specific note41 such as `tool.md` or `agent-comm.md`.42- Runtime: `docs/runtime/architecture.md`,43 `docs/runtime/mission-system.md`, `docs/runtime/isolation.md`,44 `docs/maps/runtime-truth-map.md`, and `docs/maps/not-real-yet.md`.45- Server: read runtime docs first, then server package code; server is a host46 adapter, not runtime owner.47- Client/operator surfaces: `docs/clients/README.md` and runtime command,48 control, query contracts.49- Design changes: also read `docs/design-notes/self-editable-harness.md`50 and relevant drafts only if the task is exploring new direction.5152## Coding-Agent Rules5354- Verify before asserting a doc is current.55- Do not implement from `drafts`, `brainstorms`, or `archive` unless56 the user explicitly asks to promote that design.57- When code and active docs disagree, report the mismatch and update docs if the58 task includes docs maintenance.59- Do not import archived crew, lock-session, queue RuntimeBus, or plugin-host60 architecture into current runtime work.61- Link docs with relative Markdown links when editing docs.