From mumei
Render a detailed reliability view of a mumei feature — pass^3 over the most recent 10 trials plus a table of the last 10 trial rows from reliability-log.jsonl. Triggered only by explicit user invocation `/mumei:attest <feature>`. Reads .mumei/specs/<feature>/reliability-log.jsonl or .mumei/plans/<feature>/reliability-log.jsonl via hooks/_lib/reliability.sh. Exits non-zero with `feature not found: <feature>` to stderr when the feature directory is absent. The k=3 / window=10 parameters are fixed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mumei:attest <feature><feature>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Render the reliability snapshot for one mumei feature so the user can judge whether it is stable enough to ship or extend.
Render the reliability snapshot for one mumei feature so the user can judge whether it is stable enough to ship or extend.
User invokes /mumei:attest <feature> explicitly. The <feature> argument is a feature key — REQ-N-<slug> for spec vehicle, bare <slug> for plan vehicle. The skill is disable-model-invocation: true; it never fires from the model's own initiative.
reliability-log.jsonl (prefers .mumei/specs/<feature>/ over .mumei/plans/<feature>/).pass booleans; N/A when fewer than 3 trials are recorded).pass^3: <value-or-N/A> (n=<n_trials>, window=10, k=3)wave, task_id, trial_n, pass, ts).feature not found: <feature> to stderr if neither feature directory exists.Run the CLI implementation in scripts/mumei-attest.sh and print its stdout verbatim:
bash "$CLAUDE_PLUGIN_ROOT/scripts/mumei-attest.sh" "$1"
The script handles the feature-not-found / missing-log / fewer-than-k-trials cases and writes the three blocks to stdout (errors to stderr). Do not reformat the output.
value — it is a window pass rate (arithmetic mean of pass booleans over the window), not a geometric Pass^k. Do not multiply, transform, or "explain it as a percentage".N/A is the contract.reliability-log.jsonl — this skill is read-only.Provides a checklist for code reviews covering functionality, security, performance, maintainability, tests, and quality. Use for pull requests, audits, team standards, and developer training.
npx claudepluginhub hir4ta/mumei --plugin mumei