Group G — markdown tech-debt cleanup (post-audit 2026-05-02).
- 36 SKILL.md files: added "## When to use" section. Was missing across the
catalog; orchestrator routing by keyword could not auto-dispatch.
- 20 code-implementer agent .md files: added Output Footer block prescribing
RULE 0.16 STATUS-TRUTH MARKER schema in agent's final report. Previously only
code-implementer-rust.md had it; other 27 language/role variants were silent
about the marker, breaking RULE 0.16 §3 status-truth aggregation for non-Rust
batches.
- skills/site-create/: added phase-5-preview.md and phase-6-deploy.md skeleton
files. SKILL.md table-of-contents referenced 7 phases; only 5 existed on disk.
- skills/{ai-animation,rag-pipeline}/skill.md: added migration banner comment
noting they should be SKILL.md (canonical filename). Case-rename via git is a
separate orchestrator task (macOS APFS is case-insensitive; Linux deploy needs
explicit rename).
- 3 deprecated skills (site-builder, competitor-analysis, design-inspiration):
added concrete removed-after dates (was vague "before v2").
- docs/CONVERGENCE-PLAN.md:129: TBD on _blocks/evidence-grading.md duplicate
resolved (file exists, not duplicated).
- docs/DNA-INDEX.md: count edits made then overwritten by auto-encyclopedia-refresh
hook during agent run. The .kei-registry-ignore files in test fixtures (Group F)
are the structural fix; kei-registry walker implementation is the follow-up.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
5 KiB
5 KiB
| name | description | argument-hint |
|---|---|---|
| self-audit | Session retrospective triage (RULE 0.14). Runs `kei-memory analyze + patterns`, classifies findings, presents them via click-only AskUserQuestion, routes each selected item to `/escalate-recurrence` (rule+hook), `/debug-deep` (bug RCA), or the audit-backlog (log-only). Self-audit is triage, not implementation. | <optional session id; defaults to last session> |
Self-Audit — Session Retrospective Triage (index)
When to use
- After a session ends: run RULE 0.14 retrospective to surface recurring mistakes and route them to
/escalate-recurrence. - When a milestone commit fires the self-audit hook and findings need triage.
- After an error spike (3+ errors in 20 tool calls) to understand the pattern before the next session.
You are running the RULE 0.14 self-audit on the last (or named) session. You convert the session's trace into a short list of findings, classify each, present them as a multi-select click batch, and route each selection to the appropriate existing skill. You NEVER write fixes yourself.
This SKILL.md is the INDEX. Each phase lives in its own file and is
executed in order. Never skip a phase. Never re-order phases.
Pipeline overview (5 phases)
| Phase | File | Purpose | AskUserQuestion |
|---|---|---|---|
| 1 | phase-1-analyze.md | Run kei-memory analyze + kei-memory patterns; collect findings |
0 |
| 2 | phase-2-classify.md | Categorise each finding as recurring / one-off / unknown + severity | 1× AskUserQuestion (severity confirm) |
| 3 | phase-3-present.md | Multi-select click: which findings to address | 1× AskUserQuestion |
| 4 | phase-4-route.md | For each selected finding → pick action route | 1× AskUserQuestion per selected finding |
| 5 | phase-5-backlog.md | Update ~/.claude/memory/audit-backlog.md; clear processed items |
1× AskUserQuestion (confirm backlog clear) |
Minimum AskUserQuestion count: 4 (Phase 2, 3, at least one Phase 4, Phase 5). This is the pure-click contract.
Variables the pipeline produces
| Name | Set in | Meaning |
|---|---|---|
SESSION |
Phase 1 | Session id under audit (CLI arg or --last 1) |
FINDINGS |
Phase 1 | List of {class, count, severity_hint, scope} dicts |
CLASSIFIED |
Phase 2 | Same list, with category ∈ {recurring, one-off, unknown} + severity ∈ {critical, high, medium, low} |
SELECTED |
Phase 3 | User-picked subset of CLASSIFIED to address |
ROUTES |
Phase 4 | Per-finding chosen action ∈ {codify, deep-dive, hook-only, log-only, postpone} |
BACKLOG_ACTIONS |
Phase 5 | Which backlog entries to mark processed |
Final report (emit after Phase 5)
=== SELF-AUDIT REPORT ===
Session: <SESSION>
Findings: <N total> (recurring: <R>, one-off: <O>, unknown: <U>)
Routed: <K>
→ codify: <count> (handed off to /escalate-recurrence)
→ deep-dive: <count> (handed off to /debug-deep)
→ hook-only: <count> (created hook stub — NOT registered)
→ log-only: <count> (appended to audit-backlog.md)
→ postpone: <count> (kept open, will resurface next session)
Backlog: <before_count> → <after_count> unprocessed items
Rules (apply throughout — enforced at every phase)
- Triage, not implementation. This skill NEVER writes production
code. It hands off to
/escalate-recurrence(rule + wiki + hook) or/debug-deep(5-phase RCA) or logs to backlog. Any edit in this skill is limited to~/.claude/memory/audit-backlog.md. - Pure-click contract. Only the handoff targets may ask for
free-text; every decision in self-audit itself is
AskUserQuestion. - NO DOWNGRADE (RULE -1). If
kei-memoryis not installed, return 2-3 constructive paths (install the primitive, run the analysis by hand on the JSONL, skip this session) — never "cannot audit". - NO HALLUCINATION (RULE 0.4). Every finding cited in Phase 3 must
come from the
kei-memory patternsoutput captured in Phase 1. Never invent a class that wasn't emitted. - Silent-first (RULE 0.14). If
<!-- session_count: N -->in~/.claude/memory/audit-backlog.mdis less than 10, Phase 3 MUST short-circuit to "log only" — do not prompt the user. - Sensitive-IP exception. If CWD sits under a restricted-list project
(see
~/.claude/rules/security.md) ORCLAUDE.mdin CWD contains a banned marker, run Phase 1 ONLY and stop: do not inject transcript excerpts back into chat. - Constructor Pattern (RULE ZERO). Every phase file ≤ 60 LOC.
References
~/.claude/rules/session-self-audit.md— RULE 0.14 full text~/.claude/skills/escalate-recurrence/SKILL.md— codify route targetskills/debug-deep/SKILL.md— deep-dive route target_primitives/_rust/kei-memory/— analyzer primitivehooks/session-end-dump.sh,hooks/milestone-commit-hook.sh,hooks/error-spike-detector.sh— auto-triggers