一键导入
linear
Interact with Linear using the `linear` CLI for managing issues, projects, and teams.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Interact with Linear using the `linear` CLI for managing issues, projects, and teams.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Fetch and read web pages using Lightpanda headless browser, or automate full browser interactions using agent-browser. Use when you need to read articles, documentation, any web content, or interact with web pages.
Fetch transcripts from YouTube videos for summarization and analysis.
Create an implementation spec and/or execution plan for a task. Self-discovers context before asking questions, then writes to docs/specs/ and/or docs/exec-plans/active/.
Grilling session that challenges a plan against the existing domain model, sharpens terminology, and updates documentation (`CONTEXT.md`, `CONTEXT-MAP.md`, ADRs) inline as decisions crystallize. Use when the user wants to stress-test a plan against the repo's language and documented decisions.
Find deepening opportunities in a codebase, informed by the domain language in CONTEXT.md and the decisions in docs/adr/. Use when the user wants to improve architecture, find refactoring opportunities, consolidate tightly-coupled modules, or make a codebase more testable and AI-navigable.
Review code changes, diffs, or files for correctness, architecture, security, quality, testing, and dependency risks.
| name | linear |
| description | Interact with Linear using the `linear` CLI for managing issues, projects, and teams. |
Use the linear CLI to interact with Linear. Issue IDs use the format {{team}}-123. Run linear <command> --help for full flag details.
# issues — --team and --sort are required for list
linear issue list --team {{team}} --sort priority --no-pager
linear issue view {{team}}-123 --json --no-pager
linear issue view {{team}}-123 --json --no-pager | jq '{identifier, title, state, url}'
linear issue create --title "..." --description "..." --team {{team}} --no-interactive
linear issue update {{team}}-123 --state "In Progress"
linear issue delete {{team}}-123 --confirm
linear issue comment add {{team}}-123 --body "..."
# teams, projects, labels
linear team list
linear project list
linear label list --json | jq '.[].name'
--team is required when not inside a repo whose directory name matches a team key.--sort (priority or manual) is required for issue list — there is no default.--no-pager on list/view commands to avoid hanging on a pager.--no-interactive on create to skip prompts.--confirm on delete to skip interactive confirmation.--json (supported on issue view and label list) and pipe to jq to keep context small.1 (urgent), 2 (high), 3 (medium), 4 (low).{{team_lower}}-259 for {{team}}-259). The CLI auto-detects the linked issue from the branch name for commands like issue view, issue update, and comment add.