Queue check
Reconcile the task queue against everything the user has asked in this session. Use when the user says "queue check", "you missed my prompt", "you didn't track that", "find missing todos", "what's outstanding", or when resuming after a context reset and the queue may have drifted.From its SKILL.md
npx -y skills add IcodeNet/agent-skills --skill queue-checkAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.9 KB, 368 tokens by cl100k_base, as published. Nobody here has run it
Queue Check
Reconcile the tracked task list against what the user actually asked for. A user request with no matching tracked item is a defect — fix the queue, then the work.
Backlog scan
- Current message — every deliverable in the latest user message, including sub-clauses.
- Session history — walk prior user messages (including anything before a summary/context reset). List every ask: explicit, implied ("also…", "what about…", "and the rest"), and reported bugs (each "broken/not working" report is its own item: reproduce → fix → regression test → verify).
- Existing queue — compare against current todos. Classify each ask: tracked & correct status / tracked but stale status / untracked.
- Backfill — add every untracked ask; correct stale statuses honestly (nothing "completed" that wasn't verified; nothing "in progress" that isn't being worked).
- Prioritize — user-stated order first, then blockers, then FIFO. Exactly one item in progress.
Report (always emit)
## Queue status
**In progress:** [item] — [where it stands]
**Pending:** 1. [item] 2. [item] …
**Completed this session:** [items, with verification evidence noted]
**Backfilled just now:** [items that had been missed, or "none — queue was accurate"]
**Dropped/cancelled:** [items the user explicitly dropped]
If the queue was accurate, say so in one line — do not invent corrections.
After the report
Resume the highest-priority open item immediately unless the user redirects. Do not treat the queue check itself as progress on the work.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.