refactor-safely
# refactor-safely This Claude Code skill safely restructures code while preserving externally observable behavior by combining context loading, design analysis, characterization testing, and architectural validation. Use it when asked to refactor, clean up, untangle, simplify, or improve code structure, ensuring the refactor fits the actual project architecture, locks current behavior with tests, and surfaces meaningful trade-offs before making changes.
git clone --depth 1 https://github.com/techygarg/lattice /tmp/refactor-safely && cp -r /tmp/refactor-safely/skills/molecules/refactor-safely ~/.claude/skills/refactor-safelySKILL.md
# Refactor Safely ## Required Skills Load these skills based on refactor scope (see Steps 3, 5, 6 for conditional use): 1. `framework:knowledge-priming` -- Load project context so the refactor grounds in the real codebase. (always) 2. `framework:context-anchoring` -- Find and load the feature's context doc; capture approved plans and decisions in it. (always) 3. `framework:learning-harvest` -- Load prior operational learnings at session start; harvest new ones at session end. (always) 4. `framework:collaborative-judgment` -- Surface trade-offs in structure, seams, and migration sequence instead of silently assuming. (always) 5. `framework:clean-code` -- Readability, responsibility boundaries, local craft. (always) 6. `framework:test-quality` -- Characterization tests and the safety net. (always) 7. `framework:design-first` -- Target-structure planning for significant structural changes. (conditional: Step 3) 8. `framework:architecture` -- Layer placement and dependency direction. (conditional: responsibilities move across layers in Steps 5/6) 9. `framework:domain-driven-design` -- Aggregate boundaries and domain behavior. (conditional: domain rules move or sharpen in Step 6) 10. `framework:secure-coding` -- Trust bounds, authorization, sensitive data handling. (conditional: security-sensitive code touched in Step 6) ## Workflow ### Step 1: Establish Refactor Context Start from the current pain, not from a preferred abstraction. - Identify the target area: a module, service, aggregate, endpoint path, or subsystem. - Clarify why the refactor is needed: mixed responsibilities, duplication, wrong-layer logic, coupling, poor testability, or unreadable control flow. - Clarify what the user expects to improve: simpler structure, correct layer placement, smaller units, clearer domain behavior, easier testing, or safer extension points. - Run `framework:learning-harvest` Load behavior. Focus hint: "refactoring session — focus: structural health, quality signals". - Run `framework:context-anchoring` Document Discovery to check for an existing context doc covering the affected feature/module: - **Found** → Load behavior. Honor every logged decision and constraint as an active commitment while planning the refactor. The doc already contains an approved refactor plan (preservation boundaries + target structure) → confirm it still matches the user's intent, then resume at Step 4 unless the user wants to revisit the plan first. - **Not found** → Proceed from the conversation and the current code. Do not block planning on a missing context doc. End the step by summarizing the intent in one sentence: > "Refactor X to improve Y while preserving Z." **STOP:** If you cannot state both the improvement target and the preservation target that clearly, continue clarifying with the user before planning any changes. **Persistence check**: - Refactor is substantial, risky, or likely to span multiple sessions → ask whether the user wants to persist an approved plan. - A relevant context doc already exists and the user wants persistence → use it and update it. - No relevant doc exists and the user wants persistence → propose creating one; confirm the doc name per `framework:context-anchoring`, then use it as the source of truth for the approved plan. - The user declines persistence, or the refactor is small and local → continue in non-persistent mode. Approval gates still apply; the plan simply stays in-session. ### Step 2: Define Preservation Boundaries Refactoring changes structure, **not behavior**. Make the preservation contract explicit before proposing any structural edits. List the behaviors that must remain unchanged: - Public API contracts and response shapes - Domain invariants and state transitions - Persistence semantics and side effects - Event emission and integration behavior - Authorization and security posture - Error behavior wherever externally visible - Performance or operational characteristics, if part of the current contract Also list explicit **out-of-scope changes**: - New features - Schema changes - Contract changes - Intentional behavior changes - Unrelated cleanup outside the approved area If the desired outcome requires changing preserved behavior, stop and discuss what the task actually is — a bug fix (`/bug-fix`), a feature change (`/design-blueprint`), or a broader redesign. **STOP:** Never proceed as a refactor after making one of those determinations. ### Step 3: Propose High-Level Structural Plan **Zero Refactor Rule**: make no structural code changes until the user approves both the target structure and the transition plan. For small refactors the plan may be brief. For larger ones, use `framework:design-first` selectively: - Start at **Level 2 (Components)** to define target responsibilities and boundaries. - Use **Level 3 (Interactions)** when data flow or dependency direction will change. - Use **Level 4 (Contracts)** when internal interfaces or seams need to be formalized. - Skip Level 1 (Capabilities) unless the user-facing scope is actually changing. Present: - **Current structural problems** -- what is wrong with the current shape - **Target structure** -- which components, classes, and functions should exist after the refactor - **Movement plan** -- what logic moves where - **Preservation boundaries** -- what will stay behaviorally unchanged - **Out-of-scope items** -- what will not be changed in this pass End the step with an explicit gate: > "Does this refactor plan look correct? Should I proceed to Step 4: characterization tests?" **STOP:** Do not write any refactoring code until the user explicitly approves this plan. If persistence is enabled, use `framework:context-anchoring` Enrich to capture the approved preservation boundaries, target structure, movement plan, and out-of-scope items. **STOP:** When persistence is enabled, do not proceed to Step 4 until the approved plan is written. ### Step 4: Add Characterization Protection First
Audit and fix all Lattice documentation, README, docs/, PROJECT.md, GitHub issue templates, and CLAUDE.md to ensure they are fully aligned with the current skill inventory. Documentation drift is the most common source of user confusion in Lattice — a skill exists in the codebase but not in the docs, or a renamed skill leaves a stale reference in the bug report template. If you've made any change to skills/ and haven't run this, run it now. Use when the user says 'align docs', 'audit docs', 'update documentation', 'skill align', 'check docs are in sync', 'audit skill inventory', 'ensure docs are aligned', 'are the docs up to date', or 'what needs updating'. Standalone — does not call other skills.
Create a new Lattice skill — atom, molecule, or refiner — following all framework conventions. Writing skill files manually almost always produces convention violations: wrong section order, missing confirmation gates, defaults.md without the right structure. This skill knows all of that and guides you through it. Use whenever adding any new atom, molecule, or refiner to Lattice, or when the user says 'create a new skill', 'add an atom', 'add a molecule', 'add a refiner', 'build X for Lattice', 'new lattice skill', or 'skill forge'. Does not validate, align docs, or deploy — those are separate skills you run after.
Deep behavioral audit of a Lattice skill — proposes 3 review personas relevant to the skill, runs independent scenario analysis from each persona's perspective, then merges only the high-confidence, practical findings into a severity-ordered gap report with proposed fixes. Structural validation (conventions, cross-references) is skill-validate's job — this skill finds gaps that would realistically surface when someone actually uses the skill: missing scenario handling, ambiguous instructions, silent failure cases, and behavioral inconsistencies. Filters out theoretical edge cases, low-likelihood speculation, and findings owned by other skills. Use after writing or significantly changing any skill, or when the user says 'review this skill', 'deep review', 'does this skill work', 'find gaps in this skill', 'stress test this skill', 'review from different angles', or 'skill review'. Standalone — does not call other skills.
Validate any Lattice SKILL.md against all tier conventions — atoms, molecules, and refiners. Catches structural errors, broken cross-references, and convention violations before they reach the repo. If you just wrote or modified a Lattice skill file and haven't run this yet, run it now — manual review consistently misses the same categories of errors this skill is specifically designed to catch. Use when the user says 'validate this skill', 'check this skill', 'does this follow conventions', 'review this skill file', 'check my SKILL.md', or 'skill validate'. Reports PASS/FAIL with specific file-and-section findings and actionable fixes. Standalone — does not call other skills.
Architectural thinking partner for an existing repository — scans the codebase, conducts a structured interview, agrees on current architectural state and recommended direction, and produces a shareable insights document. Scoped to one repository, module, or folder. Does not execute transformation — it orients. Use when the user says 'assess my codebase architecture', 'what direction should my codebase go', 'architecture compass', 'understand my architecture', 'audit architecture drift', 'architectural assessment', or 'help me understand what is wrong with my codebase'.
Facilitate a structured conversation to define architecture principles for a repository. Supports multiple architecture styles: clean architecture (default), hexagonal / ports & adapters, modular monolith, or custom. Produces a formal architecture document that the corresponding atom will use. Use when setting up a new project, defining architecture standards, or when the user says 'setup architecture', 'define layers', 'architecture principles', 'help me define my architecture', 'hexagonal architecture', 'modular monolith', 'ports and adapters', or 'define my architecture style'.
Enforce architectural rules when generating or modifying code, and validate proposed designs before approval (design mode). Defaults to clean architecture; supports any architecture style via the architecture-refiner. Validates layer responsibilities, dependency direction, and structural constraints using the loaded architecture rules. Use when generating code, reviewing architecture, creating new files, or when the user mentions 'architecture', 'layers', 'structure', 'dependency rules', 'hexagonal architecture', 'ports and adapters', 'modular monolith', or 'onion architecture'. Also use when reviewing generated code for structural compliance.
Investigate, reproduce, and safely fix a bug with regression protection. Composes context, diagnosis, architecture, code quality, and testing guardrails into a reproduce-first repair workflow. Use when the user says 'fix this bug', 'debug this', 'investigate this failure', 'patch this regression', 'repair this issue', or 'why is this broken'.