<< All versions
Skill v1.0.0
currentCERTIFIED92/100joannis/claude-skills/linear
── Details ─────────────────────────────────────────
PublishedFebruary 24, 2026 at 03:00 PM
Content Hashsha256:5d13c90e7da26bf2...
Git SHAseed-linear
── Files ───────────────────────────────────────────
Files (1 file, 2.1 KB)
SKILL.md2.1 KBactive
SKILL.md · 95 lines · 2.1 KB
name: linear description: 'Linear CLI for issue tracking and project management. Use when developers mention: (1) Linear issues or tickets, (2) issue tracking or task management, (3) WDY team issues, (4) closing, updating, or triaging tickets, (5) linking PRs to issues, (6) issue states (triage, backlog, started, completed).'
Linear CLI
Overview
The Linear CLI (linear) provides command-line access to Linear issue tracking. Installed via Homebrew at /opt/homebrew/bin/linear.
Required Configuration
Commands require LINEAR_ISSUE_SORT to be set:
bash
export LINEAR_ISSUE_SORT=priority
Without this, most commands will fail.
Team
Use linear team list to discover available teams.
Issue States
| State | Description | |
|---|---|---|
triage | New issues needing triage | |
backlog | Prioritized but not started | |
unstarted | Ready to start (Todo) | |
started | In Progress | |
completed | Done | |
canceled | Canceled/Won't do |
Common Commands
List Issues
bash
# Active issues (excludes completed/canceled)LINEAR_ISSUE_SORT=priority linear issue list --team WDY --no-pager# Filter by stateLINEAR_ISSUE_SORT=priority linear issue list --team WDY --no-pager -s started -s unstarted# All issues including completed/canceledLINEAR_ISSUE_SORT=priority linear issue list --team WDY --no-pager --all-states
View Issue
bash
LINEAR_ISSUE_SORT=priority linear issue view WDY-123 --no-pager
Update Issue Status
bash
linear issue update WDY-123 --state "Done"linear issue update WDY-123 --state "In Progress"
Create PR Linked to Issue
bash
linear issue pr WDY-123
List Teams
bash
linear team list
Workflows
Check Issues to Close
bash
# List active issuesLINEAR_ISSUE_SORT=priority linear issue list --team WDY --no-pager -s started -s unstarted -s backlog# Cross-reference with recent commitsgit log --oneline -30 --all
Triage New Issues
bash
# View issues in triageLINEAR_ISSUE_SORT=priority linear issue list --team WDY --no-pager -s triage