issue-queue
Installation
SKILL.md
Issue Queue (Codex Version)
Goal
Create an ordered execution queue from all bound solutions. Uses subagent pattern to analyze inter-solution file conflicts, calculate semantic priorities, and assign parallel/sequential execution groups.
Design Principle: Queue items are solutions, not individual tasks. Each executor receives a complete solution with all its tasks.
Core Guidelines
⚠️ Data Access Principle: Issues and queue files can grow very large. To avoid context overflow:
| Operation | Correct | Incorrect |
|---|---|---|
| List issues (brief) | ccw issue list --status planned --brief |
Read issues.jsonl |
| List queue (brief) | ccw issue queue --brief |
Read queues/*.json |
| Read issue details | ccw issue status <id> --json |
Read issues.jsonl |
| Get next item | ccw issue next --json |
Read queues/*.json |
| Sync from queue | ccw issue update --from-queue |
Direct file edit |