From mst
Overrides AI-determined task execution order via /mst:priority with --before, --after, or --reorder. Parses task IDs, updates sequence, checks dependencies, warns on conflicts. For customizing task pipelines.
npx claudepluginhub myrtlepn/gran-maestro --plugin mstThis skill uses the workspace's default tool permissions.
PM이 자동 결정한 태스크 실행 순서를 사용자가 오버라이드합니다.
Executes eligible tasks from session task list, syncs against codebase/PR state to surface stales, and generates handovers. Use /task-run [--all] [--sync [--dry-run]] [--handover [query]].
Reference for Claude Code's 6 task management tools—TaskCreate, TaskGet, TaskList, TaskUpdate for structured tracking, and TaskOutput, TaskStop for background execution. Covers parameters, status lifecycle, dependencies.
Decomposes complex work into trackable tasks with dependency chains using TaskCreate, TaskUpdate, TaskGet, TaskList tools. For multi-step implementations, parallel coordination, and status tracking.
Share bugs, ideas, or general feedback.
PM이 자동 결정한 태스크 실행 순서를 사용자가 오버라이드합니다.
태스크 ID + 순서 지정 파싱 → execution_order 배열 변경 → 종속성 충돌 확인 (blockedBy 위반 시 경고) → 변경 결과 표시
/mst:priority REQ-001-02 --before REQ-001-01 # 02를 01보다 먼저 실행
/mst:priority REQ-001-03 --after REQ-001-01 # 03을 01 다음에 실행
/mst:priority REQ-001 --reorder 03,01,02 # 전체 순서 지정
실행 순서 변경됨:
REQ-001 태스크 실행 순서:
1. REQ-001-02 로그인 UI 구현 [gemini]
2. REQ-001-01 JWT 미들웨어 구현 [codex]
3. REQ-001-03 유저 모델 테스트 [codex]
주의: REQ-001-01은 REQ-001-03에 의존합니다.
REQ-NNN-NN 형식 확인; /mst:inspect {REQ-ID}로 목록 조회/mst:inspect로 종속성 그래프 사전 확인 권장