skills$openclaw/linear
emrekilinc2.9k

by emrekilinc

linear – OpenClaw Skill

linear is an OpenClaw Skills integration for planning workflows. Interact with Linear for issue tracking. Use when creating, updating, listing, or searching issues. Supports viewing assigned issues, changing status, adding comments, and managing tasks.

2.9k stars9.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026planning

Skill Snapshot

namelinear
descriptionInteract with Linear for issue tracking. Use when creating, updating, listing, or searching issues. Supports viewing assigned issues, changing status, adding comments, and managing tasks. OpenClaw Skills integration.
owneremrekilinc
repositoryemrekilinc/linear-issues
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @emrekilinc/linear-issues
last updatedFeb 7, 2026

Maintainer

emrekilinc

emrekilinc

Maintains linear in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
references
api-examples.md
1.9 KB
scripts
linear.sh
9.4 KB
_meta.json
282 B
package-lock.json
15.0 KB
package.json
694 B
README.md
1.6 KB
SKILL.md
1.6 KB
SKILL.md

name: linear description: Interact with Linear for issue tracking. Use when creating, updating, listing, or searching issues. Supports viewing assigned issues, changing status, adding comments, and managing tasks.

Linear

Manage Linear issues via scripts/linear.sh.

Setup

Store API key in ~/.clawdbot/credentials/linear.json:

{"apiKey": "lin_api_..."}

Commands

# List my assigned issues
scripts/linear.sh issues --mine

# List team issues
scripts/linear.sh issues --team TEAM_ID

# Get issue details
scripts/linear.sh get CLP-123

# Search issues
scripts/linear.sh search "auth bug"

# Create issue
scripts/linear.sh create --team TEAM_ID --title "Bug: login fails" --description "Details"

# Update issue (status, title, assignee, priority)
scripts/linear.sh update CLP-123 --state STATE_ID

# Add comment
scripts/linear.sh comment CLP-123 "Fixed in PR #42"

# List teams (to get TEAM_ID)
scripts/linear.sh teams

# List states (to get STATE_ID)
scripts/linear.sh states

# List users (to get assignee ID)
scripts/linear.sh users

Use --json flag for raw API output: scripts/linear.sh --json issues --mine

Workflow Examples

Create and assign a bug:

# Find team ID
scripts/linear.sh teams
# Create with priority 2 (high)
scripts/linear.sh create --team abc123 --title "Critical: API down" --priority 2

Move issue to In Progress:

# Find state ID
scripts/linear.sh states
# Update
scripts/linear.sh update CLP-45 --state xyz789

See references/api-examples.md for GraphQL details.

README.md

Linear Skill for Clawdbot

A Clawdbot skill for managing Linear issues directly from your AI assistant.

Features

  • List assigned issues or team issues
  • Create, update, and search issues
  • Change issue status, assignee, and priority
  • Add comments to issues
  • List teams, workflow states, and users

Installation

From ClawdHub

clawdhub install linear

Manual

Clone into your Clawdbot skills directory:

git clone https://github.com/mrklnc/clawdbot-skill-linear.git ~/.clawdbot/skills/linear

Setup

  1. Get a Linear API key from linear.app/settings/api

  2. Store it in ~/.clawdbot/credentials/linear.json:

    {"apiKey": "lin_api_..."}
    

    Or set the LINEAR_API_KEY environment variable.

Usage Examples

Once installed, just ask your Clawdbot:

  • "Show me my Linear issues"
  • "Create a bug report for the login page"
  • "Move CLP-123 to In Progress"
  • "What's the status of the auth refactor?"
  • "Add a comment to CLP-456 saying it's fixed"

Commands

CommandDescription
issues --mineList your assigned issues
issues --team IDList issues for a team
get ISSUEGet issue details
search "query"Search issues
create --team ID --title "..."Create an issue
update ISSUE --state IDUpdate an issue
comment ISSUE "text"Add a comment
teamsList teams
statesList workflow states
usersList workspace users

Use --json for raw API output.

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install linear?

Run openclaw add @emrekilinc/linear-issues in your terminal. This installs linear into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/emrekilinc/linear-issues. Review commits and README documentation before installing.