linear-milestones-write
SolidCreate and update Linear project milestones via CLI (write operations)
AI & Automation 335 stars
29 forks Updated today
Install
Quality Score: 85/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
## Overview
CLI tools for creating and updating Linear project milestones. Requires `LINEAR_API_KEY` set in `<git-root>/.env` or exported in the environment.
## Prerequisites
- [bun](https://bun.sh) runtime installed
- `LINEAR_API_KEY` set in `<git-root>/.env` or environment
## Commands
### Create Milestone
```bash
bun .opencode/skill/linear-milestones-write/create-milestone.js --name "..." --project "..." [options]
```
**Required:**
- `--name <name>` - Milestone name
- `--project <name>` - Project name or UUID
**Options:**
- `--description <text>` - Milestone description
- `--target-date <date>` - Target date (YYYY-MM-DD)
- `--json` - Output as JSON
**Examples:**
```bash
bun .opencode/skill/linear-milestones-write/create-milestone.js --name "Alpha Release" --project "Mount Vernon"
bun .opencode/skill/linear-milestones-write/create-milestone.js --name "Beta" --project "Monticello" --target-date 2025-02-01
bun .opencode/skill/linear-milestones-write/create-milestone.js --name "GA" --project "Hermitage" --description "General availability release"
```
---
### Update Milestone
```bash
bun .opencode/skill/linear-milestones-write/update-milestone.js <milestone-id> [options]
```
**Arguments:**
- `milestone-id` - Milestone UUID
**Options:**
- `--name <name>` - New milestone name
- `--description <text>` - New description
- `--target-date <date>` - New target date (YYYY-MM-DD)
- `--json` - Output as JSON
**Examples:**
```bash
bun .opencode/skill/linear-milestones-write...
Details
- Author
- aiskillstore
- Repository
- aiskillstore/marketplace
- Created
- 5 months ago
- Last Updated
- today
- Language
- Python
- License
- None
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
linear-projects-write
Create and update Linear projects via CLI (write operations)
335 Updated today
aiskillstore AI & Automation Listed
linear-milestones-read
List Linear project milestones via CLI (read-only operations)
335 Updated today
aiskillstore AI & Automation Solid
linear-issues-write
Create and update Linear issues via CLI (write operations)
335 Updated today
aiskillstore AI & Automation Listed
linear-projects-read
List and get Linear projects via CLI (read-only operations)
335 Updated today
aiskillstore API & Backend Listed
linear
Manages Linear issues, teams, and projects via CLI. Lists issues, creates tasks, views details, links issues, and runs GraphQL queries. Must use for "my Linear issues", "create Linear task", "link issues in Linear", "Linear API query", or any Linear project management request.
335 Updated today
aiskillstore