The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the SafeAgent listing page.
POST /claim · safeagent-production.up.railway.app
Dashboard: safeagent-dashboard-2.vercel.app
Indexed on Bazaar.
A credential-free experiment exercises CrewAI 1.15.21's actual same-process `ToolUsage._use` retry against SafeAgent 0.1.23. Across 30 post-effect/pre-confirmation trials, the unguarded path recorded two effects per logical action; the SafeAgent path recorded one effect and retained a `PENDING` claim for reconciliation.
Scope: scripted deterministic LLM and harmless effect recorded through an out-of-process capability-separated ledger. This does not validate process death, fresh-worker recovery, a real external provider, or SafeAgent Control reconciliation.
Method, source, tests, hashes, and 180-trial evidence
Two bounded, read-only reconciliation pilots are open for outside operators. There is no fee unless SafeAgent Control identifies a previously unknown, reproducible discrepancy that the operator agrees is actionable.
This implementation is a Mycelium Provider.
Each completed action submits a trail to ARGENTUM with a content-addressed action_ref
(JCS+SHA-256 over the four preimage fields). The returned mycelium_trail_id is included
in every receipt for independent verification.
SafeAgent is the first verified external integrator on Soma — the Mycelium agent catalog. Every production execution is anchored on-chain via Mycelium Trails and independently verifiable without going through the operator.
SafeAgent is a durable execution-claim guard. It suppresses concurrent and repeated attempts that use the same stable request_id, and preserves unresolved attempts for reconciliation instead of silently retrying them.
Every action gets a stable request_id derived from the logical action. A new key returns PROCEED; a settled key returns SKIP with its stored result. A key left PENDING after a timeout or crash remains blocked because local state alone cannot prove whether the provider accepted the action. Recover it only after checking provider evidence or using provider-native idempotency.
State machine: CLAIMABLE → PENDING → COMMITTED; later claims observe PENDING or SKIP.
Common failure modes SafeAgent prevents:
| Scenario | Without SafeAgent | With SafeAgent |
|---|---|---|
| Stripe charge times out after acceptance | Retry may charge twice | Same key remains PENDING until provider reconciliation |
| Welcome email on signup retried | User gets two welcome emails | Second send returns SKIP |
| Webhook delivered twice (Stripe/GitHub/Twilio guarantee at-least-once) | Event processed twice | Second processing returns SKIP |
| Workspace provisioned on retry | Two workspaces created | Second provision returns SKIP |
| AI agent tool call retried after crash | Duplicate side effect | Same key stays blocked; outcome is explicitly unresolved |
Guarantee boundary: SafeAgent proves local claim state, not the external outcome.
COMMITTEDmeans the caller settled a receipt.PENDINGmeans unresolved—not failed and not confirmed successful. End-to-end exactly-once effects require provider-native idempotency and/or reconciliation with the provider's authoritative records.
SafeAgent is the durable claim and duplicate-suppression layer in an agent execution integrity stack:
Each layer is independently authored and independently verifiable. None trusts the others.
Gate an action. Returns PROCEED on first call, SKIP on any repeat.
Request body:
request_id — stable identifier derived from what the agent is doing. Same inputs = same key.action — the action type being gated (e.g. payment.send, email, trade, order)Response:
Retry with the same payload:
Settle a claim after the action fires. Advances status from PENDING to COMMITTED.
Free test endpoint — same logic, no payment required. Limited to 10 calls per IP total.
Full claim history. Filter by agent_id, action, status, or timestamp range.
Parameters: agent_id, action, status, from_ts, to_ts, limit (max 1000), offset.
For production Stripe PaymentIntents, use the permit-gated adapter documented in SafeAgent Boundary. It keeps the Stripe credential outside the agent, passes the consumed permit ID to Stripe as the native idempotency key, persists the provider correlation, verifies webhook signatures and supports authoritative read-back. The simple claim/settle snippet below illustrates the generic API only; it is not the provider adapter.
Run the bounded test-mode example in
examples/stripe_payment_intent_guard.py.
The verification record documents the observed
end-to-end result: one successful Stripe sandbox PaymentIntent, an exact replay
blocked before provider dispatch, and authoritative reconciliation by retrieve.
Webhook deduplication — stable event IDs suppress repeated processing after a settled result; unresolved PENDING events stay blocked for investigation:
PR crewAIInc/crewAI#5822 adds pluggable idempotency backends. SafeAgent's SQLite schema is compatible.
WisePick is a deterministic routing layer for agent runtimes. The integration splits capability selection from durable, idempotent execution — WisePick answers what and which provider, SafeAgent answers whether this logical work already ran.
Stack:
adapters/safeagent_adapter.pydocs/integrations/safeagent.mdThe same durable claim behavior without the network call. Drop this into any Python agent:
A trading bot fires a market order to buy 6 shares of TQQQ. The broker accepts it. The bot crashes before updating state. On restart — same signal, same bar — the bot fires again. The broker fills it twice. The agent now holds 12 shares when it intended to hold 6.
This is not theoretical. It happens on any unhandled exception between order submission and state persistence.
SafeAgent derives a stable key before touching the broker:
First call: PROCEED. Side effect fires. Settle writes COMMITTED.
Crash and retry: SKIP. Broker never touched again.
Six confirmed SKIP events from a live session on the full stack: DashClaw, SafeAgent, Mycelium Trails, Base/Arbitrum, broker Alpaca.
Full session data: https://gist.github.com/azender1/b9112b6519c935df4a75cb05cd250e26
SafeAgent participates in the A2A cross-implementation conformance corpus. Byte-verified fixtures across four independent implementations:
A2A #1920 closed. All four implementations satisfy freshness and replay requirements.
action_ref derivationJCS (RFC 8785), aligned with argentum-core, Nobulex, and APS:
timestamp is an RFC 3339 UTC string with exactly 3 millisecond digits. The trailing Z is mandatory.
Conformance fixtures: giskard09/argentum-core tag action-ref-v1.0
Railway · Serverless OFF · always-on
PyPI: pip install safeagent-exec-guard
npm: npm install n8n-nodes-safeagent
MCP Registry: io.github.azender1/safeagent
Dashboard: safeagent-dashboard-2.vercel.app
Apache-2.0