Skills로 돌아가기
blockmatic/basilic-skills검사 통과

SKILL DETAIL

w-refactor

blockmatic/basilic-skills/w-refactor

Refactor selected code while preserving behavior, then verify.

설치 수 · 405출처 보기

Installation

npx skills add https://github.com/blockmatic/basilic-skills --skill w-refactor

스킬 파일

SKILL.md

최근 동기화 · 2026. 9. 21.

SKILL.md
---
name: w-refactor
description: Refactor selected code while preserving behavior, then verify.
disable-model-invocation: true
---

Use the selected files or a named concern. Capture current behavior with tests, types, or a manual scenario before editing. Refactor does not authorize commit, push, or PR.

1. Record a baseline: what callers depend on, which checks prove it, and what must not change.
2. Improve structure in the smallest useful diff: extract duplication, clarify names, reduce nesting. Reuse existing packages. Do not add comments that restate the code.
3. Change algorithms or data structures only with measured evidence from the repository's profiler, tests, or traces.
4. Run the affected checks from the baseline. Restore behavior if they fail. Never the full pre-push suite.
5. Docs: `/w-docs` if behavior or commands changed.