
Linear Attachments
- 118 installs
- 128 repo stars
- Updated July 24, 2026
- finesssee/linear-cli
Manage Linear issue attachments from the CLI - list, get, create, update, delete, and link URLs to issues.
About
Manages attachments on Linear issues via linear-cli, supporting list, get, create, update, delete, and URL-linking. A developer uses it to attach files or links to issues from the terminal.
- Shorthand att link-url to attach a URL to an issue
- JSON output option for parsing attachment lists
Linear Attachments by the numbers
- 118 all-time installs (skills.sh)
- Ranked #1,296 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/finesssee/linear-cli --skill linear-attachmentsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 118 |
|---|---|
| repo stars | ★ 128 |
| Last updated | July 24, 2026 |
| Repository | finesssee/linear-cli ↗ |
What it does
Manage Linear issue attachments from the CLI - list, get, create, update, delete, and link URLs to issues.
Files
Attachments
# List attachments on an issue
linear-cli att list SCW-123
linear-cli att list SCW-123 --output json
# Get attachment details
linear-cli att get ATTACHMENT_ID
# Create attachment
linear-cli att create SCW-123 -T "Design Doc" -u https://example.com
# Link a URL to an issue (shorthand)
linear-cli att link-url SCW-123 https://example.com
# Update attachment
linear-cli att update ATTACHMENT_ID -T "New Title"
# Delete attachment
linear-cli att delete ATTACHMENT_ID --forceFlags
| Flag | Purpose |
|---|---|
-T TITLE | Attachment title |
-u URL | Attachment URL |
--output json | JSON output |
--force | Skip delete confirmation |
Exit Codes
0=Success, 1=Error, 2=Not found, 3=Auth error