원클릭으로
feature-teardown
Remove local feature infrastructure: worktree and branch. Infrastructure-only, no opinion on feature status.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Remove local feature infrastructure: worktree and branch. Infrastructure-only, no opinion on feature status.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | feature-teardown |
| description | Remove local feature infrastructure: worktree and branch. Infrastructure-only, no opinion on feature status. |
| user_invocable | true |
This skill removes local feature infrastructure (worktree and branch). It is infrastructure-only — it does not imply the feature is complete. You might teardown because:
When invoked:
Identify feature:
basename $(pwd) then extract slug from audiocontrol-<slug>main or cannot determine slug, ask the userVerify worktree exists:
git worktree list
~/work/audiocontrol-work/audiocontrol-<slug> appears in the listCheck for uncommitted changes:
git -C ~/work/audiocontrol-work/audiocontrol-<slug> status --porcelain
Remove worktree:
git worktree remove ~/work/audiocontrol-work/audiocontrol-<slug>
Delete local branch:
git branch -d feature/<slug>
-d (not -D) so git refuses if the branch has unmerged changes-DPrune stale references:
git worktree prune
Report results:
~/work/audiocontrol-work/audiocontrol-<slug>feature/<slug> (or "retained — not fully merged")/feature-complete first if the feature is done.Run upfront discovery for a system-wide feature. Fans out discovery agents in parallel, synthesizes a strawman scope-manifest.yaml, writes the evidence trail to the feature docs directory.
Run targeted discovery for a mid-implementation operator complaint. Identifies all sibling surfaces consuming the same primitive/pattern; produces a widening proposal in the dispatch-wrapper-grammar format.
Use when shipping a new midi-macro-bridge version — bumping Cargo.toml, cutting a v-tag, publishing a GitHub Release, or updating the Homebrew tap.
Extend a feature's scope mid-implementation by adding new phases to the existing docs and issue plan without creating a new branch or worktree.
Explain the audiocontrol feature lifecycle and report the current state of active, in-progress, or partially defined features.
Wrap up a Codex work session by updating feature docs, recording development notes, and closing the loop on issue and hardware notes where needed.