Symphony Go
Description
A Go implementation of the [Symphony specification](../SPEC.md) — a long-running automation service that reads work from issue trackers, creates isolated workspaces, and runs AI coding agents for each
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Symphony Go
A Go implementation of the [Symphony specification](../SPEC.md) — a long-running automation service that reads work from issue trackers, creates isolated workspaces, and runs AI coding agents for each issue.
Symphony supports two agent backends (**Gemini CLI** and **Claude Code**) and two issue trackers (**Linear** and **Jira Cloud**). Mix and match per workflow.
Architecture

Agent Backends
Symphony supports two agent backends. Set the `backend` field in your WORKFLOW.md to choose:
| Gemini CLI | Claude Code | |
|---|---|---|
| Config key | backend: gemini (default) |
backend: claude |
| Protocol | ACP — JSON-RPC 2.0 over stdio (long-running process) | NDJSON stream — one CLI invocation per turn |
| Session model | Single process, session persists in-memory | --resume across invocations, persisted to .symphony-session-id |
| Tool access | Client-side injection (ACP fs/terminal requests) | MCP servers (configured externally via .mcp.json or user config) |
| Permission handling | ACP session/request_permission auto-approve |
--permission-mode bypassPermissions flag |
| Default model | gemini-3.1-pro-preview |
claude-sonnet-4-6 |
| TTY requirement | None | Requires pseudo-TTY (script -q /dev/null wrapper, handled automatically) |
Gemini CLI Setup
npm install -g @google/gemini-cli
gemini auth login
For Linear integration, install the MCP extension:
gemini extensions install @google/mcp-linear
Claude Code Setup
npm install -g @anthropic-ai/claude-code
For Linear integration, add the MCP server globally:
claude mcp add -s user --transport http linear-server https://mcp.linear.app/mcp
This makes the Linear MCP server available in all workspaces. Alternatively, write a `.mcp.json` file in the workspace via the `after_create` hook for a self-contained setup.
Issue T
Related Skills
Spec Kit
💫 Toolkit to help you get started with Spec-Driven Development
Testing Webapp Testing
Test local web applications using Playwright for UI verification and debugging
Testing #29
, [#52](https://github.com/affaan-m/everything-claude-code/issues/52), [#103](https://github.com/affaan-m/ever
Testing Fix Issue
by metabase - Addresses GitHub issues by taking issue number as parameter, analyzing context, implementing sol
Testing Pypict Test Design
Design comprehensive test cases using PICT (Pairwise Independent Combinatorial Testing) for optimized test sui
Testing gstack
| 15,000+ | Garry Tan's exact Claude Code setup: 6 opinionated tools that serve as CEO, Eng Manager, Release M
Testing