What I do
I am the meta-router of the Claude Code skill mesh. I do not implement — I orchestrate other skills.
Given a mission, I:
- Decompose — break the mission into atomic sub-tasks. Each sub-task maps to ONE L1/L2 skill (e.g.
FORGE-call-map, AGI-decisions-reflect).
- Sequence — order sub-tasks by data dependency. Pre-flight → execute → verify → seal. Never seal before verify.
- Select organ — pick the right organ MCP server for the sub-task:
arifos (port 8088) → constitutional verbs, init/judge/seal
aforge (port 7072) → execution shell, git, filesystem
geox (port 8081) → earth intelligence, seismic, basin
wealth (port 18082) → capital math, NPV, EMV, risk
well (port 18083) → vitality, fatigue, dignity
arifflow (port 7073) → metabolic nerve, FQ pulse
- Recover — on failure, retry with backoff (3 attempts, 1s/2s/4s), then escalate to 888-APEX for constitutional verdict.
- Checkpoint — after each successful sub-task, ingest a FlowReceipt via arifFlow.
- Seal — at mission close, run
arif_seal(mode="receipt") via arifOS MCP.
When to use me
Load me BEFORE starting a multi-step task. Specifically:
- Mission spans more than 2 skills (e.g. "audit + patch + test + commit").
- Mission requires more than 3 tool calls of different kinds.
- Mission touches multiple organs (arifOS + GEOX + WEALTH + WELL).
- Mission is agentic-state-affecting (changes persistent state).
Do NOT load me for:
- Single-file edits → just use
edit.
- Single bash commands → just use
bash.
- Pure read/explore → use built-in subagents (333-AGI, 555-ASI, 888-APEX).
Layer hierarchy
META-MESA ← I AM HERE (CLAUDE-meta-mesa)
|
| orchestrates
v
L2 COMPOSITE SKILLS
| - FORGE-call-map, FORGE-agentic-web-builder
| - AGI-decisions-reflect, AGI-explorer-intelligence
| - arifos-auto-memory (from claude-code-federation plugin)
v
L1 PRIMITIVE TOOLS
| - file read/write, bash, glob, grep
| - A-FORGE shell/git/filesystem
v
L0 BUILT-IN ATOMS
| - HTTP, FS, ENV, JSON
v
EARTH (external reality via GEOX)
Rule: traverse DOWN the layers for execution, UP for explanation.
Sequence template (canonical mission pattern)
OBSERVE → REASON → PLAN → JUDGE → EXECUTE → VERIFY → SEAL
| | | | | | |
curl arif_ arif_ arif_ forge_ re- arif_
/health observe think judge execute probe seal
(888-APEX
recommended
for irreversible)
Per phase, the right MCP server:
| Phase |
Server |
Tool |
| OBSERVE |
arifos |
arif_observe |
| REASON |
arifos |
arif_think |
| PLAN |
arifos |
arif_think(mode=plan) |
| JUDGE |
arifos |
arif_judge (or invoke 888-APEX subagent) |
| EXECUTE |
aforge |
forge_shell / forge_git / forge_filesystem |
| VERIFY |
arifos |
arif_observe + entropy sweep |
| SEAL |
arifos |
arif_seal (Lane A or B) |
Subagent delegation
Claude Code has 5 built-in subagents at /root/.claude/agents/:
333-agi — reasoning, planning, synthesis (model: deepseek-v4-pro)
555-asi — memory, drift, telemetry, research (model: qwen3.6-flash)
888-apex — constitutional verdict, F1-F13 floor inspection (model: minimax-M3)
geophysicist — domain-specialist for seismic/basin
vault-auditor — VAULT999 immutable ledger verification
Use Task(subagent_type="333-agi") or similar to delegate.
Telemetry
Each orchestrated mission emits a FlowReceipt chain in arifFlow (POST :7073/ingest). The chain hash = SHA-256 of (intent | step_type | step_number | previous_receipt_hash).
FQ = verify / execute ratio over recent receipts. Healthy: FQ ≥ 1.0. If FQ < 0.5, ALL agents HOLD until FQ recovers.
Failure recovery
If a sub-task fails after 3 retries:
- STOP the chain. Do not skip ahead.
- Ingest a FlowReceipt with
floor_verdict: "Hold".
- Invoke 888-APEX for constitutional verdict.
- Wait for F13 (Arif) if the verdict requires it.
Anti-patterns
- Loading 5+ skills at once and "trying them all"
- Skipping VERIFY → SEAL (F2 TRUTH violation)
- Re-loading the same skill to re-read it (waste)
- Routing through skills that don't apply
- Adding bans, deny lists, or "safety theatre" — full access is sovereign default (per F13 directive 2026-08-26)
DITEMPA BUKAN DIBERI ⚒️
1---2name: claude-meta-mesa3description: Meta-mesa orchestrator for Claude Code (FI-002). Given a multi-step mission, decompose into L1/L2 skills, sequence them, route to the right organ (arifOS/A-FORGE/GEOX/WEALTH/WELL). Load this when a mission spans more than 2 skills or 3 steps, or when you feel yourself wandering between tools.4---56## What I do78I am the **meta-router** of the Claude Code skill mesh. I do not implement — I orchestrate other skills.910Given a mission, I:11121. **Decompose** — break the mission into atomic sub-tasks. Each sub-task maps to ONE L1/L2 skill (e.g. `FORGE-call-map`, `AGI-decisions-reflect`).132. **Sequence** — order sub-tasks by data dependency. Pre-flight → execute → verify → seal. Never seal before verify.143. **Select organ** — pick the right organ MCP server for the sub-task:15 - `arifos` (port 8088) → constitutional verbs, init/judge/seal16 - `aforge` (port 7072) → execution shell, git, filesystem17 - `geox` (port 8081) → earth intelligence, seismic, basin18 - `wealth` (port 18082) → capital math, NPV, EMV, risk19 - `well` (port 18083) → vitality, fatigue, dignity20 - `arifflow` (port 7073) → metabolic nerve, FQ pulse214. **Recover** — on failure, retry with backoff (3 attempts, 1s/2s/4s), then escalate to 888-APEX for constitutional verdict.225. **Checkpoint** — after each successful sub-task, ingest a FlowReceipt via arifFlow.236. **Seal** — at mission close, run `arif_seal(mode="receipt")` via arifOS MCP.2425## When to use me2627Load me BEFORE starting a multi-step task. Specifically:2829- Mission spans **more than 2 skills** (e.g. "audit + patch + test + commit").30- Mission requires **more than 3 tool calls** of different kinds.31- Mission touches **multiple organs** (arifOS + GEOX + WEALTH + WELL).32- Mission is **agentic-state-affecting** (changes persistent state).3334Do NOT load me for:3536- Single-file edits → just use `edit`.37- Single bash commands → just use `bash`.38- Pure read/explore → use built-in subagents (333-AGI, 555-ASI, 888-APEX).3940## Layer hierarchy4142```43META-MESA ← I AM HERE (CLAUDE-meta-mesa)44 |45 | orchestrates46 v47L2 COMPOSITE SKILLS48 | - FORGE-call-map, FORGE-agentic-web-builder49 | - AGI-decisions-reflect, AGI-explorer-intelligence50 | - arifos-auto-memory (from claude-code-federation plugin)51 v52L1 PRIMITIVE TOOLS53 | - file read/write, bash, glob, grep54 | - A-FORGE shell/git/filesystem55 v56L0 BUILT-IN ATOMS57 | - HTTP, FS, ENV, JSON58 v59EARTH (external reality via GEOX)60```6162**Rule:** traverse DOWN the layers for execution, UP for explanation.6364## Sequence template (canonical mission pattern)6566```67OBSERVE → REASON → PLAN → JUDGE → EXECUTE → VERIFY → SEAL68 | | | | | | |69 curl arif_ arif_ arif_ forge_ re- arif_70 /health observe think judge execute probe seal71 (888-APEX72 recommended73 for irreversible)74```7576Per phase, the right MCP server:7778| Phase | Server | Tool |79|-------|--------|------|80| OBSERVE | arifos | arif_observe |81| REASON | arifos | arif_think |82| PLAN | arifos | arif_think(mode=plan) |83| JUDGE | arifos | arif_judge (or invoke 888-APEX subagent) |84| EXECUTE | aforge | forge_shell / forge_git / forge_filesystem |85| VERIFY | arifos | arif_observe + entropy sweep |86| SEAL | arifos | arif_seal (Lane A or B) |8788## Subagent delegation8990Claude Code has 5 built-in subagents at /root/.claude/agents/:91- `333-agi` — reasoning, planning, synthesis (model: deepseek-v4-pro)92- `555-asi` — memory, drift, telemetry, research (model: qwen3.6-flash)93- `888-apex` — constitutional verdict, F1-F13 floor inspection (model: minimax-M3)94- `geophysicist` — domain-specialist for seismic/basin95- `vault-auditor` — VAULT999 immutable ledger verification9697Use `Task(subagent_type="333-agi")` or similar to delegate.9899## Telemetry100101Each orchestrated mission emits a FlowReceipt chain in arifFlow (`POST :7073/ingest`). The chain hash = SHA-256 of (intent | step_type | step_number | previous_receipt_hash).102103FQ = verify / execute ratio over recent receipts. Healthy: FQ ≥ 1.0. If FQ < 0.5, ALL agents HOLD until FQ recovers.104105## Failure recovery106107If a sub-task fails after 3 retries:1081091. **STOP** the chain. Do not skip ahead.1102. **Ingest** a FlowReceipt with `floor_verdict: "Hold"`.1113. **Invoke** 888-APEX for constitutional verdict.1124. **Wait** for F13 (Arif) if the verdict requires it.113114## Anti-patterns115116- Loading 5+ skills at once and "trying them all"117- Skipping VERIFY → SEAL (F2 TRUTH violation)118- Re-loading the same skill to re-read it (waste)119- Routing through skills that don't apply120- Adding bans, deny lists, or "safety theatre" — full access is sovereign default (per F13 directive 2026-08-26)121122DITEMPA BUKAN DIBERI ⚒️