<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Yaima Valdivia</title>
    <description>The latest articles on DEV Community by Yaima Valdivia (@yaimavaldivia).</description>
    <link>https://dev.to/yaimavaldivia</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3974412%2F06421353-6c35-4b4d-895f-a4d407d81ae0.jpg</url>
      <title>DEV Community: Yaima Valdivia</title>
      <link>https://dev.to/yaimavaldivia</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yaimavaldivia"/>
    <language>en</language>
    <item>
      <title>AgentTrust ID is live</title>
      <dc:creator>Yaima Valdivia</dc:creator>
      <pubDate>Mon, 08 Jun 2026 15:24:05 +0000</pubDate>
      <link>https://dev.to/yaimavaldivia/agenttrust-id-is-live-agn</link>
      <guid>https://dev.to/yaimavaldivia/agenttrust-id-is-live-agn</guid>
      <description>&lt;p&gt;This weekend, &lt;a href="https://agenttrust.id" rel="noopener noreferrer"&gt;AgentTrust ID&lt;/a&gt; went live in production. As of today, all five SDKs are published:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;agenttrustid
npm &lt;span class="nb"&gt;install&lt;/span&gt; @agenttrustid/sdkgo get github.com/agenttrustid/sdk/go
cargo add agenttrustid
&lt;span class="c"&gt;# Maven / Gradle&lt;/span&gt;
&lt;span class="c"&gt;# id.agenttrust:agenttrustid:0.3.0&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The SDKs are open source under Apache 2.0 at &lt;a href="https://github.com/agenttrustid/sdk" rel="noopener noreferrer"&gt;github.com/agenttrustid/sdk&lt;/a&gt;. The hosted platform is running at &lt;a href="https://app.agenttrust.id" rel="noopener noreferrer"&gt;app.agenttrust.id&lt;/a&gt; in a controlled beta.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I built this
&lt;/h2&gt;

&lt;p&gt;AI agents broke the assumptions that machine-to-machine security was built on. An API key answers one question: who is calling. It asks it once, at the door. An agent decides its next action at runtime, from context nobody wrote by hand. The same agent that summarized a document a second ago might now try to email it, delete it, or chain a task to another agent. A credential that only proves identity has no opinion about any of that.&lt;/p&gt;

&lt;p&gt;Agents need a decision at the &lt;strong&gt;action boundary&lt;/strong&gt;: &lt;em&gt;should this specific action happen, right now, on whose behalf&lt;/em&gt;. Answered at runtime, every time, with an audit trail and a kill switch.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's running
&lt;/h2&gt;

&lt;p&gt;Everything below is live in production today, not a roadmap:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Per-action authorization.&lt;/strong&gt; Every consequential action passes a pre-flight check. The &lt;a href="https://agenttrust.id/blog/three-tiers-routed-by-risk" rel="noopener noreferrer"&gt;Guardian pipeline&lt;/a&gt; routes each action by risk: deterministic rule checks for the common path, a policy engine for mutations, and AI-backed review for destructive operations. Fail-closed where it counts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Opaque, instantly revocable tokens.&lt;/strong&gt; Credentials are &lt;code&gt;at_&lt;/code&gt; references with &lt;a href="https://agenttrust.id/blog/revoke-in-seconds-the-agent-kill-switch" rel="noopener noreferrer"&gt;no standing authority of their own&lt;/a&gt;. The server decides on every use, so revocation is one call, effective immediately.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scoped delegation.&lt;/strong&gt; When one agent hands work to another, the grant &lt;a href="https://agenttrust.id/blog/scoped-delegation-narrow-not-copy" rel="noopener noreferrer"&gt;narrows instead of copying&lt;/a&gt;: subset scopes, independent TTLs, independently revocable, bounded chain depth.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Read-only sessions with time-boxed elevation.&lt;/strong&gt; Sessions &lt;a href="https://agenttrust.id/blog/read-only-by-default-sessions-and-elevation" rel="noopener noreferrer"&gt;start safe&lt;/a&gt; and rise only on approval, for a bounded window, then revert on their own.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;One model across surfaces.&lt;/strong&gt; MCP tools, agent-to-agent calls, and direct API integrations all route through the same decision, not three security stories.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Where it stands
&lt;/h2&gt;

&lt;p&gt;The platform is in an invite-only beta while I onboard design partners. If runtime authorization for agents is a problem you have right now, &lt;a href="https://agenttrust.id/#contact" rel="noopener noreferrer"&gt;request access&lt;/a&gt; and tell me about your setup.&lt;/p&gt;

&lt;p&gt;If you'd rather kick the tires first: the &lt;a href="https://github.com/agenttrustid/sdk" rel="noopener noreferrer"&gt;SDKs&lt;/a&gt; are open, the &lt;a href="https://agenttrust.id/docs" rel="noopener noreferrer"&gt;docs&lt;/a&gt; are public, including an honest &lt;a href="https://agenttrust.id/docs/whats-supported" rel="noopener noreferrer"&gt;what's supported&lt;/a&gt; page that says what this does &lt;em&gt;not&lt;/em&gt; do yet.&lt;/p&gt;

&lt;p&gt;Agents are already acting at machine speed. The authorization layer should keep up. Now it does.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>security</category>
      <category>opensource</category>
      <category>python</category>
    </item>
  </channel>
</rss>
