@gethelio/proxy 0.9.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 +16 -15
- package/dist/cli.js +2871 -743
- package/dist/dashboard-assets/assets/index-Ba99PYDi.js +128 -0
- package/dist/dashboard-assets/assets/index-DNjpdKac.css +1 -0
- package/dist/dashboard-assets/index.html +2 -2
- package/dist/index.d.ts +618 -6
- package/dist/index.js +4183 -2498
- package/package.json +1 -1
- package/dist/dashboard-assets/assets/index-0ylAcvX3.js +0 -128
- package/dist/dashboard-assets/assets/index-DZKoV0Vx.css +0 -1
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
|
|
253
|
-
| -------------------------------------------- |
|
|
254
|
-
| **What it governs** | Per-call actions with cross-call state
|
|
255
|
-
| **Architecture** | Out-of-process MCP proxy
|
|
256
|
-
| **Open source** | ✅ Apache 2.0
|
|
257
|
-
| **Time to value** | 5 minutes
|
|
258
|
-
| **No agent code changes** | ✅
|
|
259
|
-
| **Governs agents you didn't build** | ✅ Any MCP agent
|
|
260
|
-
| **Evidence grounding** | ✅ Cumulative across calls
|
|
261
|
-
| **Self-repair feedback** | ✅ Structured retry hints
|
|
262
|
-
| **Stateful spend / rate limits** | ✅
|
|
263
|
-
| **Approval workflows** | ✅ Slack, webhook, dashboard
|
|
264
|
-
| **Audit trail (incl. downstream responses)** | ✅ Captures upstream MCP responses
|
|
265
|
-
|
|
266
|
-
|
|
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
|
|