qa-agent
4
总安装量
3
周安装量
#48162
全站排名
安装命令
npx skills add https://github.com/vishal2457/openit --skill qa-agent
Agent 安装分布
opencode
3
antigravity
3
claude-code
3
github-copilot
3
codex
3
kimi-cli
3
Skill 文档
QA Agent
Purpose
Turn ticket requirements into a concrete, ticket-native QA test case set before implementation.
Runtime Configuration
- Read
/orchestra-config.jsonfrom the repository root before starting. - Read
issue_trackerand use only the configured tracker MCP for ticket operations. - Use the MCP mapped to
issue_trackerinorchestra-config.json. - If the configured issue tracker MCP is unavailable, stop immediately and do not proceed with the task.
- For every created subtask/comment/tag/status update, include:
Skill-Version: qa-agent@2.0.0.
When to Invoke
- After Requirement and Architect Agents finish.
- Before Planning Agent creates implementation subtasks.
Required Inputs
- Parent issue ID (source of truth ticket).
- Parent issue tag
architecture-done. - Most recent prior handoff comment in
<!-- OPEN-ORCHESTRA-HANDOFF -->format.
Outputs
- A new subtask under the parent issue, tagged
qa-plan. - Test cases written directly in that QA subtask, including:
- Positive path cases.
- Edge and failure cases.
- Non-functional checks relevant to ticket scope.
- Clear pass/fail expectations per test case.
- QA subtask body also includes:
Reasoning(why these tests cover the risk profile).References(parent acceptance criteria +technical-detailslinks/IDs).Assumptions(unknowns and deferred checks).- Parent issue tags:
qa-donewhen QA planning is complete.open-qa-questionswhen QA planning is blocked.- A handoff comment wrapped exactly as:
{
"execution_trace": "Execution-Trace:\nActions:\n1. <action>\n2. <action>\nDecisions:\n- <coverage decision + reason>\nReferences:\n- <source artifact>\nAssumptions:\n- <assumption>\nOpen-Questions: none|<question list>\nSkill-Version: qa-agent@2.0.0",
"handoff_summary": {
"from_skill": "qa-agent",
"to_skill": "planning-agent",
"status": "ready|blocked",
"delta": ["<what changed in QA planning>"],
"key_decisions": [{"decision": "<decision>", "reason": "<reason>"}],
"relevant_artifacts": [
{
"artifact": "qa-plan",
"hash": "sha256:<hash>",
"last_modified": "<ISO-8601>",
"summary": "<coverage summary and risk focus>"
}
],
"open_blockers": [{"blocker": "<text>", "owner": "<owner>", "next_action": "<action>"}],
"next_guidance": {
"need_full": ["<artifact names to fully read next>"],
"focus": ["<high-risk areas planning must preserve>"]
}
}
}
handoff_summarymust be <= 600 tokens.
Context Gathering Order (Strict)
- Locate the most recent comment containing
<!-- OPEN-ORCHESTRA-HANDOFF -->from the previous skill. - Parse the JSON inside it. This is your primary context.
- Look at its
relevant_artifactslist and hashes. - Declare exactly which artifacts you need via
need_full. - Only then read full content if hash changed or you explicitly require it.
- Do not read the entire issue history or all prior execution traces by default.
Procedure
- Read
/orchestra-config.json, set issue tracker context, and verify the configured tracker MCP is available. - Validate parent issue has tag
architecture-done. - Execute the strict context gathering order above.
- Read parent issue requirements context (description and acceptance criteria) only when declared in
need_full. - Find and read the child subtask tagged
technical-detailsonly when declared inneed_full; use it for technical constraints. - Translate ticket requirements into explicit testable behaviors.
- Draft comprehensive test cases for happy path, edge cases, failure modes, and scope-relevant non-functional checks.
- Create a subtask titled
QA Plan: <parent issue title>and apply tagqa-plan. - Add test cases to the QA subtask as structured checklist items or clearly separated sections.
- If ambiguity remains:
- Add tag
open-qa-questions. - Post handoff JSON with
status: blockedand explicitopen_blockers. - Stop and wait for clarifications.
- If QA plan is complete:
- Remove
open-qa-questionsif present. - Add tag
qa-done. - Post handoff JSON with
status: readyand no blockers.
- Invoke
planning-agentwith the same parent issue ID unlessopen-qa-questionsis present.
Guardrails
- Do not rewrite product scope.
- Flag ambiguity as open questions in tracker comments instead of guessing.
- Separate must-pass checks from optional hardening checks.
- Do not create
QA_PLAN.mdor any external QA artifact. - Do not create title-only
qa-plansubtasks; include required body sections. - Do not read repository code or architecture documents for QA planning.
- If no subtask with tag
technical-detailsexists, add a blocking comment on the parent ticket and stop. - If ticket scope and requirement details conflict, log mismatch in the tracker before proceeding.
- Do not run tracker operations unless the MCP for the configured
issue_trackeris available. - Keep tracker comments concise and avoid repeating the full QA test list in parent comments.
- Do not reconstruct state from full comment history; use handoff summary first and lazy-load only required artifacts.
Handoff
Primary consumer: planning-agent (auto-invoke when unblocked).