Kanban Workflow

Operator uses a kanban-style workflow to manage tickets through their lifecycle.

Ticket Lifecycle

Tickets flow through these stages:

.tickets/queue/     -> Work waiting to be picked up
.tickets/in-progress/ -> Currently being worked on
.tickets/completed/   -> Finished work

Workflow Steps

1. Queue

New tickets are created in .tickets/queue/. They are sorted by:

  1. Priority - INV > FIX > FEAT > SPIKE
  2. Timestamp - FIFO within same priority

2. Assignment

When an agent slot is available, Operator:

  1. Selects the next ticket by priority
  2. Prompts for launch confirmation
  3. Moves ticket to in-progress/

3. In Progress

While work is in progress:

4. Completion

When work finishes:

Parallelism Rules

Operator enforces these rules for concurrent work: