From 2b59afa3ebeb14bb7d6430a727368f0af514d480 Mon Sep 17 00:00:00 2001 From: geobelsky Date: Tue, 31 Mar 2026 09:21:25 +0000 Subject: [PATCH 1/2] 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 ad7ed46..bca1f09 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,19 @@ Map events = client.listIntentEvents(intentId, null, RequestOpti --- +## 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. + +```java +client.mesh().startHeartbeat(); +client.mesh().reportMetric(Metric.builder().success(true).latencyMs(230).costUsd(0.02).build()); +``` + +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 See [`examples/BasicSubmit.java`](examples/BasicSubmit.java). More: [axme-examples](https://github.com/AxmeAI/axme-examples) From 039359e7d27b7401ad1cee3af61ff002afcde862 Mon Sep 17 00:00:00 2001 From: geobelsky Date: Tue, 31 Mar 2026 16:29:34 +0000 Subject: [PATCH 2/2] docs: add mesh.axme.ai dashboard URL --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index bca1f09..c25a813 100644 --- a/README.md +++ b/README.md @@ -91,6 +91,8 @@ client.mesh().reportMetric(Metric.builder().success(true).latencyMs(230).costUsd 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). +Open the live dashboard at [mesh.axme.ai](https://mesh.axme.ai) or run `axme mesh dashboard` from the CLI. + --- ## Examples