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