From linear-pack
Project and cycle management workflows with Linear. Use when implementing sprint planning, managing projects and roadmaps, or organizing work into cycles. Trigger with phrases like "linear project", "linear cycle", "linear sprint", "linear roadmap", "linear planning", "organize linear work".
How this skill is triggered — by the user, by Claude, or both
Slash command
/linear-pack:linear-core-workflow-bThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage projects, cycles (sprints), and roadmaps using the Linear API.
Manage projects, cycles (sprints), and roadmaps using the Linear API.
import { LinearClient } from "@linear/sdk";
const client = new LinearClient({ apiKey: process.env.LINEAR_API_KEY });
// List all projects
async function getProjects(teamKey?: string) {
const filter = teamKey
? { accessibleTeams: { some: { key: { eq: teamKey } } } }
: undefined;
const projects = await client.projects({ filter });
return projects.nodes;
}
// Create a project
async function createProject(options: {
name: string;
description?: string;
teamIds: string[];
targetDate?: Date;
state?: "planned" | "started" | "paused" | "completed" | "canceled";
}) {
const result = await client.createProject({
name: options.name,
description: options.description,
teamIds: options.teamIds,
targetDate: options.targetDate?.toISOString(),
state: options.state ?? "planned",
});
return result.project;
}
// Update project status
async function updateProjectStatus(
projectId: string,
status: "planned" | "started" | "paused" | "completed" | "canceled"
) {
return client.updateProject(projectId, { state: status });
}
// Get current and upcoming cycles
async function getActiveCycles(teamKey: string) {
const teams = await client.teams({ filter: { key: { eq: teamKey } } });
const team = teams.nodes[0];
const now = new Date().toISOString();
const cycles = await team.cycles({
filter: {
or: [
{ endsAt: { gte: now } }, // Current or future
{ startsAt: { gte: now } }, // Future
],
},
orderBy: "startsAt",
});
return cycles.nodes;
}
// Create a new cycle
async function createCycle(options: {
teamId: string;
name?: string;
startsAt: Date;
endsAt: Date;
}) {
const result = await client.createCycle({
teamId: options.teamId,
name: options.name,
startsAt: options.startsAt.toISOString(),
endsAt: options.endsAt.toISOString(),
});
return result.cycle;
}
// Add issues to a cycle
async function addIssuesToCycle(issueIds: string[], cycleId: string) {
const results = await Promise.all(
issueIds.map(issueId =>
client.updateIssue(issueId, { cycleId })
)
);
return results.filter(r => r.success).length;
}
// Get cycle metrics
async function getCycleMetrics(cycleId: string) {
const cycle = await client.cycle(cycleId);
const issues = await cycle.issues();
const states = new Map<string, number>();
let totalEstimate = 0;
let completedEstimate = 0;
for (const issue of issues.nodes) {
const state = await issue.state;
const stateName = state?.name ?? "Unknown";
states.set(stateName, (states.get(stateName) ?? 0) + 1);
totalEstimate += issue.estimate ?? 0;
if (state?.type === "completed") {
completedEstimate += issue.estimate ?? 0;
}
}
return {
totalIssues: issues.nodes.length,
byState: Object.fromEntries(states),
totalEstimate,
completedEstimate,
completionRate: totalEstimate ? completedEstimate / totalEstimate : 0,
};
}
// Get roadmap items (projects with milestones)
async function getRoadmap(options?: {
includeCompleted?: boolean;
monthsAhead?: number;
}) {
const futureDate = new Date();
futureDate.setMonth(futureDate.getMonth() + (options?.monthsAhead ?? 6));
const filter: Record<string, unknown> = {
targetDate: { lte: futureDate.toISOString() },
};
if (!options?.includeCompleted) {
filter.state = { neq: "completed" };
}
const projects = await client.projects({
filter,
orderBy: "targetDate",
});
return projects.nodes.map(p => ({
id: p.id,
name: p.name,
state: p.state,
targetDate: p.targetDate,
progress: p.progress,
}));
}
// Create project milestone
async function createMilestone(options: {
projectId: string;
name: string;
targetDate: Date;
}) {
return client.createProjectMilestone({
projectId: options.projectId,
name: options.name,
targetDate: options.targetDate.toISOString(),
});
}
// Move unfinished issues to next cycle
async function rolloverCycle(fromCycleId: string, toCycleId: string) {
const fromCycle = await client.cycle(fromCycleId);
const issues = await fromCycle.issues({
filter: {
state: { type: { nin: ["completed", "canceled"] } },
},
});
const movedCount = await addIssuesToCycle(
issues.nodes.map(i => i.id),
toCycleId
);
return { movedCount, totalUnfinished: issues.nodes.length };
}
// Calculate team velocity
async function calculateVelocity(teamKey: string, cycleCount = 3) {
const teams = await client.teams({ filter: { key: { eq: teamKey } } });
const team = teams.nodes[0];
const cycles = await team.cycles({
filter: {
completedAt: { neq: null }
},
orderBy: "completedAt",
first: cycleCount,
});
const velocities = await Promise.all(
cycles.nodes.map(async cycle => {
const issues = await cycle.issues({
filter: { state: { type: { eq: "completed" } } },
});
return issues.nodes.reduce((sum, i) => sum + (i.estimate ?? 0), 0);
})
);
const avgVelocity = velocities.reduce((a, b) => a + b, 0) / velocities.length;
return {
velocities,
average: Math.round(avgVelocity * 10) / 10,
};
}
| Error | Cause | Solution |
|---|---|---|
Project not found | Invalid project ID | Verify project exists |
Cycle overlap | Dates conflict with existing | Check existing cycles |
Permission denied | No project access | Verify team membership |
Invalid date range | End before start | Validate date order |
async function setupSprint(options: {
teamKey: string;
name: string;
durationDays: number;
issueIdentifiers: string[];
}) {
const teams = await client.teams({ filter: { key: { eq: options.teamKey } } });
const team = teams.nodes[0];
const startsAt = new Date();
const endsAt = new Date();
endsAt.setDate(endsAt.getDate() + options.durationDays);
// Create cycle
const cycleResult = await client.createCycle({
teamId: team.id,
name: options.name,
startsAt: startsAt.toISOString(),
endsAt: endsAt.toISOString(),
});
const cycle = await cycleResult.cycle;
// Add issues
for (const identifier of options.issueIdentifiers) {
const issue = await client.issue(identifier);
await client.updateIssue(issue.id, { cycleId: cycle!.id });
}
return cycle;
}
Handle errors effectively with linear-common-errors.
npx claudepluginhub p/ktiseos-nyx-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.
2plugins reuse this skill
First indexed Jul 10, 2026