What problem does it solve?
This Skill streamlines Linear workflow management, automating issue creation, updates, and queries to save time and ensure consistent project tracking.
Core Features & Use Cases
- Intelligent Tool Selection: Automatically chooses the best tool (MCP, SDK, GraphQL) for Linear tasks.
- Issue Management: Create and update issues with correct statuses and labels, reducing manual errors.
- Advanced Automation: Leverage TypeScript SDK scripts for complex operations like bulk updates and data transformations.
- Use Case: Need to create a series of onboarding tasks for a new team member? This Skill can generate multiple Linear issues with pre-defined statuses and assignees, all in one go.
Quick Start
// Create an issue assigned to yourself with 'Todo' status
await linear.create_issue({
team: "ENG",
title: "Refactor user service",
assignee: "me",
state: "Todo"
})
// List your open issues
await linear.list_issues({ assignee: "me", state: "Todo" })