Install the Agent Inbox CLI, sign in, list inboxes, and connect an email event to an agent workflow.
agent-inbox login && agent-inbox inboxesLinux or macOS:
curl -fsSL https://agentics.dk/install/agent-inbox.sh | bash
Windows PowerShell:
irm https://agentics.dk/install/agent-inbox.ps1 | iex
Confirm the installed version:
agent-inbox --version
agent-inbox login
The command opens the Agentics login in your browser and stores the resulting credential in ~/.agent-inbox with user-only permissions.
agent-inbox inboxes
The output includes each inbox ID, owner, domain, and current email count.
Create a signed webhook for an inbox:
agent-inbox webhooks add \
--inbox <owner/domain> \
--url https://your-agent.example/email \
--match '*'
Store the returned secret immediately; it is shown once. Receivers verify X-Inbox-Signature as an HMAC-SHA256 signature over the request body.
Test the route:
agent-inbox webhooks list --inbox <owner/domain>
agent-inbox webhooks test --inbox <owner/domain> <webhook-id>
See the CLI reference for all commands, or self-host Agent Inbox when mail and storage must remain on your infrastructure.