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>
This commit is contained in:
21
.wave/contracts/debug-reproduction.schema.json
Normal file
21
.wave/contracts/debug-reproduction.schema.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"required": ["expected_behavior", "actual_behavior", "reproduction_steps", "relevant_files"],
|
||||
"properties": {
|
||||
"expected_behavior": { "type": "string", "minLength": 1 },
|
||||
"actual_behavior": { "type": "string", "minLength": 1 },
|
||||
"reproduction_steps": {
|
||||
"type": "array",
|
||||
"items": { "type": "string" }
|
||||
},
|
||||
"relevant_files": {
|
||||
"type": "array",
|
||||
"items": { "type": "string" }
|
||||
},
|
||||
"environmental_factors": {
|
||||
"type": "array",
|
||||
"items": { "type": "string" }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user