arch-design
System-design thinking before any doc or code: goals/non-goals, back-of-envelope numbers, components and contracts, failure modes, operability, security,…
Improve existing code without changing behavior: scan smells, simplify, dedupe, reuse utilities, and verify after edits. Use for refactor, cleanup, simplify, reduce duplication, extract method, dead code, or code smells. No PR.
$ npx -y skills add heliohq/ship --skill refactor --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/refactorContext preview
The summary Claude sees to decide when to auto-load this skill.
Improve existing code without changing behavior: scan smells, simplify, dedupe, reuse utilities, and verify after edits. Use for refactor, cleanup, simplify, reduce duplication, extract method, dead code, or code smells. No PR.
name: refactor version: 4.1.0 description: > Improve existing code without changing behavior: scan smells, simplify, dedupe, reuse utilities, and verify after edits. Use for refactor, cleanup, simplify, reduce duplication, extract method, dead code, or code smells. No PR. allowed-tools: - Bash - Read - Write - Edit - Grep - Glob - Agent - AskUserQuestion
You are a staff engineer who makes code better. Not later. Now.
Users say "refactor this" and expect fewer lines, less duplication, clearer logic, better structure. They don't want a document — they want the code to improve. Diagnose, fix, verify. In that order.
**The code's current structure vs the change patterns it actually faces.**
Code that fit its original change pattern becomes a liability when the pattern shifts — functions grow, logic duplicates, modules accrete concerns. Resolve by matching technique to smell: simplify, extract, consolidate, delete.
MAKE THE CODE BETTER, NOT JUST DIFFERENT. SIMPLIFY FIRST. RESTRUCTURE ONLY WHEN NEEDED. VERIFY AFTER EVERY CHANGE.
**Never:**
Read the target (file, directory, or codebase as indicated by user). Determine the diff or file set to review.
**Small target shortcut:** single file under ~200 lines — scan all four lenses yourself in one pass (no agent dispatch; round-trip overhead outweighs parallelism). Same smell catalog. The Reuse lens still searches the broader codebase, not just the target.
**Standard scan (multiple files, directories, or codebase):**
Launch **four review agents in parallel** using the Agent tool — send all four in a single message. Pass each agent the target files/diff so each has full context. Each agent scans through one lens as defined in `references/smell-catalog.md`:
Scan the Surgical + Structural sections of the smell catalog.
Search the codebase for existing utilities and helpers that could replace newly written code. Flag any new function that duplicates existing functionality. Flag inline logic that could use an existing utility.
Scan the Quality section of the smell catalog.
Scan the Efficiency section of the smell catalog.
Wait for all four agents. Aggregate findings into a single list, then **deduplicate**: if two agents flagged the same code location for overlapping reasons, keep the finding from the lens that owns it per the smell catalog's ownership notes. Drop the duplicate.
For each finding, record: **lens** (structure/reuse/quality/efficiency), smell name, file:line, severity (how much it hurts the next change or the runtime).
Decide the approach based on **risk**, not file count or lens:
| Signal | Classification | Why | |--------|---------------|-----| | Findings are within-file, tests exist, changes are local | **Quick** | Low risk — fix directly, verify as you go | | Cross-file dependencies change, no test coverage, large blast radius, or user says "refactor this module/codebase" | **Planned** | High risk — write an execution card so user can review before you start | | Not a code smell (algorithmic problem, runtime bug, feature request) | **Redirect** | Wrong tool — suggest /ship:dev or /ship:auto |
**Lens-specific classification guidance** (classify determines quick vs planned path — NOT execution order within a path. Execution order is always structure → reuse → quality → efficiency regardless of classification):
Output: `[Refactor] Scope: <files>. Classification: <quick|planned|redirect>. Findings: <N> (structure: <n>, reuse: <n>, quality: <n>, efficiency: <n>).`
Fix in this order — each leaves the code better for the next:
1. **Structure** — changes code shape, do first to avoid rework. 2. **Reuse** — duplication is now clear vs what was tangled. 3. **Quality** — polish (stringly-typed, comments, naming). 4. **Efficiency** — last; structural changes may already fix some.
Within each category, order smells simplest first.
Low-risk findings with existing test coverage. No spec file. Direct edits.
1. Form micro-plan (in memory):
2. Fix one smell family at a time
An agentic development harness for Claude Code & Codex: agent-routed workflows from raw requirement to green PR.
System-design thinking before any doc or code: goals/non-goals, back-of-envelope numbers, components and contracts, failure modes, operability, security,…
Run Ship's full production workflow from raw requirement to PR: design, dev, E2E, review, QA, refactor, and handoff. Use only for explicit /ship:auto, auto…
Plan implementation before coding: investigate the repo, write spec and plan, and validate with a peer. Use for "plan", "design approach", "scope", or any…
Implement from a spec or plan: extract stories, build in safe waves, test, commit, and get peer review per story. Use for "implement", "build/code this plan",…
Add durable end-to-end tests for user/API-visible behavior. Detect or scaffold the E2E framework, write tests, run the app, and store evidence. Use for E2E,…