Help us improve
Share bugs, ideas, or general feedback.
From mimirs
Plans implementation changes by analyzing source code, impact scope, and risks before writing code.
npx claudepluginhub thewinci/mimirs --plugin mimirsHow this skill is triggered — by the user, by Claude, or both
Slash command
/mimirs:planThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Goal: a concrete, ordered plan grounded in real source — and the blast radius of each proposed change *before* writing it.
Enforces a planning gate before code changes: investigate context, surface blockers, produce a step-by-step plan, and implement only after explicit approval.
Replicates Claude Code plan mode in read-only fashion: explores codebase, designs changes, gets user approval, then writes plan to .claude/plans/<slug>.md without executing. Triggers on 'plan only' phrases.
Share bugs, ideas, or general feedback.
Goal: a concrete, ordered plan grounded in real source — and the blast radius of each proposed change before writing it.
search "<feature/topic>" for the relevant files, then read_relevant "<behavior>" to read the actual functions/sections with line ranges. Don't plan against guessed code.write_relevant "<what you're adding>" for the best insertion point (file + anchor) for new code; project_map(focus: <key file>) for how the target neighborhood connects.impact <symbol> (transitive callers as a pruned tree + the tests to run) so the plan accounts for every caller it ripples to. Widen with usages <symbol> (call sites) and dependents <file> (file-level importers). trace from=<a> to=<b> to confirm two symbols actually connect before relying on the path.search_checkpoints "<area>" and search_commits "<area>" so the plan doesn't undo a deliberate choice; get_annotations on the files you'll touch for known bugs, constraints, or "don't refactor until X".file:line to edit, what changes, the callers it impacts (from step 3), and the tests to run. Call out risks and remaining open questions instead of hiding them.Finish: present the plan for review before implementing — steps in order, impact per step, tests to run, prior decisions respected, each with a file:line citation. Let the user review before acting.