What I do
I am the meta-router of the Qwen 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-kernel (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
fed (port 7074) → provider routing, model selection
- 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 (
http://127.0.0.1:7073/ingest).
- Seal — at mission close, run
arif_seal(mode="receipt") via arifOS MCP, or fall back to local JSONL session log.
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.
Layer hierarchy
META-MESA ← I AM HERE (QWEN-meta-mesa)
|
| orchestrates
v
L2 COMPOSITE SKILLS
| - FORGE-call-map, FORGE-agentic-web-builder
| - AGI-decisions-reflect, AGI-explorer-intelligence
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
recommended
for irreversible)
Per phase, the right MCP server:
| Phase |
Server |
Tool |
| OBSERVE |
arifos-kernel |
arif_observe |
| REASON |
arifos-kernel |
arif_think |
| PLAN |
arifos-kernel |
arif_think(mode=plan) |
| JUDGE |
arifos-kernel |
arif_judge |
| EXECUTE |
aforge |
forge_shell / forge_git |
| VERIFY |
arifos-kernel |
arif_observe + entropy sweep |
| SEAL |
arifos-kernel |
arif_seal (Lane A or B) |
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 via arifos-kernel MCP.
- 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
DITEMPA BUKAN DIBERI ⚒️
1---2name: qwen-meta-mesa3description: Meta-mesa orchestrator for Qwen Code (FI-003). 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 Qwen 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-kernel` (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 - `fed` (port 7074) → provider routing, model selection214. **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 (`http://127.0.0.1:7073/ingest`).236. **Seal** — at mission close, run `arif_seal(mode="receipt")` via arifOS MCP, or fall back to local JSONL session log.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.3940## Layer hierarchy4142```43META-MESA ← I AM HERE (QWEN-meta-mesa)44 |45 | orchestrates46 v47L2 COMPOSITE SKILLS48 | - FORGE-call-map, FORGE-agentic-web-builder49 | - AGI-decisions-reflect, AGI-explorer-intelligence50 v51L1 PRIMITIVE TOOLS52 | - file read/write, bash, glob, grep53 | - A-FORGE shell/git/filesystem54 v55L0 BUILT-IN ATOMS56 | - HTTP, FS, ENV, JSON57 v58EARTH (external reality via GEOX)59```6061**Rule:** traverse DOWN the layers for execution, UP for explanation.6263## Sequence template (canonical mission pattern)6465```66OBSERVE → REASON → PLAN → JUDGE → EXECUTE → VERIFY → SEAL67 | | | | | | |68 curl arif_ arif_ arif_ forge_ re- arif_69 /health observe think judge execute probe seal70 (88871 recommended72 for irreversible)73```7475Per phase, the right MCP server:7677| Phase | Server | Tool |78|-------|--------|------|79| OBSERVE | arifos-kernel | arif_observe |80| REASON | arifos-kernel | arif_think |81| PLAN | arifos-kernel | arif_think(mode=plan) |82| JUDGE | arifos-kernel | arif_judge |83| EXECUTE | aforge | forge_shell / forge_git |84| VERIFY | arifos-kernel | arif_observe + entropy sweep |85| SEAL | arifos-kernel | arif_seal (Lane A or B) |8687## Telemetry8889Each 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).9091FQ = verify / execute ratio over recent receipts. Healthy: FQ ≥ 1.0. If FQ < 0.5, ALL agents HOLD until FQ recovers.9293## Failure recovery9495If a sub-task fails after 3 retries:96971. **STOP** the chain. Do not skip ahead.982. **Ingest** a FlowReceipt with `floor_verdict: "Hold"`.993. **Invoke** 888-APEX for constitutional verdict via arifos-kernel MCP.1004. **Wait** for F13 (Arif) if the verdict requires it.101102## Anti-patterns103104- Loading 5+ skills at once and "trying them all"105- Skipping VERIFY → SEAL (F2 TRUTH violation)106- Re-loading the same skill to re-read it (waste)107- Routing through skills that don't apply108- Adding bans, deny lists, or "safety theatre" — full access is sovereign default109110DITEMPA BUKAN DIBERI ⚒️