@@ -82,7 +82,7 @@ No polling. No webhooks. No Redis. No glue code. The platform handles retries, t
8282| ---| ---| ---|
8383| DIY (webhooks + polling + Redis) | ~ 200 | Everything: retry logic, state machine, timeout jobs, notification service |
8484| Temporal | ~ 80 | Temporal server cluster, workers, determinism constraints |
85- | AXME | ~ 15 | Nothing - managed service with protocol-level guarantees |
85+ | AXME | 4 | Nothing - managed service with protocol-level guarantees |
8686
8787---
8888
@@ -207,22 +207,21 @@ How intents reach agents and services:
207207## Execution Model
208208
209209```
210- Initiator (SDK/CLI) Handler (your agent)
211- | |
212- | POST /v1/intents |
213- | -----------------------> AXME Cloud |
214- | (Gateway + Registry) |
215- | | |
216- | |--- stream (SSE push)
217- | |--- poll (agent pulls)
218- | |--- http (webhook + HMAC)
219- | |--- inbox (human task queue)
220- | |--- internal (built-in runtime)
221- | | |
222- | GET /v1/intents/{id} | |
223- | SSE /v1/intents/{id}/events | |
224- | <----------------------- | <-------------|
225- | lifecycle events | resume/result
210+ Initiator AXME Cloud Handler
211+ (SDK/CLI) (Gateway + Registry) (your agent)
212+ | | |
213+ | POST /v1/intents | |
214+ |------------------------------>| |
215+ | |------- stream (SSE push) --->|
216+ | |------- poll (agent pulls) -->|
217+ | |------- http (webhook+HMAC) ->|
218+ | |------- inbox (human queue) ->|
219+ | |------- internal (built-in) |
220+ | | |
221+ | GET /v1/intents/{id} | |
222+ | SSE /v1/intents/{id}/events | resume/result |
223+ |<------------------------------|<-----------------------------|
224+ | lifecycle events | |
226225```
227226
228227---
0 commit comments