
Linear Milestones
- 118 installs
- 128 repo stars
- Updated July 24, 2026
- finesssee/linear-cli
Manage Linear project milestones from the CLI - list, get, create, and update milestones with target dates.
About
Manages project milestones in Linear via linear-cli, supporting list, get, create, and update with target dates. A developer uses it to plan project deliverables from the terminal.
- Create milestones against a project with --target-date
- Relative target dates such as +2w on update
Linear Milestones 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-milestonesAdd 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 project milestones from the CLI - list, get, create, and update milestones with target dates.
Files
Milestones
# List milestones for a project
linear-cli ms list -p "My Project"
linear-cli ms list -p "My Project" --output json
# Get milestone details
linear-cli ms get MILESTONE_ID
# Create a milestone
linear-cli ms create "Beta Release" -p "My Project"
linear-cli ms create "GA" -p PROJ --target-date 2025-06-01
# Update a milestone
linear-cli ms update MILESTONE_ID --target-date +2w
linear-cli ms update MILESTONE_ID --name "Renamed"
# Delete a milestone
linear-cli ms delete MILESTONE_ID --forceFlags
| Flag | Purpose |
|---|---|
-p PROJECT | Project name/ID |
--target-date DATE | Target date (YYYY-MM-DD or +Nw) |
--name NAME | Milestone name |
--output json | JSON output |
Exit Codes
0=Success, 1=Error, 2=Not found, 3=Auth error