원클릭으로
anutron-uninstall
Uninstall the anutron (claude-skills) kit from the current project — reverses everything /anutron-install did.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Uninstall the anutron (claude-skills) kit from the current project — reverses everything /anutron-install did.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when the user wants to do a QA session or report multiple bugs — interactive session where bugs are reported conversationally and agents fix them in parallel
Use when executing implementation plans with independent tasks — orchestration pattern for worktree isolation, TDD discipline, and two-stage review. Referenced by execute-plan, fixit, and bugbash.
Use when the user reports a bug or issue that can be fixed without blocking their current work — backgrounds an agent in a worktree to fix and merge back without breaking stride
Use after implementing changes in an OpenSpec project to review implementation against the active change's deltas — auto-fixes confident issues, parks questions for the user
Install the anutron (claude-skills) kit into the current project — symlinks or copies skills, registers hooks, compiles CLAUDE.md from snippets.
Reference for bash patterns that trigger Claude Code permission guardrails (static-analysis flags that allowlist rules cannot silence). Load when about to run bash with `cd <repo> && git ...`, `$(...)`, backticks, heredocs, inline `python3 -c` / `node -e` / `ruby -e` / `perl -e`, multi-line shell logic with variables/conditionals, or before allowlisting a new script path. Also covers always-prompt verbs and the `git -C` known gap.
| name | anutron-uninstall |
| description | Uninstall the anutron (claude-skills) kit from the current project — reverses everything /anutron-install did. |
| disable-model-invocation | true |
| tags | ["personal"] |
Reverses everything /anutron-install wrote into the current working directory. Reads .anutron-install.json (the breadcrumb) to know exactly what to undo. Mode-aware: behaviour differs based on how the original install was done.
Confirm with the user before running — this removes installed skills/hooks and edits CLAUDE.md and .claude/settings.json. Once confirmed:
bash "$(dirname "$SKILL_PATH")/uninstall.sh"
Print the script's output directly to the user. If the script exits non-zero, show the error. The most common cause is a missing breadcrumb — anutron is not installed, or was already uninstalled.
mode=symlink — each .claude/skills/<name> symlink is rm'd; source files are untouched.mode=copy — each .claude/skills/<name> directory is rm -rf'd.mode field) — falls back to the safest combined behaviour: rm -f for symlinks and regular files; directories are skipped to avoid data loss..claude/hooks/ files.CLAUDE.md — the BEGIN ANUTRON-INSTALL … END ANUTRON-INSTALL block is stripped; everything outside that block is preserved. If the file is empty (or contained only the anutron block), it is deleted..claude/settings.json — the anutronInstalled key is removed, and only the hook command entries that the breadcrumb recorded as anutron-owned are stripped from the hooks object. All other user keys are preserved..anutron-install.json is deleted as the final step.Running a second time after a clean uninstall exits cleanly with a "not installed" message (breadcrumb not found). No partial state is left behind.