linear-core-workflow-b

Featured

Project, cycle, and roadmap management workflows with Linear. Use when implementing sprint planning, managing projects and milestones, or organizing work into cycles. Trigger: "linear project", "linear cycle", "linear sprint", "linear roadmap", "linear planning", "linear milestone".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Linear Core Workflow B: Projects & Cycles ## Overview Manage projects, cycles (sprints), milestones, and roadmaps using the Linear API. Projects group issues across teams with states (`planned`, `started`, `paused`, `completed`, `canceled`), target dates, and progress tracking. Cycles are time-boxed iterations (sprints) owned by a single team. Initiatives group projects at the organizational level. ## Prerequisites - Linear SDK configured with API key or OAuth token - Understanding of Linear's hierarchy: Organization > Team > Cycle/Project > Issue - Team access with project create permissions ## Instructions ### Step 1: Project CRUD ```typescript import { LinearClient } from "@linear/sdk"; const client = new LinearClient({ apiKey: process.env.LINEAR_API_KEY! }); // List projects (optionally filter by team) const projects = await client.projects({ filter: { accessibleTeams: { some: { key: { eq: "ENG" } } }, state: { nin: ["completed", "canceled"] }, }, orderBy: "updatedAt", first: 20, }); for (const project of projects.nodes) { console.log(`${project.name} [${project.state}] — progress: ${Math.round(project.progress * 100)}%`); } // Create a project const teams = await client.teams(); const eng = teams.nodes.find(t => t.key === "ENG")!; const projectResult = await client.createProject({ name: "Authentication Overhaul", description: "Modernize auth infrastructure with OAuth 2.0 + MFA.", teamIds: [eng.id], state: "planned", targetDate: "202...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category