linear-projects
Installation
SKILL.md
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 --force
Flags
| 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 |
Related skills
More from finesssee/linear-cli
linear-create
Create Linear issues. Use when creating bugs, tasks, or feature requests.
100linear-list
List and get Linear issues. Use when viewing issues, checking status, or fetching issue details.
98linear-search
Search Linear issues and projects. Use when finding issues, looking up bugs, or searching the backlog.
95linear-update
Update Linear issues. Use when changing status, priority, assignee, or labels.
95linear-workflow
Start/stop work on Linear issues. Use when beginning work, creating branches, or getting current issue context.
91linear-uploads
Download attachments and images from Linear issues. Use when fetching screenshots, images, or file attachments from Linear comments or descriptions.
88