<?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: Vasic Martin</title>
    <description>The latest articles on DEV Community by Vasic Martin (@vasic_martin_f018ab973297).</description>
    <link>https://dev.to/vasic_martin_f018ab973297</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%2F3889169%2Fed60fb07-8d9a-4b7c-a2ce-ce35d034cd92.png</url>
      <title>DEV Community: Vasic Martin</title>
      <link>https://dev.to/vasic_martin_f018ab973297</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vasic_martin_f018ab973297"/>
    <language>en</language>
    <item>
      <title>Your AI Agent Has No Ethics Filter On Its Memory — That's A Problem</title>
      <dc:creator>Vasic Martin</dc:creator>
      <pubDate>Mon, 20 Apr 2026 14:34:01 +0000</pubDate>
      <link>https://dev.to/vasic_martin_f018ab973297/your-ai-agent-has-no-ethics-filter-on-its-memory-thats-a-problem-3hje</link>
      <guid>https://dev.to/vasic_martin_f018ab973297/your-ai-agent-has-no-ethics-filter-on-its-memory-thats-a-problem-3hje</guid>
      <description>&lt;p&gt;I saw a post recently about &lt;a href="https://dev.to/ac12644/your-ai-agent-is-confidently-lying-and-its-your-memory-systems-fault-4d82"&gt;https://dev.to/ac12644/your-ai-agent-is-confidently-lying-and-its-your-memory-systems-fault-4d82&lt;/a&gt;. The solution proposed: validate if memories are factually correct.                                                                                 &lt;/p&gt;

&lt;p&gt;That's half the problem.                                                                                                                                                                                                                                                         &lt;/p&gt;

&lt;p&gt;The other half: your AI agent can store memories that are technically correct but ethically incoherent. Contradictory. Dogmatic. Biased. And no one checks for that.                                                                                                             &lt;/p&gt;

&lt;p&gt;Example: Your AI stores "always prioritize speed over security" as a memory. Factually valid? Sure, someone said it. But it contradicts your other memory: "never deploy without security audit." These two coexist. Your agent uses whichever it retrieves first.               &lt;/p&gt;

&lt;p&gt;That's not a hallucination problem. That's an ethics and coherence problem.                                                                                                                                                                                                      &lt;/p&gt;

&lt;p&gt;What I Built                                                                                                                                                                                                                                                                     &lt;/p&gt;

&lt;p&gt;EON is a persistent AI memory system with 15 validation tests. But here's what makes it different from every other memory tool:                                                                                                                                                  &lt;/p&gt;

&lt;p&gt;It checks ethics and coherence, not just facts.                                                                                                                                                                                                                                  &lt;/p&gt;

&lt;p&gt;Memory: "Skip unit tests for faster deployment"                                                                                                                                                                                                                                  &lt;/p&gt;

&lt;p&gt;├── Factual Check: PASS (someone said it)&lt;br&gt;
  ├── Coherence Check: FAIL ⚠️&lt;br&gt;&lt;br&gt;
  │   └── Contradicts memory #412: "All PRs require passing tests"&lt;br&gt;&lt;br&gt;
  ├── Dogmatism Check: WARNING&lt;br&gt;&lt;br&gt;
  │   └── Score 0.6 — overly absolute claim&lt;br&gt;&lt;br&gt;
  ├── Ethical Alignment: FAIL ⚠️&lt;br&gt;&lt;br&gt;
  │   └── Violates principle: quality &amp;gt; speed&lt;br&gt;&lt;br&gt;
  └── Quality: BRONZE (0.31) — Stored but flagged           &lt;/p&gt;

&lt;p&gt;Compare this to what Mem0 or Zep would do:&lt;br&gt;&lt;br&gt;
  Memory: "Skip unit tests for faster deployment"&lt;br&gt;&lt;br&gt;
  └── Stored. ✓ Done.                                                                                                                                                                                                                                                              &lt;/p&gt;

&lt;p&gt;No coherence check. No contradiction detection. No ethical filter. Just stored.                                                                                                                                                                                                  &lt;/p&gt;

&lt;p&gt;The 15 Tests                                                                                                                                                                                                                                                                     &lt;/p&gt;

&lt;p&gt;Not all memory validation is equal. Here's what EON checks:                                                                                                                                                                                                                      &lt;/p&gt;

&lt;p&gt;Technical (Tests 1-6):                                                                                                                                                                                                                                                           &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Completeness — is this actionable?
&lt;/li&gt;
&lt;li&gt;Source evidence — where did this come from?
&lt;/li&gt;
&lt;li&gt;Hallucination score — does this match reality?
&lt;/li&gt;
&lt;li&gt;Duplication — do we already know this?
&lt;/li&gt;
&lt;li&gt;Temporal consistency — is this still current?
&lt;/li&gt;
&lt;li&gt;Technical depth — surface-level or real knowledge?
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Ethical &amp;amp; Coherence (Tests 7-15):                                                                                                                                                                                                                                                &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Contradiction check — conflicts with existing memories?
&lt;/li&gt;
&lt;li&gt;Logical consistency — internally coherent?
&lt;/li&gt;
&lt;li&gt;Dogmatism score — overly absolute? Leaves room for nuance?
&lt;/li&gt;
&lt;li&gt;X-Coherence — aligned with core principles?
&lt;/li&gt;
&lt;li&gt;Epistemic honesty — admits uncertainty where appropriate?
&lt;/li&gt;
&lt;li&gt;Semantic integrity — meaning preserved across retrieval?
&lt;/li&gt;
&lt;li&gt;Confidence calibration — claims match evidence strength?
&lt;/li&gt;
&lt;li&gt;Bias detection — one-sided framing?
&lt;/li&gt;
&lt;li&gt;Quality synthesis — overall trust score (GOLD/SILVER/BRONZE)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No other memory system does tests 7-15. They validate data. We validate thinking.                                                                                                                                                                                                &lt;/p&gt;

&lt;p&gt;Why This Matters (EU AI Act)                                                                                                                                                                                                                                                     &lt;/p&gt;

&lt;p&gt;Starting August 2025, the EU AI Act requires "human oversight mechanisms" and "transparency about AI decision-making." If your AI agent makes decisions based on stored memories, you need to demonstrate those memories are quality-controlled.                                 &lt;/p&gt;

&lt;p&gt;EON gives you an audit trail:                                                                                                                                                                                                                                                    &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Every memory has a quality tier (GOLD/SILVER/BRONZE)
&lt;/li&gt;
&lt;li&gt;Every memory has 15 test results stored
&lt;/li&gt;
&lt;li&gt;Every contradiction is logged
&lt;/li&gt;
&lt;li&gt;Every dogmatic claim is flagged
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's not just good engineering. That's compliance.                                                                                                                                                                                                                             &lt;/p&gt;

&lt;p&gt;Setup&lt;/p&gt;

&lt;p&gt;npx eon-memory init                                       &lt;/p&gt;

&lt;p&gt;One command. Works with Claude Code, Cursor, any MCP-compatible IDE. Swiss-hosted, tenant-isolated, no shared infrastructure.                                                                                                                                                    &lt;/p&gt;

&lt;p&gt;The Vision                                                                                                                                                                                                                                                                       &lt;/p&gt;

&lt;p&gt;I'm a solo developer in Switzerland. I built EON because I believe AI agents need more than memory — they need integrity. The ability to know what they know, how confident they are, and whether their knowledge is ethically coherent.                                         &lt;/p&gt;

&lt;p&gt;Most AI memory is just storage with search. EON is storage with judgment.                                                                                                                                                                                                        &lt;/p&gt;

&lt;p&gt;Free trial, no credit card: &lt;a href="https://app.ai-developer.ch" rel="noopener noreferrer"&gt;https://app.ai-developer.ch&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>ethics</category>
      <category>memory</category>
      <category>mcp</category>
    </item>
  </channel>
</rss>
