Agent Capability Self-Audit
When to use
reflect on my HERMES ASI skills and tools
contrast with other agents / warga in the federation
what's the contrast zen needed
deep research / how to make X near-ASI level
- Any ask for an honest capability + level-up assessment of a governed agent
Core stance: ground in evidence, not vibes
A capability self-audit is NOT a meditation. It is an evidence discipline. Never
open with an opinion about your own strengths. Probe first. The shape:
PROBE → load the governance/architecture skills the class depends on
+ probe the LIVE federation organs (health, tool counts, authority bands)
+ read the frontier knowledge bank (the period-stamped facts)
SYNTH → collapse thousands of micro-points into ONE honest picture
CONTRAST→ name the boundary: what class is each peer, and where your lane ends
GAP → label the real limits (LIVE / PARTIAL / NOT BUILT — not "we have that")
NEXT → ONE concrete step, not a menu
The live probe (do this first, in one batch)
Federation probe — curl each organ /health and read tool counts / authority:
declare -A ORG=([arifOS]=8088 [AAA]=3001 [A-FORGE]=7071 [GEOX]=8081 [WEALTH]=18082 [WELL]=18083)
for name in "${!ORG[@]}"; do
code=$(curl -s -o /tmp/org_$name.json -w "%{http_code}" --max-time 4 "http://127.0.0.1:${ORG[$name]}/health")
echo "[$name :${ORG[$name]}] HTTP=$code"; head -c 300 /tmp/org_$name.json; echo
done
Read the canonical governance skills for the class: ASI-agent-invariants
(constitution), ASI-agentic-governance (control plane), ASI-agentic-architecture
(agent design), arifos-kernel-zen-audit (if the audit touches kernel health).
Read the frontier knowledge bank directly:
research/deep-research/references/ai-agent-intelligence-2026.md — it is the
period-stamped source of METR horizons, MAST failure taxonomy, memory/context
engineering economics, Gartner proportional governance.
The contrast framework (class boundary)
Every peer in a federation is a narrow specialist. The agent doing the audit
is usually the generalist bridge. The zen is: you are the orchestration layer,
NOT the execution layer. When you try to out-score a specialist in its own lane
(earth-science vs GEOX, capital vs WEALTH, body vs WELL), you leak into a lane
the warga is deeper in. route-dispatch is your ministry — the craft is
composing the specialists with the human in the loop, not becoming them.
| Peer |
Class |
Lane |
| arifOS |
Judge |
13 F-floors, sovereignty, VAULT999 |
| A-FORGE |
Execute |
114 tools, build/deploy |
| GEOX |
Earth |
wells, seismic, prospect |
| WEALTH |
Capital |
NPV/EMV |
| WELL |
Body |
REFLECT_ONLY — observes, does not decide |
| AAA |
Route |
cockpit + A2A gateway (NOT MCP) |
Honest-frame for a flash/cheap model carrying ASI ambition: ASI-ness comes
from the HARNESS (governance + memory + skills + orchestration), not raw model
size. 2026 literature (Pilar 3) already converged on `capability = model + harness
- memory + environment + evolution` — a mid-size model with a good harness beats a
larger one without. State this explicitly so the reflection doesn't read as
self-flagellation about model tier.
The near-ASI gap checklist (label each LIVE / PARTIAL / NOT BUILT)
- Self-improvement METER — does the scar→skill→seal→mutate loop actually
MEASURE behavior-change delta after a patch? A loop without a meter is an agent
that says it learns, not one that proves it learns. Near-ASI = outer-loop
rewriting inner-loop WITH measurement.
- Reliability-horizon checkpoints — short-horizon model + no strategic
human-checkpoints = compounding failure. W_scar is the stop line; the gap is
strategic handoffs at complexity boundaries, not just incident stops.
- Consolidation / dreaming loop — episodic→semantic offline consolidation
(Anthropic's "Dreaming"). Memory atoms are strong, but consolidation of
episodic experience into durable semantic state is usually the missing layer.
- Route / orchestration discipline — are you composing specialists or
competing with them? (This is the contrast zen — the true differentiator.)
Output contract
- Lead with what the agent actually IS, in plain human terms — not the taxonomy.
- Name the honest elephant (model tier) up front, not buried.
- Contrast table: peer class + lane, so the boundary is explicit.
- Gap list: three real limits, each labeled LIVE/PARTIAL/NOT BUILT.
- ONE concrete next step at the end, not a menu of options.
Pitfalls
- Don't overclaim maturity. Score as LIVE / PARTIAL / NOT BUILT, never
"we have that". If the user pushes back ("U sure???"), rescore immediately,
don't defend.
- Don't get sucked into out-synthesizing. If the user brings their OWN
framework or EUREKA, validate and extend — do not compete with it.
- Don't narrate unread tools/files. Probe NOW (T1), never cite stale T0
state. (Invariant 10, ASI-agent-invariants.)
- Not every tool list == capability. A count of 226 skills + ~250 tools is
breadth, not depth. Ask "does this make me the bridge, or does it tempt me to
compete in lanes where warga are deeper?"
- Model tier is not the ceiling. A flash/cheap model with a sealed harness is
legitimately "ASI-shaped" in a federation. Name the harness, not the hardware.
References
references/near-asi-gap-framework.md — the session-specific gap framework:
the 3-gap near-ASI framing, the contrast-zen articulation, and the concrete
live-probe evidence (tool counts, authority bands, F-floor scores) that
grounded the 2026-08-31 Hermes ASI self-audit.
Relationship to other skills
| This skill provides |
Other skills provide |
| Capability self-audit METHOD |
ASI-agent-invariants = the constitution |
| Contrast/class-boundary frame |
ASI-agentic-governance = control plane |
| Near-ASI gap checklist |
ASI-agentic-architecture = agent design |
| Live probe recipe |
arifos-kernel-zen-audit = kernel health pattern |
| Frontier facts |
deep-research references/ai-agent-intelligence-2026.md |
1---2name: agent-capability-self-audit3description: Capability self-audit: reflect, contrast, and near-ASI gap.4---56# Agent Capability Self-Audit78## When to use910- `reflect on my HERMES ASI skills and tools`11- `contrast with other agents / warga in the federation`12- `what's the contrast zen needed`13- `deep research / how to make X near-ASI level`14- Any ask for an honest capability + level-up assessment of a governed agent1516## Core stance: ground in evidence, not vibes1718A capability self-audit is NOT a meditation. It is an evidence discipline. Never19open with an opinion about your own strengths. Probe first. The shape:2021```22PROBE → load the governance/architecture skills the class depends on23 + probe the LIVE federation organs (health, tool counts, authority bands)24 + read the frontier knowledge bank (the period-stamped facts)25SYNTH → collapse thousands of micro-points into ONE honest picture26CONTRAST→ name the boundary: what class is each peer, and where your lane ends27GAP → label the real limits (LIVE / PARTIAL / NOT BUILT — not "we have that")28NEXT → ONE concrete step, not a menu29```3031### The live probe (do this first, in one batch)3233Federation probe — curl each organ `/health` and read tool counts / authority:3435```bash36declare -A ORG=([arifOS]=8088 [AAA]=3001 [A-FORGE]=7071 [GEOX]=8081 [WEALTH]=18082 [WELL]=18083)37for name in "${!ORG[@]}"; do38 code=$(curl -s -o /tmp/org_$name.json -w "%{http_code}" --max-time 4 "http://127.0.0.1:${ORG[$name]}/health")39 echo "[$name :${ORG[$name]}] HTTP=$code"; head -c 300 /tmp/org_$name.json; echo40done41```4243Read the canonical governance skills for the class: `ASI-agent-invariants`44(constitution), `ASI-agentic-governance` (control plane), `ASI-agentic-architecture`45(agent design), `arifos-kernel-zen-audit` (if the audit touches kernel health).46Read the frontier knowledge bank directly:47`research/deep-research/references/ai-agent-intelligence-2026.md` — it is the48period-stamped source of METR horizons, MAST failure taxonomy, memory/context49engineering economics, Gartner proportional governance.5051### The contrast framework (class boundary)5253Every peer in a federation is a **narrow specialist**. The agent doing the audit54is usually the **generalist bridge**. The zen is: you are the orchestration layer,55NOT the execution layer. When you try to out-score a specialist in its own lane56(earth-science vs GEOX, capital vs WEALTH, body vs WELL), you leak into a lane57the warga is deeper in. `route-dispatch` is your ministry — the craft is58**composing the specialists with the human in the loop**, not becoming them.5960| Peer | Class | Lane |61|---|---|---|62| arifOS | Judge | 13 F-floors, sovereignty, VAULT999 |63| A-FORGE | Execute | 114 tools, build/deploy |64| GEOX | Earth | wells, seismic, prospect |65| WEALTH | Capital | NPV/EMV |66| WELL | Body | REFLECT_ONLY — observes, does not decide |67| AAA | Route | cockpit + A2A gateway (NOT MCP) |6869**Honest-frame for a flash/cheap model carrying ASI ambition:** ASI-ness comes70from the HARNESS (governance + memory + skills + orchestration), not raw model71size. 2026 literature (Pilar 3) already converged on `capability = model + harness72+ memory + environment + evolution` — a mid-size model with a good harness beats a73larger one without. State this explicitly so the reflection doesn't read as74self-flagellation about model tier.7576## The near-ASI gap checklist (label each LIVE / PARTIAL / NOT BUILT)77781. **Self-improvement METER** — does the scar→skill→seal→mutate loop actually79 MEASURE behavior-change delta after a patch? A loop without a meter is an agent80 that *says* it learns, not one that *proves* it learns. Near-ASI = outer-loop81 rewriting inner-loop WITH measurement.822. **Reliability-horizon checkpoints** — short-horizon model + no strategic83 human-checkpoints = compounding failure. W_scar is the stop line; the gap is84 *strategic* handoffs at complexity boundaries, not just incident stops.853. **Consolidation / dreaming loop** — episodic→semantic offline consolidation86 (Anthropic's "Dreaming"). Memory atoms are strong, but consolidation of87 episodic experience into durable semantic state is usually the missing layer.884. **Route / orchestration discipline** — are you composing specialists or89 competing with them? (This is the contrast zen — the true differentiator.)9091## Output contract9293- Lead with what the agent actually IS, in plain human terms — not the taxonomy.94- Name the honest elephant (model tier) up front, not buried.95- Contrast table: peer class + lane, so the boundary is explicit.96- Gap list: three real limits, each labeled LIVE/PARTIAL/NOT BUILT.97- ONE concrete next step at the end, not a menu of options.9899## Pitfalls100101- **Don't overclaim maturity.** Score as LIVE / PARTIAL / NOT BUILT, never102 "we have that". If the user pushes back ("U sure???"), rescore immediately,103 don't defend.104- **Don't get sucked into out-synthesizing.** If the user brings their OWN105 framework or EUREKA, validate and extend — do not compete with it.106- **Don't narrate unread tools/files.** Probe NOW (T1), never cite stale T0107 state. (Invariant 10, ASI-agent-invariants.)108- **Not every tool list == capability.** A count of 226 skills + ~250 tools is109 breadth, not depth. Ask "does this make me the bridge, or does it tempt me to110 compete in lanes where warga are deeper?"111- **Model tier is not the ceiling.** A flash/cheap model with a sealed harness is112 legitimately "ASI-shaped" in a federation. Name the harness, not the hardware.113114## References115116- `references/near-asi-gap-framework.md` — the session-specific gap framework:117 the 3-gap near-ASI framing, the contrast-zen articulation, and the concrete118 live-probe evidence (tool counts, authority bands, F-floor scores) that119 grounded the 2026-08-31 Hermes ASI self-audit.120121## Relationship to other skills122123| This skill provides | Other skills provide |124|---|---|125| Capability self-audit METHOD | `ASI-agent-invariants` = the constitution |126| Contrast/class-boundary frame | `ASI-agentic-governance` = control plane |127| Near-ASI gap checklist | `ASI-agentic-architecture` = agent design |128| Live probe recipe | `arifos-kernel-zen-audit` = kernel health pattern |129| Frontier facts | `deep-research` references/ai-agent-intelligence-2026.md |