ワンクリックで
linear-create
Create Linear issues. Use when creating bugs, tasks, or feature requests.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create Linear issues. Use when creating bugs, tasks, or feature requests.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Execute raw GraphQL queries and mutations against the Linear API. Use for advanced operations not covered by other commands.
Manage issue attachments - link URLs, create, update, delete. Use when attaching files or links to issues.
Manage issue comments - list, create, update, delete. Use when reading or posting comments on issues.
Configure linear-cli - auth (API key + OAuth), workspaces, diagnostics, setup wizard.
Manage Linear sprint cycles - list, create, update, delete, complete. Use when managing cycles.
Mark the current branch's issue as Done. Use as a quick shortcut to close the issue you're working on.
| name | linear-create |
| description | Create Linear issues. Use when creating bugs, tasks, or feature requests. |
| allowed-tools | Bash |
# Basic
linear-cli i create "Title" -t TEAM
# With options
linear-cli i create "Bug" -t ENG -p 1 # Priority (1=urgent)
linear-cli i create "Task" -t ENG -a me # Assign to self
linear-cli i create "Fix" -t ENG -l bug # With label
linear-cli i create "Due" -t ENG --due +3d # Due date
# Agent patterns
linear-cli i create "Bug" -t ENG --id-only # Return ID only
linear-cli i create "Test" -t ENG --dry-run # Preview
cat desc.md | linear-cli i create "Title" -t ENG -d -
1=Urgent, 2=High, 3=Normal, 4=Low
today, tomorrow, +3d, +2w, monday, eow, eom
| Flag | Purpose |
|---|---|
--id-only | Return ID only |
--dry-run | Preview |
--quiet | No output |