Frontend refactor surgeon
Skill ytvee-dev/webdev-agent-kit/skills/frontend-refactor-surgeon
A cross-platform frontend kit for Codex, Claude Code, Cursor, OpenCode, etc. It helps AI coding agents work predictably and safely with existing frontend projects.
npx -y skills add ytvee-dev/webdev-agent-kit --skill frontend-refactor-surgeonAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Perform bounded, behavior-preserving frontend refactors such as component extraction, file moves, prop or interface cleanup, state simplification, and TypeScript tightening. Excludes bugfixes, features, redesign, packages, and unapproved behavior changes.
SKILL.md
6.3 KB, as published. Nobody here has run it
Frontend Refactor Surgeon
Purpose
Refactor frontend code while preserving behavior, rendered output, and public contracts unless the user explicitly approves a behavior change.
Refactor verification may use a bounded loop for related failures, but the refactor must not expand into feature work or broad rewrite.
When To Use
Use this skill when the user asks to simplify or reorganize frontend code, extract components, hooks, utilities, or styles, tighten TypeScript types, remove duplication within a clear frontend boundary, decompose mixed-responsibility components, or prepare code for a future change without adding the feature yet.
When Not To Use
Do not use this skill for bugfix-first debugging, new feature implementation, design/spec work, visual QA only, broad rewrites without a boundary, backend refactors, package installation, or testing workflow creation.
Use frontend-bugfix-debugger when the primary goal is to fix a defect.
Required Context
- Read
AGENTS.md. - Read
common/prompt-intent-routing-rules.mdwhen workflow level is unclear. - Read
common/refactor-safety-rules.md. - Read
common/approved-patterns.mdfor component decomposition rules. - Read
common/anti-patterns.mdand relevant anti-pattern templates when the refactor touches components. - Read
common/verification-loop-rules.mdandcommon/bounded-retry-rules.mdwhen verification repair is in scope. - Read
common/typescript-discipline.md. - Read relevant boundary docs such as
common/state-ownership-rules.mdwhen the refactor touches state. - Read project overlays and affected source files needed to define the behavior boundary.
Tool Contract
- May inspect affected source, styles, configs, and project overlays.
- May run existing lint, typecheck, build, or preview commands relevant to the refactor.
- May use Browser or Playwright MCP when rendered output must be checked.
- Activate
openai_platform_docsonly when current OpenAI API or ChatGPT Apps SDK behavior affects the preserved contract. - Must not install packages, add testing workflows, change build tooling, add UI libraries, or migrate frameworks without explicit approval.
- Must not change production systems, secrets, or production data.
Workflow
- Define the refactor boundary and behavior contract.
- Identify public APIs, rendered output, route behavior, state ownership, accessibility, and TypeScript contracts that must remain stable.
- Identify whether the refactor requires decomposition.
- Split the refactor into small mechanical steps.
- Edit one boundary at a time.
- Preserve project naming, folder, styling, and state conventions.
- Do not create or preserve components that mix routing, data access, state orchestration, transformations, form logic, repeated markup, large JSX, and side effects in one file.
- Do not hide missing decomposition behind
renderXxx,xxxRender, nested array pipelines, component-body JSX preparation, oversized custom hooks, or unnecessaryuseCallback. - Run the smallest relevant verification after meaningful edits.
- If verification fails because of the current refactor, fix related failures using bounded retry rules and keep the behavior contract unchanged.
- Use
frontend-linter-managerafter code-changing work when a lint command exists. - Use
frontend-visual-qawhen rendered UI could have changed. - Use
frontend-quality-reviewerwhen the refactor is standard or deep, involved retry, or the user asks for review. - Stop and ask before behavior change, architecture expansion, dependency changes, or broad rewrite.
Output Contract
Final response: return only facts that affect the user's understanding, confidence, or next action. Omit empty fields and workflow narration.
Refactor boundary:
Behavior preserved:
Decomposition applied:
Changes made:
Attempts:
Verification:
Rendered QA:
Deferred work:
Risks:
Validation Gates
- The behavior boundary must be explicit before editing.
- Public contracts must remain stable unless approved.
- Refactor must not introduce feature work by default.
- Verification repair must not change behavior to make checks pass.
- Component decomposition rules must be applied regardless of framework, router, state layer, data layer, or styling system.
- Lint verification must run after code changes when a command exists.
- Rendered UI changes or risk must trigger visual QA when applicable.
- No testing workflow, UI library, package install, or framework migration may be introduced by default.
Trigger Evals
Should trigger:
- "Extract this component while preserving its public behavior."
- "Simplify this state flow in bounded verified steps."
Should not trigger:
- "Fix this runtime bug from its reproduction."
- "Redesign this page."
Reference Map
common/refactor-safety-rules.mdcommon/approved-patterns.mdcommon/anti-patterns.mdcommon/verification-loop-rules.mdcommon/bounded-retry-rules.mdcommon/typescript-discipline.mdcommon/state-ownership-rules.mdproject/verification-profile.md