Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 16 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ No polling. No webhooks. No Redis. No glue code. The platform handles retries, t
|---|---|---|
| DIY (webhooks + polling + Redis) | ~200 | Everything: retry logic, state machine, timeout jobs, notification service |
| Temporal | ~80 | Temporal server cluster, workers, determinism constraints |
| AXME | ~15 | Nothing - managed service with protocol-level guarantees |
| AXME | 4 | Nothing - managed service with protocol-level guarantees |

---

Expand Down Expand Up @@ -207,22 +207,21 @@ How intents reach agents and services:
## Execution Model

```
Initiator (SDK/CLI) Handler (your agent)
| |
| POST /v1/intents |
| -----------------------> AXME Cloud |
| (Gateway + Registry) |
| | |
| |--- stream (SSE push)
| |--- poll (agent pulls)
| |--- http (webhook + HMAC)
| |--- inbox (human task queue)
| |--- internal (built-in runtime)
| | |
| GET /v1/intents/{id} | |
| SSE /v1/intents/{id}/events | |
| <----------------------- | <-------------|
| lifecycle events | resume/result
Initiator AXME Cloud Handler
(SDK/CLI) (Gateway + Registry) (your agent)
| | |
| POST /v1/intents | |
|------------------------------>| |
| |------- stream (SSE push) --->|
| |------- poll (agent pulls) -->|
| |------- http (webhook+HMAC) ->|
| |------- inbox (human queue) ->|
| |------- internal (built-in) |
| | |
| GET /v1/intents/{id} | |
| SSE /v1/intents/{id}/events | resume/result |
|<------------------------------|<-----------------------------|
| lifecycle events | |
```

---
Expand Down
Loading