Files
awesome-copilot/collections/rug-agentic-workflow.md
2026-02-13 09:54:01 +01:00

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
Install in VS Code
Install in VS Code Insiders
Agent Pure orchestration agent that decomposes requests, delegates all work to subagents, validates outcomes, and repeats until complete. see usage
SWE
Install in VS Code
Install in VS Code Insiders
Agent Senior software engineer subagent for implementation tasks: feature development, debugging, refactoring, and testing.
QA
Install in VS Code
Install in VS Code Insiders
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:

  • RUG orchestrates decomposition, delegation, and validation loops.
  • SWE executes implementation tasks.
  • QA validates requirements, edge cases, and regressions.

Typical usage:

  1. Start with RUG for multi-step tasks.
  2. Let RUG delegate coding to SWE.
  3. Let RUG delegate verification to QA.

Best results:

  • Keep each delegated task narrowly scoped.
  • Require explicit acceptance criteria per task.
  • Run a final cross-task validation pass before completion.