The category contract#
The organism works on satellites — the repositories being developed. The
body map (PyAutoMind/repos.yaml) assigns every repo a category, and
the category is a contract: it says what the repo is for and what the
organism expects of it. You don’t need the live instance’s repos; you need
repos that honour the contracts your body map declares.
Category |
What it is for |
What the organism expects of it |
|---|---|---|
|
The five organism repos themselves. |
Framework identity — names survive a fork; excluded from the tenant firewall’s instance-fact tokens. |
|
A source package you release. |
A test suite and CI workflow Heart gates on; a row in the Brain release conductor’s library set; a PyPI package the Hands release; a version floor workspaces pin against. |
|
Runnable, user-facing examples for one library. |
A |
|
Regression / smoke / parity scripts — code-heavy, doc-light. |
Same |
|
Profiling and experiment scripts. |
Not release-gated; polled for repo state only. |
|
Narrative teaching tutorials. |
Version-pinned like a workspace; notebook generation; prose held to a higher bar (judgment-tier writing). |
|
A curated knowledge pack that makes any AI assistant an expert on one domain/stack. |
Self-contained and public; its own currency checks; never a dumping ground for personal material. |
|
Glue for one external project or survey. |
Workspace-like validation where runnable; otherwise polled only. |
|
Analysis/results repos (profiling campaigns, the docs hub). |
Polled for state; no release mechanics. |
|
Personal tooling. |
Outside the organism proper; hosts helpers the workflow sources (e.g. the worktree script). |
Two properties make the contract workable:
Declared, not discovered. Everything the organism knows about a repo is in the body map plus the per-organ config surfaces — never inferred from the repo’s contents at runtime. Adding a repo is: add the
repos.yamlrow, add the config-surface rows its category requires, runrepos_sync.py --write, and the drift checks confirm the mirrors agree.Checked, not trusted.
repos_sync.py --checkverifies the body map against Heart’s polling policy, the Hands’run_workspacetable, the label tooling, and every local checkout’s actual git remote — so the contract can’t silently rot.
An adopter’s minimal viable body: one library + one workspace. Every
other category is opt-in as your project grows into it. The contract has a
working embodiment you can copy — the PyAutoProject template family
(PyAutoProject +
autoproject_workspace +
autoproject_workspace_test),
a complete 1D-Gaussian project satisfying every expectation in the table;
the adoption guide walks through it.