agentsclimarketplace

Agent architecture audit

Skill sairam0424/MindForge/.mindforge/skills/agent-architecture-audit

MindForge: The Enterprise Agentic Framework for Claude Code & Antigravity. High-performance autonomous execution, wave-parallelism, and multi-tier governance for production-grade AI engineering.

Install
npx -y skills add sairam0424/MindForge --skill agent-architecture-audit

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

13.1 KB, as published. Nobody here has run it

Skill — Agent Architecture Audit

A full-stack diagnostic for MindForge's own multi-layer agent stack. Audits the 12-layer stack for wrapper regression, memory contamination, tool-discipline failures, hidden repair loops, and rendering/transport corruption. Produces severity-ranked findings with code-first fixes — for agent systems that hide failures behind wrapper layers, stale memory, retry loops, or transport mutations.

This skill composes with agent-introspection-debugging (already in .mindforge/skills/): introspection debugs a single runtime failure (loop, timeout, hallucination); this skill audits the whole stack for the systemic wrapper-layer causes behind those failures. Invoke via /mindforge:introspect when a single-failure debug keeps recurring or points at a structural cause.

Component-name note: PersonaFactory, soul-engine, and hooks_route below describe MindForge's aspirational multi-agent protocol (per .claude/CLAUDE.md) and are NOT implemented anywhere in bin/ — grep for these names before treating a "missing" one as a real finding. The actual ground-truth implementations are: bin/engine/nexus-tracer.js (NexusTracer), bin/autonomous/wave-executor.js (WaveExecutor), and bin/shard-helper.js (the real file behind the shard-controller concept). When auditing a real MindForge instance, map findings to these actual files, not the aspirational names — treat every table entry below as a conceptual layer, not a confirmed component.

When this skill activates

MANDATORY for:

  • Releasing any MindForge-driven agent or LLM-powered behavior to production
  • Shipping features touching tool calling, the Sharded Memory Loop, or multi-step swarm workflows
  • Agent behavior degrades after adding a wrapper layer (new PersonaFactory patch, new prompt-assembly stage, new WaveExecutor step)
  • User reports "the agent is getting worse" or "tools are flaky"
  • Same model works in playground but breaks inside the MindForge wrapper stack
  • Debugging agent behavior for more than 15 minutes without finding root cause

Especially critical when:

  • New prompt layers, tool definitions, or memory systems have been added
  • Different swarm specialists behave inconsistently on the same input
  • The model was fine yesterday but is hallucinating today
  • You suspect a hidden repair/retry loop is silently mutating responses

Do not use for:

  • Single-failure runtime debugging — use agent-introspection-debugging
  • Code review — use language-specific reviewer agents
  • Security scanning — use /mindforge:security-scan / security-reviewer
  • Agent performance benchmarking — use /mindforge:agent-eval
  • Writing new features — use the appropriate workflow skill

Mandatory actions when this skill is active

The MindForge 12-Layer Stack

Every MindForge agent run passes through these layers. Any one can corrupt the answer. The concrete MindForge component owning each layer is named so the audit has a real target, not an abstraction.

#LayerMindForge ComponentWhat Goes Wrong
1System promptSOUL.md + MINDFORGE.md + .agent/CLAUDE.md assemblyConflicting directives, instruction bloat across the source-of-truth hierarchy
2Session historyNexusTracer turn logStale context injected from previous turns
3Long-term memoryshard-controller (Cold tier)Pollution across sessions, old topics in new conversations
4Distillationshard-controller compaction (Hot/Warm rotation)Compressed shards re-entering as pseudo-facts
5Active recallcontinuous-learning instinct recallRedundant re-summary / instinct replay wasting context
6Tool selectionPersonaFactory + hooks_route routingWrong tool routing, model skips a required tool
7Tool executionswarm WaveExecutor dispatchHallucinated execution — claims to call but doesn't
8Tool interpretationWaveExecutor result consolidationMisread or ignored tool output
9Answer shapingSWARM-SUMMARY consolidationFormat corruption in the final response
10Platform renderingDashboard (localhost:7339) / CLI / API transportTransport-layer mutation of a valid answer
11Hidden repair loopssoul-engine ADS rewrite + Temporal hindsight regenerationSilent fallback/retry running a second LLM pass
12Persistenceauto-state.json + Merkle audit logExpired state or cached artifacts reused as live evidence

Common Failure Patterns

1. Wrapper Regression

The base model produces correct answers, but MindForge's wrapper layers make it worse.

Symptoms:

  • Model works fine in playground or direct API call, breaks in the swarm
  • Added a new PersonaFactory patch or prompt stage, existing behavior degraded
  • Agent sounds confident but is confidently wrong
  • "It was working before the last update"

2. Memory Contamination

Old topics leak into new conversations through NexusTracer history, shard recall, or distillation.

Symptoms:

  • Agent brings up unrelated past topics
  • User corrections don't stick (old shard/instinct overwrites new)
  • Same-session artifacts re-enter as pseudo-facts
  • Cold-tier memory grows without bound, degrading response quality over time

3. Tool Discipline Failure

Tools are declared in the prompt but not enforced in code. The model skips them or hallucinates execution.

Symptoms:

  • "Must use tool X" in the prompt, but model answers without calling it
  • Tool results look correct but were never actually executed by WaveExecutor
  • Different swarm specialists fight over the same responsibility
  • Model uses a tool when it shouldn't, or skips it when it must

4. Rendering/Transport Corruption

The agent's internal answer is correct, but the platform layer mutates it during delivery.

Symptoms:

  • NexusTracer logs show the correct answer, user sees broken output
  • Markdown rendering, JSON parsing, or streaming fragments corrupt valid output
  • A hidden fallback quietly replaces the answer before delivery
  • Output differs between the CLI and the dashboard

5. Hidden Agent Layers

Silent repair, retry, summarization, or recall layers run without explicit contracts.

Symptoms:

  • Output changes between internal generation and user delivery
  • soul-engine ADS "auto-fix" runs a second LLM pass the user doesn't know about
  • Multiple swarm layers modify the same output without coordination
  • Answers get "smoothed" or "corrected" by invisible layers

Audit Workflow

Phase 1: Scope

Define what you're auditing:

  • Target system — which MindForge agent / swarm / command?
  • Entrypoints — how do users interact (CLI command, dashboard, hook)?
  • Model stack — which LLM(s) and providers?
  • Symptoms — what does the user report?
  • Time window — when did it start?
  • Layers to audit — which of the 12 layers apply?

Phase 2: Evidence Collection

Gather evidence from the codebase:

  • Source code — swarm loop, hooks_route tool router, shard admission, prompt assembly across the source-of-truth hierarchy
  • Logs — NexusTracer session traces, Merkle-linked AUDIT entries, tool-call records
  • Config — MINDFORGE.md parameters, tool schemas, PersonaFactory patches, provider settings
  • Memory files — instinct store, shard archives, auto-state.json

Use rg to search for anti-patterns:

# Tool requirements expressed only in prompt text (not code)
rg "must.*tool|required.*call" --type md

# Tool execution without validation
rg "tool_call|toolCall|tool_use"

# Hidden LLM calls outside the main swarm loop
rg "completion|chat\.create|messages\.create|llm\.invoke"

# Shard/instinct admission without user-correction priority
rg "memory.*admit|shard.*admit|instinct.*capture|persist.*memory"

# Fallback / repair loops that run additional LLM calls (soul-engine, hindsight)
rg "fallback|retry.*llm|repair.*prompt|re-?prompt|soul-engine|regenerat"

# Silent output mutation
rg "mutate|rewrite.*response|transform.*output|shap"

Phase 3: Failure Mapping

For each finding, document:

  • Symptom — what the user sees
  • Mechanism — how the wrapper causes it
  • Source layer — which of the 12 layers (and which MindForge component)
  • Root cause — the deepest cause
  • Evidence — file:line or NexusTracer/AUDIT row reference
  • Confidence — 0.0 to 1.0

Phase 4: Fix Strategy

Default fix order (code-first, not prompt-first):

  1. Code-gate tool requirements — enforce in WaveExecutor, not prompt text
  2. Remove or narrow hidden repair layers — make soul-engine / hindsight regeneration explicit with contracts
  3. Reduce context duplication — same info through prompt + NexusTracer history + shard memory + distillation
  4. Tighten memory admission — user corrections > agent assertions (shard + instinct admission)
  5. Tighten distillation triggers — don't compact shards that shouldn't be compacted
  6. Reduce rendering mutation — dashboard/CLI pass-through, don't transform
  7. Convert to typed JSON envelopes — structured internal flow (SWARM-SUMMARY as schema), not freeform prose

Severity Model

LevelMeaningAction
criticalAgent can confidently produce wrong operational behaviorFix before next release
highAgent frequently degrades correctness or stabilityFix this sprint
mediumCorrectness usually survives but output is fragile or wastefulPlan for next cycle
lowMostly cosmetic or maintainability issuesBacklog

Output Format

Present findings to the user in this order:

  1. Severity-ranked findings (most critical first)
  2. Architecture diagnosis (which layer / component corrupted what, and why)
  3. Ordered fix plan (code-first, not prompt-first)

Do not lead with compliments or summaries. If the system is broken, say so directly.

Quick Diagnostic Questions

When auditing a MindForge agent system, answer these:

#QuestionIf Yes →
1Can the model skip a required tool and still answer?Tool not code-gated in WaveExecutor
2Does old conversation content appear in new turns?Memory contamination (NexusTracer/shard)
3Is the same info in system prompt AND shard memory AND history?Context duplication
4Does soul-engine or hindsight run a second LLM pass before delivery?Hidden repair loop
5Does output differ between internal generation and user delivery?Rendering corruption (dashboard/CLI)
6Are "must use tool X" rules only in prompt text?Tool discipline failure
7Can the agent's own monologue become a persistent instinct/shard?Memory poisoning

Anti-Patterns to Avoid

  • Avoid blaming the model before falsifying wrapper-layer regressions.
  • Avoid blaming memory without showing the contamination path (which shard / instinct / NexusTracer turn).
  • Do not let a clean current auto-state.json erase a dirty historical incident.
  • Do not treat markdown prose as a trustworthy internal protocol.
  • Do not accept "must use tool" in prompt text when WaveExecutor never enforces it.
  • Keep findings direct, evidence-backed, and severity-ranked.

Report Schema

Audits MUST produce a structured report following this shape:

{
  "schema_version": "mindforge.agent-architecture-audit.report.v1",
  "executive_verdict": {
    "overall_health": "high_risk",
    "primary_failure_mode": "string",
    "most_urgent_fix": "string"
  },
  "scope": {
    "target_name": "string",
    "model_stack": ["string"],
    "layers_to_audit": ["string"]
  },
  "findings": [
    {
      "severity": "critical|high|medium|low",
      "title": "string",
      "mechanism": "string",
      "source_layer": "string",
      "root_cause": "string",
      "evidence_refs": ["file:line"],
      "confidence": 0.0,
      "recommended_fix": "string"
    }
  ],
  "ordered_fix_plan": [
    { "order": 1, "goal": "string", "why_now": "string", "expected_effect": "string" }
  ]
}

Self-check before task completion

  • Did I scope the audit to a concrete MindForge target, entrypoint, and model stack?
  • Did I map each finding to one of the 12 layers AND its MindForge component (NexusTracer, soul-engine, shard-controller, PersonaFactory, WaveExecutor, etc.)?
  • Did I check all five failure patterns (wrapper regression, memory contamination, tool discipline, rendering/transport corruption, hidden repair loops)?
  • Is every finding evidence-backed with a file:line or NexusTracer/AUDIT reference and a confidence score?
  • Did I emit the mindforge.agent-architecture-audit.report.v1 JSON report (severity-ranked findings + ordered, code-first fix plan)?
  • Did I hand off to agent-introspection-debugging for any single runtime failure that still needs contained recovery?

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.