Task-Queuer Plugin
April 20, 2026 · View on GitHub
A repo-based task queueing system for Claude Code. Scaffolds a planning/ folder inside any repository, logs tasks as markdown specs, categorises and prioritises a backlog, and hands off prioritised work to that repo's orchestration agent.
What it provides
Commands
/task-queuer:add-task— log a single new task spec intoplanning/tasks/in-queue/<category>/./task-queuer:ingest-tasks— take a list of tasks, break it into individual specs, and file each one sequentially./task-queuer:voice-task— transcribe an audio file via an available transcription MCP, then break the transcript into tasks and file them.
Skills
task-queuer:init-queue— scaffold theplanning/folder (logs, bug-reports, project-decisions, tasks/{in-queue,done,holding} with category subfolders) in the current repo.task-queuer:document-queue— inject a section describing the queue system, its folder structure, and conventions into the repo'sCLAUDE.md.
Agents
task-queuer:task-curator— sub-agent that categorises loose backlog items into the correct subfolders and prioritises the queue, bucketing related tasks and handing the next batch off to the repo's orchestration agent.
Folder structure it creates
planning/
├── logs/
├── bug-reports/
├── project-decisions/
└── tasks/
├── in-queue/
│ ├── bug-resolution/
│ ├── frontend/
│ ├── backend/
│ ├── css/
│ └── misc/
├── holding/
│ └── {same subfolders}
└── done/
└── {same subfolders}
Installation
claude plugins marketplace add danielrosehill/Claude-Code-Plugins
claude plugins install task-queuer@danielrosehill
Typical flow
- Run
task-queuer:init-queueonce per repo to scaffoldplanning/. - Run
task-queuer:document-queueto announce the system inCLAUDE.mdso future agents find it. - Use
/task-queuer:add-taskto file tasks as you think of them. - When the backlog grows, invoke the
task-curatoragent to tidy, prioritise, bucket, and hand off.
License
MIT