Virtual engineering team
Skill Amey-Thakur/AI-SKILLS/skills/multi-agent-teams/virtual-engineering-team
Run a product-engineering squad of agents from spec to shipped change with a PM, an architect, two engineers, a reviewer, and QA. Use when a task is too large for one agent and needs both division of labor and an independent quality gate.From its SKILL.md
npx -y skills add Amey-Thakur/AI-SKILLS --skill virtual-engineering-teamAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.7 KB, 791 tokens by cl100k_base, as published. Nobody here has run it
Virtual engineering team
Hand one agent "build the feature" and it carries the spec, the design, two implementations, and its own review in a single context, then quietly drops half of them. A squad splits that load so each agent owns a narrow charter and passes a named artifact to the next. The shape is a sequential spine that fans out to two parallel builders, converges through review, and ends at a QA gate.
Team
- PM (
product-manager-role): turns the request into a frozen, testable spec. - Architect (
principal-architect-role): produces the design and the file split. - Backend engineer (
backend-engineer-role): builds only the server files it owns. - Frontend engineer (
frontend-engineer-role): builds only the client files it owns. - Reviewer (
code-review): reads both diffs and files blocking findings. - QA (
qa-engineer-role): runs the merged branch against every criterion.
Method
- PM freezes the spec. Output
spec.md: problem, user stories, and acceptance criteria in Given/When/Then. Nothing downstream begins until the criteria are testable, because a moving target defeats the gate at the end. - Architect designs and splits. Output
design.md, typed interface stubs, and a task table assigning each engineer a disjoint file set. The split is the contract that keeps two builders from editing the same path. - Engineers build in parallel against the stubs. Each returns a git branch and a diff touching only its assigned files. The shared stubs are the seam, so neither engineer blocks on the other's internals.
- Reviewer reads both diffs in execution order. Output a findings list:
file:line, severity, failing scenario, fix. Route each blocker to the owning engineer, not to the whole squad. - Loop review until it converges. The engineer marks each finding fixed or rebutted with a reason. Cap at three rounds, then escalate a stuck point to a human rather than let agents argue taste.
- QA gates the merge. QA maps every acceptance criterion to executed test evidence and returns go or no-go. Any unmapped criterion is a no-go.
Run it
In Claude Code, give each role its own subagent through the Task tool and paste
the matching role skill into that subagent's prompt so it holds one charter.
The orchestrator walks the spine in order, spawns the two engineers in a single
parallel batch, then runs reviewer and QA. Pass artifacts as files on a shared
branch: spec.md, design.md, the diffs, the findings list. Stop when QA
returns go with all criteria green and no open blockers, or when the review loop
hits its cap and escalates. To port, model the spine as a CrewAI sequential Crew
with a parallel engineer task group, an AutoGen GroupChat, or a LangGraph graph
with a fan-out node and a QA node that conditionally routes back to the builders.
Signals it works
- Each engineer's diff touches only the files the architect assigned it.
- QA's no-go always cites a specific acceptance criterion, never a vibe.
- The spec is frozen before code exists, so scope creep has nowhere to enter.
Boundaries
This squad fits a bounded feature, not an open research problem where the spec itself is the unknown. It defers the ship decision to a release owner and does not replace human sign-off on anything irreversible. Size the team to the task: a one-file fix needs an author and a reviewer, not six agents.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.