Skip to content

Latest commit

 

History

1,051 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Symphony

CI npm Node.js 24+ License: MIT PRs welcome Code of Conduct

GitHub Symphony is a multi-tenant AI coding agent orchestration platform built on the OpenAI Symphony specification. A CLI-first orchestrator polls GitHub Projects for open issues, dispatches worker runs per repository, and resolves all workflow policy from each repository's WORKFLOW.md at runtime.

GitHub Symphony is an MIT-licensed open source project. Contributions are welcome: start with the contributing guide, follow the Code of Conduct, use the GitHub issue templates for bug reports and feature requests, and report security issues through SECURITY.md. For setup or orchestration failures, include a redacted support bundle from gh-symphony doctor --bundle when opening a bug report.

Requirements

  • Node.js v24+ with npm
  • Git
  • One existing GitHub Project for the repositories you want Symphony to manage
  • One AI agent runtime on PATH before gh-symphony repo start:
    • Codex CLI (codex) - install from the official Codex CLI guide, then authenticate with codex login.
    • Claude Code (claude) - install from the official Claude Code quickstart, then authenticate with ANTHROPIC_API_KEY or a local Claude login for non-bare runs.
  • One GitHub auth source with required scopes (repo, read:org, project):
    • GitHub CLI (gh):
      gh auth login --scopes repo,read:org,project
    • Or GITHUB_GRAPHQL_TOKEN for CI, containers, or token-only shells:
      export GITHUB_GRAPHQL_TOKEN=ghp_your_classic_token

Quickstart

Prerequisites: Node.js 24+, Git, GitHub auth with repo, read:org, and project scopes, one authenticated runtime such as codex or claude, and an existing GitHub Project.

npm install -g @gh-symphony/cli
gh-symphony doctor

cd your-repo
gh-symphony setup
gh-symphony repo start --once

If doctor reports missing prerequisites, run gh-symphony doctor --fix for safe local remediation guidance. After the one-shot run succeeds, start continuous orchestration with:

gh-symphony repo start

Getting Started

1. Install Package

npm install -g @gh-symphony/cli

Or use the official container image:

docker pull ghcr.io/hojinzs/github-symphony:latest
docker run --rm ghcr.io/hojinzs/github-symphony:latest gh-symphony --version

Verify the installation:

gh-symphony --version

The npm package also ships the internal dist/mcp-server.js and dist/git-credential-helper.js subprocess entry points used by worker runtimes. They are implementation details of the CLI and are validated from the packed tarball during release testing.

Validate the local prerequisites before setup:

gh-symphony doctor
gh-symphony doctor --fix
gh-symphony doctor --json
gh-symphony doctor --smoke
gh-symphony doctor --bundle

Token-only validation works without gh:

GITHUB_GRAPHQL_TOKEN=ghp_your_classic_token gh-symphony doctor --json

For the full list of operator knobs, runtime credentials, GHES overrides, and auto-injected worker variables, see Configuration: Environment Variables.

2. Run Setup

Navigate to the repository you want to orchestrate, then run:

cd your-repo
gh-symphony setup

The one-command setup flow will:

  1. Authenticate via GITHUB_GRAPHQL_TOKEN or fall back to gh CLI
  2. Let you select a GitHub Project
  3. Map project status columns to workflow phases (active / wait / terminal)
  4. Configure the repository runtime for the orchestrator
  5. Generate the following files:
File Description
WORKFLOW.md Workflow policy — the agent prompt template with lifecycle config
.codex/skills/ (or .claude/skills/) Agent skill definitions, including /gh-symphony references

Before writing anything, the interactive wizard shows a final summary that combines the workflow file preview and the repository runtime that will be saved under .runtime/orchestrator/.

Non-interactive mode:

gh-symphony setup --non-interactive

If non-interactive setup needs an explicit GitHub Project selection, run the two setup commands directly:

GITHUB_GRAPHQL_TOKEN=ghp_your_classic_token gh-symphony workflow init --non-interactive --project PVT_xxx --output WORKFLOW.md
GITHUB_GRAPHQL_TOKEN=ghp_your_classic_token gh-symphony repo init

3. Run a Smoke Tick

Run one production-like orchestration tick before starting a long-lived poller:

gh-symphony doctor --smoke
gh-symphony repo start --once

doctor --smoke validates the GitHub Project binding, repository workflow, runtime command, workspace root, and hook paths without dispatching a worker. repo start --once then performs startup cleanup plus one poll/reconcile/dispatch tick and exits.

Repo-embedded projects honor workspace.root relative to the repository checkout, defaulting to .runtime/symphony-workspaces. Their issue worktrees live at <workspace.root>/<issue-key>, while orchestrator records remain under .runtime/orchestrator; repo init creates the root and doctor reports it. Existing installations should stop the daemon, archive .runtime/orchestrator, run repo init again, and restart so worktrees are safely re-populated without stale shared-cache registrations. See Configuration.

Use an explicit issue when you want a deterministic preflight:

gh-symphony doctor --smoke --issue owner/repo#123

4. Run the Orchestrator

gh-symphony repo start                   # Start (foreground)
gh-symphony repo start --daemon          # Start (background)
gh-symphony repo stop                    # Stop the daemon
gh-symphony repo stop --force            # Force stop with SIGKILL
gh-symphony repo start --web             # Browser control-plane dashboard at http://127.0.0.1:4680/
gh-symphony repo start --web --bind-all  # Explicitly bind the dashboard to all interfaces

Monitor from the terminal:

gh-symphony repo status                  # Show current status
gh-symphony repo status --watch          # Live terminal status
gh-symphony repo logs                    # View event logs
gh-symphony repo logs --follow           # Stream logs in real-time
gh-symphony repo logs --issue org/repo#1 # Filter by issue
gh-symphony repo logs --run <run-id>     # Read events for a specific run
gh-symphony repo logs --level <level>    # Filter by log level

Observability Surfaces

Use gh-symphony repo start --web when you want the browser-based control-plane dashboard. It starts the orchestrator and serves the React SPA at http://127.0.0.1:4680/ by default. The dashboard includes the project overview at / and per-issue detail pages at /issues/<encoded-identifier>, where issue identifiers such as acme/web#42 are URL-encoded as acme%2Fweb%2342. It is backed by the same JSON API used for status snapshots and refresh.

HTTP servers bind to 127.0.0.1 unless --bind-all is explicitly supplied. Every /api/v1/* request requires the bearer token printed by repo start. Set GH_SYMPHONY_HTTP_TOKEN to provide a stable shared secret; otherwise the CLI generates one for the process. The --web launch URL carries the token in the URL fragment, moves it to session storage, and removes it from the visible URL before API requests begin.

Use gh-symphony repo start --http when you only need the JSON status API, for example from CI, scripts, or another monitoring process. It exposes /api/v1/state, /api/v1/<encoded-identifier>, and POST /api/v1/refresh, but / is not a browser dashboard. Use repo status --watch for an interactive terminal view. For scripts, send Authorization: Bearer $GH_SYMPHONY_HTTP_TOKEN.

Dispatch a single issue manually:

gh-symphony repo run org/repo#123
gh-symphony repo run org/repo#123 --watch

End-to-End Walkthrough

This walkthrough shows the default happy path for one repository after gh-symphony setup has generated WORKFLOW.md and bound .runtime/orchestrator/ to a GitHub Project.

  1. Create or pick one issue in the managed repository, for example acme/web#42.

  2. Add that issue to the GitHub Project selected during setup.

  3. Move the Project item into a status that WORKFLOW.md maps to an active phase, such as Ready or In progress.

  4. Run one orchestration tick:

    gh-symphony repo start --once
  5. Symphony reads the Project item, checks that the repository and issue are dispatchable, creates an issue workspace under .runtime/orchestrator/, and starts the configured worker runtime.

  6. The worker receives the rendered issue prompt, follows the repository WORKFLOW.md, makes the requested change on a feature branch, and opens a draft PR linked back to the issue.

  7. Inspect the result:

    gh-symphony repo status
    gh-symphony repo logs --issue acme/web#42
    gh pr list --repo acme/web --search "42"

The expected first success is an opened PR for the managed issue. After that, the lifecycle continues through the statuses and handoff rules encoded in the repository WORKFLOW.md.

If GitHub reports that the source issue is already closed, or that a linked closing PR is merged, Symphony does not dispatch a worker even when the Project item was accidentally left in an active status. It reconciles that Project item to the first terminal status configured in WORKFLOW.md and emits a tracker-terminal-candidate-reconciled event.

If the issue does not dispatch, start with:

gh-symphony repo explain acme/web#42

The explanation reports whether the repository is linked to the active managed project, whether the issue is present in the Project, how its status maps in WORKFLOW.md, whether another run already owns it, and whether concurrency limits have capacity.

Advanced Setup Options

Repository Workflow Only

Use workflow init when you want to generate or update repository workflow files without running the full repository runtime setup:

cd your-repo
gh-symphony workflow init

Preview and validate generated files without writing anything:

gh-symphony workflow init --dry-run
gh-symphony workflow validate
gh-symphony workflow preview --issue owner/repo#123
gh-symphony doctor --smoke --issue owner/repo#123

The interactive wizard will:

  1. Authenticate via GITHUB_GRAPHQL_TOKEN or fall back to gh CLI
  2. Let you select a GitHub Project to bind
  3. Map project status columns to workflow phases (active / wait / terminal)
  4. Generate the following files:
File Description
WORKFLOW.md Workflow policy — the agent prompt template with lifecycle config
.codex/skills/ (or .claude/skills/) Agent skill definitions, including /gh-symphony references

Project discovery is pagination-aware for larger GitHub accounts, so personal projects, organization pages, and organization-owned projects are fetched across multiple API pages before selection. If the CLI hits a discovery safety cap, it keeps the partial list and prints a warning before you choose a board.

gh-symphony workflow init --dry-run resolves the same generated outputs, shows whether each path would be created, updated, or left unchanged, and prints the detected environment inputs that shaped the preview.

Those detected inputs are also threaded into the generated artifacts themselves: WORKFLOW.md and the runtime skill templates include repository-aware validation guidance based on the detected package manager, monorepo shape, and explicit validation entry points when present.

workflow init is not limited to Node repositories. The detector now recognizes conservative validation signals for:

  • JavaScript / TypeScript lockfiles and package.json scripts
  • Python repositories with uv.lock, poetry.lock, pyproject.toml, pytest.ini, and requirements*.txt
  • Go repositories with go.mod
  • Rust repositories with Cargo.toml
  • Top-level command runners such as Makefile and justfile

When the repository exposes an unambiguous entry point, the generated guidance will prefer commands such as make test, just lint, uv run pytest, go test ./..., or cargo test. When signals conflict at the same confidence level, the generator intentionally falls back to generic validation guidance instead of guessing.

Token-only interactive setup is supported:

export GITHUB_GRAPHQL_TOKEN=ghp_your_classic_token
gh-symphony workflow init

Customizing Agent Behavior

The generated skill files (under .codex/skills/ or .claude/skills/) define how the AI agent handles commits, pushes, pulls, and project status transitions. The /gh-symphony skill also includes references/ files for workflow schema details and prompt-body postures (implement, review, and maintain) that can be composed when designing or refining WORKFLOW.md.

You can further customize the agent's behavior by editing WORKFLOW.md or by adding repository-specific reference markdown under the /gh-symphony skill's references/ directory. WORKFLOW.md remains the policy layer that controls what the agent does at each workflow phase.

Currently supported runtimes: Codex CLI and Claude Code. The selected runtime command must be installed and authenticated before gh-symphony repo start can dispatch worker runs.

Explicit GitHub Priority Mapping

GitHub Project V2 priority is repository policy in WORKFLOW.md. The runtime uses exactly one configured source and never falls back or guesses renamed labels, Project fields, or option values. Anything unmapped resolves to priority = null.

Use a Project single-select field:

tracker:
  kind: github-project
  provider:
    project_id: PVT_kwDOxxxxxx
    state_field: Status
    priority:
      source: project-field
      field: Priority
      values:
        Urgent: 0
        High: 1
        Medium: 2
        Low: 3

Or use exact repository labels:

tracker:
  kind: github-project
  provider:
    project_id: PVT_kwDOxxxxxx
    state_field: Status
    priority:
      source: labels
      labels:
        P0: 0
        P1: 1
        P2: 2

Or disable priority dispatch explicitly:

tracker:
  kind: github-project
  provider:
    priority:
      source: disabled

Lower numbers dispatch first. If an issue has multiple configured priority labels, Symphony uses the lowest numeric value and emits priority.label_conflict_resolved. If an active issue carries an unmapped configured-source value, it resolves to priority = null and emits priority.unmapped.

Legacy tracker.priority_field: Priority remains supported for existing workflows, but it is deprecated because it uses live Project option order. Project field definitions are cached for the process lifetime, so field creation, removal, and option changes take effect after the daemon restarts. To migrate, replace it with tracker.provider.priority.source: project-field, copy the exact field name, and write explicit option-name-to-number mappings. If both legacy and explicit config are present, explicit tracker.provider.priority wins and diagnostics warn about the conflict.

gh-symphony workflow validate reports local config errors plus warnings for legacy priority configuration and ignored per-state concurrency entries. Each concurrency warning names the ignored agent.max_concurrent_agents_by_state path and reason, while valid entries in the same map remain active. Strict front-matter failures use stable workflow error codes; with --json, workflow validate includes both error.code and error.path. gh-symphony doctor additionally checks live Project/repository drift and reports the same local configuration warnings.

Token-Only Setup

Token-only setup is supported when exactly one GitHub Project is visible to the token:

export GITHUB_GRAPHQL_TOKEN=ghp_your_classic_token
gh-symphony setup

Repository Commands

gh-symphony doctor                   # Validate local prerequisites, auth, config, WORKFLOW.md, and runtime command
gh-symphony doctor --fix             # Create safe missing paths and print/run remediation follow-ups
gh-symphony doctor --smoke           # Final preflight: validate a live issue without dispatching work
gh-symphony doctor --bundle          # Export a redacted support bundle for bug reports
gh-symphony repo init                # Bind .runtime/orchestrator to the cwd repository
gh-symphony repo status              # Show current repository orchestration status
gh-symphony repo explain owner/repo#123  # Explain why one issue is not dispatching
gh-symphony repo start               # Start this repository
gh-symphony repo start --once        # Run one orchestration tick for this repository
gh-symphony repo stop                # Stop this repository
gh-symphony cache status             # Inspect shared bare caches, sizes, locks, and worktrees
gh-symphony cache prune --dry-run    # Preview 30-day cache eviction
gh-symphony cache prune --max-age-days 30 # Remove old idle caches safely

Standalone Projects

A standalone project is a project folder used as an independent orchestration instance, decoupled from the repository it targets. The folder owns WORKFLOW.md (which must declare repository.slug: owner/name), plus optional .mcp.json, .env, and .agent/skills/; the referenced repository itself stays unmodified. Issue workspaces are created under the project's workspace.root, relative to the project folder and defaulting to <project-dir>/.runtime/workspaces. Issue workspaces are populated as worktrees from a shared bare clone cache, and branches default to symphony/<project-slug>/<issue-id>, so multiple projects can orchestrate the same repository without branch collisions.

If cache storage is unavailable or lock acquisition times out, workspace population falls back to an isolated direct clone. Cache locks heartbeat during long clone/fetch operations. Cleanup is operator-driven: cache prune defaults to entries at least 30 days old and skips every locked cache, linked worktree, or cache whose worktree state cannot be verified.

cd <projectDir> && gh-symphony project start   # Start the project in this folder
gh-symphony project start --project-dir <dir>  # ...or name the folder explicitly
gh-symphony project status                     # Status for the project in this folder
gh-symphony project stop                       # Stop its daemon
gh-symphony project list                       # List cached standalone projects (with live instance metadata when available)
gh-symphony instances --json                    # List active repository and standalone instances

The project folder is the source of truth and the address: every command derives the runtime from the folder's WORKFLOW.md on each start, so editing the workflow takes effect on the next start with no registration step. project start --help lists its runtime flags, including --once, --daemon, --assigned-only, --allow-duplicate, --bind-all, --http, --web, --log-level, and --project-dir. --assigned-only is input to the tracker adapter's dispatchable derivation; the scheduler consumes that normalized eligibility result rather than interpreting provider-specific assignment rules. A verified live instance for the same project in another runtime is rejected by default; use --allow-duplicate only for intentional isolation. Starting refuses a tracker mapping that overlaps a project already running against the same repository, and asks for confirmation when the overlapping project is stopped. Two projects on one repository stay disjoint through tracker.provider.pickup_labels.include, which GitHub and Linear apply as an any-match candidate pre-filter. tracker.required_labels is separate: every configured label must remain present for an issue to be routable, including between worker turns. Label comparison is case-insensitive and ignores surrounding whitespace, so Agent, agent, and " AGENT " are the same label. repository.clone_url overrides the derived clone URL for mirrors, Enterprise hosts, or local paths. See docs/configuration.md for the project .env loading order and skill layering details.

Official Container Deployment

The official image is designed for headless orchestration and defaults to:

  • image: ghcr.io/hojinzs/github-symphony:<tag>
  • repository runtime volume: <repo>/.runtime/orchestrator
  • default command: gh-symphony repo start
  • runtime user: symphony (UID:GID 1000:1000)

Supported container environment variables:

  • GITHUB_GRAPHQL_TOKEN: recommended auth source inside containers; requires repo, read:org, project
  • GH_SYMPHONY_CONFIG_DIR: optional override for the runtime config directory; defaults to /var/lib/gh-symphony

See Configuration: Environment Variables for GHES endpoints, token brokers, runtime credentials, and tuning knobs used by containerized workers.

Supported volume mounts:

  • a cloned repository directory: persists WORKFLOW.md and .runtime/orchestrator/ across restarts

Named Docker volumes work as-is. If you use a host bind mount such as -v ./data:/var/lib/gh-symphony, the host directory must be writable by UID:GID 1000:1000 or the container will fail to persist state.

Prepare a bind-mounted host directory:

mkdir -p ./data
sudo chown -R 1000:1000 ./data

If you need to run the container with your host user instead, pass --user "$(id -u):$(id -g)" and make sure the mounted directory is writable by that same UID/GID:

docker run --rm -it \
  --user "$(id -u):$(id -g)" \
  -e GITHUB_GRAPHQL_TOKEN=ghp_your_classic_token \
  -v "$(pwd)/data:/var/lib/gh-symphony" \
  ghcr.io/hojinzs/github-symphony:latest \
  gh-symphony repo start --once

Initialize the repository runtime from inside the mounted repository once:

docker run --rm -it \
  -e GITHUB_GRAPHQL_TOKEN=ghp_your_classic_token \
  -v "$(pwd):/repo" \
  -w /repo \
  ghcr.io/hojinzs/github-symphony:latest \
  gh-symphony setup --non-interactive

Then start the long-running orchestrator from the initialized repository. The image default command is gh-symphony repo start, so the mounted working directory must already contain WORKFLOW.md and the repository runtime config created by setup.

docker run -d \
  --name gh-symphony \
  --restart unless-stopped \
  -e GITHUB_GRAPHQL_TOKEN=ghp_your_classic_token \
  -v "$(pwd):/repo" \
  -w /repo \
  ghcr.io/hojinzs/github-symphony:latest

Example docker compose deployment:

services:
  gh-symphony:
    image: ghcr.io/hojinzs/github-symphony:latest
    restart: unless-stopped
    working_dir: /repo
    environment:
      GITHUB_GRAPHQL_TOKEN: ${GITHUB_GRAPHQL_TOKEN}
    volumes:
      - ./:/repo

Run gh-symphony setup once before starting the service so the mounted repository has WORKFLOW.md and .runtime/orchestrator/.

If you prefer a host bind mount in docker compose, align the container user with the host directory owner:

services:
  gh-symphony:
    image: ghcr.io/hojinzs/github-symphony:latest
    working_dir: /repo
    user: "${UID:-1000}:${GID:-1000}"
    environment:
      GITHUB_GRAPHQL_TOKEN: ${GITHUB_GRAPHQL_TOKEN}
    volumes:
      - ./:/repo
      - ./data:/var/lib/gh-symphony

Create ./data ahead of time and ensure it is writable by the UID/GID that you pass through user.

For a first-run smoke check against an existing mounted config directory:

docker run --rm \
  -e GITHUB_GRAPHQL_TOKEN=ghp_your_classic_token \
  -v gh-symphony-data:/var/lib/gh-symphony \
  ghcr.io/hojinzs/github-symphony:latest \
  gh-symphony doctor --smoke --project-id your-project-id

Create a shareable support bundle when reporting setup or orchestration failures:

gh-symphony doctor --bundle
gh-symphony doctor --bundle ./tmp/support-bundle
gh-symphony doctor --bundle --project-id your-project-id

The bundle includes manifest.json, doctor.json, redacted config and project metadata, WORKFLOW.md, runtime status files when present, and bounded tails of recent run logs/events. Optional missing files are recorded in the manifest instead of failing the export.

Why Is My Issue Not Running?

Use gh-symphony repo explain <owner/repo#number> as the first diagnostic when a GitHub Project issue stays idle:

gh-symphony repo explain owner/repo#123
gh-symphony repo explain owner/repo#123 --json
gh-symphony repo explain owner/repo#123 --workflow ./WORKFLOW.md

The report checks whether the repository is linked to the active managed project, the issue is present in the GitHub Project item set, the current project status maps to active / wait / terminal in WORKFLOW.md, blockers are resolved, an existing run / retry / convergence state already owns the issue, and project or per-state concurrency limits still have capacity.

If the project has no previous local run snapshot and the repository path is not stored in the managed project config, pass --workflow so the command evaluates the same WORKFLOW.md that orchestration will use.

Example:

Issue dispatch explanation: owner/repo#123
Not dispatchable: Project state "Backlog" maps to wait, not active, in WORKFLOW.md.

Checks:
  ✓ Repository owner/repo is linked to the active managed project.
  ✓ Issue is present in the bound GitHub Project item set.
  ✗ Project state "Backlog" maps to wait, not active, in WORKFLOW.md.
    Hint: Move the GitHub Project item to an active state or run 'gh-symphony workflow preview' to inspect WORKFLOW.md state mappings.

Hints point back to existing troubleshooting commands such as workflow preview, doctor, repo status, and repo logs --issue.

Recover stalled runs:

gh-symphony repo recover                 # Recover stalled runs
gh-symphony repo recover --dry-run       # Preview what would be recovered

Repository Runtime

gh-symphony repo init binds the orchestrator to the cwd repository. It reads WORKFLOW.md (or --workflow-file <path>), infers owner/name from the Git remote, and writes per-repo runtime state under .runtime/orchestrator/. The selected absolute workflow path is persisted and validated before repo start or project start launches the daemon. When GH_SYMPHONY_CONFIG_DIR or --config <dir> is explicitly set, it also registers a path-scoped record in that shared config directory and makes it active, so repo start in the repository or one of its subdirectories selects this repository. Other repository records in the directory are preserved.

For Linear tracker repositories, WORKFLOW.md remains the source of truth:

tracker:
  kind: linear
  provider:
    api_key: $LINEAR_API_KEY
    project_slug: symphony-0c79b11b75ea
    pickup_labels:
      include:
        - agent
        - dev-ready
      exclude:
        - no-agent
        - needs-spec

gh-symphony repo init validates that tracker.provider.project_slug is present and that the optional tracker.provider.api_key reference resolves when supplied. Without it, Linear uses LINEAR_API_KEY. Deprecated flat keys remain compatible while gh-symphony doctor shows the normalized provider form. The legacy .gh-symphony/config.json file is not used as the Linear source of truth.

gh-symphony repo start --assigned-only also applies to Linear trackers. It is an input to the Linear adapter's dispatchable derivation: the adapter keeps candidate issues observable, compares each returned assignee.id with the authenticated viewer, and marks nonmatching or unassigned issues non-dispatchable. With a personal API key this viewer is that person; with a service-account key it is the service account. Symphony does not fail fast because Linear does not expose enough token metadata in the issue query path to distinguish those cases reliably.

GitHub and Linear workflows may configure tracker.provider.pickup_labels.include and tracker.provider.pickup_labels.exclude as candidate filters. Excluded labels always win; when include labels are configured, an issue needs any one include label before it is considered for dispatch. On GitHub, this pre-filter does not terminate an already-running worker when its labels change. Linear applies the pickup filter to ID refreshes too, so removing the sole included label can make an active worker stop during reconciliation. By contrast, tracker.required_labels is an all-of routability gate: removing one blocks new dispatches and due retries, and the worker stops before its next turn after a refreshed tracker read reports the issue is no longer routable. Label comparison is case-insensitive and ignores surrounding whitespace, so labels that differ only by case or outer whitespace cannot be used as separate gates.

Linear orchestration is polling-only. There is intentionally no Linear webhook setup command; state transitions, workpad comments, and PR handoff policy belong in WORKFLOW.md. See docs/examples/linear-WORKFLOW.md for a complete example.

Configuration

gh-symphony config show             # Show configuration
gh-symphony config set <key> <val>  # Set a configuration value
gh-symphony config edit             # Open config in $EDITOR

Diagnostics

gh-symphony doctor runs a single first-run diagnostic pass and exits non-zero if any required prerequisite is missing. gh-symphony doctor --fix adds a remediation pass on top of the same checks. gh-symphony doctor --smoke is the recommended final preflight before gh-symphony repo start --once: it resolves the active managed project, checks the GitHub Project binding, confirms the repository and target issue are readable through the project, renders WORKFLOW.md for that issue, verifies the runtime command, workspace root, and configured hook paths, and exits without dispatching a worker.

When cwd is a standalone project folder whose runtime config was cached by project start, doctor and live workflow preview diagnose that project even if another registry project is active. Explicit --project-dir <path> (doctor) or --project-id <projectId> (workflow preview) selection wins over cwd; outside such a standalone folder, diagnostics fall back to the registry's activeProject.

Use an explicit issue when you want a deterministic check:

gh-symphony doctor --smoke --issue owner/repo#123
gh-symphony doctor --smoke --issue owner/repo#123 --json

Without --issue, doctor auto-selects one active live issue from the managed project. If none is suitable, the report explains which active states it expected and suggests re-running with --issue.

gh-symphony doctor --fix can:

  • create missing config, runtime, and workspace directories
  • launch gh auth login / gh auth refresh in TTY environments, or print the exact command in non-interactive environments
  • launch gh-symphony workflow init when WORKFLOW.md is missing or invalid
  • launch gh-symphony setup when the repository runtime or GitHub Project binding must be reconfigured
  • print environment-specific runtime install guidance when the configured command is missing from PATH

The diagnostic checks cover:

  • the active GitHub auth source (GITHUB_GRAPHQL_TOKEN first, otherwise gh) and required scopes (repo, read:org, project)
  • Node.js runtime version against the documented minimum (v24+) and the current process.version
  • Git installation availability on PATH, including git --version when available
  • repository runtime resolution and GitHub Project binding lookup
  • runtime root and repository workspace writability
  • repository WORKFLOW.md presence and parse validity
  • configured runtime command availability on PATH
  • with --smoke: linked repository readiness, live issue readability, strict prompt rendering, and hook path resolution

Use --json for setup automation and smoke checks. When combined with --fix, the JSON report also includes a structured remediation step list with applied, skipped, or manual outcomes.

gh-symphony doctor --json
gh-symphony doctor --fix --json
gh-symphony doctor --smoke --json
gh-symphony repo start --once

JSON output includes the resolved auth source as env or gh.

Shell Completion

gh-symphony completion bash         # Print bash completion script
gh-symphony completion zsh          # Print zsh completion script
gh-symphony completion fish         # Print fish completion script

Concepts

  • Project — one GitHub Project bound to a set of repositories. Each project gets its own config, leases, and status snapshot. A single orchestrator manages multiple projects.
  • WORKFLOW.md — the per-repository (or per-project fallback) workflow policy file. Contains YAML front matter for lifecycle config and a Markdown body used as the agent prompt template.

Authentication

GitHub Symphony supports two authentication paths.

  1. GITHUB_GRAPHQL_TOKEN for local shells, containers, and CI-like environments
  2. gh CLI for interactive developer machines

Run gh setup once if you want to use the CLI-managed path:

gh auth login --scopes repo,read:org,project

Or if you need to add scopes to an existing login:

gh auth refresh --scopes repo,read:org,project

Use GITHUB_GRAPHQL_TOKEN when gh is unavailable or undesirable:

export GITHUB_GRAPHQL_TOKEN=ghp_your_classic_token

GITHUB_GRAPHQL_TOKEN takes priority over gh CLI. Interactive gh-symphony workflow init and gh-symphony setup will use the env token first when it is present and valid, and only fall back to gh when no usable env token is available. gh-symphony doctor also reports the resolved auth source as env or gh.

GitHub GraphQL Rate Limits

GitHub GraphQL rate limits are shared by every orchestrator process using the same token. If one host runs several repository orchestrators, prefer a separate GITHUB_GRAPHQL_TOKEN per repository or per runtime identity when that is operationally practical. Shared-token deployments still degrade gracefully: GitHub tracker polling slows down as remaining GraphQL budget falls, and the cached pre-request guard only hard-stops after the cached budget is exhausted.

GitHub Enterprise Server

For GitHub Enterprise Server, configure the GraphQL endpoint in WORKFLOW.md so the orchestrator, doctor checks, and dispatched worker all use the same host:

tracker:
  kind: github-project
  provider:
    endpoint: https://github.example/api/graphql
    project_id: PVT_xxx

Then initialize and validate the repository runtime:

export GITHUB_GRAPHQL_TOKEN=ghp_your_enterprise_token
gh-symphony repo init
gh-symphony doctor
gh-symphony doctor --smoke --issue owner/repo#123

GITHUB_GRAPHQL_API_URL remains an optional process-level override. If both tracker.provider.endpoint and GITHUB_GRAPHQL_API_URL are set, keep them identical; doctor reports the resolved endpoint and warns when they disagree. During dispatch, the GitHub tracker injects the configured tracker.provider.endpoint into the worker as GITHUB_GRAPHQL_API_URL, so worker-side github_graphql calls do not fall back to https://api.github.com/graphql.

WORKFLOW.md

WORKFLOW.md contains YAML front matter for lifecycle configuration and a Markdown body used as the agent prompt template.

Live reload and applied revision

You do not need to restart a running daemon after editing WORKFLOW.md. The orchestrator defensively reads and resolves the file at every reconciliation tick, so a valid edit takes effect at the next tick. The normal polling delay is configured by polling.interval_ms and capped at five minutes; reducing that value still waits for the already-scheduled tick before the shorter interval is used. agent.max_concurrent_agents and lifecycle policy follow the same next-tick rule, while future worker prompts use the newly resolved policy.

The daemon does not use a filesystem watcher. This is an intentional repository-local divergence from the upstream Symphony specification's watch requirement, documented in ADR 2026-08-26. Inspect repo status or project status for workflow.revision and workflow.loadedAt to identify the policy currently applied by the latest tick; dispatch events also include workflowRevision.

The generated file includes:

  • Lifecycle: core tracker.active_states and tracker.terminal_states, plus provider-owned blocker_check_states and planning_states, derived from the status column mapping. Lifecycle state names are matched case-insensitively after trimming. Missing blocker configuration defaults to the first active state; an explicit tracker.provider.blocker_check_states: [] disables blocker gating as an intentional spec divergence. Planning remains disabled unless configured explicitly.
  • Tracker provider: adapter-owned settings are generated under tracker.provider. Flat tracker keys are deprecated aliases and will be removed in the next major release (#679).
  • Runtime: agent_command derived from gh-symphony workflow init
  • Hooks: after_create hook path
  • Scheduler: poll_interval_ms
  • Retry: base_delay_ms, max_delay_ms
  • Status Map: visual mapping of status columns to roles
  • Agent Instructions: prompt template with {{issue.*}} and {{guidelines}} variables

Available template variables:

Variable Description
{{issue.identifier}} e.g. acme/platform#42
{{issue.title}} Issue title
{{issue.state}} Current tracker state
{{issue.description}} Issue body
{{issue.url}} Issue URL
{{issue.repository}} owner/name
{{issue.number}} Issue number
{{attempt}} Retry attempt number (null on first run)
{{execution_phase}} planning, implementation, or null
{{guidelines}} Prompt guidelines from WORKFLOW.md

tracker.provider.planning_states classifies matching states as planning; it does not impose a built-in plan-only gate or make a state eligible for dispatch. Use execution_phase in the prompt body when policy should change agent behavior, for example:

{% if execution_phase == "planning" %}
Produce a plan and move the issue to human review. Do not implement yet.
{% else %}
Implement and validate the requested change.
{% endif %}

Planning-state matching uses the same trimmed, case-insensitive comparison as active and terminal state matching. It is evaluated independently of dispatch eligibility and takes precedence over active-state classification, including when a state appears in both lists.

Generating WORKFLOW.md

gh-symphony workflow init generates a WORKFLOW.md in the current directory.

With a project already registered:

cd my-repo
gh-symphony workflow init        # generates ./WORKFLOW.md from active project config
gh-symphony workflow init --dry-run
gh-symphony workflow validate
gh-symphony workflow preview --issue owner/repo#123

--dry-run resolves the same generated WORKFLOW.md and runtime skill files, then prints whether each path would be created, updated, or left unchanged without writing anything.

When gh-symphony workflow init detects repository validation entry points, it bakes that information back into the generated policy files so the out-of-the-box workflow already tells agents which test/lint/build commands to prefer and whether workspace-aware validation is expected. That includes non-Node repositories when the detector can prove a conservative command from Makefile, justfile, Python tooling, go.mod, or Cargo.toml.

Without a project (standalone):

gh-symphony workflow init --non-interactive --project PVT_xxx --output WORKFLOW.md
gh-symphony workflow init --non-interactive --project PVT_xxx --dry-run

gh-symphony workflow validate parses the target file, strictly renders the prompt body and continuation guidance with canonical sample variables, and prints a compact runtime/lifecycle summary.

gh-symphony workflow preview --issue owner/repo#123 is the fastest validation step after workflow init: it resolves the active managed project (or --project-id) and renders the exact worker prompt from the live GitHub Project issue. Linear workflows can preview a single issue with gh-symphony workflow preview ENG-123, which routes through the configured Linear tracker adapter and LINEAR_API_KEY. Keep --sample <path-to-json> for fixture-based debugging, and use --attempt <n> to inspect retry prompts before changing policy files.

Resolution order

The orchestrator resolves the workflow policy using this fallback chain:

  1. Repository WORKFLOW.md — if the target repository has a WORKFLOW.md at its root, use it.
  2. Project WORKFLOW.md — if the repository has no WORKFLOW.md, fall back to the project-level WORKFLOW.md.
  3. Hardcoded defaults — if neither file exists, use built-in defaults (Todo, In Progress as active; Done as terminal; blocker checks enabled for Todo; planning states disabled).

This means you can:

  • Run without any WORKFLOW.md and rely on defaults
  • Use a single project-level WORKFLOW.md for all repositories
  • Override per-repository by committing a WORKFLOW.md to the repo root

Environment Variables

This section covers the project .env file and hook context merge order. For a single reference of every environment variable read by the CLI, orchestrator, worker, and runtimes, see Configuration: Environment Variables.

Project .env File

For project-specific secrets or staging settings, place a .env file under the orchestrator runtime project directory instead of committing values into WORKFLOW.md or repository scripts.

  • Default path: ~/.gh-symphony/projects/<project-id>/.env
  • If you run the CLI with a custom --config <dir>, the path becomes <dir>/projects/<project-id>/.env
  • The file is loaded as base env for workspace hooks and worker processes
# ~/.gh-symphony/projects/my-project/.env
STAGING_API_HOST=https://staging.example.com
PLAYWRIGHT_BASE_URL=http://localhost:3000
API_SECRET_KEY=sk-secret-xxx

Merge Order

Environment variables are merged from three sources (later overrides earlier):

Priority Source Description
1 (lowest) Project .env ~/.gh-symphony/projects/<project-id>/.env
2 System environment Orchestrator process's process.env
3 (highest) Symphony context Auto-injected SYMPHONY_* variables

In CI, regular process env can override the project .env without changing WORKFLOW.md.

Auto-injected Hook Variables

All hooks (after_create, before_run, after_run, before_remove) automatically receive the following variables in addition to the merged environment above:

Variable Description
SYMPHONY_PROJECT_ID Orchestrator project ID
SYMPHONY_ISSUE_WORKSPACE_KEY Workspace key for the issue
SYMPHONY_ISSUE_SUBJECT_ID Issue subject ID (tracker-specific)
SYMPHONY_ISSUE_IDENTIFIER e.g. acme/platform#42
SYMPHONY_WORKSPACE_PATH Absolute path to the issue workspace
SYMPHONY_REPOSITORY_PATH Absolute path to the cloned repository
SYMPHONY_RUN_ID Current run ID (absent in after_create)
SYMPHONY_ISSUE_STATE Current tracker state (absent in after_create)

Example: External Script File

Hooks are an opt-in, repository-local divergence from the upstream shell-command model. Set SYMPHONY_ALLOW_WORKFLOW_HOOKS=1 in the host environment, and point each hook at a committed executable script. Inline shell, bash prefixes, and shell operators are rejected; Symphony executes no implicit shell.

# WORKFLOW.md
hooks:
  after_create: hooks/after_create.sh
# hooks/after_create.sh
#!/usr/bin/env bash
set -euo pipefail

# cwd is the repository root
# Project .env variables are available as environment variables

echo "API_HOST=$STAGING_API_HOST" >> .env.development
echo "SECRET=$API_SECRET_KEY" >> .env.development

# Use auto-injected SYMPHONY_* variables
echo "Setting up workspace at $SYMPHONY_WORKSPACE_PATH"
echo "Issue: $SYMPHONY_ISSUE_IDENTIFIER"

Hooks always run with cwd set to the repository root. Script paths are relative to that root.

Headless orchestration

The orchestrator runs independently as long as the repository has been initialized with gh-symphony repo init.

# Via the CLI daemon
gh-symphony repo start                    # continuous polling
gh-symphony repo start --once             # run startup cleanup + one poll/reconcile/dispatch tick
gh-symphony repo start --http             # continuous polling + JSON status API on 127.0.0.1:4680
gh-symphony repo start --port 4800        # preferred alias for --http with an explicit port
gh-symphony repo start --once --http      # keep the JSON status API available after the one-shot tick until Ctrl+C
gh-symphony repo start --web              # continuous polling + browser dashboard on 127.0.0.1:4680
gh-symphony repo run beta/api#42          # dispatch a single issue

# Via the orchestrator package directly
pnpm --filter @gh-symphony/orchestrator start -- run
pnpm --filter @gh-symphony/orchestrator start -- run-once
pnpm --filter @gh-symphony/orchestrator start -- dispatch --project-id <id>
pnpm --filter @gh-symphony/orchestrator start -- run-issue --project-id <id> --issue <owner/repo#number>
pnpm --filter @gh-symphony/orchestrator start -- recover
pnpm --filter @gh-symphony/orchestrator start -- status

Runtime state lives under .runtime/orchestrator/:

Path Contents
project.json Repository runtime metadata
config.json Active repository runtime pointer
leases.json Active or released issue-phase leases
status.json Latest repository status snapshot
runs/<run-id>/run.json Run snapshot, retry state, worker assignment
runs/<run-id>/events.ndjson Structured orchestration events

Read orchestration state via the status API (/api/v1/state) rather than reading status files directly.

Run gh-symphony doctor --smoke before the first start --once when you want a safe pre-dispatch readiness check. gh-symphony repo start --once is the first production-like run: it validates the real GitHub Project binding, repository WORKFLOW.md, and dispatch eligibility, then performs one poll/reconcile/dispatch tick instead of starting a long-lived poller. Add --port [port] when you want the JSON status API available; --http [port] remains a supported alias. With --once --port, the one-shot tick still completes, but the HTTP server stays up afterward and the process keeps the project lock until you stop it with Ctrl+C. server.port in WORKFLOW.md enables the same API when no CLI port is supplied. Add --web instead when you want the browser dashboard at / plus the JSON API.

Verification

Before shipping a change:

pnpm lint
pnpm test
pnpm typecheck
pnpm build

Security posture

GitHub Symphony is intended for trusted, operator-controlled environments. With a configured GitHub token broker, Phase 1a keeps raw GitHub tracker-token aliases out of Codex and Claude coding-agent children, and Claude's generated MCP configuration does not store literal tracker tokens. Brokerless GitHub and Linear deployments temporarily retain raw tracker credentials so Git and MCP workflows continue; workers warn operators to configure the broker or wait for #700. The host-owned transport is described in ADR 2026-08-28.

Codex supports only approval_policy: never and uses the danger-full-access thread sandbox; Claude uses bypassPermissions. Other Codex approval policies fail workflow validation because operator approval handling is not implemented. Operators can configure the Codex sandbox settings, but must use least-privilege credentials, dedicated workspaces, and controls appropriate to their environment. The target transport keeps credentials in the Symphony host or a host-side broker, returns only bounded issue-aware tool results to agents, uses loopback-only local services with scoped session capabilities, and gives the child an isolated home/configuration directory rather than a host gh auth store. Authenticated Git transport is performed by the host.

This trust posture is an intentional repository-local divergence: Codex defaults to approval_policy: never with danger-full-access, Claude defaults to bypassPermissions, and untrusted user-input approval requests fail immediately rather than pausing for interactive confirmation.

Community and security

  • Contributing guide — development setup, validation, and pull request expectations.
  • Security policy — supported reporting path for vulnerabilities and sensitive disclosures.
  • Code of Conduct — community expectations for issues, discussions, and pull requests.
  • MIT License — project license terms.

License

This project is released under the MIT License.

About

Implementation of openai symphony used github project and multi-workspace

Resources

Code of conduct

Contributing

Security policy

Stars

16 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages