From dbb83469f22fb169bacb7c81a7aff4745d67b4db Mon Sep 17 00:00:00 2001 From: geobelsky Date: Tue, 31 Mar 2026 09:21:23 +0000 Subject: [PATCH] docs: add Agent Mesh section to README Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 1f4c43b..790ebdd 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,19 @@ for await (const event of client.observe(intent.intent_id)) { --- +## Agent Mesh - Monitor and Govern + +Agent Mesh gives every agent real-time health monitoring, policy enforcement, and a kill switch - all from a single dashboard. + +```typescript +client.mesh.startHeartbeat() +client.mesh.reportMetric({ success: true, latencyMs: 230, costUsd: 0.02 }) +``` + +Set action policies (allowlist/denylist intent types) and cost policies (intents/day, $/day limits) per agent via dashboard or API. Mesh module coming soon to this SDK - [Python SDK](https://github.com/AxmeAI/axme-sdk-python) available now. [Full overview](https://github.com/AxmeAI/axme#agent-mesh---see-and-control-your-agents). + +--- + ## Examples ```bash