What problem does it solve?
This skill enables CLI-driven management of Linear issues through the GraphQL API, enabling rapid triage, updates, and collaboration without leaving your terminal.
Core Features & Use Cases
- List and filter issues by state or assignee to quickly surface the right items.
- Get details, update priorities, and change states on issues to reflect progress.
- Comment and search for context, speeding up backlog grooming and sprint planning.
- Use Case: A developer triages Backlog items, assigns them to teammates, and tracks progress from a single command line.
Quick Start
To start using this skill, run the following commands:
- npx tsx scripts/linear.ts list --state "Backlog"
- npx tsx scripts/linear.ts get <issue-id>
- npx tsx scripts/linear.ts update <issue-id> --priority 2 --state "In Progress"
- npx tsx scripts/linear.ts comment <issue-id> "Context update"
- npx tsx scripts/linear.ts search "error in login"