The Pattern
Two autonomous agent workflows (FORGE and TOMMY) were validated end-to-end through a BFF webhook trigger pipeline. FORGE selects the next unblocked ticket from a GitHub Project board and generates an implementation prompt. TOMMY atomises a repository into parallelisable task-lets. Both accept parameterised input (org, repo, branch, filters) and return structured responses. The key architectural insight is that n8n webhooks serve as an Agent-to-Agent (A2A) protocol boundary. The BFF doesn’t need to understand what the agents do internally. It discovers the webhook path from the workflow definition, forwards the payload, and returns the response. This makes adding new agent workflows a zero-code operation on the BFF side.Cross-Org Scalability
Both workflows proved cross-org capable in testing. FORGE was tested againsttraceo-ai/traceo-mcp-server (primary target) and so1-io/so1-content (cross-org probe). TOMMY was tested against both orgs and returned different tasklet counts based on repository structure. The only constraint is whether the GitHub token in n8n has access to the target org. No code changes are needed to support new orgs.