
Linear Project Updates
- 119 installs
- 128 repo stars
- Updated July 24, 2026
- finesssee/linear-cli
Post and view Linear project health updates from the CLI - list, get, create, and archive updates with a health status.
About
Manages Linear project status updates via linear-cli, supporting list, get, create with a health level, and archive. A developer or lead uses it to post or read project health updates from the terminal.
- Create updates with a body and --health such as atRisk
- List and get updates per project with JSON output
Linear Project Updates by the numbers
- 119 all-time installs (skills.sh)
- Ranked #1,290 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-project-updatesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 119 |
|---|---|
| repo stars | ★ 128 |
| Last updated | July 24, 2026 |
| Repository | finesssee/linear-cli ↗ |
What it does
Post and view Linear project health updates from the CLI - list, get, create, and archive updates with a health status.
Files
Project Updates
# List updates for a project
linear-cli pu list "My Project"
linear-cli pu list "My Project" --output json
# Get update details
linear-cli pu get UPDATE_ID
# Create a project update
linear-cli pu create "My Project" -b "On track this sprint"
linear-cli pu create "My Project" -b "Blocked on API" --health atRisk
# Update an existing update
linear-cli pu update UPDATE_ID -b "Updated status"
# Archive/unarchive
linear-cli pu archive UPDATE_ID
linear-cli pu unarchive UPDATE_IDHealth Status
| Value | Meaning |
|---|---|
onTrack | Project is on track (green) |
atRisk | Project is at risk (yellow) |
offTrack | Project is off track (red) |
Flags
| Flag | Purpose |
|---|---|
-b BODY | Update body text |
--health STATUS | Health status |
--output json | JSON output |
Exit Codes
0=Success, 1=Error, 2=Not found, 3=Auth error