Summary
Show tickets assigned to the current user that don't yet have a parsec worktree. Provides a quick "what should I work on next" view, especially useful for AI agents.
Proposed Behavior
$ parsec inbox
Assigned tickets without worktrees:
┌──────────┬─────────────────────────────┬──────────┬──────────┐
│ Ticket │ Title │ Priority │ Status │
├──────────┼─────────────────────────────┼──────────┼──────────┤
│ CL-2290 │ Fix timeout on checkout │ High │ To Do │
│ CL-2291 │ Add export feature │ Medium │ To Do │
└──────────┴─────────────────────────────┴──────────┴──────────┘
# Pick one and start immediately
$ parsec inbox --pick
? Start workspace for › CL-2290 Fix timeout on checkout
Created workspace for CL-2290...
Agent Use Case
# AI agent picks next task automatically
NEXT=$(parsec inbox --json | jq -r '.[0].key')
parsec start "$NEXT"
Priority
Medium — great for AI agent autonomy and developer productivity
Summary
Show tickets assigned to the current user that don't yet have a parsec worktree. Provides a quick "what should I work on next" view, especially useful for AI agents.
Proposed Behavior
Agent Use Case
Priority
Medium — great for AI agent autonomy and developer productivity