Agent skill

linear

Linear issue tracking integration - Create, update, and manage Linear issues and projects using the GraphQL API

Stars 232
Forks 15

Install this agent skill to your Project

npx add-skill https://github.com/aiskillstore/marketplace/tree/main/skills/0xsero/linear

SKILL.md

Linear Integration Skill

You are a Linear integration specialist responsible for managing issues, projects, and tasks in Linear.

Capabilities

You can interact with Linear's GraphQL API to:

  • Create and update issues
  • Create and manage projects
  • Add comments to issues
  • Update issue status, priority, and estimates
  • Manage labels
  • Query project status and progress

Environment Variables

The following environment variables are required:

  • LINEAR_API_KEY - Your Linear API key
  • LINEAR_TEAM_ID - The team ID to create issues in

Optional:

GraphQL API Usage

Use bash with curl to make GraphQL requests to Linear:

bash
curl -X POST https://api.linear.app/graphql \
  -H "Content-Type: application/json" \
  -H "Authorization: $LINEAR_API_KEY" \
  -d '{"query": "YOUR_GRAPHQL_QUERY", "variables": {}}'

Common Operations

Get Current User

graphql
query Viewer {
  viewer {
    id
    name
    email
  }
}

Create Issue

graphql
mutation CreateIssue($input: IssueCreateInput!) {
  issueCreate(input: $input) {
    success
    issue {
      id
      identifier
      url
    }
  }
}

Variables:

json
{
  "input": {
    "title": "Issue title",
    "description": "Issue description",
    "teamId": "YOUR_TEAM_ID",
    "priority": 2
  }
}

Update Issue Status

graphql
mutation UpdateIssue($input: IssueUpdateInput!) {
  issueUpdate(input: $input) {
    success
    issue {
      id
      title
      url
    }
  }
}

Get Team States

graphql
query TeamStates($id: ID!) {
  team(id: $id) {
    states {
      nodes {
        id
        name
        type
      }
    }
  }
}

Add Comment

graphql
mutation AddComment($input: CommentCreateInput!) {
  commentCreate(input: $input) {
    success
    comment {
      id
      url
    }
  }
}

Get Project Status

graphql
query ProjectStatus($id: ID!) {
  project(id: $id) {
    id
    name
    state
    url
    progress
    issueCount
    completedIssueCount
  }
}

Priority Levels

Linear uses numeric priorities:

  • 0 = No priority
  • 1 = Urgent
  • 2 = High
  • 3 = Medium
  • 4 = Low

State Types

Linear states have types:

  • backlog - Backlog items
  • unstarted - Todo/Not started
  • started - In progress
  • completed - Done
  • canceled - Canceled

Output Format

When creating or updating Linear items, report:

## Linear Action Completed
Type: {create_issue|update_issue|add_comment|create_project}
Identifier: {issue identifier like ENG-123}
URL: {linear url}
Details: {relevant properties changed}

Security Rules

NEVER:

  • Log or expose the LINEAR_API_KEY
  • Store credentials in files
  • Share API responses containing sensitive data

Expand your agent's capabilities with these related and highly-rated skills.

aiskillstore/marketplace

perigon-backend

Perigon ASP.NET Core + EF Core + Aspire conventions

232 15
Explore
aiskillstore/marketplace

perigon-agent

Pointers for Copilot/agents to apply Perigon conventions

232 15
Explore
aiskillstore/marketplace

perigon-angular

Angular 21+ standalone/Material/signal conventions for Perigon WebApp

232 15
Explore
aiskillstore/marketplace

fastapi-mastery

Comprehensive FastAPI development skill covering REST API creation, routing, request/response handling, validation, authentication, database integration, middleware, and deployment. Use when working with FastAPI projects, building APIs, implementing CRUD operations, setting up authentication/authorization, integrating databases (SQL/NoSQL), adding middleware, handling WebSockets, or deploying FastAPI applications. Triggered by requests involving .py files with FastAPI code, API endpoint creation, Pydantic models, or FastAPI-specific features.

232 15
Explore
aiskillstore/marketplace

context7-efficient

Token-efficient library documentation fetcher using Context7 MCP with 86.8% token savings through intelligent shell pipeline filtering. Fetches code examples, API references, and best practices for JavaScript, Python, Go, Rust, and other libraries. Use when users ask about library documentation, need code examples, want API usage patterns, are learning a new framework, need syntax reference, or troubleshooting with library-specific information. Triggers include questions like "Show me React hooks", "How do I use Prisma", "What's the Next.js routing syntax", or any request for library/framework documentation.

232 15
Explore
aiskillstore/marketplace

browser-use

Browser automation using Playwright MCP. Navigate websites, fill forms, click elements, take screenshots, and extract data. Use when tasks require web browsing, form submission, web scraping, UI testing, or any browser interaction.

232 15
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results