Configure bearer tokens and webhook authentication.
Replace the placeholder token in your .env with a securely generated one:
Update .env:
BEARER_TOKEN=your-generated-token-here
To verify that webhook callbacks come from your agents and not an attacker:
WEBHOOK_SECRET=your-webhook-secret-here
Generate a separate secret with the same openssl rand -hex 32 command.
Update the Authorization header in each connected agent to use the new token.