← スキル一覧に戻る

linear-issues
by Finesssee
A powerful CLI for Linear.app built with Rust
⭐ 10🍴 4📅 2026年1月22日
SKILL.md
name: linear-issues description: Manage Linear issues - list, create, update, start/stop work. Use when working with Linear issues, viewing tasks, creating bugs, or updating issue status. allowed-tools: Bash
Linear Issues
Manage Linear.app issues using the linear-cli command-line tool.
List Issues
# List all issues
linear-cli i list
# Filter by team
linear-cli i list -t Engineering
# Filter by status
linear-cli i list -s "In Progress"
# Get JSON output (for parsing)
linear-cli i list --output json
View Issue Details
# View issue details
linear-cli i get LIN-123
# Get as JSON
linear-cli i get LIN-123 --output json
# Batch fetch multiple issues
linear-cli i get LIN-1 LIN-2 LIN-3 --output json
Create Issues
# Create issue (priority: 1=urgent, 2=high, 3=medium, 4=low)
linear-cli i create "Bug: Login fails" -t Engineering -p 2
# Create with status
linear-cli i create "Feature request" -t ENG -s "Backlog"
# Preview without creating (dry run)
linear-cli i create "Test issue" -t ENG --dry-run
# Get just the created ID (for chaining)
linear-cli i create "Bug fix" -t ENG --id-only
# Read description from stdin
cat description.md | linear-cli i create "Title" -t ENG -d -
Update Issues
# Update status
linear-cli i update LIN-123 -s Done
# Update priority
linear-cli i update LIN-123 -p 1
# Get just the ID on success
linear-cli i update LIN-123 -s Done --id-only
Start/Stop Work
# Start working (assigns to you, sets In Progress, creates git branch)
linear-cli i start LIN-123 --checkout
# Stop working (unassigns, resets status)
linear-cli i stop LIN-123
Comments
# List comments
linear-cli cm list LIN-123
# Get comments as JSON
linear-cli cm list LIN-123 --output json
# Add comment
linear-cli cm create LIN-123 -b "Fixed in latest commit"
Context Detection
# Get current issue from git branch name
linear-cli context
# Get with full issue details as JSON
linear-cli context --output json
Agent-Friendly Options
| Flag | Purpose |
|---|---|
--output json | Machine-readable JSON output |
--quiet / -q | Suppress decorative output |
--id-only | Only output created/updated ID |
--dry-run | Preview without executing |
Exit Codes
0= Success1= General error2= Not found3= Auth error
Tips
- Use
--output jsonfor machine-readable output - Short alias:
ifor issues,cmfor comments,ctxfor context - Run
linear-cli i --helpfor all options
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です