CtrlK
BlogDocsLog inGet started
Tessl Logo

benpiper-workspace/planning-execution-harness

Break down goals into multiple tasks and coordinate execution with gates and recovery. Based on Claw Code's agentic harness.

92

1.09x
Quality

90%

Does it follow best practices?

Impact

100%

1.09x

Average score across 3 eval scenarios

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

task-packet.schema.jsonschemas/

{
  "$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"
    }
  }
}

EXAMPLES.md

IMPLEMENTATION.md

PROMPT.md

PUBLISHING.md

QUICKSTART.md

README.md

REFERENCES.md

SKILL.md

SPEC.md

tile.json