linear-milestones-write

Solid

Create and update Linear project milestones via CLI (write operations)

AI & Automation 335 stars 29 forks Updated today

Install

View on GitHub

Quality Score: 85/100

Stars 20%
84
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
0
Description 5%
100

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