Knowledge
Search knowledge... ⌘K
Knowledge · Framework · SDLC · FDD5
Verify + Commit
Prove the work is correct before it ships. Build must compile clean with zero warnings. Tests must pass — unit, integration, and e2e. Model-code conformance ensures the implementation is a 100% representation of the model. The governed commit includes traceability trailers linking to task IDs, decision records, and feature references. No human validation needed — the agent validates autonomously.
Metadata
FDD5 VERIFY
Steps
Showing 3 of 4
- 1 Build Verification
zero warnings, clean compile
- 2 Test Execution
unit, integration, e2e
- 3 Conformance Check
model-code bi-directional alignment
Deliverables
- Clean build output (zero warnings)
- All tests green (unit + integration + e2e)
- Model-code conformance report
- Git commit with governance trailers (task ID, decision refs)
Example Outputs
- Build: 'sbx build --platform go --dir pkg/packages' exits 0
- Tests: '12 passed, 0 failed, 0 skipped' across 3 test suites
- Conformance: 'package.yml exports match Go public API — 100% aligned'
- Commit: 'feat(packages): delivery tracking — Task: 2603-300, Decision: #0180'