doto inbox
Your inbox contains all tasks assigned to you that are waiting for a response — tasks in the INBOX state.
doto inbox
List your inbox items.
bash
doto inbox [options]| Flag | Description |
|---|---|
--count | Show count only |
--limit <n> | Page size (default: 20) |
--cursor <c> | Pagination cursor |
Examples
bash
doto inbox
# ┌──────────┬──────────────────────────┬──────────┬──────────┬────────────┐
# │ ID │ Title │ From │ Priority │ Created │
# └──────────┴──────────────────────────┴──────────┴──────────┴────────────┘
doto inbox --count
# 2 tasks in inbox
doto inbox --json
# { "data": [...], "meta": { "hasMore": false } }Acting on inbox items
Once you've reviewed a task, use doto task to respond:
bash
# Accept and start working
doto task accept <id>
doto task start <id>
# Reject it
doto task reject <id>
# Ask for more information
doto task clarify <id> --message "Which environment does this affect?"