🎯

linear

🎯Skill

from joannis/claude-skills

VibeIndex|
What it does

Manages Linear issue tracking via CLI, enabling listing, viewing, updating, and linking issues across different states and teams.

πŸ“¦

Part of

joannis/claude-skills(11 items)

linear

Installation

πŸ“‹ No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add joannis/claude-skills --skill linear
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

'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).'

Overview

# 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 state

LINEAR_ISSUE_SORT=priority linear issue list --team WDY --no-pager -s started -s unstarted

# All issues including completed/canceled

LINEAR_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 issues

LINEAR_ISSUE_SORT=priority linear issue list --team WDY --no-pager -s started -s unstarted -s backlog

# Cross-reference with recent commits

git log --oneline -30 --all

```

Triage New Issues

```bash

# View issues in triage

LINEAR_ISSUE_SORT=priority linear issue list --team WDY --no-pager -s triage

```

More from this repository10

🎯
hummingbird🎯Skill

I apologize, but I cannot generate a description without seeing the actual code or details about the "hummingbird" skill. Could you provide more context or share the code/repository details so I ca...

🎯
valkey🎯Skill

Provides Swift developers with a comprehensive Valkey/Redis client library for async key-value operations, cluster support, and advanced data structure management.

🎯
swift🎯Skill

Provides expert Swift development guidance, covering best practices, testing, logging, OpenTelemetry, platform-specific patterns, and memory-safe API design.

🎯
swift-library-design🎯Skill

Helps developers design Swift libraries with best practices, architectural guidance, and code generation recommendations.

🎯
swift-concurrency🎯Skill

Provides expert guidance on Swift Concurrency, helping developers implement safe async/await patterns, resolve thread safety issues, and navigate structured concurrency challenges.

🎯
postgres🎯Skill

Enables Swift developers to interact with PostgreSQL databases using async/await, type-safe queries, connection pooling, and prepared statements via the postgres-nio library.

🎯
database-driver-design🎯Skill

Designs robust Swift database client libraries with safe, type-safe protocols, connection management, and NIO integration for high-performance data access.

🎯
swift-nio🎯Skill

Provides expert guidance on SwiftNIO networking, helping developers build performant, safe network applications with event-driven patterns and Swift Concurrency best practices.

🎯
wendy-contributing🎯Skill

Contributes code to a project by generating and suggesting improvements based on the current codebase and context.

🎯
wendy🎯Skill

I apologize, but I cannot generate a description without seeing the actual code or context for the "wendy" skill. Could you provide more details about what the skill does, or share the relevant cod...