원클릭으로
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"