AMOS Organism is the governed learning architecture intended to become the intelligence backbone of AMOS Hosted. Qwen (and later other compatible models) provides general cognition; the organism accumulates reusable procedures that survive independent verification.
This repository begins at the smallest defensible organism boundary:
The model may propose work. It cannot mint receipts, fitness, genes, evidence, or authority.
flowchart LR
M["Mission + exact host state"] --> H["Shared HRR attention"]
H --> S["Specialists carrying strategy genes"]
S --> E["Energy-bounded actions"]
E --> R["Host receipts and artifacts"]
R --> V["Independent verifier"]
V --> C["Consumption-graph settlement"]
C --> F["Vested fitness + gene lineage"]
F --> N["Selection, mutation, recombination"]
N --> M
An AMOS procedure has crossed the organism threshold when it vests on one mission, is reused on a new mission without changing model weights, and earns fitness again. A procedure that was merely produced—but never consumed—cannot buy its own survival.
contracts/ for candidates,
expressions, trace bundles, and consent-gated Platform Mission episodes.gene-expressed receipt. A model cannot
self-report which procedure deserves credit.uncredited and cannot poison a procedure.See First Principles, Model Manifest, and Roadmap.
The Qwen swarm self-learning experiment that produces the organism's traces now
lives in this repository under swarm/: the holographic
swarm kernel, the organism metabolism simulator, the Harbor agents, the frozen
benchmark fixtures and recorded results, the AWS research plane (Terraform,
trainer, adapter verifier, runner), and the program documents under
docs/swarm/. The swarm imports
the kernel's contracts and digest; npm run check exercises both.
Requires Node.js 22.18 or newer. Development and CI are pinned to Node 24;
npm install fails closed on unsupported runtimes because Node 20 cannot execute
the repository's type-stripped TypeScript tests.
npm install
npm run check # kernel typecheck + swarm syntax check + all tests
npm run test:swarm # swarm suites only
Research trace bundles can be settled without trusting model-authored status:
node scripts/importTraceBundle.ts INPUT.json OUTPUT.jsonl
Research-stage kernel. The first metabolism loop now exists, including canonical consent-gated Platform Mission episode intake after host/KMS attestation, but it has not yet demonstrated repeatable quality improvement on frozen holdouts. It does not replace the external AMOS verifier, train adapters, or make production decisions. Those boundaries are deliberate.
Apache-2.0.
260 commits
JavaScript
59.3%
Python
20.4%
TypeScript
10.7%
Shell
6.8%
HCL
2.4%
AMOS Organism is the governed learning architecture intended to become the intelligence backbone of AMOS Hosted. Qwen (and later other compatible models) provides general cognition; the organism accumulates reusable procedures that survive independent verification.
This repository begins at the smallest defensible organism boundary:
The model may propose work. It cannot mint receipts, fitness, genes, evidence, or authority.
flowchart LR
M["Mission + exact host state"] --> H["Shared HRR attention"]
H --> S["Specialists carrying strategy genes"]
S --> E["Energy-bounded actions"]
E --> R["Host receipts and artifacts"]
R --> V["Independent verifier"]
V --> C["Consumption-graph settlement"]
C --> F["Vested fitness + gene lineage"]
F --> N["Selection, mutation, recombination"]
N --> M
An AMOS procedure has crossed the organism threshold when it vests on one mission, is reused on a new mission without changing model weights, and earns fitness again. A procedure that was merely produced—but never consumed—cannot buy its own survival.
contracts/ for candidates,
expressions, trace bundles, and consent-gated Platform Mission episodes.gene-expressed receipt. A model cannot
self-report which procedure deserves credit.uncredited and cannot poison a procedure.See First Principles, Model Manifest, and Roadmap.
The Qwen swarm self-learning experiment that produces the organism's traces now
lives in this repository under swarm/: the holographic
swarm kernel, the organism metabolism simulator, the Harbor agents, the frozen
benchmark fixtures and recorded results, the AWS research plane (Terraform,
trainer, adapter verifier, runner), and the program documents under
docs/swarm/. The swarm imports
the kernel's contracts and digest; npm run check exercises both.
Requires Node.js 22.18 or newer. Development and CI are pinned to Node 24;
npm install fails closed on unsupported runtimes because Node 20 cannot execute
the repository's type-stripped TypeScript tests.
npm install
npm run check # kernel typecheck + swarm syntax check + all tests
npm run test:swarm # swarm suites only
Research trace bundles can be settled without trusting model-authored status:
node scripts/importTraceBundle.ts INPUT.json OUTPUT.jsonl
Research-stage kernel. The first metabolism loop now exists, including canonical consent-gated Platform Mission episode intake after host/KMS attestation, but it has not yet demonstrated repeatable quality improvement on frozen holdouts. It does not replace the external AMOS verifier, train adapters, or make production decisions. Those boundaries are deliberate.
Apache-2.0.
260 commits
JavaScript
59.3%
Python
20.4%
TypeScript
10.7%
Shell
6.8%
HCL
2.4%