Help us improve
Share bugs, ideas, or general feedback.
From squid
Plans structural refactors as ordered, commit-grain tasks with test-suite-green-at-every-step acceptance criteria. Use for extractions, renames, dependency-inversion, or any no-behaviour-change improvement.
npx claudepluginhub iusztinpaul/squid --plugin squidHow this skill is triggered — by the user, by Claude, or both
Slash command
/squid:refactor <refactor-goal | path/to/refactor-spec.md | tracker-ref><refactor-goal | path/to/refactor-spec.md | tracker-ref>The summary Claude sees in its skill listing — used to decide when to auto-load this skill
A refactor is **not** a feature and **not** a bug. Its acceptance criteria are structural ("module X no longer imports module Y", "the public API of `foo()` is unchanged but the implementation is now split across N files") and its safety net is "the test suite is green at every commit." The PM agent's normal feature-grooming flow doesn't fit because there's no user-visible behaviour to acceptan...
Creates structured, incremental refactoring plans broken into tiny working commits. Use when planning a refactor or breaking down large changes.
Interviews the user to create a detailed, incremental refactor plan and files it as a GitHub issue. Useful for scoping safe, step-by-step refactoring work.
Orchestrates a multi-step refactoring pipeline: analyzes code quality, plans improvements, optionally writes tests, implements changes, and reviews results. Routes simple refactors to a lighter workflow.
Share bugs, ideas, or general feedback.
A refactor is not a feature and not a bug. Its acceptance criteria are structural ("module X no longer imports module Y", "the public API of foo() is unchanged but the implementation is now split across N files") and its safety net is "the test suite is green at every commit." The PM agent's normal feature-grooming flow doesn't fit because there's no user-visible behaviour to acceptance-test.
This skill produces a Tasks Plan whose tasks are commit-grain (each one keeps main shippable) and whose AC speak the refactor's actual concerns: imports, types, signatures, dependency direction, public surface, test coverage. The output feeds /night directly.
You are the planner — you may delegate exploration but do NOT write code, do NOT execute steps. Your output is the plan file plus a hand-off message.
$ARGUMENTS is one of:
auth.session into its own package", "replace ad-hoc retries with tenacity", "rename User.id to User.uid repo-wide").If empty, ask the user for one.
Read docs/PROCESS.md to confirm tracker mode and the canonical lifecycle this plan plugs into.
main green (e.g., gradual library swap with parallel old/new paths)./night's built-in PM grooming instead./triage-issue, then /day or /night.Identify what to refactor from $ARGUMENTS (same resolution rules as /triage-issue's Step 1).
Capture three things explicitly — ask the user via AskUserQuestion if any are missing, one round of questions max:
core/ and into auth/.")grep -r 'from core.auth' src/ returns nothing"; "auth/ has no imports from core/ except types"). At least 2.core.session.Session unchanged"; "no DB schema changes"; "feature flag X stays toggleable throughout").If the user can't answer (1)–(3), the refactor isn't ready to plan. Surface that and stop — the user does the thinking, not you.
Spawn 1 Explore agent (parallel calls if scope is large enough to need 2):
Agent(
subagent_type="Explore",
prompt="""Refactor scope: {goal from Step 1}.
Map: (1) every file that will be touched (rough count + paths); (2) every module/package that imports the affected code (call sites — file:line); (3) every test that exercises the affected code; (4) any public API surface (functions / classes / endpoints / CLI commands) that callers outside the codebase might depend on; (5) the depth of the existing test coverage on the affected modules — coarse estimate (good / thin / none).
Be exhaustive on (1)–(3); a missed import becomes a broken commit. Report as five sections."""
)
When the agent returns:
none or thin on the affected modules, surface this to the user as a prerequisite task ("expand test coverage to cover the current behaviour of core/auth/* before refactoring") and ask: "Add this as the first task, or stop?" Do not silently plan a refactor on top of weak tests.Each task must satisfy three rules:
main green.Common refactor shapes and their canonical decomposition:
| Refactor shape | Typical task sequence |
|---|---|
| Extract module | (1) copy code to new location with old still in place + re-export shim; (2) move call sites in batches by package; (3) delete shim + old file. |
| Rename across codebase | (1) introduce new name as alias of old; (2) migrate call sites in batches; (3) deprecate old name; (4) delete old name. |
| Library swap | (1) introduce new lib alongside old behind an internal facade; (2) migrate call sites; (3) remove old lib. |
| Layer cleanup (e.g., remove cycle) | (1) introduce the seam (new module / interface); (2) move responsibilities one batch at a time; (3) enforce direction with an architectural test. |
| Dead-code removal | (1) delete callers; (2) delete leaves; (3) re-run unused-detector. Each in its own task only if the ordering matters; often this is one task. |
3–8 tasks is a healthy plan size. Fewer than 3 → it's too small for a Tasks Plan; do it as a single /day task. More than 8 → either decompose into multiple sequential refactors (file separate /refactor plans), or you're sneaking feature work in.
Use this template. It mirrors the PM agent's feature-plan output so /night's Step 4 inner loop accepts it without re-grooming.
# Refactor: {one-line goal}
**Type:** refactor
**Definition of done:**
- {invariant 1}
- {invariant 2}
- ...
**Hard constraints (must not change):**
- {constraint 1}
- ...
**Test-suite anchor:** `make pre-commit && make unit-tests && make integration-tests`. Every task ends with this command green.
## Tasks
### 1. {one-line task title}
**Scope:** {1–2 sentences on what this commit does and only what it does.}
**Files touched (expected):** `path/a.py`, `path/b.py`, ...
**Acceptance criteria:**
- [ ] {Structural assertion. e.g. `grep -r 'from core.auth' src/auth/ | wc -l` is 0.}
- [ ] {Behavioural invariant. e.g. Public API of `Session.login()` unchanged — verified by existing tests at `tests/auth/test_session.py`.}
- [ ] Test suite anchor green.
- [ ] No new unit tests required (this is a refactor) — but if you find a coverage gap that blocks the move, add the test before doing the move and call that out in the SWE log.
**Out of scope:**
- {explicit list — adjacent things that look related but belong to other tasks.}
### 2. ...
(Repeat for each task.)
## Rollback story
If task N goes sideways and the team needs to ship before it's resolved, revert commits {N..} only. Tasks {1..N-1} are independently shippable by construction.
## Notes for the SWE
- This is a refactor — **add no behaviour, fix no bugs**, even if you spot one. File a [`/triage-issue`](../triage-issue/SKILL.md) for any bug found mid-refactor; do not let it ride along.
- If a task's AC turns out to be wrong (e.g., a hidden import the planner missed), update the plan via the orchestrator before adapting code — drift between plan and reality is the source of "refactor went off the rails" stories.
Where it lands depends on tracker mode (per docs/PROCESS.md).
tracker/feature-refactor-<slug>-plan.md
Plus one tracker/NNN-<refactor-slug>-task-K.groomed.md per task (matches what /night's Step 4 expects to find). Use sequential numbering for the per-task IDs.
Open one parent issue (label refactor,plan) with the full plan in the body, then one issue per task linked back to the parent (label refactor,task). Capture all numbers for the hand-off message.
Single markdown block:
## Refactor plan ready — {goal}
**Plan:** {tracker path or parent issue URL}
**Tasks ({N}):**
1. {NNN-slug or #N} — {title}
2. ...
**Definition of done:** {bulleted DoD from the plan}
### Recommended next step
`/night {plan-ref}` — the inner loop runs each task, the Tester gate enforces "tests green at every step", and the PM acceptance review verifies the structural DoD. The two human gates (plan approval and merge) still apply.
If the refactor is small enough (≤ 2 tasks) and you'd rather supervise:
`/day {first-task-ref}` then `/day {next-task-ref}` — manual, one task at a time.
### Pre-flight checklist (before /night)
- [ ] Test-suite anchor (`make pre-commit && make unit-tests && make integration-tests`) is green on `main` *right now*. Do not start a refactor on a red base.
- [ ] No in-flight feature branches conflict with the affected files (avoidable merge churn).
- [ ] If the refactor touches the public API, the deprecation / migration story for downstream callers is captured in the plan or in an ADR ([`adr.md`](../scaffold/specs/adr.md)).