OpenAI Symphony — From Supervising Agents to Managing Work
OpenAI releases Symphony, an open-source automation tool that automatically executes agents from GitHub Issues (Linear) and creates PRs.
OpenAI Symphony — From Supervising Agents to Managing Work
OpenAI has released a new open-source project called Symphony that automates the entire workflow from GitHub Issues (Linear) to autonomous agent execution and PR creation. It represents a paradigm shift from “supervising coding agents” to “managing work.”
What is Symphony?
Symphony is a long-running automation service that continuously monitors an issue tracker (Linear in this version), creates isolated workspaces for each issue, and runs a coding agent session inside each workspace.
Traditional approach:
- Developer gives instructions to an agent
- Developer supervises the agent’s work
- Developer reviews the output
With Symphony:
- Monitors Linear board for new issues
- Automatically creates isolated workspace
- Runs agent to complete the task
- Generates PR with proof of work
- Developer only manages “work flow”
Key Features
- Issue Tracker Integration: Monitors Linear for new work items automatically
- Isolated Workspaces: Creates separate working environment for each issue
- Autonomous Execution: Launches Codex in app-server mode within the workspace
- Proof of Work: Generates CI status, PR review feedback, complexity analysis, walkthrough videos
- Safe Merging: PRs are safely merged after human approval
Technical Specifications
- Implementation: Elixir/OTP (prototype)
- Workflow Definition: Uses
WORKFLOW.mdin repository for version-controlled prompts - Concurrency: Up to 10 parallel agents (configurable)
- Auto-cleanup: Automatically cleans up when issues move to terminal states (Done, Closed)
- Security: Default safe sandbox policy (workspace-write)
Relation to “Harness Engineering”
Symphony builds on OpenAI’s “Harness Engineering” approach announced the same day. For agents to work effectively, human-readable tests, specifications, and validations are prerequisites. Symphony is the next step—automating the flow of work itself.
Future Plans
OpenAI positions Symphony as a “low-key engineering preview” for testing in trusted environments. They encourage implementations in any programming language based on SPEC.md.
Upcoming:
- Multiple issue tracker support
- More flexible workflow definitions
- Enterprise-grade security enhancements
Getting Started
git clone https://github.com/openai/symphony
cd symphony/elixir
mise install
mix setup
mix build
./bin/symphony ./WORKFLOW.md
Conclusion
Symphony represents a new paradigm where AI agents are not “tools” to be used but “workers” to be managed. Developers may shift from supervising individual coding agents to managing entire work flows.
- Repository: https://github.com/openai/symphony
- Specification: https://github.com/openai/symphony/blob/main/SPEC.md
関連記事
OpenAI Symphony — エージェントの監視から「仕事の管理」へのパラダイムシフト
OpenAIが新プロジェクトSymphonyを公開。GitHub Issue (Linear)から自動的にエージェントを実行し、PRを作成まで行う自律型オートメーションツール。
Claude Code v2.1.64 リリース — Remote Control新機能とパフォーマンス改善
Claude Code v2.1.64がリリース。Remote Controlサブコマンド追加、BashToolパフォーマンス改善、コンテキスト自動保存機能強化など多数の改善を含む。
Claude Code v2.1.66 リリース — 新规スラッシュコマンドとHTTP Hooksの導入
Claude Code v2.1.66がリリース。/simplify・/batchスラッシュコマンドの追加、HTTP Hooksサポート、多数のパフォーマンス改善とメモリリーク修正を含む。
人気記事
Cursor Automations リリース - トリガーとスケジュールに基づく常駐エージェント
Cursorが新しいAutomations機能をリリース。トリガーとスケジュールに基づいて動作する常駐エージェントを構築できる。
Cursor v2.7 リリース - JetBrains IDEでのCursor利用が可能に
Cursor v2.7では、Agent Client Protocol (ACP)を通じてIntelliJ IDEA、PyCharm、WebStormなどのJetBrains IDEでCursorが利用可能になった。
Cursor v2.6 リリース - MCP Appsとチーム向けプラグイン管理機能
Cursor v2.6では、エージェントチャット内でのインタラクティブなUI、プライベートプラグインのチーム共有機能強化、デバッグモードの改善などが発表された。
最新記事
Claude Code v2.1.72 リリース - 自動メモリ保存とループ機能追加
AnthropicがClaude Code v2.1.72をリリース。自動メモリ保存、/copyコマンド、/loopコマンド、Cronスケジュールツール、Voiceキーバインディングなど多数の新機能を搭載。
Gemini 3.1 Pro — コーディング・推論性能で業界トップを争夺
GoogleのGemini 3.1 Proは、2026年2月に発表された最新推論モデル。SWE-Bench Verified 80.6%、LiveCodeBenchで2887スコアを達成し、Claude Opus 4.6と並ぶトップレンジモデルとして注目される。
OpenAI Symphony — エージェントの監視から「仕事の管理」へのパラダイムシフト
OpenAIが新プロジェクトSymphonyを公開。GitHub Issue (Linear)から自動的にエージェントを実行し、PRを作成まで行う自律型オートメーションツール。