From linear-pack
Issue lifecycle management with Linear: create, update, and transition issues. Use when implementing issue CRUD operations, state transitions, or building issue management features. Trigger with phrases like "linear issue workflow", "linear issue lifecycle", "create linear issues", "update linear issue", "linear state transition".
How this skill is triggered — by the user, by Claude, or both
Slash command
/linear-pack:linear-core-workflow-aThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Master issue lifecycle management: creating, updating, transitioning, and organizing issues.
Master issue lifecycle management: creating, updating, transitioning, and organizing issues.
import { LinearClient } from "@linear/sdk";
const client = new LinearClient({ apiKey: process.env.LINEAR_API_KEY });
async function createIssue(options: {
teamKey: string;
title: string;
description?: string;
priority?: 0 | 1 | 2 | 3 | 4; // 0=None, 1=Urgent, 2=High, 3=Medium, 4=Low
estimate?: number;
labelIds?: string[];
assigneeId?: string;
}) {
const teams = await client.teams({ filter: { key: { eq: options.teamKey } } });
const team = teams.nodes[0];
if (!team) throw new Error(`Team ${options.teamKey} not found`);
const result = await client.createIssue({
teamId: team.id,
title: options.title,
description: options.description,
priority: options.priority ?? 0,
estimate: options.estimate,
labelIds: options.labelIds,
assigneeId: options.assigneeId,
});
if (!result.success) {
throw new Error("Failed to create issue");
}
return result.issue;
}
async function updateIssue(
issueId: string,
updates: {
title?: string;
description?: string;
priority?: number;
stateId?: string;
assigneeId?: string;
estimate?: number;
}
) {
const result = await client.updateIssue(issueId, updates);
if (!result.success) {
throw new Error("Failed to update issue");
}
return result.issue;
}
// Update by identifier (e.g., "ENG-123")
async function updateByIdentifier(identifier: string, updates: Record<string, unknown>) {
const issue = await client.issue(identifier);
return client.updateIssue(issue.id, updates);
}
async function getWorkflowStates(teamKey: string) {
const teams = await client.teams({ filter: { key: { eq: teamKey } } });
const team = teams.nodes[0];
const states = await team.states();
return states.nodes.sort((a, b) => a.position - b.position);
}
async function transitionIssue(issueId: string, stateName: string) {
const issue = await client.issue(issueId);
const team = await issue.team;
const states = await team?.states();
const targetState = states?.nodes.find(
s => s.name.toLowerCase() === stateName.toLowerCase()
);
if (!targetState) {
throw new Error(`State "${stateName}" not found`);
}
return client.updateIssue(issueId, { stateId: targetState.id });
}
// Common transitions
async function markInProgress(issueId: string) {
return transitionIssue(issueId, "In Progress");
}
async function markDone(issueId: string) {
return transitionIssue(issueId, "Done");
}
// Create sub-issue
async function createSubIssue(parentId: string, title: string) {
const parent = await client.issue(parentId);
const team = await parent.team;
return client.createIssue({
teamId: team!.id,
title,
parentId,
});
}
// Link issues (blocking relationship)
async function addBlockingRelation(blockingId: string, blockedById: string) {
return client.createIssueRelation({
issueId: blockingId,
relatedIssueId: blockedById,
type: "blocks",
});
}
// Get sub-issues
async function getSubIssues(parentId: string) {
const parent = await client.issue(parentId);
const children = await parent.children();
return children.nodes;
}
async function addComment(issueId: string, body: string) {
return client.createComment({
issueId,
body,
});
}
async function getComments(issueId: string) {
const issue = await client.issue(issueId);
const comments = await issue.comments();
return comments.nodes;
}
| Error | Cause | Solution |
|---|---|---|
Issue not found | Invalid ID or identifier | Verify issue exists |
State not found | Team workflow mismatch | List states for correct team |
Validation error | Invalid field value | Check field constraints |
Circular dependency | Self-blocking issue | Validate relationships |
async function createFeatureIssue(options: {
teamKey: string;
title: string;
description: string;
priority: 1 | 2 | 3 | 4;
}) {
// Get team and default state
const teams = await client.teams({ filter: { key: { eq: options.teamKey } } });
const team = teams.nodes[0];
// Get "Backlog" state
const states = await team.states();
const backlog = states.nodes.find(s => s.name === "Backlog");
// Create issue
const result = await client.createIssue({
teamId: team.id,
title: options.title,
description: options.description,
priority: options.priority,
stateId: backlog?.id,
});
const issue = await result.issue;
// Add initial comment
await client.createComment({
issueId: issue!.id,
body: "Issue created via API integration",
});
return issue;
}
Continue to linear-core-workflow-b for project and cycle management.
npx claudepluginhub p/jamon8888-linear-pack-plugins-saas-packs-linear-packGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Implements work from a spec or tickets using TDD at agreed seams, with regular typechecking and test runs, followed by code review.