mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 02:15:12 +00:00
3.5 KiB
3.5 KiB
RUG Agentic Workflow
Three-agent workflow for orchestrated software delivery with an orchestrator plus implementation and QA subagents.
Tags: agentic-workflow, orchestration, subagents, software-engineering, qa
Items in this Collection
| Title | Type | Description | MCP Servers |
|---|---|---|---|
| RUG |
Agent | Pure orchestration agent that decomposes requests, delegates all work to subagents, validates outcomes, and repeats until complete. see usage | |
| SWE |
Agent | Senior software engineer subagent for implementation tasks: feature development, debugging, refactoring, and testing. | |
| QA |
Agent | Meticulous QA subagent for test planning, bug hunting, edge-case analysis, and implementation verification. |
Collection Usage
RUG
recommended
This workflow is designed as a coordinated trio:
RUGorchestrates decomposition, delegation, and validation loops.SWEexecutes implementation tasks.QAvalidates requirements, edge cases, and regressions.
Typical usage:
- Start with
RUGfor multi-step tasks. - Let
RUGdelegate coding toSWE. - Let
RUGdelegate verification toQA.
Best results:
- Keep each delegated task narrowly scoped.
- Require explicit acceptance criteria per task.
- Run a final cross-task validation pass before completion.