Execute-Refactor 150 Protocol
Overview
Run in three stages:
- Research refactor options (iterative, no code changes).
- Plan + confirm + implement with tests and validation.
- Apply Scout105 cleanup (objective, small, user-approved).
Stage 1 — Research refactor options (iterative)
Create or reuse the session log at .sessions/SESSION_[date]-[name].md.
- If the file does not exist, create it and add the investigation template below.
- Keep all research notes inside the session log only (no scattered notes in chat).
Define the core question (the refactor goal).
- Write a single sentence: “We need to refactor X to achieve Y.”
- Example: “Refactor SermonCard to reduce duplication and isolate date logic.”
Define scope (Scope150).
- Core (100%): list files and behaviors you will directly change.
- Boundary (50%): list callers, dependent modules, tests, configs, and data flow.
- If unsure, add a “to verify” bullet and resolve it during observations.
Perform observations (search/read) in ordered layers.
- Interface layer: find entry points (routes, public APIs, UI entry points).
- Domain layer: identify entities, i18n keys, enums, types.
- Pattern layer: locate hooks, services, clients, shared utilities.
- Usage layer: trace imports and call sites.
- For each layer, read the minimum number of files that explain the behavior.
Record findings in the log with sources.
- Each fact must include a source (file path + line reference or command).
- Separate facts from hypotheses. Do not mix them.
Generate hypotheses and refactor options.
- For each option, note: goal, steps, benefits, risks, and test impact.
- Prefer at least 2 options so tradeoffs are explicit.
Decide if more research is needed.
- If user says “research more”, expand scope or inspect new files.
- Update the log with new branches and continue Stage 1.
Stop before implementation.
- End Stage 1 with: options summary, remaining unknowns, and a recommended path.
Investigation log template
## Investigations
### Investigation: <short topic>
#### Core question
- ...
#### Scope
- Core (100%):
- ...
- Boundary (50%):
- ...
#### Findings
- <fact> (source: file path / command)
- Subfinding
#### Hypotheses
- H1: ...
- Prediction: ...
- Test: ...
- Status: pending/confirmed/rejected
#### Refactor options
- Option A: ... (pros/cons)
- Option B: ... (pros/cons)
#### Next branches
- ...
Stage 2 — Plan, confirm, implement
Write a refactor plan.
- Break into ordered steps with file-level granularity.
- Include expected intermediate states (what should still pass after each step).
List risks and edge cases.
- Identify behavior changes, API contract risks, and hidden coupling.
- Explicitly note any breaking-change risk.
Define a validation checklist.
- Tests to run (unit/integration).
- Manual checks if needed (UI flows, API calls).
- Expected outputs and what would indicate failure.
Perform Scope150 validation planning.
- Core (100%): ensure each planned change has a test or validation step.
- Boundary (50%): list all callers/integrations/tests to be checked.
Ask for user confirmation before editing.
- Provide plan, risks, and validation checklist.
- Do not edit until the user approves.
Implement the refactor.
- Follow the plan in order.
- Keep changes minimal and reversible.
Add or update tests.
- Cover changed logic and any new boundaries.
- Avoid brittle tests; prefer behavior-based assertions.
Run validation.
- Execute all tests from the checklist.
- Record results and fix failures before moving to Stage 3.
Stage 3 — Scout105 cleanup protocol
Apply only objective cleanup after a Key Point (phase complete). Do not add features.
Trigger (Key Point)
- Apply only after a milestone where the user would see complete value.
- Do not run per-file; run once per phase.
Allowed cleanup categories (objective only)
- Unused code: unused imports/vars/fields (provable by grep/IDE).
- Typos: spelling errors in comments/strings (spellcheckable).
- Formatting inconsistencies: breaks the file’s own pattern.
- Dead code: commented debug lines or unreachable code.
- Obviously wrong logic: provably incorrect (duplicate checks, impossible types).
Constraints
- Only in files already touched by the primary task.
- Remove garbage only; no new features or refactors.
- Each cleanup must take ≤ 30 seconds to verify + fix.
- Total cleanup time ≤ 5% of primary task time.
- Must be objectively measurable; if not measurable, skip.
- Require user approval before executing cleanup.
Scout105 report (present to user)
✅ Key Point complete: <brief summary>
Scout105 opportunities:
- <file>: <item> (category, evidence)
- <file>: <item> (category, evidence)
Run Scout105 cleanup? [Yes / Skip / Selective]
Execution
- If approved, apply all selected cleanups in batch.
- Run tests/build to validate no regression.
- If failures occur, revert or investigate causality before proceeding.
Output expectations
- Stage 1: Provide refactor options + log path + remaining branches + recommended path.
- Stage 2: Provide plan, risks, validation checklist, and request confirmation.
- Stage 3: Provide Scout105 report, decision, and validation result.
1---2name: 52-execute-refactor-1503description: [52] EXECUTE. Three-stage refactoring workflow: (1) iterative research of refactor/modularization options, (2) plan + risk/edge-case analysis + Scope150 validation, then implement with tests after user confirmation, and (3) apply Scout105 cleanup protocol. Use when asked to refactor, modularize, or restructure code safely.4---56# Execute-Refactor 150 Protocol78## Overview910Run in three stages:111. Research refactor options (iterative, no code changes).122. Plan + confirm + implement with tests and validation.133. Apply Scout105 cleanup (objective, small, user-approved).1415## Stage 1 — Research refactor options (iterative)16171. **Create or reuse the session log** at `.sessions/SESSION_[date]-[name].md`.18 - If the file does not exist, create it and add the investigation template below.19 - Keep all research notes inside the session log only (no scattered notes in chat).20212. **Define the core question** (the refactor goal).22 - Write a single sentence: “We need to refactor X to achieve Y.”23 - Example: “Refactor SermonCard to reduce duplication and isolate date logic.”24253. **Define scope (Scope150)**.26 - **Core (100%)**: list files and behaviors you will directly change.27 - **Boundary (50%)**: list callers, dependent modules, tests, configs, and data flow.28 - If unsure, add a “to verify” bullet and resolve it during observations.29304. **Perform observations (search/read) in ordered layers**.31 - **Interface layer**: find entry points (routes, public APIs, UI entry points).32 - **Domain layer**: identify entities, i18n keys, enums, types.33 - **Pattern layer**: locate hooks, services, clients, shared utilities.34 - **Usage layer**: trace imports and call sites.35 - For each layer, read the minimum number of files that explain the behavior.36375. **Record findings in the log with sources**.38 - Each fact must include a source (file path + line reference or command).39 - Separate facts from hypotheses. Do not mix them.40416. **Generate hypotheses and refactor options**.42 - For each option, note: goal, steps, benefits, risks, and test impact.43 - Prefer at least 2 options so tradeoffs are explicit.44457. **Decide if more research is needed**.46 - If user says “research more”, expand scope or inspect new files.47 - Update the log with new branches and continue Stage 1.48498. **Stop before implementation**.50 - End Stage 1 with: options summary, remaining unknowns, and a recommended path.5152### Investigation log template5354```55## Investigations5657### Investigation: <short topic>5859#### Core question60- ...6162#### Scope63- Core (100%):64 - ...65- Boundary (50%):66 - ...6768#### Findings69- <fact> (source: file path / command)70 - Subfinding7172#### Hypotheses73- H1: ...74 - Prediction: ...75 - Test: ...76 - Status: pending/confirmed/rejected7778#### Refactor options79- Option A: ... (pros/cons)80- Option B: ... (pros/cons)8182#### Next branches83- ...84```8586## Stage 2 — Plan, confirm, implement87881. **Write a refactor plan**.89 - Break into ordered steps with file-level granularity.90 - Include expected intermediate states (what should still pass after each step).91922. **List risks and edge cases**.93 - Identify behavior changes, API contract risks, and hidden coupling.94 - Explicitly note any breaking-change risk.95963. **Define a validation checklist**.97 - Tests to run (unit/integration).98 - Manual checks if needed (UI flows, API calls).99 - Expected outputs and what would indicate failure.1001014. **Perform Scope150 validation planning**.102 - Core (100%): ensure each planned change has a test or validation step.103 - Boundary (50%): list all callers/integrations/tests to be checked.1041055. **Ask for user confirmation before editing**.106 - Provide plan, risks, and validation checklist.107 - Do not edit until the user approves.1081096. **Implement the refactor**.110 - Follow the plan in order.111 - Keep changes minimal and reversible.1121137. **Add or update tests**.114 - Cover changed logic and any new boundaries.115 - Avoid brittle tests; prefer behavior-based assertions.1161178. **Run validation**.118 - Execute all tests from the checklist.119 - Record results and fix failures before moving to Stage 3.120121## Stage 3 — Scout105 cleanup protocol122123Apply only **objective** cleanup after a Key Point (phase complete). Do not add features.124125### Trigger (Key Point)126- Apply only after a milestone where the user would see complete value.127- Do not run per-file; run once per phase.128129### Allowed cleanup categories (objective only)130- **Unused code**: unused imports/vars/fields (provable by grep/IDE).131- **Typos**: spelling errors in comments/strings (spellcheckable).132- **Formatting inconsistencies**: breaks the file’s own pattern.133- **Dead code**: commented debug lines or unreachable code.134- **Obviously wrong logic**: provably incorrect (duplicate checks, impossible types).135136### Constraints137- Only in files already touched by the primary task.138- Remove garbage only; no new features or refactors.139- Each cleanup must take ≤ 30 seconds to verify + fix.140- Total cleanup time ≤ 5% of primary task time.141- Must be objectively measurable; if not measurable, skip.142- Require user approval before executing cleanup.143144### Scout105 report (present to user)145146```147✅ Key Point complete: <brief summary>148149Scout105 opportunities:150- <file>: <item> (category, evidence)151- <file>: <item> (category, evidence)152153Run Scout105 cleanup? [Yes / Skip / Selective]154```155156### Execution157- If approved, apply all selected cleanups in batch.158- Run tests/build to validate no regression.159- If failures occur, revert or investigate causality before proceeding.160161## Output expectations162163- Stage 1: Provide refactor options + log path + remaining branches + recommended path.164- Stage 2: Provide plan, risks, validation checklist, and request confirmation.165- Stage 3: Provide Scout105 report, decision, and validation result.