Agent skill
dispatch-queue
Dispatch queue pattern for tracking pending tasks across sessions. Use when managing task continuity, understanding pending work, or implementing the /continue workflow.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/dispatch-queue
SKILL.md
Dispatch Queue Pattern
The dispatch queue (.studio/dispatch-queue.md) tracks pending tasks for session continuity.
File Format
# Dispatch Queue
## Pending Tasks (Priority Order)
### 1. [Task Name]
- **Agent:** [fully-qualified agent name]
- **Context:** [what needs to be done and why]
- **Blocked by:** [dependencies, or "None"]
- **Added:** [when queued]
## Completed This Session
- [x] [Task] → [result/artifact]
## Notes
[Context for next session]
When to Update
Add tasks:
- After identifying work during implementation
- When completion-auditor finds gaps
- When project-health-monitor identifies issues
- When user requests deferred work
Remove/Complete:
- When task dispatched and completed
- When task becomes irrelevant
- When blocked indefinitely
Priority Ordering
- Blockers first (tasks that block other work)
- Critical path (required for playable game)
- Quick wins (fast, unblock progress)
- Polish (nice-to-have)
Task Format
Agent: Use fully-qualified names: zx-procgen:asset-generator
Context: Include enough to resume: what exists, what's needed, file paths
Blocked by: None, #2, [dependency], or User decision needed
Integration
/ai-game-studio:continuereads and dispatches from queuenext-step-suggesterchecks queue firstrequest-dispatcherupdates queue before stoppingcompletion-auditoradds remediation tasks
Empty Queue
# Dispatch Queue
## Pending Tasks (Priority Order)
No pending tasks.
## Notes
Run project-health-monitor to identify potential work.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?