← Back to list

linear-uploads
by kvnxiao
My multiplatform dotfiles
⭐ 0🍴 0📅 Jan 24, 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-cli:*)
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}
When to Use Each Mode
Use -f (file) when Claude needs 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
Tips
- Requires valid Linear API key
- Use
-fto specify output filename - Without
-f, outputs raw bytes to stdout - Claude cannot interpret raw stdout bytes—always use
-f+ Read tool to view images
Score
Total Score
65/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

