Documentation Index
Fetch the complete documentation index at: https://handler.alduncanson.com/llms.txt
Use this file to discover all available pages before exploring further.
Connect to production A2A services
Handler is designed to work with production A2A services, including agents behind API gateways, OAuth2 token endpoints, private clusters, and internal developer platforms.Recommended production pattern
Use repo-scoped server configuration for shared server shape and environment variables for secrets:.handler/servers.toml if the URL and auth shape are safe to share.
Keep client IDs, client secrets, bearer tokens, API keys, and certificate paths
in each developer or CI environment.
Validate before sending traffic
Validate server configuration and auth references first:Use structured output in automation
Human-readable text is best in a terminal. JSON is better for CI, scripts, and other agents:Tune network timeouts for gateway-fronted services
Long-running A2A tasks may sit behind proxies, service meshes, or load balancers. Handler exposes timeout controls as global flags and environment variables:none so idle gaps between server-sent
events do not abort long tasks.
Production-readiness checklist
- Use configured servers instead of hard-coded URLs in scripts.
- Store secrets in environment variables, not TOML files.
- Prefer OAuth2 client credentials, bearer tokens, API keys, or mTLS according to your gateway policy.
- Validate agent cards and server configuration during onboarding and CI checks.
- Use
--output jsonor--output ndjsonwhen another system consumes results. - Use
handler task resubscribefor recoverable streaming interruptions. - Run the local webhook receiver before integrating push notifications with a real webhook consumer.