
Linear Projects
- 144 installs
- 128 repo stars
- Updated July 24, 2026
- finesssee/linear-cli
Manage Linear projects from the CLI - full CRUD with labels, members, icons, dates, priority, saved views, and archive.
About
Manages Linear projects via linear-cli with full CRUD, including labels, members, icons, dates, priority, and archiving. A developer uses it to create and maintain projects from the terminal.
- Create projects with icon, priority, and start/target dates
- p open launches a project in the browser; --view applies saved views
Linear Projects by the numbers
- 144 all-time installs (skills.sh)
- Ranked #1,199 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-projectsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 144 |
|---|---|
| repo stars | ★ 128 |
| Last updated | July 24, 2026 |
| Repository | finesssee/linear-cli ↗ |
What it does
Manage Linear projects from the CLI - full CRUD with labels, members, icons, dates, priority, saved views, and archive.
Files
Projects
# List projects
linear-cli p list # All projects
linear-cli p list --archived # Include archived
linear-cli p list --view "Active" # Apply saved view
# Get project
linear-cli p get PROJECT_ID
linear-cli p open PROJECT_ID # Open in browser
# Create project (full API fields)
linear-cli p create "Q1 Roadmap" -t ENG
linear-cli p create "Feature" -t ENG --icon "🚀" --priority 1 \
--start-date 2025-01-01 --target-date 2025-03-31 \
--lead USER_ID --status planned --content "Project description"
# Update project
linear-cli p update PROJECT_ID --name "New Name" --status completed
linear-cli p update PROJECT_ID --lead USER_ID --priority 2
# Archive/unarchive
linear-cli p archive PROJECT_ID
linear-cli p unarchive PROJECT_ID
# Labels
linear-cli p add-labels PROJECT_ID -l label1 -l label2
linear-cli p remove-labels PROJECT_ID -l label1
linear-cli p set-labels PROJECT_ID -l label1 -l label2
# Members
linear-cli p members PROJECT_ID
# Delete
linear-cli p delete PROJECT_ID --forceFlags
| Flag | Purpose |
|---|---|
--icon EMOJI | Project icon |
--priority N | Priority (1=urgent, 4=low) |
--start-date DATE | Start date |
--target-date DATE | Target date |
--lead USER | Project lead |
--status STATE | Project status |
--id-only | Return ID only |
--output json | JSON output |