skills/off/SKILL.md
Maestro 모드를 비활성화합니다. 사용자가 '마에스트로 꺼', '지휘자 모드 끝'을 말하거나 /mst:off를 호출할 때 사용. 요청 취소에는 /mst:cancel을 사용.
npx skillsauth add myrtlepn/gran-maestro offInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Gran Maestro 모드를 비활성화합니다.
mode.json 확인 → active: false이면 "이미 비활성 상태" 알림 후 종료--force 없이 경고+확인; --force이면 status를 "paused"로 업데이트mode.json 업데이트: active:false, activated_at 유지, deactivated_at 현재 timestamp, auto_deactivate:trueSESSION_ID="${MST_SESSION_ID:?MST_SESSION_ID is required for paused snapshot mark}"
python3 {PLUGIN_ROOT}/scripts/mst.py state mark-paused --session-id "$SESSION_ID" >/dev/null 2>&1 || true
PAUSED_COUNT="$(python3 {PLUGIN_ROOT}/scripts/mst.py state paused-count --session-id "$SESSION_ID" 2>/dev/null || printf '0')"
case "$PAUSED_COUNT" in ''|*[!0-9]*) PAUSED_COUNT=0 ;; esac
echo "진행 중 체인 ${PAUSED_COUNT}건 일시 정지. /mst:on으로 재개하세요."
auto_deactivate: true이고 모든 요청이 terminal 상태(done/completed/cancelled/failed)이면 자동 비활성화됩니다. 수동 호출 불필요.
--force: 활성 요청이 있어도 강제로 비활성화비활성화 완료 시: "Gran Maestro 모드가 비활성화되었습니다."
진행 중 snapshot pause 마크 후: "진행 중 체인 N건 일시 정지. /mst:on으로 재개하세요." Paused snapshot state commands inherit the canonical MST_SESSION_ID structured context.
활성 요청 존재 시: 요청 목록 표시 + "계속하시겠습니까? /mst:off --force로 강제 전환하거나 요청을 먼저 완료해주세요."
~/.claude/scripts/maestro-status.sh (mst:on 실행 시 설치): 인자 없이 실행 시 "on/off" 출력; --json 전체 출력; -q exit code만; --field active 특정 필드
active 확인--force 강제 비활성화 또는 먼저 /mst:cancel//mst:approve로 완료tools
Internal shared include material for Gran Maestro skills. This is not a user-invocable workflow.
development
화면 설계, 컴포넌트 구조, 인터랙션 흐름, 디자인 시스템을 설계하는 Design Wing 템플릿 스킬. PM Conductor가 변수를 치환하여 /mst:codex로 실행.
development
Stitch SDK를 사용해 UI 화면을 설계합니다. 명시적 디자인 요청, 새 화면 추가, 전체 디자인 변경 시 사용.
tools
Codex CLI 프로젝트에 oh-my-codex(OMX)를 설치·초기화·gitignore 등록·AGENTS.md 주입하는 4단계 자동화를 수행합니다. 사용자가 'OMX 설치', 'oh-my-codex 설정', '/mst:setup-omx'를 호출할 때 사용.