From autopilot
Compares two implementations (old vs new, spec vs code, cross-system) and flags every difference. Use for feature parity audits, migration verification, and completeness checks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/autopilot:auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
!`cat .claude/audit-config.md 2>/dev/null || true`
!cat .claude/audit-config.md 2>/dev/null || true
| Term | Definition |
|---|---|
| Source | The spec, old system, or canonical implementation -- the "source of truth" |
| Target | The new system or implementation being audited |
| Parity | Target covers all source capabilities correctly |
| By-Design | Intentional divergence between source and target |
Establish before exploring code:
Split into segments (Entry/Init, Core Ops, Edge Cases, Post-Op, Field Completeness). For each, compare presence, correctness, completeness. Spawn one agent per segment for large audits.
Re-dispatch on the same segment after a fix follows the blind discipline — see Phase 4 below and references/blind-dispatch.md. First-pass exploration is full-context by design; only verification passes are blinded.
| Severity | Definition |
|---|---|
| Critical | Feature broken or missing entirely |
| Major | Functionality degraded, display affected |
| Minor | Cosmetic, no functional impact |
| By-Design | Intentional difference, documented reason |
Fix order: Critical -> Major -> Minor (backlog).
Per fix: update target -> verify against source -> update comparison matrix -> re-run tests.
Re-audit dispatch is blind — when re-running an audit segment after a fix (verification pass), the re-dispatch prompt MUST NOT carry the prior round's finding line numbers, "the fix at X to verify" cues, or specific aspect labels the prior pass surfaced. The Phase 2 segment agent must re-derive findings from a clean read of source-vs-target; the dispatcher pattern-matches the new findings against the prior ones in its own memory to determine whether the fix held.
Follow the dispatcher pre-flight checklist in ../../references/blind-dispatch.md. Fixers acting on the prior finding remain non-blind (they need the specifics to act on); only re-audit verification passes are blinded. First-pass Phase 2 exploration is full-context by design — only round 2+ on the same segment applies.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
npx claudepluginhub cookys/autopilot --plugin autopilot