Orgs Platform Architecture
Seven layers.
One continuous substrate.
Each layer has a single responsibility, a typed interface, and a mock implementation for testing. Higher layers depend on lower layers, never the reverse. You can replace any one piece without breaking the rest.
VII
Layer
Console
01 / 07The surfaces humans and agents use to operate the platform.
| Web app | Next.js 15 · App Router · Tailwind v4 · auth via API key |
| CLI | `orgs` — 18 commands, interactive TUI, works offline |
| Desktop | Tauri 2 on macOS · systray agent · hardware-key signing |
| MCP tools | Agents running inside aut0 can call `orgs.propose`, `orgs.vote`, `orgs.health` |
VI
Layer
Governance
02 / 07Proposal lifecycle, voting, and constitutional enforcement.
| Constitution | YAML document · validated against strict schema · amendable via proposal |
| Proposals | Draft → Voting → Approved/Rejected → Executed · state-machine gated |
| Escalation engine | Checks constitution on every action · human-gate thresholds |
| Voting methods | 1p1v · token · quadratic · delegation · conviction (per constitution) |
V
Layer
Treasury
03 / 07USD and on-chain balances with six-layer policy enforcement.
| Accounts | USD ledger · crypto custody adapters · bank sync (Plaid) |
| Policy | Daily limits · reserve minimums · per-counterparty caps |
| Disbursement | Pre-flight: escalation → balance → daily → reserve → vote → confirmed |
| Reporting | Real-time P&L · audit export (CSV, PDF) · FY close |
IV
Layer
Chain Adapters
04 / 07Write governance once, execute anywhere.
| Solana Realms | Production · SPL governance program · multi-sig treasury |
| Sigil | L1fe-native · MACA 4-round BFT · 58 tx types |
| Ethereum | Beta · Safe multisig + custom governance · L2 support |
| Mock | In-memory adapter · identical interface · used in tests |
III
Layer
Filing Engine
05 / 07Automated filings with Wyoming SOS and the IRS.
| Computer Use | Anthropic CU agent fills SOS forms · screenshots every step |
| Playwright fallback | Deterministic path for stable form layouts |
| Human escalation | Non-idempotent operations never retry ambiguous results |
| PII redaction | SSN/ITIN regions redacted before screenshot storage |
II
Layer
Identity
06 / 07Cryptographic identity with lineage back to a human root.
| OAS DID | `did:oas:wy:llc:xxxx` · W3C compatible · offline-verifiable |
| Ed25519 | Signing keys · hardware-backed · zeroize-on-drop in memory |
| HKDF lineage | Every agent derives from a human root · audit trail |
| Arsenal ACTs | Agent Capability Tokens for scoped credential access |
I
Layer
Ledger
07 / 07Tamper-evident append-only record of every state change.
| Hash chain | BLAKE3 · each entry signed · previous hash linked |
| Retention | 7 years default · extendable · matches FINRA 17a-4 if configured |
| Export | JSONL · CSV · Parquet · admissible as business record |
| Discovery | One-click legal hold · deterministic replay |