Permissions

Configure what your agent can and cannot do.

Last updated: January 15, 2025

Permission Types

permissions.jsonjson
{
  "platforms": {
    "gmail": {
      "read": true,      // Can read emails
      "write": false,    // Cannot send emails
      "delete": false    // Cannot delete emails
    },
    "wallet": {
      "read": true,      // Can check balances
      "write": true,     // Can send transactions
      "max_value": "0.1 ETH"  // Per-transaction limit
    }
  }
}

Approval Workflows

Configure which actions require your explicit approval:

  • • All transactions above a threshold
  • • First-time actions on a platform
  • • Actions outside normal hours
  • • Specific action types (e.g., all swaps)