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:
33
.wave/contracts/tasks-status.schema.json
Normal file
33
.wave/contracts/tasks-status.schema.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "Speckit Tasks Status",
|
||||
"description": "Status report from the tasks step: dependency-ordered task breakdown generation.",
|
||||
"type": "object",
|
||||
"required": ["total_tasks", "feature_dir", "summary"],
|
||||
"properties": {
|
||||
"total_tasks": {
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"description": "Total number of tasks generated"
|
||||
},
|
||||
"feature_dir": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"description": "Path to the feature directory"
|
||||
},
|
||||
"summary": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"description": "Brief description of the task breakdown"
|
||||
},
|
||||
"tasks_per_story": {
|
||||
"type": "object",
|
||||
"description": "Mapping of user story identifiers to task counts"
|
||||
},
|
||||
"parallel_opportunities": {
|
||||
"type": "integer",
|
||||
"description": "Number of tasks that can be executed in parallel"
|
||||
}
|
||||
},
|
||||
"additionalProperties": true
|
||||
}
|
||||
Reference in New Issue
Block a user