😏
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"title": "Economical routine engineering patch",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"summary": {"type": "string", "minLength": 1},
|
||||
"files": {"type": "array", "items": {"type": "string"}, "maxItems": 30, "uniqueItems": true},
|
||||
"commands": {"type": "array", "maxItems": 30, "items": {"type": "object", "additionalProperties": false, "properties": {"command": {"type": "string", "minLength": 1}, "exit_code": {"type": "integer"}, "observation": {"type": "string", "minLength": 1}}, "required": ["command", "exit_code", "observation"]}},
|
||||
"risks": {"type": "array", "items": {"type": "string"}, "maxItems": 20},
|
||||
"blockers": {"type": "array", "items": {"type": "string"}, "maxItems": 20}
|
||||
},
|
||||
"required": ["summary", "files", "commands", "risks", "blockers"]
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"title": "Evidence-triggered difficult-reasoning escalation",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"trigger": {"type": "string", "minLength": 1},
|
||||
"recommendation": {"type": "string", "minLength": 1},
|
||||
"evidence": {"type": "array", "items": {"type": "string"}, "minItems": 1, "maxItems": 50},
|
||||
"falsification_tests": {"type": "array", "items": {"type": "string"}, "minItems": 1, "maxItems": 30},
|
||||
"uncertainties": {"type": "array", "items": {"type": "string"}, "maxItems": 30}
|
||||
},
|
||||
"required": ["trigger", "recommendation", "evidence", "falsification_tests", "uncertainties"]
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"title": "Mechanically checked literal evidence",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"operation": {"type": "string", "enum": ["locate", "references", "extract", "summarize_supplied"]},
|
||||
"input_sha256": {"type": ["string", "null"], "pattern": "^[0-9a-f]{64}$"},
|
||||
"evidence": {
|
||||
"type": "array",
|
||||
"maxItems": 200,
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"path": {"type": "string", "minLength": 1},
|
||||
"sha256": {"type": "string", "pattern": "^[0-9a-f]{64}$"},
|
||||
"start_line": {"type": "integer", "minimum": 1},
|
||||
"end_line": {"type": "integer", "minimum": 1},
|
||||
"excerpt": {"type": "string"}
|
||||
},
|
||||
"required": ["path", "sha256", "start_line", "end_line", "excerpt"]
|
||||
}
|
||||
},
|
||||
"summary_points": {"type": "array", "items": {"type": "string"}, "maxItems": 50}
|
||||
},
|
||||
"required": ["operation", "input_sha256", "evidence", "summary_points"],
|
||||
"allOf": [
|
||||
{"if": {"properties": {"operation": {"enum": ["locate", "references", "extract"]}}, "required": ["operation"]}, "then": {"properties": {"input_sha256": {"const": null}, "evidence": {"minItems": 1}, "summary_points": {"maxItems": 0}}}},
|
||||
{"if": {"properties": {"operation": {"const": "summarize_supplied"}}, "required": ["operation"]}, "then": {"properties": {"input_sha256": {"type": "string", "pattern": "^[0-9a-f]{64}$"}, "evidence": {"maxItems": 0}, "summary_points": {"minItems": 1}}}}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user