Execute Refactor
Apply a confirmed refactoring plan to your codebase step by step.
Installation
- Make sure Claude is on your device and in your terminal.
Skills load from
~/.claude/skills/when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then runclaudein any terminal to verify.One-time setupnpm i -g @anthropic-ai/claude-codeAlready have it? Skip ahead.
- Paste into Claude Code or into your terminal.
This copies the whole skill folder into
~/.claude/skills/openlore-execute-refactor-clay-good/— the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.Faster alternative (instruction-only skills)
Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.
Quick install (SKILL.md only)Sign up to copy - Restart Claude Code.
Quit and reopen Claude Code (or any other agent that loads from
~/.claude/skills/). New skills are picked up on startup. - Just ask Claude.
Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.
Prefer to read the source first? Open on GitHub.
When Claude uses it
Apply the refactoring plan produced by openlore-plan-refactor. Reads .openlore/refactor-plan.md and re-reads it before each change to stay on track. Requires a confirmed plan to exist before running.
What this skill does
openlore: Execute Refactor
When to use this skill
Trigger this skill when the user asks to apply a refactoring plan, with phrasings like:
- "apply the refactor plan"
- "execute the planned refactoring"
- explicit command
/openlore-execute-refactor
Prerequisite: the openlore-plan-refactor skill must have been run and the plan confirmed.
The file .openlore/refactor-plan.md must exist.
⚠️ Fundamental principle — each change is a complete mini-development
Each change in the plan is treated as an independent, self-contained development unit. The cycle for every single change, without exception:
READ plan entry
→ EDIT (targeted tool, ≤ 50 lines touched)
→ DIFF (git diff --stat + git diff — verify no lost code)
→ TEST (run the test gate from the plan)
├─ green → mark ✅ in plan, move to next change
└─ red → git checkout HEAD -- <file>
diagnose the failure
retry from EDIT (attempt 2, then 3)
if still red after 3 attempts → STOP (see circuit-breaker below)
Never accumulate broken state. Never skip the test gate. Never batch two changes before testing.
Circuit-breaker — 3 failed attempts
If a change fails its test gate 3 times in a row, stop immediately and report:
"Change N (
<label>) failed after 3 attempts. The working tree has been restored to the last green state. Options: a) Split this change into smaller sub-changes (≤ 50 lines each) and update the plan b) Return to planning (/openlore-plan-refactor) to redesign this step c) Skip this change and continue — note the acceptance criteria may not be fully met"
Do not attempt a 4th retry without explicit user instruction.
Step 1 — Read the plan
Read .openlore/refactor-plan.md from the project directory.
If the file does not exist, stop immediately:
"No refactor plan found at
.openlore/refactor-plan.md. Please run/openlore-plan-refactorfirst."
Extract and display a summary:
- Target function, file, and line range
- Strategy and risk score
- Number of changes planned
- Test command
- Acceptance criteria
Ask the user to confirm before proceeding.
Execution mode: once confirmed, execute all changes in the plan without asking for permission between steps. The only valid reasons to pause mid-execution are: (a) a test fails and 3 retries are exhausted (circuit-breaker), (b) you detect potentially lost code (
git diffshows far more deletions than additions with no new file created), or (c) Step 6 is explicitly requested. Any other pause is non-compliant with this skill.
Step 2 — Establish a green baseline
Confirm the test suite is passing using the test command from the plan.
If tests are already failing, stop and tell the user. Under no circumstances continue on a red baseline — not even if the failures appear pre-existing. Pre-existing failures must be fixed or explicitly acknowledged in the plan before any refactoring starts. Do not offer to "proceed at your own risk" on a red baseline.
If a coverage tool is available, run it on the target file and compare against the coverage baseline in the plan.
Coverage thresholds:
| Coverage on files to touch | Recommendation |
|---|---|
| ≥ 70% lines | Safe — proceed |
| 40–69% lines | Caution — write characterisation tests first |
| < 40% lines | Stop. Strongly recommend writing tests first |
| 0% (no tests) | Blocked. Propose a minimal test harness, then restart |
If coverage is below 40%:
"Coverage on the target file is X%. Refactoring without test coverage risks introducing silent regressions. Would you like me to suggest test cases based on the function signatures, or do you want to proceed at your own risk?"
Only continue past this point with explicit user confirmation.
Large file warning: if the target function spans more than 300 lines:
"This function is X lines long. Devstral Small 2 may lose code when editing files of this size in a single pass. The plan must decompose each change to ≤ 50 lines. Verify the plan respects this before continuing."
Step 3 — Set the restore point
Verify the working tree is clean:
git status # must show: nothing to commit, working tree clean
git log --oneline -1 # note this commit hash — your restore point
If there are uncommitted changes, stop and ask the user to commit or stash them first.
Fill in the Restore point section of .openlore/refactor-plan.md with the current commit hash.
Step 4 — Apply changes (mini-development loop)
Before applying the first change, record the refactoring decision:
<use_mcp_tool>
<server_name>openlore</server_name>
<tool_name>record_decision</tool_name>
<arguments>{
"directory": "$DIRECTORY",
"title": "Refactor $TARGET_FUNCTION via $STRATEGY",
"rationale": "$PRIMARY_REASON from the plan's Why section",
"consequences": "Callers unchanged; complexity distributed across extracted helpers",
"affectedFiles": ["$TARGET_FILE"]
}</arguments>
</use_mcp_tool>
Also call record_decision for any unexpected architectural choice that emerges mid-refactor (new module boundary discovered, shared interface change required, dependency introduced).
For each change in the plan, execute the full mini-development cycle below. Do not move to the next change until the current one is marked ✅.
Before each change
Re-read .openlore/refactor-plan.md to confirm:
- Which change you are on (check for ✅ markers)
- Exactly what to extract, where to put it, and which call sites to update
- The test gate command for this specific change
Editing tool rule
Always prefer a targeted edit tool (replace_in_file, str_replace_based_edit, apply_diff) over a full-file rewrite (write_to_file). Only use write_to_file if the file is under 100 lines. If a change seems to require write_to_file on a larger file, stop and split it into smaller targeted edits.
Devstral Small 2 constraint: each edit must touch a contiguous block of at most 50 lines. If the planned change exceeds this, split it into sub-changes before proceeding — do not attempt an oversized edit.
Mini-development cycle (execute for each change)
Attempt counter: reset to 1 at the start of each new change.
1 — READ Re-read the source file around the lines to extract. Do not rely on memory or on earlier reads — the file may have changed from previous edits.
2 — EDIT
- Extract or move the identified block (≤ 50 lines)
- Place it in the target file and target class specified in the plan
- If the target file is new, create it with only the extracted code
- Update all call sites listed in the plan
3 — DIFF Verify the edit before running tests:
git diff --stat # only the expected files should appear
git diff # scan deleted lines (−) and confirm each removal is
# intentional — moved, not silently dropped.
# If deleted lines >> added lines with no new file
# created, code was likely lost — abort immediately.
If the diff shows unexpected files or lost code (deletions >> additions, no new file):
git checkout HEAD -- <file>
Then re-examine the plan and retry from step 2 (counts as an attempt).
4 — TEST Run the test gate from the plan entry. This is the exact command specified for this change.
Test result?
├─ GREEN → go to step 5 (mark done)
└─ RED → git checkout HEAD -- <file>
increment attempt counter
if attempts < 3:
diagnose the failure, adjust the edit, go back to step 2
if attempts == 3:
STOP — trigger circuit-breaker (see above)
5 — MARK DONE
Append ✅ to the change heading in .openlore/refactor-plan.md, then proceed to the next change.
Step 5 — Verify improvement
<use_mcp_tool>
<server_name>openlore</server_name>
<tool_name>analyze_codebase</tool_name>
<arguments>{"directory": "$DIRECTORY", "force": true}</arguments>
</use_mcp_tool>
<use_mcp_tool>
<server_name>openlore</server_name>
<tool_name>get_refactor_report</tool_name>
<arguments>{"directory": "$DIRECTORY"}</arguments>
</use_mcp_tool>
Check each acceptance criterion from the plan:
- Priority score dropped below the target
- Function is no longer in the top-5 list
- Full test suite passes
If not, investigate and iterate (add a new change to the plan if needed, respecting the ≤ 50 line constraint).
Run the full test suite one final time to confirm the refactored state is clean.
Step 6 (optional — requires openlore generate to have been run)
⚠️ This step proposes irreversible changes (deletions, renames). Do not apply anything without explicit user confirmation at each sub-step.
6a — Dead code: orphan functions
<use_mcp_tool>
<server_name>openlore</server_name>
<tool_name>get_mapping</tool_name>
<arguments>{"directory": "$DIRECTORY", "orphansOnly": true}</arguments>
</use_mcp_tool>
Present the orphan list (kind function or class only). For each one, check:
- Is it exported and potentially consumed by external code?
- Is it re-exported from an index file?
- Was it simply missed by the LLM?
Do not delete anything without the user explicitly approving each function.
6b — Naming alignment: spec vocabulary vs actual names
<use_mcp_tool>
<server_name>openlore</server_name>
<tool_name>get_mapping</tool_name>
<arguments>{"directory": "$DIRECTORY"}</arguments>
</use_mcp_tool>
Build a table of mismatches and present it before touching any code:
| Current name | Proposed name | File | Confidence |
|---|
Only renames with confidence: "llm" should be proposed automatically. Flag confidence: "heuristic" entries for manual verification first.
Wait for explicit user approval of the full rename table before applying any change. Apply renames one file at a time, run tests after each, and respect the ≤ 50-line edit constraint.
Absolute constraints
- Always re-read
.openlore/refactor-plan.mdbefore each change - Never use
write_to_fileon a file > 100 lines - Never accumulate broken state — restore immediately on any test failure
- Always verify the diff before running tests
- Never proceed to Step 6 without explicit user request
- Always flag potentially lost code (deleted lines >> added lines with no new file created)
- Never ask for confirmation between steps — only pause for circuit-breaker or lost-code signals
- Never continue on a red baseline, regardless of whether failures appear pre-existing
- Never attempt more than 3 retries on a single change without user input
- Each edit must touch ≤ 50 contiguous lines — split if needed, never skip this constraint
Related skills
Generative Code Art
anthropics
Create algorithmic art with p5.js using randomness and interactive parameters.
Poster & Visual Design
anthropics
Create original posters and visual art in PNG and PDF formats.
Claude API Helper
anthropics
Build, debug, and optimize Claude API applications with caching and model migration support.
MCP Server Builder
anthropics
Build protocol servers that connect language models to external APIs and services.