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:
30
.wave/contracts/clarify-status.schema.json
Normal file
30
.wave/contracts/clarify-status.schema.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "Speckit Clarify Status",
|
||||
"description": "Status report from the clarify step: ambiguity resolution and spec refinement.",
|
||||
"type": "object",
|
||||
"required": ["questions_asked", "answers_encoded", "feature_dir", "summary"],
|
||||
"properties": {
|
||||
"questions_asked": {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"description": "Number of clarification questions identified"
|
||||
},
|
||||
"answers_encoded": {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"description": "Number of clarifications resolved and encoded into the spec"
|
||||
},
|
||||
"feature_dir": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"description": "Path to the feature directory"
|
||||
},
|
||||
"summary": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"description": "Brief description of clarifications made"
|
||||
}
|
||||
},
|
||||
"additionalProperties": true
|
||||
}
|
||||
Reference in New Issue
Block a user