← Back to list

linear-uploads
by Finesssee
A powerful CLI for Linear.app built with Rust
⭐ 10🍴 4📅 Jan 22, 2026
SKILL.md
name: linear-uploads description: Download attachments and images from Linear issues. Use when fetching screenshots, images, or file attachments from Linear comments or descriptions. allowed-tools: Bash
Linear Uploads
Download attachments and images from Linear issues using linear-cli.
Download to File
# Download image/attachment to file
linear-cli up fetch "https://uploads.linear.app/..." -f image.png
# Download screenshot
linear-cli up fetch "https://uploads.linear.app/abc/def/screenshot.png" -f /tmp/screenshot.png
Output to Stdout
# Pipe to other tools
linear-cli up fetch "https://uploads.linear.app/..." | base64
# Pipe to file
linear-cli up fetch "https://uploads.linear.app/..." > file.png
Finding Upload URLs
Upload URLs are found in:
- Issue descriptions
- Comments (use
linear-cli cm list ISSUE_ID --output json)
URLs follow pattern: https://uploads.linear.app/{org}/{upload}/{filename}
Tips
- Requires valid Linear API key
- Use
-f/--fileto specify output filename - Without
-f, outputs raw bytes to stdout (for piping)
When to Use Each Mode
Use -f (file) when you need to view the image:
# Download to /tmp, then use Read tool to view
linear-cli up fetch "https://uploads.linear.app/..." -f /tmp/screenshot.png
# Then: Read tool on /tmp/screenshot.png (Claude is multimodal)
Use stdout when piping to other CLI tools:
# Pipe to base64, imagemagick, etc.
linear-cli up fetch "https://uploads.linear.app/..." | base64
Score
Total Score
60/100
Based on repository quality metrics
✓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
Reviews
💬
Reviews coming soon