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

worker-event.schema.jsonschemas/

{
  "$schema": "http://json-schema.org/draft-07/schema",
  "title": "WorkerEvent",
  "description": "Worker lifecycle and state transition events",
  "type": "object",
  "required": ["event_id", "kind", "worker_id", "timestamp"],
  "properties": {
    "event_id": {
      "type": "string",
      "description": "Unique event identifier"
    },
    "kind": {
      "enum": [
        "spawning",
        "trust_required",
        "trust_resolved",
        "ready_for_prompt",
        "running",
        "finished",
        "failed"
      ],
      "description": "Event type"
    },
    "worker_id": {
      "type": "string",
      "description": "Unique worker identifier"
    },
    "timestamp": {
      "type": "integer",
      "description": "Unix epoch seconds"
    },
    "payload": {
      "type": "object",
      "description": "Event-specific data"
    }
  }
}

EXAMPLES.md

IMPLEMENTATION.md

PROMPT.md

PUBLISHING.md

QUICKSTART.md

README.md

REFERENCES.md

SKILL.md

SPEC.md

tile.json