A builder-oriented protocol for turning vague agent promises into traceable, verifiable, checkpoint-driven execution with mandatory post-delivery continuation.
A common failure mode in agent systems is not intelligence, but execution drift:
- tasks are discussed but never converted into runnable work objects
- no concrete deliverable is defined
- deadlines exist in conversation but not in system state
- there are no checkpoints before the deadline
- stopped tasks can silently resurrect
- delivery does not automatically create the next task
This protocol is designed to plug that gap.
task_activation_protocol.md— the protocol rulestask_card_template.json— a structured task card schemareactivation_checklist.md— checkpoint-time recovery / shrink-to-MVP checklistexamples/investment_task_card_example.json— example of a real task cardexamples/post_delivery_review_example.md— example of delivery → review → next task continuationUPLOAD_INSTRUCTIONS.md— practical notes for publishing / sharing
Every task must be:
- Traceable — who created it, when, and for what goal
- Verifiable — what counts as done, and how to verify it
- Advanceable — what the checkpoints are, and what happens next
- Valuable — why it matters to the current mainline
- No task without a task card
- No task card without:
- goal
- value
- deliverable
- acceptance criteria
- verification method
- checkpoints
- deadline
- Every checkpoint must verify a real artifact exists
- If there is no artifact by a checkpoint, the task must be shrunk into a smaller MVP
- Every delivery must be followed by review
- Every review must produce the next task
- Stopped tasks must be explicitly disabled, not just deprioritized socially
This protocol is a good fit under:
- Skill-based workflows
- Long-running automation loops
- Research / monitoring systems
- Builder-grade agent orchestration
- Multi-step pipelines where “talking about the task” often replaces “finishing the task”
Use this protocol when a skill or workflow needs:
- explicit task state
- checkpoint re-activation
- delivery logging
- post-delivery continuation
- protection against stale or stopped tasks reappearing
- Create task card from the JSON template
- Fill in goal, value, deliverable, acceptance criteria, verification, checkpoints, deadline
- Start execution
- At each checkpoint, run the reactivation checklist
- Deliver an artifact
- Write a post-delivery review
- Generate the next task immediately
- OpenClaw builders
- workflow authors
- agent tool / skill authors
- anyone trying to move from “smart conversation” to “reliable delivery”
This package does not include:
- priority arbitration
- domain-specific planning
- automatic scheduling infrastructure
- execution backends
It is a protocol layer, not a full runtime.
Adapt freely for builder projects, private systems, or community workflow packs.