بنقرة واحدة
cmux-uninstall
cmux 오케스트레이션 완전 제거 + 설치 전 상태로 롤백. /cmux-uninstall로 실행.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
cmux 오케스트레이션 완전 제거 + 설치 전 상태로 롤백. /cmux-uninstall로 실행.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
JARVIS 시스템 관리자 — 오케스트레이션 설정 진화 엔진. 자동 감지 + 분석 + 승인 + 백업 + 구현 + 반영.
cmux 멀티 AI 오케스트레이션
Use when monitoring cmux surfaces for IDLE/ERROR/STALL — cmux surface 실시간 감시 에이전트. 감지→기록→보고 전담. 모든 개입 금지. 상세 규칙은 references/gate-w-*.md 참조.
원커맨드 오케스트레이션 시작 — 컨트롤 타워(사장+와쳐+자비스) 구성 + 기존 세션 포함 여부 질문. /cmux-start로 실행.
오케스트레이션 종료 — 컨트롤 타워 + 부서 선택적 종료. /cmux-stop으로 실행.
MemPalace — mine projects and conversations into a searchable memory palace. Use when asked about mempalace, memory palace, mining memories, searching memories, or palace setup.
| name | cmux-uninstall |
| description | cmux 오케스트레이션 완전 제거 + 설치 전 상태로 롤백. /cmux-uninstall로 실행. |
| user-invocable | true |
| classification | configuration |
| allowed-tools | Bash, Read, AskUserQuestion |
입력: $ARGUMENTS
cmux 오케스트레이션 플랫폼을 제거하고, 설치 전 상태로 복원합니다.
ls -la ~/.claude/backups/cmux-*/manifest.json 2>/dev/null
백업이 있으면 사용자에게 선택지 제공:
pkill -f "watcher-scan.py" 2>/dev/null || true
rm -f /tmp/cmux-*
rm -rf /tmp/cmux-vdiff/
와일드카드로 모든 cmux 임시 파일을 한 번에 정리. 개별 나열보다 안전하고 누락 없음.
BACKUP_DIR=$(ls -dt ~/.claude/backups/cmux-* | head -1)
cp "$BACKUP_DIR/settings.json" ~/.claude/settings.json
→ settings.json이 설치 전 상태로 완전 복원
# settings.json에서 cmux hooks만 제거 (다른 설정 보존)
python3 -c "
import json
with open('$HOME/.claude/settings.json') as f: d=json.load(f)
hooks = d.get('hooks', {})
for event in list(hooks.keys()):
hooks[event] = [g for g in hooks[event]
if not any('cmux' in h.get('command','') for h in g.get('hooks',[]))]
if not hooks[event]: del hooks[event]
if not hooks: d.pop('hooks', None)
with open('$HOME/.claude/settings.json','w') as f: json.dump(d,f,indent=2,ensure_ascii=False)
"
rm -f ~/.claude/hooks/cmux-*
rm -rf ~/.claude/skills/cmux-orchestrator
rm -rf ~/.claude/skills/cmux-watcher
rm -rf ~/.claude/skills/cmux-config
rm -rf ~/.claude/skills/cmux-start
rm -rf ~/.claude/skills/cmux-help
rm -rf ~/.claude/skills/cmux-uninstall
if [ -d ~/.claude/memory/cmux ]; then
echo "cmux 학습 메모리가 존재합니다 (~/.claude/memory/cmux/)"
fi
사용자에게 선택지:
rm -rf ~/.claude/memory/cmux제거 완료.
- cmux hooks: 삭제됨
- cmux skills: 삭제됨
- 임시 파일: 삭제됨
- settings.json: [롤백됨 / cmux만 제거됨]
- 기존 plugins/permissions: 보존됨