一键导入
agile-v-evidence
Evidence collection and update behavior for Agile-V task lifecycle.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Evidence collection and update behavior for Agile-V task lifecycle.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Implementation behavior for builder sessions following the Agile-V process.
Apply Agentic Agile-V process control, task briefs, risk-based evidence gates, and human approval rules.
Risk level classification guidance (L0-L4) for Agile-V tasks.
Independent review behavior for verifier sessions in the Agile-V process.
基于 SOC 职业分类
| name | agile-v-evidence |
| description | Evidence collection and update behavior for Agile-V task lifecycle. |
Maintain an accurate, real-time evidence bundle throughout the task lifecycle. Evidence is collected from Git and CI — not from agent memory.
Collect evidence before claiming the task is done. Do not write "tests pass" until you have run them and recorded the output. Do not write "lint passes" until you have run the lint command.
.agentic-agile-v/tasks/AAV-XXXX/evidence_bundle.json
{
"task_id": "AAV-XXXX",
"risk_level": "L1|L2|L3|L4",
"changed_files": [],
"tests": {
"added": [],
"modified": [],
"run": [],
"results": []
},
"checks": {
"lint": {},
"typecheck": {},
"build": {}
}
}
git diff --name-only HEAD or git statusNever paraphrase CI or test output. Paste the relevant lines verbatim into the evidence bundle.
If using OpenHands, also add:
{
"agent_execution": {
"engine": "openhands",
"mode": "builder|verifier",
"session_id": "...",
"tool_log_path": "logs/openhands_tool_log.jsonl"
},
"scope_control": {
"allowed_paths": [],
"blocked_paths": [],
"changed_files_within_scope": true
}
}
changed_filestests.run and tests.resultschecksallowed_paths"pass" for a test you have not run"no issues" for a lint check you have not run"skipped" and the rationale — not "pass"