linear-issue-management

linear-issue-management is a skill for Claude Code, Codex from OpenCoven/coven. It costs 68 tokens per session (914 once invoked), scanned A, original, MIT.

A workflow for managing Linear issues through its GraphQL API. Linear is a tool teams use to track bugs, tasks, projects, and product work.

In plain words
What is it for?
Use it to find existing issues, create and update tasks, assign labels or people, change statuses, and audit Linear work.
Why use it?
It reduces mistakes when creating or editing issues by checking the correct team, project, status, and labels first. It also helps avoid duplicate issues and keeps API credentials private.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/opencoven/coven/linear-issue-management
Any agent
npx skills add OpenCoven/coven --skill linear-issue-management
Clone the repo
git clone --depth 1 https://github.com/OpenCoven/coven

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for linear-issue-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/opencoven/coven/linear-issue-management.svg)](https://agentmods.dev/skills/opencoven/coven/linear-issue-management)
Your own site
<a href="https://agentmods.dev/skills/opencoven/coven/linear-issue-management"><img src="https://agentmods.dev/badge/skills/opencoven/coven/linear-issue-management.svg" alt="Measured on agentmods" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 914 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00068 $0.00914
Opus 5 $0.00034 $0.00457
Sonnet 5 $0.00014 $0.00183
Haiku 4.5 $0.00007 $0.00091

Measured 5d ago against content hash 8acd4c35a16b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

linear-issue-management scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl https://api.linear.app/graphql \
skills/linear-issue-management/SKILL.md · 114 lines

How it starts

The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Linear Issue Management

Use this skill when working with Linear issues through the API.

Prime directive

Discover before writing. Never guess the team, project, state, assignee, or label IDs from memory when creating or updating a Linear issue.

Before any mutation:

  1. Confirm the target workspace/team from the user request or current project context.
  2. Query Linear for the exact team/project/label/state IDs.
  3. Search for an existing issue to avoid duplicates.
  4. Show the intended mutation summary if the action is externally visible or ambiguous.
  5. Execute one focused GraphQL mutation.
  6. Return the issue key + URL and record any important follow-up context.

Safety rules

  • Do not print, paste, log, or commit the Linear API token.
  • Prefer 1Password-backed env injection or an existing secret manager. Do not write tokens to files.
  • Treat issue creation, updates, comments, assignment changes, and state transitions as external state-changing actions. Get explicit user approval unless the user already gave a direct instruction in the current conversation.
  • Use GraphQL variables. Do not interpolate untrusted user text into a GraphQL query string.
  • Keep issue text factual. Do not file speculation as confirmed defects.
  • Do not file in a team just because an issue key prefix looks familiar; confirm via API.

Auth pattern

Use a Linear API key in LINEAR_API_KEY.

Preferred shape:

op run --env-file <linear-env-file> -- <command using LINEAR_API_KEY>

or, when the shell already has the token:

curl https://api.linear.app/graphql \
  -H "Authorization: $LINEAR_API_KEY" \
  -H 'Content-Type: application/json' \
  --data-binary @payload.json

Never echo the token. If debugging auth, print only whether LINEAR_API_KEY is set, not its value.

Workflow: create an issue

  1. Read references/graphql-recipes.md for query/mutation templates.
  2. Discover teams and choose the exact teamId.
  3. Search existing issues by relevant keywords and repo/project names.
  4. Discover labels/projects/states only after the team is known.
  5. Resolve label conflicts before mutation.
  6. Create the issue with title, description, teamId, optional projectId, optional labelIds, and optional priority.
  7. Return the created issue identifier and URL.

Read the full file on GitHub · 114 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 114 lines · 68 tokens per session scan A 8acd4c35a16b

Subscribe to this mod's changes

linear-issue-management is a skill published in the GitHub repository OpenCoven/coven (46 stars, last pushed yesterday), licensed MIT. It adds 68 tokens to every session and 914 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.