IM
JA
Get Started
Menu

AI Tasks

Define explicit inbox tasks with allowlisted tools and deterministic execution boundaries.

Proof

Example: a task can call list_messages and read_message while write tools remain denied.

inbox-manager task create --name "Daily Summary" \
  --allow list_messages,read_message \
  --deny move_message,delete_message

Limits

  • Tasks start read-only by default.
  • Write tools require explicit permission.
  • Only approved tools can be called.
Get Started