From mst
Deactivates Maestro mode, handling pending requests and snapshot state. Use --force to bypass active request warnings.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mst:off [--force][--force]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Gran Maestro 모드를 비활성화합니다.
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로 완료npx claudepluginhub myrtlepn/gran-maestro --plugin mstResumes interrupted Maestro sessions using existing active-session files and shared phase tracking. Use to continue multi-agent orchestration workflows after interruptions.
Stops a running MEGA-Code skill extraction pipeline by run ID or interactive selection. Useful for aborting stuck or unnecessary pipeline processes.