← ClaudeAtlas

batch-linear-ticketslisted

Batch-analyze and resolve multiple Linear tickets — bug fixes and feature work. For each ticket: classifies as bug or feature (auto from Linear labels, or via the --type flag), dispatches the appropriate per-ticket analysis (linear-ticket-investigator + holistic-analysis for bugs, just linear-ticket-investigator for features), gates on confidence, correlates findings across tickets, asks for user approval, then fans out aw-planner + aw-executor to ship PRs. Posts PR links back to each Linear ticket on completion. Triggers on "batch-linear-tickets", "batch analyze", "solve these tickets", "implement these tickets", "analyze tickets", "/batch-linear-tickets".
mthines/agent-skills · ★ 5 · AI & Automation · score 80
Install: claude install-skill mthines/agent-skills
# Batch Linear Ticket Resolver Orchestrate parallel analysis and resolution of multiple Linear tickets — bug fixes **and** feature work. This skill owns batch-level concerns: per-ticket type classification, parallel fan-out of the right analysis tools, cross-ticket correlation, the user-facing approval gate, and Linear writeback. Per-ticket investigation lives in `linear-ticket-investigator`. Per-ticket bug root-cause analysis lives in `holistic-analysis`. Per-ticket planning lives in `aw-planner`. Per-ticket implementation lives in `aw-executor`. This skill wires them together for batch operation. ## Architecture ```text Phase 1: Per-Ticket Analysis → per ticket: classify type → investigator → (holistic-analysis if bug) → confidence Phase 2: Cross-Ticket Correlation → detect shared root causes, file conflicts, duplicates Phase 3: Approval Gate → user picks tickets to ship Phase 4: Parallel Execution → fan out aw-planner + aw-executor for approved tickets Phase 5: Results & Linear Updates → status table + per-ticket PR comments ``` Phase 1's analysis runs **once per ticket**. Phase 4 dispatches `aw-planner` directly using the analysis from Phase 1. --- ## Prerequisites | Dependency | Purpose | Required? | |-----------|---------|-----------| | Linear MCP (`mcp__claude_ai_Linear__*` or `mcp__linear-server__*`) | Read tickets + labels, post PR comments | **Yes** | | `linear-ticket-investigator` agent | Per-ticket evidence extraction | **Yes** | | `holisti