pueue-job-queue
Installation
SKILL.md
pueue job queue
Pueue is a daemon-backed shell job queue. The daemon (pueued) accepts tasks
via the pueue CLI, runs them across parallelism-capped groups, persists
state across reboots, and exposes status / logs as JSON. This skill teaches
the agent to drive pueue end-to-end: submit single tasks or whole DAGs, cap
parallelism per group, block until completion, retrieve logs, and retry.
The skill is a CLI bridge, not a scheduler. Pueue's --after is AND-only
and success-only — that maps cleanly to declarative DAGs and not much
beyond. For OR-deps, conditional branching, retry-with-backoff, or distributed
scheduling, escalate to a real orchestrator (see "When NOT to use").