PulseAugur
EN
LIVE 13:30:37

Anthropic's agent security model bypassed by custom delegate

Anthropic's commerce-agents repository demonstrates a delegate contract that restricts agents from invoking other delegates. However, the author found that by introducing a new delegate, the system allowed it to stage price changes, present previews, and call secondary delegates, despite the contract's limitations. This was possible because the shared dispatch path did not adequately restrict the child agent's capabilities based on the parent's authority. The author's library, attenu-guard, was used to implement a more secure system where the child agent receives only necessary permissions and a verifiable receipt is generated, ensuring that even without the original code, the authorization can be re-checked. AI

IMPACT Highlights potential security vulnerabilities in agent delegation, emphasizing the need for robust authorization mechanisms.

RANK_REASON The item discusses a specific implementation detail and a potential security bypass within a reference implementation, rather than a new product release or significant research finding.

Read on dev.to — Anthropic tag →

AI-generated summary · Google Gemini · from 1 sources. How we write summaries →

Anthropic's agent security model bypassed by custom delegate

How we ranked this

Signal score
31 / 100
Composite score across the factors below. Higher = stronger signal that this story matters right now.
Newsworthiness bucket
Tool
The item discusses a specific implementation detail and a potential security bypass within a reference implementation, rather than a new product release or significant research finding.
Source corroboration
Single-source cluster
Only one publisher covered this so far. Single-source stories can still rank when the publisher is high-authority, but they lack cross-source corroboration.
Topics
safety, product
Editorial topic classification. Feeds into how the story surfaces on /topic/<slug> hub pages and into the per-entity coverage mix.
AI-industry relevance
High
Clearly on-topic for AI-industry coverage.
Story freshness
Breaking (< 6h)
Fresh story with cross-source coverage still developing. Ranking may shift as more sources report.

Full methodology in our editorial standards.

COVERAGE [1]

  1. dev.to — Anthropic tag TIER_1 English(EN) · Rafael Asor ·

    The delegate your agent trusts by shape

    <p>Anthropic's commerce-agents repo writes its delegate contract as an English sentence in a docstring. A delegate "cannot write, present, or invoke other delegates".</p> <p>That sentence is true today, and it is true because of how the one delegate they ship is built. Its surfac…