skills/integrations/linear/linear-update-tickets/SKILL.md
Update Linear ticket status or add comments. Load when user says "update linear ticket", "mark ticket as done", "move CLI-XXX to [status]", "change ticket status", "add comment to ticket", or "close ticket".
npx skillsauth add beam-ai-team/beam-next-skills linear-update-ticketsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Update existing Linear tickets - change status, add comments, or modify fields.
Modify Linear tickets discussed in meetings or that need status updates. Supports state changes, adding comments, and batch updates.
Requirements: Linear API key in .env
# Add to .env (NO Bearer prefix when using!)
LINEAR_API_KEY=lin_api_xxxxx
API Endpoint: https://api.linear.app/graphql
Auth Header: Authorization: {LINEAR_API_KEY} (NO "Bearer" prefix!)
State IDs (Clients team): | State | ID | |-------|-----| | Todo | d8899534-a204-4446-a06b-681cbc4c6e04 | | In Progress | 9a2c9ba8-5931-491e-8298-c9fb761aab23 | | In Review | 7866c5ad-5654-4516-849f-b3f7462613d6 | | Done | 40112a2a-870e-48ca-aeff-7f16356acd90 |
Get ticket identifier:
Options:
Update Status:
mutation UpdateIssue($id: String!, $input: IssueUpdateInput!) {
issueUpdate(id: $id, input: $input) {
success
issue {
identifier
title
state { name }
}
}
}
Variables:
{
"id": "issue-uuid",
"input": {
"stateId": "40112a2a-870e-48ca-aeff-7f16356acd90"
}
}
Add Comment:
mutation AddComment($issueId: String!, $body: String!) {
commentCreate(input: {
issueId: $issueId,
body: $body
}) {
success
comment { id body }
}
}
Updated CLI-123:
- Status: In Progress → Done
- Comment added: "Completed per meeting discussion"
To update a ticket, you need its UUID (not the CLI-XXX identifier):
query GetIssue($identifier: String!) {
issue(id: $identifier) {
id
identifier
title
state { id name }
}
}
Get current state IDs for any team:
query($teamId: String!) {
team(id: $teamId) {
states { nodes { id name type } }
}
}
For multiple tickets:
Update tickets CLI-123, CLI-124, CLI-125 to Done
Process each sequentially and report results:
Updated 3 tickets:
- CLI-123: In Progress → Done
- CLI-124: Todo → Done
- CLI-125: In Review → Done
| Error | Cause | Solution | |-------|-------|----------| | 401 Unauthorized | Wrong auth format | NO "Bearer" prefix | | Issue not found | Invalid identifier | Verify ticket exists | | Invalid state | Wrong state ID | Query team states first |
linear-create-tickets - Create new ticketscreate-weekly-update - Report on ticket changesprocess-client-meeting - May update tickets from discussionVersion: 1.0 Integration: Linear GraphQL API Owner: Hassaan Ahmed
tools
Build a Palantir-shape, PDF-native use-case proposal document for a sophisticated enterprise account: research-grounded use cases (each with description, challenge, impact, value), an operating-graph ontology page, a recommended PoC with a week-by-week plan, and a closing page that asks for one decision. Load when a client asks us to 'propose high-impact use cases', requests a use-case presentation/catalog for a function (finance, HR, ops), or when a technical evaluation team will review candidates to pick a PoC. NOT for single-account cold outreach (use prospect-brief), full process diagnostics (use operating-diagnostic), or priced proposals (use proposal-creation).
development
Convert Beam Figma slide designs into high-fidelity, editable HTML presentation decks. Use when Codex is asked to audit Figma slides, extract slide templates, rebuild Beam slides as HTML decks, decide whether Figma imagery should be exported or rebuilt in HTML/CSS, create Beam/Prism-compatible deck templates, or improve fidelity of existing Beam HTML slide rebuilds.
development
Use the Beam AI reusable slide library: individual HTML slide templates extracted from Beam Figma rebuilds, kept separate from deck themes and full deck templates. Load when the user asks for a slide library, specific Beam slide patterns, reusable Figma-inspired slides, Prism slide-library items, or slide-level HTML templates.
development
Use Beam AI deck and report design packs, HTML templates, and curated examples to create sales decks, customer intro decks, RPO decks, and DIN A4 use-case proposal reports. Load when the user asks for Beam-branded presentation templates, Prism-compatible deck templates, Beam report templates, customer intro decks, commercial proposals, or reusable HTML deck/report examples.