AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Linear

skill-eric861129-skills-all-in-one-linear-cli-skill · by eric861129

Work with Linear issues via CLI - use this skill whenever the user asks about Linear issues, creating, updating, commenting on, or deleting issues, or checking issue status and details

No reviews yet
0 installs
42 views
0.0% view→install

Install

$ agentstack add skill-eric861129-skills-all-in-one-linear-cli-skill

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-eric861129-skills-all-in-one-linear-cli-skill)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Linear? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Linear Issue Management

Use this skill whenever the user mentions Linear or asks to work with issues.

Lightweight CLI to interact with Linear's issue tracking system. All commands run from the skill directory using ./linear.

Setup

Dependencies install automatically on first run. API key errors are self-explanatory.

Command Pattern

./linear   [arguments] [options]

Resources: issue, user, team, project

Commands

List Users

./linear user list

Returns: #

List Teams

./linear team list

Returns: #

List Projects

./linear project list

Returns: #

List Issues

./linear issue list [options]

Options:

  • --team - Filter by team ID
  • --assignee - Filter by user ID
  • --status - Filter by status name (case-sensitive)
  • --limit - Limit results (default: 50)

Returns: #

Examples:

./linear issue list --team abc123 --limit 10
./linear issue list --assignee def456 --status "In Progress"

View Issue

./linear issue view 

Arguments:

  • ` - Issue identifier (e.g., ENG-123`) or UUID

Returns full issue details including title, status, assignee, team, priority, labels, dates, description, and comments.

Create Issue

./linear issue create  [options]

Arguments:

  • `` - Issue title (multi-word titles auto-combined)

Options:

  • --team - Team ID (required)
  • --description - Issue description
  • --assignee - User ID
  • --priority - Priority (0=None, 1=Urgent, 2=High, 3=Medium, 4=Low)
  • --status - Initial status

Example:

./linear issue create "Fix login bug" --team abc123 --priority 2

Add Comment

./linear issue comment  

Multi-word text auto-combined. No quotes needed.

Update Issue

./linear issue update  [options]

Options:

  • --status - Update status
  • --assignee - Update assignee
  • --priority - Update priority
  • --title - Update title
  • --description - Update description

Can update multiple fields in one command.

Example:

./linear issue update ENG-123 --status "In Progress" --assignee abc123

Delete Issue

./linear issue delete 

Soft delete (moves to trash, recoverable).

Important Notes

  • Issue identifiers are case-insensitive (ENG-123 = eng-123)
  • Status names are case-sensitive ("In Progress" ≠ "in progress")
  • User/team IDs are UUIDs (get from list commands)
  • Issue keys format: - (e.g., ENG-123)
  • All commands support --json flag for machine-readable output
  • Use --help on any command for details

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.