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:
36
.wave/contracts/checklist-status.schema.json
Normal file
36
.wave/contracts/checklist-status.schema.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "Speckit Checklist Status",
|
||||
"description": "Status report from the checklist step: quality checklist generation for requirement validation.",
|
||||
"type": "object",
|
||||
"required": ["checklist_files", "total_items", "feature_dir", "summary"],
|
||||
"properties": {
|
||||
"checklist_files": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": "Paths to generated checklist files"
|
||||
},
|
||||
"total_items": {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"description": "Total number of checklist items across all files"
|
||||
},
|
||||
"feature_dir": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"description": "Path to the feature directory"
|
||||
},
|
||||
"summary": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"description": "Brief description of the checklists generated"
|
||||
},
|
||||
"critical_gaps": {
|
||||
"type": "integer",
|
||||
"description": "Number of critical quality gaps identified"
|
||||
}
|
||||
},
|
||||
"additionalProperties": true
|
||||
}
|
||||
Reference in New Issue
Block a user