Symphony workflow automation tool works with Claude Code

Symphony workflow automation with Claude Code
A developer successfully implemented the Symphony specification using Claude Code, creating an automated workflow that handles tickets from issue tracking through to pull requests.
How the workflow works
The Symphony tool follows this sequence:
- Raise a ticket in Linear (can be swapped for JIRA or GitHub Issues)
- Move the ticket from backlog to TODO
- Symphony picks up the ticket, checks out a branch, codes the work, and creates a PR
- You review and merge
- Symphony GUI shows status as the job runs
Implementation details
The developer used Node and TypeScript for the initial implementation but noted: "I quickly realized why OpenAI reference implementation used Elixir. This needs a language like Elixir." They plan to switch to Elixir, seeing it as "a good excuse to learn."
Setup requirements
Key setup considerations:
- You need to set up API keys and token billing for this to work
- This does not use your Claude Code Max or Pro subscription (or the developer didn't find a way to make it work)
- This billing setup might be a reason not to use it liberally
Tool preferences
The developer prefers GitHub Issues over other issue tracking systems, stating: "I will probably use Github issues (not keen on another issue tracking system)."
The code is available at: https://github.com/obelix74/symphony
📖 Read the full source: r/ClaudeAI
👀 See Also

NGX-OS: Network OS Built for AI with eBPF and MCP Integration
NGX-OS is a network operating system designed from the ground up for AI integration, using eBPF for real-time telemetry and MCP for direct LLM access to network state data without translation layers.

Pilot Protocol: Open-Source P2P Network Stack for AI Agent Swarms
Pilot Protocol is an open-source Layer 3 and Layer 4 overlay network stack designed specifically for AI agent communication, providing direct encrypted UDP tunnels between agents with permanent 48-bit virtual addresses.

Open-source trust scoring hook for Claude Code monitors sessions, blocks protected paths
A developer built a Python hook that scores every Claude Code session on reliability, scope, and cost dimensions, blocks access to protected paths like .env files, and hash-chains events for tamper detection. The single-file tool is available on GitHub.

altRAG: Replace Vector DB RAG with 2KB Pointer Files for AI Coding Agents
altRAG is a Python tool that replaces vector database RAG with lightweight pointer files. It scans Markdown/YAML skill files to create a 2KB skeleton file mapping sections to exact line numbers and byte offsets, allowing AI agents to read only needed sections instead of entire files.