nx/skills/plan-inspect/SKILL.md
Use when inspecting plan runtime metrics or enumerating dimension-registry usage — dispatches plan_match with dimensions={verb:plan-inspect}; strategy:default reports per-plan metrics, strategy:dimensions reports registry usage counts
npx skillsauth add hellblazer/nexus plan-inspectInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Two variants share this skill. The strategy dimension picks which:
strategy:default — inspect a single plan's runtime metrics
and match history.strategy:dimensions — enumerate registered dimensions from
nx/plans/dimensions.yml and count plans pinning each.plan_match(
intent="inspect plan $target",
dimensions={verb: "plan-inspect", strategy: "default"},
min_confidence=0.40,
n=1,
)
→ plan_run(match, bindings={target: <plan_id or search string>})
plan_match(
intent="show dimension registry usage",
dimensions={verb: "plan-inspect", strategy: "dimensions"},
min_confidence=0.40,
n=1,
)
→ plan_run(match, bindings={})
use_count — how many times plan_run was invokedlast_used — ISO timestamp of most recent runmatch_count — how many plan_match calls surfaced the planmatch_conf_sum / match_count — average cosine of scored hitssuccess_count / failure_count — plan_run outcome breakdown/nx:plan-promote.See docs/plan-authoring-guide.md for dimension conventions.
development
Use when critiquing / auditing / reviewing a change set against decision history — tries the review plan library first (catalog lookup → decision-evolution traversal → extract → compare), falls through to /nx:query if nothing matches
documentation
Use when doing design / architecture / planning work that walks from prose (RDRs, docs, knowledge) into the modules implementing a concept
development
Use when surveying the plan library's runtime metrics to propose plans for promotion to a higher scope — advisory-only; dispatches the plan-promote-propose meta-seed (no lifecycle ops — those ship in RDR-079)
databases
Use when starting any retrieval task — the gate that tries plan_match first, executes via plan_run if a match clears the threshold, and falls through to /nx:query only on a miss