linear

Installation
SKILL.md

Linear

Manage Linear issues and projects via the GraphQL API.

Environment Variables

List issues

curl -s -X POST -H "Authorization: $LINEAR_API_KEY" \
  -H "Content-Type: application/json" \
  "https://api.linear.app/graphql" \
  -d '{"query":"{ issues(first: 20) { nodes { id title state { name } assignee { name } priority } } }"}' | jq '.data.issues.nodes[] | {id, title, state: .state.name, assignee: .assignee.name, priority}'

Create issue

Installs
1
First Seen
Mar 1, 2026
linear — thinkfleetai/thinkfleet-engine