Manage work queue items
/plugin marketplace add hanibalsk/claude-marketplace/plugin install hanibalsk-claude-auto-agents-plugins-claude-auto-agents@hanibalsk/claude-marketplace# /queue - Manage Work Queue
Add, remove, and manage items in the work queue.
## Usage
## Actions
### list
Show the full work queue with all sections.
!bash if [ "$1" = "list" ] || [ -z "$1" ]; then "${CLAUDE_PLUGIN_ROOT}/hooks/lib/queue-manager.sh" list; fi
### add
Add a new item to the Pending section.
Arguments:
- ID: Unique identifier (e.g., FEAT-001, FIX-002)
- Description: What needs to be done
- Priority: low|medium|high|critical (default: medium)
- Agent: developer|fixer|reviewer (default: developer)
- Depends: Comma-separated IDs (optional)
!bash if [ "$1" = "add" ]; then...