You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add one-liner explaining what AXME is after title
- Add Related Repositories table with links to all repos
- Integrate Alpha Access into Quick Start as step 0
- Add brief explanations for Model B (ScenarioBundle) and Model A (Direct API)
- Explain AXME_CLI_SECRET_STORAGE=file with inline comment and add to env vars table
- Replace em dashes with regular dashes throughout
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+43-10Lines changed: 43 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,38 @@
1
1
# AXME Examples
2
2
3
-
Production-ready examples for the AXME platform — all delivery bindings, human approval flows, internal runtime, durability scenarios, and multi-agent orchestration.
3
+
AXME is a coordination infrastructure for durable execution - submit once, track lifecycle, complete later. These examples show every capability in runnable form.
4
+
5
+
Production-ready examples for the AXME platform - all delivery bindings, human approval flows, internal runtime, durability scenarios, and multi-agent orchestration.
4
6
5
7
Each example is available in **5 languages**: Python, TypeScript, Go, Java, .NET.
6
8
9
+
## Related Repositories
10
+
11
+
| Repository | Description |
12
+
|------------|-------------|
13
+
|[axme](https://github.com/AxmeAI/axme)| Main project and overview |
|`internal/human_approval`| Pure human gate, no agent (scenario-only) |
@@ -203,8 +228,16 @@ All examples use AXME SDK v0.1.2:
203
228
|`AXME_API_KEY`| Yes | Service account or workspace API key |
204
229
|`AXME_BASE_URL`| No | Default: `https://api.cloud.axme.ai`|
205
230
|`AXME_AGENT_ADDRESS`| No | Agent address (bare name or full `agent://...`) |
231
+
|`AXME_CLI_SECRET_STORAGE`| No | Set to `file` for headless/CI environments (default: OS keychain) |
206
232
207
233
## Alpha Access
208
234
209
-
Install the CLI and log in: `curl -fsSL https://raw.githubusercontent.com/AxmeAI/axme-cli/main/install.sh | sh` (open a new terminal, then `axme login`)
235
+
Install the CLI and log in:
236
+
237
+
```bash
238
+
curl -fsSL https://raw.githubusercontent.com/AxmeAI/axme-cli/main/install.sh | sh
0 commit comments