Files
librenotes/.wave/contracts/smoke-test.schema.json
Michael Czechowski 59411ede0f Add Wave contract schemas for pipeline validation
JSON Schema definitions for all pipeline handover contracts
including issue analysis, research, enhancement, and sync flows.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 17:02:07 +01:00

31 lines
686 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Smoke Test Analysis",
"type": "object",
"required": [
"summary",
"files_examined",
"recommendation"
],
"properties": {
"summary": {
"type": "string",
"minLength": 10,
"description": "Brief summary of the analysis"
},
"files_examined": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"description": "List of files that were examined"
},
"recommendation": {
"type": "string",
"minLength": 10,
"description": "Recommendation based on analysis"
}
},
"additionalProperties": false
}