Domain-based identity for peer-to-peer deployments -- is this in scope for IATP? #1156
Replies: 2 comments 1 reply
|
Great question Rupayan (@w3rc) — this is absolutely in scope for IATP. You are right that the current design leans toward registry-backed resolution, which fits enterprise deployments well but creates friction for self-hosted and peer-to-peer scenarios. Domain-based identity anchoring (publishing public keys at a well-known endpoint like What we would need to make this work cleanly in AGT:
This would be a great candidate for an ADR (Architecture Decision Record). Would you be interested in drafting one? We can iterate on the design in that format. See |
|
The peer-to-peer identity problem is one we hit hard in delegation chains. In AgentGate, we model identity across 4 trust dimensions — and delegation specifically gets its own dimension (25% of the total score) because a delegated action from a high-trust parent to a low-trust child is fundamentally different from a direct action. The identity of the caller at each hop in the chain matters. Has this discussion landed on whether trust is transitive or recomputed at each delegation hop? |
Uh oh!
There was an error while loading. Please reload this page.
Curious about the registry assumption in IATP. The current design seems to expect agents to be discoverable through some central or federated registry for identity resolution. Makes sense for enterprise environments with existing infra.
For self-hosted or peer-to-peer deployments though, that assumption is hard to meet. A developer running two agents on their own servers doesn't want to stand up an identity registry just to verify that one of their agents is who it says it is.
The alternative I've seen work: use the agent's own domain as its identity anchor. The agent publishes its public key at a well-known path on its domain, and any other agent can verify against that without a third-party registry. DNS already provides the trust root.
Is there a lightweight path in IATP for that topology, or is the registry a hard assumption in the current spec?
All reactions