<?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: Ben Lamm</title>
    <description>The latest articles on DEV Community by Ben Lamm (@thebenlamm).</description>
    <link>https://dev.to/thebenlamm</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%2F3836154%2F958429dc-18f9-4f53-af62-bbc0f1ab4555.jpeg</url>
      <title>DEV Community: Ben Lamm</title>
      <link>https://dev.to/thebenlamm</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/thebenlamm"/>
    <language>en</language>
    <item>
      <title>Your AI Agent Has a Rejection Log. Here's Why It Matters.</title>
      <dc:creator>Ben Lamm</dc:creator>
      <pubDate>Fri, 20 Mar 2026 22:04:10 +0000</pubDate>
      <link>https://dev.to/thebenlamm/your-ai-agent-has-a-rejection-log-heres-why-it-matters-1dkn</link>
      <guid>https://dev.to/thebenlamm/your-ai-agent-has-a-rejection-log-heres-why-it-matters-1dkn</guid>
      <description>&lt;p&gt;Every AI agent you use is hiding things from you.&lt;/p&gt;

&lt;p&gt;Not maliciously. It's just how they work. Your support agent noticed a billing error but didn't mention it because it wasn't related to the ticket. Your code review bot skipped three auto-generated files and never told you which ones.&lt;/p&gt;

&lt;p&gt;Agent drift isn't a bug. It's what happens when a system makes decisions and nobody writes them down.&lt;/p&gt;

&lt;h2&gt;
  
  
  The gap
&lt;/h2&gt;

&lt;p&gt;We've got guardrails for input/output filtering. We've got AGENTS.md for agent configuration. We've got system prompts for behavior. But system prompts are invisible to the user — there's zero transparency about what the agent chose not to say.&lt;/p&gt;

&lt;h2&gt;
  
  
  COVENANT.md
&lt;/h2&gt;

&lt;p&gt;It's a single markdown file in your repo. Three required sections:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;IDENTITY&lt;/strong&gt; — Who is this agent? What can it see? What can't it see? And here's the important part: "The repo hasn't been modified since January 8" is an observation. "You haven't focused on this since January 8" is a judgment wearing observation's clothing. Agents need to know the difference.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;BOUNDARIES&lt;/strong&gt; — Hard stops, escalation triggers, and two policies almost no agent has: a &lt;em&gt;repetition policy&lt;/em&gt; and a &lt;em&gt;silence policy&lt;/em&gt;. The repetition default: &lt;strong&gt;if you mentioned it yesterday and nothing changed, don't mention it again.&lt;/strong&gt; For silence: when a user stops engaging, hold multiple interpretations. Don't just pick one.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ACCOUNTABILITY&lt;/strong&gt; — Every observation tagged as &lt;code&gt;observed&lt;/code&gt; (from data) or &lt;code&gt;inferred&lt;/code&gt; (speculation). And the thing I think matters most: the &lt;strong&gt;rejection log&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The rejection log
&lt;/h2&gt;

&lt;p&gt;After every interaction, the agent logs what it observed but chose not to surface — and cites the rule that drove the decision.&lt;/p&gt;

&lt;p&gt;Say a support agent handles a password reset. It notices a $47 billing error:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;## Withheld
- Billing discrepancy: customer charged $47 for downgraded plan
  REASON: Not related to stated issue.
  CONFIDENCE: HIGH that this is a billing error.

## Open Questions
- Is there a policy for proactively surfacing billing errors?
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Without the log, nobody knows. With it, a weekly audit catches a systemic downgrade bug.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it fits
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;AGENTS.md&lt;/th&gt;
&lt;th&gt;COVENANT.md&lt;/th&gt;
&lt;th&gt;Guardrails&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Governs&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Capabilities&lt;/td&gt;
&lt;td&gt;Conduct&lt;/td&gt;
&lt;td&gt;Content&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Audience&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Developers&lt;/td&gt;
&lt;td&gt;End users &amp;amp; auditors&lt;/td&gt;
&lt;td&gt;Security teams&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Analogy&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Job description&lt;/td&gt;
&lt;td&gt;Oath of office&lt;/td&gt;
&lt;td&gt;Metal detector&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/covenantmd/covenant" rel="noopener noreferrer"&gt;github.com/covenantmd/covenant&lt;/a&gt; — it's under 200 lines, MIT licensed, four example covenants, and there's a copy-paste template in the README.&lt;/p&gt;

&lt;p&gt;Every agent you deploy is already deciding what to surface and what to suppress. Right now those decisions are invisible. That's not a feature — it's just negligence with a friendly interface.&lt;/p&gt;

&lt;p&gt;Start with the rejection log. The rest follows.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>agents</category>
      <category>promptengineering</category>
    </item>
  </channel>
</rss>
