원클릭으로
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