@gethelio/proxy 0.8.0 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -249,21 +249,21 @@ Every tool call recorded: timestamp, agent identity, tool name, inputs, policy d
249
249
 
250
250
  ## How Helio Compares
251
251
 
252
- | | Helio | Obot | Cerbos | Built-in (Anthropic / OpenAI) | Framework (LangChain / CrewAI) |
253
- | -------------------------------------------- | -------------------------------------- | ------------------------------ | --------------------------------- | ------------------------------------- | ----------------------------------- |
254
- | **What it governs** | Per-call actions with cross-call state | Which tools/MCPs are reachable | App-level authorization decisions | Agent permissions inside one platform | Agent behavior inside one framework |
255
- | **Architecture** | Out-of-process MCP proxy | Out-of-process MCP gateway | Sidecar / library | In-platform | In-framework |
256
- | **Open source** | ✅ Apache 2.0 | ✅ Apache 2.0 | ✅ Apache 2.0 | ❌ | Varies |
257
- | **Time to value** | 5 minutes | Setup-dependent | Hours | Built-in | Built-in |
258
- | **No agent code changes** | ✅ | ✅ | ❌ | ✅ (within platform) | ❌ |
259
- | **Governs agents you didn't build** | ✅ Any MCP agent | ✅ Any MCP agent | ✅ (any app) | ❌ One platform only | ❌ One framework only |
260
- | **Evidence grounding** | ✅ Cumulative across calls | ❌ | ❌ | ❌ | Limited |
261
- | **Self-repair feedback** | ✅ Structured retry hints | ❌ | ❌ | ❌ | Limited |
262
- | **Stateful spend / rate limits** | ✅ Per-tool, per-session¹ | Basic | ❌ | ❌ | Limited |
263
- | **Approval workflows** | ✅ Slack, webhook, dashboard | ✅ | ❌ | Limited | Limited |
264
- | **Audit trail (incl. downstream responses)** | ✅ Captures upstream MCP responses | Decision logs | Decision logs | Platform telemetry | Framework logs |
265
-
266
- \* Per-tool and per-session spend limits ship in v0.1. Cross-tool spend aggregation is planned for v0.2.
252
+ | | Helio | Obot | Cerbos | Built-in (Anthropic / OpenAI) | Framework (LangChain / CrewAI) |
253
+ | -------------------------------------------- | ---------------------------------------- | ------------------------------ | --------------------------------- | ------------------------------------- | ----------------------------------- |
254
+ | **What it governs** | Per-call actions with cross-call state | Which tools/MCPs are reachable | App-level authorization decisions | Agent permissions inside one platform | Agent behavior inside one framework |
255
+ | **Architecture** | Out-of-process MCP proxy | Out-of-process MCP gateway | Sidecar / library | In-platform | In-framework |
256
+ | **Open source** | ✅ Apache 2.0 | ✅ Apache 2.0 | ✅ Apache 2.0 | ❌ | Varies |
257
+ | **Time to value** | 5 minutes | Setup-dependent | Hours | Built-in | Built-in |
258
+ | **No agent code changes** | ✅ | ✅ | ❌ | ✅ (within platform) | ❌ |
259
+ | **Governs agents you didn't build** | ✅ Any MCP agent | ✅ Any MCP agent | ✅ (any app) | ❌ One platform only | ❌ One framework only |
260
+ | **Evidence grounding** | ✅ Cumulative across calls | ❌ | ❌ | ❌ | Limited |
261
+ | **Self-repair feedback** | ✅ Structured retry hints | ❌ | ❌ | ❌ | Limited |
262
+ | **Stateful spend / rate limits** | ✅ Cross-tool budgets + per-rule limits¹ | Basic | ❌ | ❌ | Limited |
263
+ | **Approval workflows** | ✅ Slack, webhook, dashboard | ✅ | ❌ | Limited | Limited |
264
+ | **Audit trail (incl. downstream responses)** | ✅ Captures upstream MCP responses | Decision logs | Decision logs | Platform telemetry | Framework logs |
265
+
266
+ ¹ Per-rule rate and spend limits, plus named cross-tool budgets: persistent depleting pots with break-glass approvals for overages.
267
267
 
268
268
  ## Works With
269
269
 
@@ -293,6 +293,7 @@ Ready-made configurations for common patterns:
293
293
  - **[Basic](https://github.com/gethelio/helio/tree/main/examples/basic)**: Deny destructive operations, allow everything else
294
294
  - **[Slack Approvals](https://github.com/gethelio/helio/tree/main/examples/slack-approvals)**: Route destructive actions to Slack
295
295
  - **[Spend Limits](https://github.com/gethelio/helio/tree/main/examples/spend-limits)**: Govern payment tool usage
296
+ - **[Budgets](https://github.com/gethelio/helio/tree/main/examples/budgets)**: One cross-tool budget across Stripe and PayPal tools, with break-glass overage approvals
296
297
 
297
298
  ## Contributing
298
299