一键导入
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