skills/plan-interrogate/SKILL.md
Stress-test a plan by walking its decision tree one question at a time. Use when the user wants to pressure-test a design before implementation.
npx skillsauth add rohitg00/pro-workflow plan-interrogateInstall 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.
Drive a plan from sketch to commitment by resolving every open decision before any code is written.
user (the user answered), inferred (the
codebase or an existing constraint settled it).inferred: <path>.Decision - Choice - Source (user | inferred: <path>).The interrogation produces three artifacts, not just answers. Offer to write each; do not force it.
Decision ledger (always). The resolved tree as a flat list:
Decision - Choice - Source (user | inferred: <path>).
CONTEXT.md (when the interrogation surfaced project-specific terms).
A short shared-language file: every domain term you and the user had to
pin down, with a one-line definition in the project's own words. This is
what stops the agent from using twenty words where one will do next
session, and keeps names in code consistent. One term per line:
term - what it means here. Point future sessions at it. On re-run, merge
new terms in place rather than overwriting existing ones.
Decision records (for contested or hard-to-reverse nodes only). One
short record per decision that a future reader would question: the
context, the choice, the alternatives rejected, and why. Keep them in
docs/decisions/NNNN-slug.md. Read the directory first and number from the
highest existing record so two records never collide. Skip the obvious ones -
a record for a trivial choice is noise.
The decision ledger the user can paste into the plan doc. No prose summary.
No hedging. If the user declines to decide a node, mark it DEFERRED with
the reason the user gave - this is not the same as open. When you write
CONTEXT.md or a decision record, keep it in the project's language, not a
generic template.
documentation
Apply clear-writing standards to any prose the agent produces - READMEs, docs, UI copy, error messages, commit and PR text, release notes. Use when writing or editing documentation, interface copy, or any text a human will read. Says "write the README", "improve this copy", "draft the docs", "word this error".
development
Drive a change through a red-green-refactor loop - failing test first, minimal code to pass, then clean up. Use when implementing a feature or fixing a bug where correctness matters and a test can pin the behavior. Says "TDD", "test first", "red green refactor", "write the test first".
tools
The index of every pro-workflow skill and command, grouped by job, with when to reach for each and whether it is human-run or auto-triggered. Use when you are not sure which skill fits, want the full map, or ask "what can this do", "which skill for X", "list the workflow".
development
Audit an area of the codebase and propose the smallest structural moves that improve it - untangle boundaries, kill duplication, fix seams, break cycles. Produces a prioritized plan and decision records, not a rewrite. Use when a codebase feels tangled, hard to change, or is becoming a ball of mud, or when asked to improve or refactor architecture.