From sundial-org-awesome-openclaw-skills-4
CLI for Linear.app issue tracking: list, create, update, search issues, comments, documents, cycles, and projects. Returns JSON for LLM agents.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:linearisThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
CLI for [Linear.app](https://linear.app) with JSON output, designed for LLM agents.
CLI for Linear.app with JSON output, designed for LLM agents.
npm install -g linearis
Auth (one of):
echo "lin_api_..." > ~/.linear_api_token (recommended)export LINEAR_API_TOKEN="lin_api_..."--api-token <token> flagGet API key: Linear Settings → Security & Access → Personal API keys
linearis issues list -l 20 # List recent issues
linearis issues list -l 10 --team WHO # Filter by team
linearis issues search "bug" # Full-text search
linearis issues read ABC-123 # Get issue details
linearis issues create --title "Fix bug" --team WHO --priority 2
linearis issues update ABC-123 --status "Done"
linearis issues update ABC-123 --title "New title" --assignee user123
linearis issues update ABC-123 --labels "Bug,Critical" --label-by adding
linearis issues update ABC-123 --parent-ticket EPIC-100 # Set parent
linearis comments create ABC-123 --body "Fixed in PR #456"
linearis documents list
linearis documents list --project "Backend"
linearis documents create --title "Spec" --content "# Overview..."
linearis documents read <doc-id>
linearis documents update <doc-id> --content "Updated"
linearis documents delete <doc-id>
linearis embeds upload ./screenshot.png
linearis embeds download "<url>" --output ./file.png
linearis teams list
linearis users list --active
linearis projects list
linearis cycles list --team WHO --active
linearis usage # Complete command reference (~1k tokens)
All commands return JSON by default. Pipe to jq for processing:
linearis issues list -l 5 | jq '.[].identifier'
npx claudepluginhub sundial-org/awesome-openclaw-skillsManages Linear issues, projects, and team workflows via MCP. Use when triaging tickets, sprint planning, or updating bug reports.
Manages Linear.app work from the CLI using the linearis tool: issues, projects, cycles, milestones, initiatives, documents, labels, teams, users, and comments with JSON output.
Manages Linear.app issues via Linearis CLI with JSON output: create, read, update, search issues; list teams/projects/cycles/labels/users; add comments.