prlt work

The work command group handles everything related to assigning tickets to agents and managing the execution lifecycle.

Subcommands

CommandDescription
work startStart work on a single ticket with one agent
work spawnBatch-spawn agents for multiple tickets
work spawn-allSpawn all tickets in a column
work watchAuto-spawn agents as tickets enter a column
work statusView all in-progress work
work readyMark work as ready for review (optionally create PR)
work completeMark work as fully complete
work reviewRun the review pipeline on a ticket
work reviseRe-spawn agent to address review feedback
work resolveResolve questions raised by agents
work linearStart work from a Linear issue
work jiraStart work from a Jira issue
work sourceConfigure default work source

work start

Start work on a single ticket. Assigns an agent, creates a branch, and launches a tmux session.

$ prlt work start <ticket-id> [flags]
FlagDescription
--agentAssign a specific agent (otherwise auto-assigned)
--actionAction type: implement, review, test, refactor, groom
--messageCustom prompt message appended to the ticket
--environmentExecution environment: host, docker, devcontainer
--displayDisplay mode: terminal, background
--skip-permissionsSkip permission prompts (full autonomy)
# Basic start
$ prlt work start TKT-001

# Start with specific options
$ prlt work start TKT-001 \
    --agent bezos \
    --action implement \
    --environment docker \
    --display background

work spawn

Batch-spawn agents for multiple tickets. Supports several selection modes.

$ prlt work spawn [ticket-ids...] [flags]
FlagDescription
--allSpawn all tickets in the selected column
--manyMulti-select mode for choosing tickets
--columnFilter by board column
--countLimit number of tickets to spawn
--dietUse diet-balanced selection
--categoryFilter by ticket category
--priorityFilter by priority level
--actionAction type for all spawned tickets
--messageCustom prompt message for all tickets
--from-linearPull and spawn from Linear issues
--dry-runPreview what would be spawned
# Spawn all ready tickets
$ prlt work spawn --column "Ready" --all

# Spawn top 5 with diet balancing
$ prlt work spawn --diet --count 5

# Dry run to preview
$ prlt work spawn --column "Ready" --all --dry-run

work ready

Mark work as ready for review. Optionally creates a GitHub PR.

# Create a PR when marking ready
$ prlt work ready TKT-001 --pr

# Mark ready without a PR
$ prlt work ready TKT-001 --no-pr

work review

Run the automated review pipeline: a reviewer agent reads the diff and provides feedback.

$ prlt work review TKT-001

Note

The review pipeline cycles through review → fix → re-review until the reviewer approves or the maximum iteration count is reached.