nesszer/linear-cli

linear-uploads

Download attachments and images from Linear issues. Use when fetching screenshots, images, or file attachments from Linear comments or descriptions.

First seen Feb 7, 2026

Installation

$ npx skills add nesszer/linear-cli --skill linear-uploads

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from nesszer/linear-cli · top by installs.

npx skills add nesszer/linear-cli

Browse all from nesszer/linear-cli

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 133
License LICENSE
Default branch master
Open issues 3
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash Read

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,425 B
  • docs SUMMARY.md 170 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 150 installs

SKILL.md

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 to temp directory
linear-cli up fetch "https://uploads.linear.app/..." -f /tmp/screenshot.png

Output to Stdout

# Pipe to other tools
linear-cli up fetch "https://uploads.linear.app/..." | base64

# Redirect to file
linear-cli up fetch "https://uploads.linear.app/..." > file.png

Finding Upload URLs

Upload URLs are found in:

  • Issue descriptions (linear-cli i get LIN-123 --output json)
  • Comments (linear-cli cm list LIN-123 --output json)

URL pattern: https://uploads.linear.app/{org}/{upload}/{filename}

View Images (AI Agents)

Since Claude is multimodal, download then read:

# 1. Download to temp file
linear-cli up fetch "https://uploads.linear.app/..." -f /tmp/screenshot.png

# 2. Use Read tool on the file
# Claude can view images directly

Tips

  • Requires valid LINEARAPIKEY
  • Use -f / --file to specify output filename
  • Without -f, outputs raw bytes to stdout
  • URLs must be from uploads.linear.app