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 into planning/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 the planning/ 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's CLAUDE.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

  1. Run task-queuer:init-queue once per repo to scaffold planning/.
  2. Run task-queuer:document-queue to announce the system in CLAUDE.md so future agents find it.
  3. Use /task-queuer:add-task to file tasks as you think of them.
  4. When the backlog grows, invoke the task-curator agent to tidy, prioritise, bucket, and hand off.

License

MIT