Break down goals into multiple tasks and coordinate execution with gates and recovery. Based on Claw Code's agentic harness.
92
90%
Does it follow best practices?
Impact
100%
1.09xAverage score across 3 eval scenarios
Passed
No known issues
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "TaskPacket",
"description": "High-level task specification for planning-execution harness",
"type": "object",
"required": ["objective", "scope", "acceptance_tests"],
"properties": {
"objective": {
"type": "string",
"description": "High-level goal to accomplish"
},
"scope": {
"enum": ["workspace", "module", "single_file", "custom"],
"description": "Work granularity"
},
"scope_path": {
"type": ["string", "null"],
"description": "Path when scope is module, single_file, or custom"
},
"acceptance_tests": {
"type": "array",
"items": {
"type": "string"
},
"description": "Commands that validate success"
},
"commit_policy": {
"type": "string",
"description": "Guidance on how to commit changes"
},
"escalation_policy": {
"type": "string",
"description": "What to do when recovery fails"
}
}
}