Add bounded generation transition receipts
This commit is contained in:
parent
4cc6277054
commit
9a48233983
21 changed files with 3822 additions and 65 deletions
|
|
@ -33,6 +33,7 @@
|
|||
"mcp.impact",
|
||||
"mcp.context",
|
||||
"mcp.task_context",
|
||||
"mcp.generation_diff",
|
||||
"mcp.validate_project",
|
||||
"mcp.render_status",
|
||||
"mcp.visualize",
|
||||
|
|
@ -55,6 +56,7 @@
|
|||
"cli.dependencies",
|
||||
"cli.impact",
|
||||
"cli.context",
|
||||
"cli.generation-diff",
|
||||
"cli.render",
|
||||
"cli.render-status",
|
||||
"cli.preview",
|
||||
|
|
@ -151,6 +153,7 @@
|
|||
"enum": [
|
||||
"context.items",
|
||||
"task-context.items",
|
||||
"generation-diff.items",
|
||||
"changeset.list",
|
||||
"changeset.inspect",
|
||||
"changeset.validate",
|
||||
|
|
@ -216,7 +219,18 @@
|
|||
"properties": {
|
||||
"code": { "type": "string", "minLength": 1 },
|
||||
"message": { "type": "string", "minLength": 1 },
|
||||
"details": { "type": "object" }
|
||||
"details": { "type": "object" },
|
||||
"remediation": {
|
||||
"type": "object",
|
||||
"required": ["retryable"],
|
||||
"properties": {
|
||||
"retryable": { "type": "boolean" },
|
||||
"action": { "type": "string", "minLength": 1 },
|
||||
"tool": { "type": "string", "minLength": 1 },
|
||||
"arguments": { "type": "object" }
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue