symphony

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

An autonomous agent orchestrator that watches Linear, a project-management tool, and starts Codex coding sessions for eligible issues. It gives each issue an isolated workspace and can open a pull request when work is finished.

In plain words
What is it for?
Use it to turn Linear issues into automated implementation work, run several tasks with limits, retry failed sessions, and create pull requests.
Why use it?
It removes the need to manually start and coordinate separate coding agents for each issue, while handling retries, concurrency, and workspace cleanup.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md; mentions Codex.

Good fit Use it to turn Linear issues into automated implementation work, run several tasks with limits, retry failed sessions, and create pull requests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kwanpham2195/symphony-go/symphony
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.

Any agent
npx skills add kwanpham2195/symphony-go --skill symphony
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 symphony

README.md
[![agentmods](https://agentmods.dev/badge/skills/kwanpham2195/symphony-go/symphony/github.svg)](https://agentmods.dev/skills/kwanpham2195/symphony-go/symphony)
Your own site
<a href="https://agentmods.dev/skills/kwanpham2195/symphony-go/symphony"><img src="https://agentmods.dev/badge/skills/kwanpham2195/symphony-go/symphony/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for symphony

Your own site · 80×15
<a href="https://agentmods.dev/skills/kwanpham2195/symphony-go/symphony"><img src="https://agentmods.dev/badge/skills/kwanpham2195/symphony-go/symphony.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,827 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00088 $0.02827
Opus 5 $0.00044 $0.01413
Sonnet 5 $0.00018 $0.00565
Haiku 4.5 $0.00009 $0.00283

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

Security

Grade A, and why

symphony 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 8d 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 -s -H "Authorization: $LINEAR_API_KEY" \
skills/symphony/SKILL.md · 362 lines

How it starts

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

symphony-go

Set up, configure, run, and troubleshoot symphony-go — a Go service that turns Linear issues into autonomous Codex coding sessions.

What symphony-go does

Symphony polls a Linear project board, picks up issues in active states (Todo, In Progress), creates isolated workspace directories, and launches Codex app-server agents to work on each issue. When an agent finishes, it opens a PR. Symphony handles retries, backoff, concurrency limits, and workspace cleanup.

Prerequisites

Before setting up symphony-go, make sure these are installed:

  1. Codex CLInpm install -g @openai/codex (verify: codex --version)
  2. Linear API key — create at https://linear.app/settings/api, export as LINEAR_API_KEY
  3. Linear project — create a project in Linear, note the project slug (short ID in the project URL)
  4. Go 1.25+ — only if building from source; pre-built binaries at https://github.com/kwanpham2195/symphony-go/releases

Setup

Step 1: Install symphony-go

# Option A: go install
go install github.com/kwanpham2195/symphony-go/cmd/symphony@latest

# Option B: download binary
# https://github.com/kwanpham2195/symphony-go/releases

# Option C: build from source
git clone https://github.com/kwanpham2195/symphony-go.git
cd symphony-go && make build

Step 2: Create WORKFLOW.md

Create a WORKFLOW.md file in the target repository. This file has two parts:

  • YAML front matter — runtime configuration (tracker, workspace, hooks, codex settings)
  • Body — a Liquid template rendered as the agent prompt for each issue

Minimal example:

---
tracker:
  kind: linear
  project_slug: "your-project-slug"
  api_key: $LINEAR_API_KEY
workspace:
  root: ~/code/my-workspaces
hooks:
  after_create: |
    git clone --depth 1 https://github.com/your-org/your-repo .
codex:
  command: codex app-server
  approval_policy: never
---

You are working on Linear ticket {{ issue.identifier }}: {{ issue.title }}.

{{ issue.description }}

Read the full file on GitHub · 362 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. 8d ago First seen · 362 lines · 88 tokens per session scan A 4a96c49a15cb

Subscribe to this mod's changes

symphony is a skill published in the GitHub repository kwanpham2195/symphony-go (10 stars, last pushed 3mo ago), licensed MIT. It adds 88 tokens to every session and 2,827 once invoked, about $0.0004 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-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

c-linear

Manage Linear issues and projects using the linear CLI. List and filter issues, create new issues, update status, start work on a branch, and create linked pull requests directly from the terminal.

daxaur/openpaw · 43 tokens

linear-workspace

Linear issue management — routes work to specialized agents and slash commands. Use when: creating, updating, searching, bulk-editing, cleaning up, syncing Linear. TRIGGERS: "linear", "ticket", "issue", "create issue", "update issue", "search issues", "my issues", "bulk", "cleanup", "sync", "log bug", "file issue"…

Elnora-AI/elnora-linear · 126 tokens

Linear Automation

Automate Linear issue tracking, cycle planning, roadmap management, and engineering workflows.

claude-office-skills/skills · 18 tokens

linear-project-planner

Plan, create, restructure, or execute Linear projects for audits, remediation, production hardening, and parallel agent work. Use when the user asks to create a Linear project, run the Linear skill, execute a Linear plan, organize multi-agent work, preserve a companion ledger, add milestones/dependencies, or close…

MJWNA/linear-project-planner-skill · 78 tokens

persona-project-manager

Coordinate projects — track tasks, schedule meetings, and share docs.

googleworkspace/cli · 17 tokens