linear

linear is a skill for Claude Code, Codex from kwanpham2195/symphony-go. It costs 28 tokens per session (775 once invoked), scanned A, original, MIT.

Instructions for using Symphony's Linear GraphQL client, which sends structured requests to Linear, a project-management and issue-tracking service.

In plain words
What is it for?
Running one Linear request at a time, querying issue details and team states, moving issues, and creating or updating comments.
Why use it?
They provide the expected request format for reading issues, changing their status, editing comments, and uploading data.

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/kwanpham2195/symphony-go/linear
Any agent
npx skills add kwanpham2195/symphony-go --skill linear
Clone the repo
git clone --depth 1 https://github.com/kwanpham2195/symphony-go

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/kwanpham2195/symphony-go/linear.svg)](https://agentmods.dev/skills/kwanpham2195/symphony-go/linear)
Your own site
<a href="https://agentmods.dev/skills/kwanpham2195/symphony-go/linear"><img src="https://agentmods.dev/badge/skills/kwanpham2195/symphony-go/linear.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 775 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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 $0.00028 $0.00775
Opus 5 $0.00014 $0.00387
Sonnet 5 $0.00006 $0.00155
Haiku 4.5 $0.00003 $0.00077

Measured 5d ago against content hash 48838751bd9e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

linear scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/linear/SKILL.md · 137 lines

How it starts

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

Linear GraphQL

Use the linear_graphql tool exposed by Symphony's app-server session for raw Linear API access.

Tool Input

{
  "query": "query or mutation document",
  "variables": { "optional": "graphql variables" }
}

One operation per call. Top-level errors array means the operation failed.

Common Operations

Query an issue

query IssueByKey($key: String!) {
  issue(id: $key) {
    id identifier title
    state { id name }
    project { id name }
    url description
  }
}

Get team workflow states

query IssueTeamStates($id: String!) {
  issue(id: $id) {
    team {
      states { nodes { id name type } }
    }
  }
}

Move issue to a state

mutation MoveIssue($id: String!, $stateId: String!) {
  issueUpdate(id: $id, input: { stateId: $stateId }) {
    success
    issue { id identifier state { name } }
  }
}

Create a comment

mutation CreateComment($issueId: String!, $body: String!) {
  commentCreate(input: { issueId: $issueId, body: $body }) {
    success
    comment { id url }
  }
}

Update a comment

mutation UpdateComment($id: String!, $body: String!) {
  commentUpdate(id: $id, input: { body: $body }) {
    success
    comment { id body }
  }
}

Attach a GitHub PR

mutation AttachPR($issueId: String!, $url: String!, $title: String) {
  attachmentLinkGitHubPR(issueId: $issueId, url: $url, title: $title, linkKind: links) {
    success
    attachment { id url }
  }
}

Schema introspection

query ListMutations {
  __type(name: "Mutation") { fields { name } }
}
query InspectInput($name: String!) {
  __type(name: $name) {
    inputFields { name type { kind name ofType { kind name } } }
  }
}

Post-PR Workflow

After pushing a PR, move the issue to In Review so the orchestrator stops re-dispatching:

  1. Fetch the team's workflow states to get the exact stateId for "In Review".
  2. Update the issue state:
    mutation MoveIssue($id: String!, $stateId: String!) {
      issueUpdate(id: $id, input: { stateId: $stateId }) {
        success
        issue { id identifier state { name } }
      }
    }
    
  3. Attach the PR URL to the issue.

Read the full file on GitHub · 137 lines

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 · 137 lines · 28 tokens per session scan A 48838751bd9e

Subscribe to this mod's changes

linear is a skill published in the GitHub repository kwanpham2195/symphony-go (10 stars, last pushed 3mo ago), licensed MIT. It adds 28 tokens to every session and 775 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

codex-symphony

Install and operate a portable OpenAI Symphony + Linear orchestration setup in any Git repository. Use when the user wants a one-command local Symphony runner, a reusable WORKFLOW template, background launch scripts, or a Codex wrapper that restarts Symphony automatically when reopening the CLI.

citedy/skills · 61 tokens

linear-cli

Manage Linear issues from the command line using the linear cli. This skill allows automating linear management.

schpet/linear-cli · 23 tokens

Release

This skill should be used when the user asks to "make a release", "create a release", "cut a release", "release a new version", "publish a release", or mentions preparing for release. Provides comprehensive workflow for reviewing changes, updating changelog, determining semver bump, and publishing.

schpet/linear-cli · 63 tokens

release-core-test

Invoke when dev-testing a Cyrus change that spans CYPACK (edgeworker + CLI) and CYHOST (Vercel-hosted GUI) and the hosted GUI needs to point at an unreleased cyrus-core from this repo. Publishes cyrus-core (and claude-runner if needed) as a -test.N prerelease under the npm test dist-tag so CYHOST can install it via…

cyrusagents/cyrus · 114 tokens

cyrus-setup-claude-auth

Configure Claude Code authentication for Cyrus — API key, OAuth token, or third-party provider.

cyrusagents/cyrus · 27 tokens

f1-test-drive

Orchestrate F1 test drives to validate the Cyrus agent system end-to-end across issue-tracker, EdgeWorker, and activity rendering.

cyrusagents/cyrus · 33 tokens