ワンクリックで
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.