radin-doctor
Check that radin's own install under ~/.claude is complete and its companion tools are reachable. Use for /radin-doctor, "check my radin install", "is radin…
Write a step-by-step implementation plan for one backlog entry, without touching code. Scope is one task (a title/keyword), not the whole backlog. Use for /radin-plan, "plan this backlog entry", "write a plan for X before we execute it". radin-execute delegates here for any
$ npx -y skills add shortcuts/radin --skill radin-plan --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/radin-planContext preview
The summary Claude sees to decide when to auto-load this skill.
Write a step-by-step implementation plan for one backlog entry, without touching code. Scope is one task (a title/keyword), not the whole backlog. Use for /radin-plan, "plan this backlog entry", "write a plan for X before we execute it". radin-execute delegates here for any
name: radin-plan description: | Write a step-by-step implementation plan for one backlog entry, without touching code. Scope is one task (a title/keyword), not the whole backlog. Use for /radin-plan, "plan this backlog entry", "write a plan for X before we execute it". radin-execute delegates here for any entry too complex to implement directly.
Turn one backlog entry into one or more implementation plans, without writing any code. It runs inline in whichever context invokes it. A caller that cannot reach the user says so in its prompt; the branches below marked "non-interactive" are then the defaults, and anything only the user could settle is reported and stops the run.
RADIN_CLI backlog plan-target "<scope id/title/keyword>"
It prints `id`/`title`/`task_file`/`plan_file` lines, plus one `plan<TAB><path>` line per plan the entry already has. Route on its exit code:
`feat`/`fix`/`chore`/`refactor` (rubric in `skills/radin-record/SKILL.md`), create it without asking, then re-run `plan-target` on the printed id.
RADIN_CLI backlog add <category> "<short title>" <<'EOF' <the task as the caller stated or clearly implied it, and why it matters if not already obvious> EOF
Non-interactive: the scope always came from an existing entry, so no match means backlog drift. Report and stop instead of writing a duplicate.
Ask which one. Non-interactive: report the candidates and stop.
ask whether to re-plan (overwrite) or stop. Stop unless confirmed.
Invoke `/ponytail:ponytail` and apply its ladder: does this entry need more than one plan? Lean toward NOT splitting. Split only when the entry genuinely bundles multiple unrelated, independently plannable changes.
Interactive: state your read (split or not, and why) and confirm it. Non-interactive: take the default (no split) without asking.
description each, full coverage, no overlap) and confirm. Confirmed or edited: use that list. Rejected: fall back to the single-item list.
Step 1 printed `task_file` and `plan_file`; a task's file never moves, so neither is re-resolved between sub-tasks. For each sub-task, in order:
1. Read the entry's file. A sub-task from a split has only its one-line Step 2 description as scope, so plan just that part. 2. Explore the codebase: structure, affected files, patterns, constraints.
`get_architecture` for the shape of an unfamiliar area, `search_graph` to find the symbols in scope, `trace_path` for every caller and callee the plan will touch, `get_code_snippet` to read one function, `query_graph` (after `get_graph_schema`) for anything Cypher-shaped. Run `index_repository` first when `list_projects` doesn't list this repo — a graph hit is a pointer: read the file before you cite or edit it, and never conclude something is absent from an empty result.
`headroom loc` for the shape of a repo you have not seen before, when `command -v headroom` succeeds.
cannot confirm goes to `/mattpocock-skills:research` against primary sources first. Non-interactive: that skill spawns its own agent whose result may not come back, so report the unconfirmed behavior and stop. 3. Invoke `/ponytail:ponytail` and apply its ladder to produce the plan. When the plan has to place a new module boundary or reshape an interface, invoke `/mattpocock-skills:codebase-design` for that part instead of inventing your own vocabulary for it. The plan states:
check is unfinished.
Surface every open question the plan raised. The plan you hand off must leave zero decisions to whoever executes it. Non-interactive: an unresolvable question stops the run, so report it rather than plan around it. 4. Save the plan at the `plan_file` path Step 1 printed. For a sub-task from a split, re-run `plan-target "<id>" "<sub-slug>"` with the sub-task's short title in lowercase-hyphen form and use the `plan_file` it prints. 5. Insert the pointer via the CLI (appends `**Plan:** <path>` to the task's file, after any earlier `**Plan:**` lines):
RADIN_CLI backlog add-plan "<id>" "<the plan_file path>"
6. Report: `✅ <id> planned. Plan: <path>. Review findings: <n or none>.` The count comes from Step 4, so write this line after that sub-task's review pass, not before it.
Planning and executing are separate tools: edit no source file, run no build/test, create no commit anywhere in this skill. Never touch the scoped task's file beyond the appended `**Plan:**` line(s), and never touch any other task's file.
A plan is a proposal, so review it before `radin-execute` builds on it. For each plan file just written:
1. Invoke `/thermo-nuclear` against the plan file's content (not the codebase): does the proposed approach itself carry a structural issue the rubric flags? 2. Invoke `/ponytail:ponytail-review` against the same file: speculative flexibility, reinvented stdlib, single-caller layers? 3. Fix each fi
Check that radin's own install under ~/.claude is complete and its companion tools are reachable. Use for /radin-doctor, "check my radin install", "is radin…
Work through a project's whole backlog: prioritize every task, execute each via a sub-agent, commit after each. Use when the user wants the entire backlog…
Log feedback, bugs, follow-ups, or ideas raised mid-session as structured backlog entries, so they survive past the conversation. Use for /radin-record, "log…
Run a thermo-nuclear code quality review over a scope (commit, PR, directory, or a range like "since yesterday"), triage the findings with the user, and log…
Wire codebase-memory-mcp into this repo when install.sh could not do it globally. Use for "set up hooks", "wire up codebase-memory-mcp", "enable the knowledge…
Print the current project's backlog to the terminal. Use for /radin-show, "show me the backlog", "what's in the backlog", "list backlog items", "print the…