atom — smallest agentic loop, on Cloudflare Workers All /agents/* endpoints require: Authorization: Bearer Endpoints: POST /agents/:id/start body: input.md text GET /agents/:id/status json: {done, step_count, tokens, cost, ...} GET /agents/:id/transcript json: {status, history, steps} GET /agents/:id/files json: list of file paths in the workspace GET /agents/:id/files/:path text: file contents Example: TOKEN=... # from .dev.vars (local) or wrangler secret (deployed) curl -H "Authorization: Bearer $TOKEN" -X POST \ localhost:8787/agents/hello/start --data-binary @inputs/hello.md curl -H "Authorization: Bearer $TOKEN" localhost:8787/agents/hello/status curl -H "Authorization: Bearer $TOKEN" localhost:8787/agents/hello/files/greeting.txt