mirror of
https://github.com/dtzp555-max/memory-continuity.git
synced 2026-07-22 21:45:06 +00:00
1.6 KiB
1.6 KiB
execution-agent-dispatch
A lightweight skill for turning PM decisions into clear worker handoffs.
Why this exists
It is not enough to have execution agents. They also need a consistent way to receive work and report results.
Without that, the system drifts into familiar failure modes:
- vague delegation
- role boundary drift
- workers doing too much or too little
- silent blocking
- messy result reporting
This skill exists to standardize the handoff layer between main and execution agents.
What it standardizes
- the task packet main sends to a worker
- the result format a worker returns
- when a worker must escalate instead of staying silent
- milestone / ETA discipline for delegated work
Core idea
A good worker handoff should answer:
- What exactly should be done?
- What is out of bounds?
- What does success look like?
- When should the worker report back?
- What should trigger escalation?
Recommended task packet
- Task
- Scope
- Deliverable
- Constraints
- Milestone 1 + ETA
Recommended result packet
status:accepted | milestone | blocked | failed | donesummary:...evidence:...risk:...next:...
Added operational aids
CHECKLIST.md— pre-dispatch / post-dispatch / evidence-gate checklist for mainFAILURE_TEMPLATE.md— compact template for documenting launch failure, stall, or misreporting cases
Notes
This is a dispatch / coordination skill, not an implementation skill.
It works best after execution-agent-planner has already decided which workers should exist and what they should own.