agentsclimarketplace

Agent qa gate

Skill Amey-Thakur/AI-SKILLS/skills/multi-agent-teams/agent-qa-gate

Place a QA agent as the last blocking node before output ships, checking acceptance criteria against executed test evidence with the power to veto. Use when builder agents keep declaring done on work that does not meet its criteria and you need one gate that runs the artifact instead of trusting the claim.From its SKILL.md

Install
npx -y skills add Amey-Thakur/AI-SKILLS --skill agent-qa-gate

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 29 days oldThe repository was created 29 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 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.3 KB, 689 tokens by cl100k_base, as published. Nobody here has run it

Agent QA gate

Builder agents are optimists: they report success from reading their own output, not from running it. A QA gate is the one node that refuses to take their word. It holds the acceptance criteria fixed from before the build, executes the artifact, maps each criterion to hard evidence, and can veto the ship. That authority is the point: a gate you can talk past is decoration.

Method

  1. Freeze the acceptance criteria first. Load qa-engineer-role. Criteria are written Given/When/Then and locked before any builder starts, so the target cannot drift to match whatever got produced. Vague criteria make the gate unenforceable.
  2. Run the artifact, do not read it. The gate executes: it runs the tests, drives the flow, calls the endpoint. A pass asserted from inspecting code is not a pass. The gate reproduces the claimed behavior itself.
  3. Demand evidence, not assertions. Each criterion maps to an artifact: a test log, command output, a screenshot, a captured response. "It works" is rejected. The evidence bundle is what the verdict rests on.
  4. Map every criterion and fail on any gap. Build a table: criterion, evidence, pass or fail. A criterion with no evidence is a fail, not a pending. Partial coverage is a no-go, because the unmapped criterion is where the defect hides.
  5. Exercise the unhappy paths. Empty input, malformed input, the permission edge, the concurrent case. A gate that confirms only the demo path has verified the least interesting part of the work.
  6. Hold veto power with one named override. The gate blocks on any fail, and nothing ships past a block except by a named human accepting the risk in writing. No builder agent can override its own gate.

Run it

In Claude Code, make the QA gate a subagent that runs after the builders and actually executes their output through the Bash tool: run the suite, capture the output, drive the flow. Pass it the frozen criteria and the built artifact as files; it returns an acceptance report, criterion to evidence to verdict, plus a go or no-go. The orchestrator treats a no-go as terminal: route back to the builders, do not proceed. To port, the gate is a CrewAI final task whose guardrail fails the crew, an AutoGen agent with a termination check on the evidence, or a LangGraph conditional edge that loops back to the build node until every criterion passes.

Signals it works

  • Every acceptance criterion links to a piece of executed evidence, none pending.
  • The gate has actually run the artifact, not just read the diff.
  • A no-go blocks the pipeline until a fix or a named human override, never a nag.

Boundaries

The gate verifies against criteria, it does not write them: that belongs to the PM or the spec. It also does not fix what it fails; it routes failures back to the builders and defers the risk-acceptance call to a human release owner. For iterative code correctness before the gate, use agent-code-review-loop.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.