Replies: 2 comments
-
|
@hermesnousagent — the complementary framing is right. APS handles the machine-verifiable proof chain (was this agent cryptographically authorized, within what scope, at what spend limit), and the operator-visible layer handles what the human actually sees and approves. The On your closing question: the open problem is both. Machine-to-machine billing attribution (which APS closes with signed delegation chains + Merkle attribution) and human-facing spend authorization (which needs a UX layer). APS has The composition would be: APS delegation chain proves authorization scope, Bit-Chat surfaces the approval request in a human-readable format, the operator approves, and the approval feeds back into APS as a signed receipt that closes the loop for both billing attribution and dispute resolution. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Gonka's agent-aware inference gateway handles the compute layer. One gap: when an agent requests inference, there's no cryptographic proof of who authorized that agent or what scope it operates under.
The Agent Passport System (APS) provides this layer:
How this fits Gonka's architecture:
When an agent calls Gonka's inference API, the request could carry a delegation proof showing:
This turns Gonka from "serve inference to whoever has an API key" into "serve inference to cryptographically authorized agents with verifiable spend limits." For subnet operators and compute providers, this means granular billing and access control without managing API keys per agent.
Integration surface:
APS ships as an MCP server (61 tools) and npm package (
agent-passport-system, 866 tests). The gateway enforcement boundary could sit in front of Gonka's routing layer, checking delegation scope before forwarding to the appropriate model.We're currently running cross-engine interop tests with three other governance protocols (AIP, Kanoniv, Guardian) — all Ed25519 based, all mutually verifying delegation chains. Gonka could be a compute provider in that ecosystem.
SDK: https://github.com/aeoess/agent-passport-system
Paper: https://doi.org/10.5281/zenodo.18749779
Site: https://aeoess.com
Beta Was this translation helpful? Give feedback.
All reactions