원클릭으로
verify-changes
Verify codebase modifications, execute test runners, detect file change scope using GitNexus, and persist session memory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Verify codebase modifications, execute test runners, detect file change scope using GitNexus, and persist session memory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation, combined with GitNexus and AgentMemory.
Trace call graphs, dependencies, and execution flow of target code using GitNexus.
Convert binary and formatted documents (PDF, DOCX, XLSX, PPTX, HTML, ZIP, etc.) to Markdown using MarkItDown and extract requirements.
Safe, structured refactoring of target code using GitNexus graph mapping, AgentMemory checks, and TDD workflows.
Run targeted unit/integration tests on changed components, run full regression suites, and log outcomes in memory.
Master orchestrator skill for triaging, planning, and executing tasks, combined with GitNexus, AgentMemory, and superpowers subagent handoffs.
| name | verify-changes |
| description | Verify codebase modifications, execute test runners, detect file change scope using GitNexus, and persist session memory. |
This skill automates testing, file modification scope checks, session documentation, and memory database updates before completing a task.
npm test or npm run test./mvnw test or ./gradlew test/debug-smart to resolve regressions.gitnexus.detect_changes on the workspace directory.implementation_plan.md tasks list:
Generate a detailed walkthrough.md file in the workspace containing:
task.md.agentmemory/openclaw-memory tools to save the session outcome.digraph verify_flow {
"Locate & Execute Tests" [shape=box];
"All Tests Pass?" [shape=diamond];
"Trigger /debug-smart" [shape=box];
"Detect Changes\n(gitnexus.detect_changes)" [shape=box];
"Unplanned Files Modified?" [shape=diamond];
"Discard Unplanned Changes\n& Clean Dead Code" [shape=box];
"Write walkthrough.md" [shape=box];
"Persist Session to Memory\n(agentmemory)" [shape=doublecircle];
"Locate & Execute Tests" -> "All Tests Pass?";
"All Tests Pass?" -> "Trigger /debug-smart" [label="no"];
"Trigger /debug-smart" -> "Locate & Execute Tests";
"All Tests Pass?" -> "Detect Changes\n(gitnexus.detect_changes)" [label="yes"];
"Detect Changes\n(gitnexus.detect_changes)" -> "Unplanned Files Modified?";
"Unplanned Files Modified?" -> "Discard Unplanned Changes\n& Clean Dead Code" [label="yes"];
"Discard Unplanned Changes\n& Clean Dead Code" -> "Write walkthrough.md";
"Unplanned Files Modified?" -> "Write walkthrough.md" [label="no"];
"Write walkthrough.md" -> "Persist Session to Memory\n(agentmemory)";
}
To ensure robust and maintainable code, always follow these four core principles inspired by Andrej Karpathy:
Don't assume. Don't hide confusion. Surface tradeoffs.
Minimum code that solves the problem. Nothing speculative.
Touch only what you must. Clean up only your own mess.
Define success criteria. Loop until verified.