Skip to content

Commit 31d9b52

Browse files
George-iamclaude
andauthored
docs: add cross-org delivery control section to README (#25)
Add documentation for org receive policy and agent receive override APIs — enterprise features for controlling cross-org intent delivery. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0be233e commit 31d9b52

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,30 @@ Map<String, Object> profile = client.getUserProfile(
327327

328328
---
329329

330+
## Cross-Org Delivery Control
331+
332+
Organizations can control which external orgs may send intents to their agents:
333+
334+
1. **Org receive policy** — org-wide default (`open`, `allowlist`, `closed`)
335+
2. **Agent receive override** — per-agent exceptions to the org policy
336+
337+
```java
338+
// Get org receive policy
339+
var policy = client.get("/v1/organizations/" + orgId + "/receive-policy");
340+
341+
// Set to allowlist mode
342+
client.put("/v1/organizations/" + orgId + "/receive-policy",
343+
Map.of("mode", "allowlist", "allowlist", List.of("org_id_of_trusted_partner")));
344+
345+
// Per-agent override
346+
client.put("/v1/agents/" + address + "/receive-override",
347+
Map.of("override_type", "allow", "source_org_id", "org_id_of_partner"));
348+
```
349+
350+
See [`cross-org-receive-policy.md`](https://github.com/AxmeAI/axme-docs/blob/main/docs/cross-org-receive-policy.md) for the full decision flow.
351+
352+
---
353+
330354
## MCP (Model Context Protocol)
331355

332356
The Java SDK includes a built-in MCP endpoint client for gateway-hosted MCP sessions.

0 commit comments

Comments
 (0)