gza-summary
Synthesize operator triage guidance from failed-task history, unimplemented plan and explore work, unmerged branches, and queue state
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Synthesize operator triage guidance from failed-task history, unimplemented plan and explore work, unmerged branches, and queue state
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review changes on current branch and output a structured review. Optionally post to PR with --pr flag, or apply non-blocking follow-ups inline with --apply-followups.
Run an interactive code-only review for a gza task's implementation branch and produce structured review output compatible with gza-task-improve
Check the implementation against the behavior specs in specs/behavior/. Reports where the code diverges from intended behavior — each divergence is either a code bug or a spec gap. The behavior spec is the source of truth; this skill never edits code or the spec.
Check the behavior spec set for coherence, ownership boundaries, and plain-language discipline without editing the spec or the code
Turn the recurring `watch` stuck-task pile into (1) a diagnosis of why each class is stuck, (2) the existing stuck rows actually cleared now, and (3) systemic prevention so it does not recur. Snapshots watch/incomplete/queue, buckets stuck tasks by failure class, dedups against already-tracked `system` work, unsticks each row by its clearing action (drop moot/dead/stale, spawn follow-up, hand review-loop rows to /gza-task-fix), then ranks and files `system`-tagged prevention fixes by blast radius (cascade-preventer first). Never merges, retries, resumes, deletes branches, or edits code.
Triage `gza incomplete` rows — classify each unresolved merge-unit lineage and recommend the right corrective action (drop moot leaves, escalate to fix, surface manual-resolve rebases, etc.). Never merges, retries, resumes, or deletes branches; never edits code.
| name | gza-summary |
| description | Synthesize operator triage guidance from failed-task history, unimplemented plan and explore work, unmerged branches, and queue state |
| allowed-tools | Bash(uv run gza history:*), Bash(uv run gza unmerged:*), Bash(uv run gza next:*), Bash(uv run gza advance:*), Bash(uv run gza watch:*) |
| version | 2.0.0 |
| public | true |
Produce an operator triage summary by combining dedicated gza surfaces, then recommend the next concrete actions.
Run these commands to collect the canonical source data:
Failed-task history:
uv run gza history --status failed
Unimplemented plan/explore work:
uv run gza advance --unimplemented
Until uv run gza unimplemented exists, uv run gza advance --unimplemented is the canonical surface.
Unmerged code work:
uv run gza unmerged
Queue state, including blocked rows:
uv run gza next --all
Optional failed-recovery decision surface:
uv run gza watch --restart-failed --dry-run
Treat each command as the authoritative surface for one domain:
From uv run gza history --status failed:
uv run gza log <full prefixed task id> when operators need detailsuv run gza watch --restart-failed --dry-run when operators need the current failed-task recovery decision surfacegza incomplete outputFrom uv run gza unmerged:
uv run gza merge <full prefixed task id> or uv run gza sync <full prefixed task id>From uv run gza advance --unimplemented:
plan or explore rows that do not yet have implementation workuv run gza implement <full prefixed task id> only for completed plan rows; note that it queues by defaultuv run gza advance --unimplemented --create when implement tasks should be queued from listed source rowsFrom uv run gza next --all:
uv run gza workFrom uv run gza watch --restart-failed --dry-run (optional):
Produce a prioritized set of specific recommendations. Keep recommendations mapped back to the dedicated surface they came from.
Examples:
gza-1234 with uv run gza log gza-1234 before choosing a recovery action."gza-1250 with uv run gza advance --unimplemented --create."gza-1301 with uv run gza merge gza-1301."uv run gza work to start the next runnable pending task from the queue."Avoid broad restatements of task state. Focus on what the operator should do next and why.
Present the summary in these sections:
## Failed Recovery
## Unimplemented Plans/Explores
## Unmerged Work
## Queue State
## Suggested Next Steps
Keep it concise. If a section has no actionable items, say so briefly and move on.
/gza-summary is the synthesized recommendation layer. It is not a canonical replacement for gza incomplete.