用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/twanahc/claude-linear-skill --skill linear-triage命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when working with Linear issues — browse backlog, triage, plan implementations, propose improvements, and execute. Orchestrates subagents for context-efficient issue processing.
Execute an implementation plan for a single Linear issue — write code, run checks, and update Linear with results.
Create a detailed implementation plan for a single Linear issue by analyzing the issue and the project codebase.
基于 SOC 职业分类
正在显示 SKILL.md
| name | linear-triage |
| description | Browse and filter Linear issues to help the user pick which ones to work on next. |
Browse the user's Linear backlog, filter by team/status/label/assignee, and help them select issues to work on. Return selected issues with full context.
bun ~/.claude/skills/linear/scripts/linear-api.ts <command>
source ~/.bashrc && bun ~/.claude/skills/linear/scripts/linear-api.ts list-teams
Present teams to the user. Ask which team to focus on (or all).
Before browsing available work, check what's currently being worked on:
source ~/.bashrc && bun ~/.claude/skills/linear/scripts/linear-api.ts list-issues --team <KEY> --status "In Progress"
Present these separately so the user knows what other agents are already handling:
Currently in progress (other agents may be working on these):
| ID | Title | Assignee |
|---------|------------------------------|------------|
| BLU-38 | Apparel in character studio | — |
| BLU-15 | Character save toast | — |
Do NOT suggest "In Progress" issues for new work. They are already being handled by another agent or terminal.
Fetch unstarted issues:
source ~/.bashrc && bun ~/.claude/skills/linear/scripts/linear-api.ts list-issues --team <KEY> --status "Todo"
source ~/.bashrc && bun ~/.claude/skills/linear/scripts/linear-api.ts list-issues --team <KEY> --status "Backlog"
The user can refine with additional filters:
--assignee "Name"--label "Bug" / "Feature" etc.--limit 50If the user wants to search:
source ~/.bashrc && bun ~/.claude/skills/linear/scripts/linear-api.ts search-issues "auth redirect bug"
Format available issues as a clean table for the user:
Available to work on:
| # | ID | Title | Priority | Labels |
|----|---------|------------------------------|----------|------------|
| 1 | BLU-42 | Fix auth redirect loop | Urgent | Bug |
| 2 | BLU-57 | Add dark mode toggle | Medium | Feature |
| 3 | BLU-63 | Update onboarding flow | High | UX |
Ask the user which issues to work on. They can:
For each selected issue, fetch complete details:
source ~/.bashrc && bun ~/.claude/skills/linear/scripts/linear-api.ts get-issue <IDENTIFIER>
This returns: title, description, comments, relations, parent/children, priority, labels, assignee, dates, URL.
Return the selected issues with their full details to the orchestrator. Include:
The orchestrator will use this to spawn planning subagents.