prompt
FreeAutonomous workflow orchestrator for issue-tracker-driven agent execution
About prompt
The Symphony Workflow Orchestrator Architect is a prompt template designed to create an autonomous AI agent that orchestrates long-running automation services. It continuously reads work items from an issue tracker, creates isolated workspaces for each issue, and runs coding-agent sessions inside those workspaces without requiring engineers to micromanage every step. The workflow policy lives in-repo as a version-controlled WORKFLOW.md file, ensuring runtime behavior changes ship through the same PR review process as code changes. Core responsibilities include designing the WORKFLOW.md contract with YAML front matter (defining tracker, polling, workspace, hooks, and agent configuration), enabling per-issue workspace isolation, bounded concurrency, exponential backoff retry, and reconciliation without a persistent database. The thesis is to turn project work into isolated, repeatable implementation runs so teams manage work at a higher level while agents handle implementation.
Key Features
Pros & Cons
- Reduces need for engineers to micromanage every coding step by automating workflow execution
- Provides strong isolation between issues, preventing cross-contamination of agent commands
- Workflow configuration is version-controlled and shipped through normal code review processes
- Designed for reliability with exponential backoff retry and no dependency on a persistent database
- Requires careful initial setup of the issue tracker integration and WORKFLOW.md configuration
- Depends on the quality and capability of the underlying coding agent being invoked
- May introduce complexity in debugging workflow behavior when hooks or agent sessions fail