linear-ticket-analysis
Methodology for analyzing Linear tickets to find duplicates, check relevance, and determine if issues have been fixed.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Methodology for analyzing Linear tickets to find duplicates, check relevance, and determine if issues have been fixed.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Patterns for generating Gamma.app-compatible slide deck markdown from GitHub data for customer-facing account management presentations
Patterns for generating Gamma.app-compatible slide deck markdown from Linear data for customer-facing account management presentations
Patterns and templates for creating sprint/project retrospective reports from Jira data with time tracking and blocker analysis.
Multi-platform Electron build configuration - esbuild bundling, electron-builder setup, and distribution
Integrate external CLI tools (Claude, Node, npx) in Electron apps with proper PATH handling
Handle native Node.js modules in Electron - better-sqlite3, sharp, keytar packaging patterns
| name | linear-ticket-analysis |
| description | Methodology for analyzing Linear tickets to find duplicates, check relevance, and determine if issues have been fixed. |
| user-invocable | false |
Methodology for analyzing Linear tickets to find duplicates, check relevance, and determine if issues have been fixed.
From each Linear ticket, identify:
Search for potential duplicates:
mcp__claude_ai_Linear__list_issues with:
query="{keywords}"
team="{team_key}"
limit=20
Duplicate indicators:
NOT duplicates:
For bugs, search for fixes:
# Search git history for ticket references
git log --oneline --all --since="2025-01-01" --grep="{ticket_id}"
# Search for keyword-related commits
git log --oneline --all --since="2025-01-01" --grep="{keyword}"
# Check if error pattern still exists
rg "{error_pattern}" --type ts
For features, check implementation status:
# Search for component/feature implementation
rg "{feature_keyword}" --type ts
# Check for related PRs
gh pr list --state merged \
--search "{ticket_id}" --json number,title,mergedAt
When closing tickets, use appropriate status:
Done - For fixed/implemented issuesCanceled - For duplicates, outdated, won't fixFor each analyzed ticket:
TICKET: {ticket_id}
TITLE: {title}
AGE: {months} months
STATUS: {current_status}
LABELS: {labels}
ANALYSIS:
- Duplicate check: {result}
- Codebase check: {result}
- Relevance: {assessment}
RECOMMENDATION: {classification}
REASON: {brief explanation}
ACTION: {what to do}
Used by:
linear-ticket-triager agent/linear-triage command