ワンクリックで
linear-milestones-write
Create and update Linear project milestones via CLI (write operations)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create and update Linear project milestones via CLI (write operations)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generate a project tree annotated with context.md notes to help future sessions, (auto-call at session start)
Generate a project tree annotated with context.md notes to help future sessions, (auto-call at session start)
Clarify requirements before implementing. Do not use automatically, only when invoked explicitly.
Automated PR code review with multi-agent analysis
Capture solved problems as searchable documentation with pattern detection. This skill auto-triggers when users confirm a fix worked ("that worked", "it's fixed", "working now") or manually via /compound command.
GitHub PR utilities for code review workflows
| name | linear-milestones-write |
| description | Create and update Linear project milestones via CLI (write operations) |
| version | 1.0.0 |
| license | MIT |
| compatibility | opencode |
CLI tools for creating and updating Linear project milestones. Requires LINEAR_API_KEY set in <git-root>/.env or exported in the environment.
LINEAR_API_KEY set in <git-root>/.env or environmentbun .opencode/skill/linear-milestones-write/create-milestone.js --name "..." --project "..." [options]
Required:
--name <name> - Milestone name--project <name> - Project name or UUIDOptions:
--description <text> - Milestone description--target-date <date> - Target date (YYYY-MM-DD)--json - Output as JSONExamples:
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"
bun .opencode/skill/linear-milestones-write/update-milestone.js <milestone-id> [options]
Arguments:
milestone-id - Milestone UUIDOptions:
--name <name> - New milestone name--description <text> - New description--target-date <date> - New target date (YYYY-MM-DD)--json - Output as JSONExamples:
bun .opencode/skill/linear-milestones-write/update-milestone.js abc123 --name "Beta Release"
bun .opencode/skill/linear-milestones-write/update-milestone.js abc123 --target-date 2025-03-15
bun .opencode/skill/linear-milestones-write/update-milestone.js abc123 --name "v1.0" --target-date 2025-04-01
list-milestones.js to find them)--json flag for machine-readable output--help for detailed usage information