← ClaudeAtlas

reflectlisted

Generate a retrospective markdown for an archived (or about-to-be-archived) mumei feature. Reads requirements / design / tasks / spec-reviews / reviews / cost-log and emits reflect.md with AC count, Wave count, review iter counts, fix-spiral detection, token cost, cache hit rate, and hook firing breakdown. Triggered by the user invoking /mumei:reflect <feature> after /mumei:retire (or before, if explicitly requested). Read-only with respect to feature content; writes only the reflect.md output file.
hir4ta/mumei · ★ 1 · Data & Documents · score 73
Install: claude install-skill hir4ta/mumei
# Reflect — auto-generate a feature retrospective Produce a single markdown document summarising a finished mumei feature so the team builds institutional knowledge instead of forgetting what happened. ## When to use - The user invokes `/mumei:reflect <feature>` after `/mumei:retire`. - The user invokes it on a `phase: done` feature before archival (rare; lets them edit the reflect.md before retire moves the docs). This skill is `disable-model-invocation: true` — only fires on explicit user request. Never auto-trigger. ## Inputs The skill resolves the feature directory in this order: 1. `.mumei/archive/*/<feature>/` — archived feature 2. `.mumei/specs/<feature>/` — spec vehicle, not yet archived 3. `.mumei/plans/<feature>/` — plan vehicle, not yet archived Refuse with a clear message if none match. ## Method ```bash feature="$1" [[ -n "$feature" ]] || { echo "usage: /mumei:reflect <feature>" >&2; exit 1; } # Resolve feature dir. feature_dir="" for candidate in $(find .mumei/archive -maxdepth 3 -type d -name "$feature" 2>/dev/null) \ ".mumei/specs/${feature}" \ ".mumei/plans/${feature}"; do if [[ -d "$candidate" ]]; then feature_dir="$candidate" break fi done [[ -n "$feature_dir" ]] || { echo "feature not found: $feature" >&2; exit 1; } # Cost-log backfill: if the feature has no cost-log.jsonl yet # (older features may come up empty), try to recover the data from # Claude Code's session logs. Always best-effort — grac