Skip to main content

Synopsis

Description

queue provides visibility into profClaw’s task execution queue. In mini mode, an in-memory queue is used. In pro mode, BullMQ with Redis is used for durability and distributed processing. Queue commands let you see what is waiting, pause processing, drain failed jobs, and check queue health metrics.

Subcommands

queue status

Shows queue state counts (waiting, active, completed, failed, delayed), current workers, and throughput.
boolean
Output as JSON.

queue list [state]

string
default:"waiting"
Job state to list: waiting, active, completed, failed, delayed.
string
default:"20"
Maximum jobs to show.
boolean
Output as JSON.

queue drain

Removes stale completed and failed jobs to free memory (in-memory mode) or Redis storage (pro mode).
boolean
Only remove failed jobs.
boolean
Only remove completed jobs.

Examples

Queue Modes