AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Ticket Planning Workflow

skill-bradtaylorsf-alphaagent-team-ticket-planning-workflow · by bradtaylorsf

Patterns for creating well-researched Linear tickets with codebase context.

No reviews yet
0 installs
14 views
0.0% view→install

Install

$ agentstack add skill-bradtaylorsf-alphaagent-team-ticket-planning-workflow

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-bradtaylorsf-alphaagent-team-ticket-planning-workflow)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Ticket Planning Workflow? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Ticket Planning Workflow Skill

Transform Linear tickets into actionable implementation plans through systematic investigation and collaborative planning.

Purpose

Transform uncertainty into clarity by:

  • Gathering complete ticket context from Linear
  • Exploring relevant codebase sections
  • Identifying patterns and conventions
  • Asking targeted clarifying questions
  • Creating detailed, actionable implementation plans

Planning Methodology

Phase 1: Ticket Intelligence Gathering

Fetch and Parse Ticket
# Get complete ticket information
mcp__linear__get_issue --id "$ticket_id"
Extract Structured Information

Parse from ticket:

  • Type: Feature/Bug/Chore (from labels)
  • Priority: Urgency level
  • Acceptance Criteria: From description checkboxes
  • Related Context: Parent tickets, dependencies, blockers
  • Discussion Points: Key decisions from comments
Identify Unclear Items

Flag for clarification:

  • Ambiguous requirements
  • Missing acceptance criteria
  • Architectural decisions needed
  • Scope boundaries unclear

Phase 2: Deep Codebase Exploration

Step 1: Broad Search
# Find existing related code
rg "keyword" --type ts --files-with-matches

# Find similar implementations
rg "pattern-keyword" --type ts -A 5
Step 2: Understand Architecture

For each relevant file:

  • Document current implementation
  • Note patterns used
  • Identify extension points
  • Check for project-specific requirements
Step 3: Find Patterns to Follow

Extract from codebase:

  • Error handling: Common patterns
  • Entity pattern: Data structures
  • Route pattern: API organization
  • Service pattern: Business logic organization
Step 4: Check Project Guidelines
# Review CLAUDE.md for requirements
cat CLAUDE.md | grep -A 10 "relevant-section"

Phase 3: Collaborative Clarification

Question Framework

Present 2-4 questions at a time with:

  • Context: What you found in codebase
  • Options: Concrete choices (A/B/C)
  • Recommendation: Your suggested approach
  • Trade-offs: Pros/cons of each

Format:

### Question: [Topic]

**Context**: [What codebase exploration revealed]

**Options**:
A) **[Option Name]** - [Description]
   - Pros: [Benefits]
   - Cons: [Drawbacks]

B) **[Option Name]** - [Description]
   - Pros: [Benefits]
   - Cons: [Drawbacks]

**Recommendation**: Option [X] because [reasoning]

**Your choice?** (A/B)

Phase 4: Implementation Plan Generation

High-Level Overview
# Implementation Plan: {ticket-id} - {title}

## Overview
[1-2 sentence summary]

## Approach
[3-5 bullet points on technical approach]

## Decisions
[List of decisions made during clarification]

## Complexity
[Simple/Moderate/Complex with justification]
Implementation Steps

For each step:

### Step N: [Title] (Est. complexity)
**What**: [Brief description]
**File(s)**: [Paths]

**Key points**:
- [Critical implementation detail]
- [Pattern to follow]

**Dependencies**: Step [X]
**Testing**: [How to verify]
Testing Strategy

Define:

  • Unit tests: Coverage goals, test categories
  • Integration tests: Key scenarios
  • Manual testing: Verification checklist
Risk Assessment

| Risk | Impact | Mitigation | |------|--------|------------| | [Risk] | High/Med/Low | [Strategy] |

Success Criteria

Checklist covering:

  • [ ] Functional requirements
  • [ ] Technical requirements
  • [ ] Testing requirements
  • [ ] Documentation requirements

Phase 5: Git Strategy

## Git Strategy

**Branch**: {type}/{ticket-id}-{sanitized-title}
**Base**: main or staging

**Commits** (logical units):
1. `feat({ticket}): [description]`
2. `test({ticket}): [description]`
3. `docs({ticket}): [description]`

Integration

Used by agents:

  • linear-ticket-planner - Autonomous ticket planning
  • linear-ticket-creator - Ticket creation with exploration

Quality Checklist

Before completing plan:

  • [ ] Ticket requirements fully understood
  • [ ] Codebase exploration thorough
  • [ ] All clarifying questions asked
  • [ ] Implementation steps are actionable
  • [ ] Testing strategy is comprehensive
  • [ ] Risks identified and mitigated
  • [ ] Success criteria clear and measurable
  • [ ] Git strategy defined

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.