From mumei
Render a one-line reliability summary of the active mumei feature (or a specified one). Prints `<feature> | pass^3: <value-or-N/A> (n=<n_trials>, window=10, k=3)` to stdout — exactly one line, no headers. Triggered only by explicit user invocation `/mumei:glance` (no args reads `.mumei/current`) or `/mumei:glance <feature>`. Outputs `no active feature` to stdout (not stderr) and exits 0 when `.mumei/current` is missing or points to a non-existent feature. Read-only via hooks/_lib/reliability.sh.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mumei:glance [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
Surface the active feature's reliability in a single line so the user can check stability without context switching.
Surface the active feature's reliability in a single line so the user can check stability without context switching.
User invokes /mumei:glance (no args) or /mumei:glance <feature>. The skill is disable-model-invocation: true; it never fires on the model's own initiative.
Resolves the target feature:
.mumei/current for the active feature keyComputes pass^3 over the most recent 10 trials via hooks/_lib/reliability.sh.
Renders exactly one line to stdout:
<feature> | pass^3: <value-or-N/A> (n=<n_trials>, window=10, k=3)
Outputs no active feature to stdout (not stderr) and exits 0 when .mumei/current is missing or stale (REQ-25.2.3).
Run the CLI implementation in scripts/mumei-glance.sh and print its stdout verbatim:
bash "$CLAUDE_PLUGIN_ROOT/scripts/mumei-glance.sh" "${1:-}"
The script always exits 0 (missing active feature is not an error). Do not reformat the output.
no active feature to stderr — REQ-25.2.3 specifies stdout.npx claudepluginhub hir4ta/mumei --plugin mumeiProvides a checklist for code reviews covering functionality, security, performance, maintainability, tests, and quality. Use for pull requests, audits, team standards, and developer training.