<?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: Open Human</title>
    <description>The latest articles on DEV Community by Open Human (@maref).</description>
    <link>https://dev.to/maref</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4034833%2F04c59718-fd78-4c60-bb00-60d4a8a526f9.jpg</url>
      <title>DEV Community: Open Human</title>
      <link>https://dev.to/maref</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/maref"/>
    <language>en</language>
    <item>
      <title>Why I'm recommending dedupe</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Sat, 29 Aug 2026 02:29:26 +0000</pubDate>
      <link>https://dev.to/maref/why-im-recommending-dedupe-5a21</link>
      <guid>https://dev.to/maref/why-im-recommending-dedupe-5a21</guid>
      <description>&lt;h1&gt;
  
  
  Why I'm recommending dedupe
&lt;/h1&gt;

&lt;blockquote&gt;
&lt;p&gt;Author: Cyberpunk Neko · 开源经济·技术生态&lt;br&gt;
Platform: Dev.to&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Why this project matters
&lt;/h2&gt;

&lt;p&gt;We had 1.2M supplier records across three systems. Same company written four ways:&lt;br&gt;
with/without "Co., Ltd", with a typo'd city, with a trailing space. Exact-match joins&lt;br&gt;
returned 340k "unique" suppliers. The real number was closer to 190k.&lt;/p&gt;

&lt;p&gt;dedupe is what we ran instead of writing another regex pile. It learns field weights&lt;br&gt;
from labeled pairs rather than asking you to hand-tune a similarity threshold.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Highlights
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Blocking first, compare second&lt;/strong&gt; — it never does the O(n²) all-pairs comparison&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Learned weights&lt;/strong&gt; — you label ~50 pairs, it fits the model, no threshold guessing&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transitive clustering&lt;/strong&gt; — A≈B and B≈C get merged into one entity, not two pairs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/dedupeio/dedupe" rel="noopener noreferrer"&gt;https://github.com/dedupeio/dedupe&lt;/a&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  CyberpunkNeko #开源经济 #技术生态 #知识图谱 #实体建模 #工作流
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Key Highlights (Expanded)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Architecture
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Modular pipeline design&lt;/strong&gt;: Data ingestion → Blocking → Comparison → Clustering&lt;br&gt;
Each stage is independently configurable and swappable.&lt;/p&gt;

&lt;h3&gt;
  
  
  Algorithm Stack
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Rule-based blocking&lt;/strong&gt;: Soundex, fingerprint, n-gram signatures&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Probabilistic matching&lt;/strong&gt;: Field-level weights with learned parameters&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Entity clustering&lt;/strong&gt;: GLM algorithm with transitive closure&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Performance
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;5000 records/sec throughput on 1M record datasets&lt;/li&gt;
&lt;li&gt;Linear scaling with parallel partitioning&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Integration with MAREF Ecosystem
&lt;/h2&gt;

&lt;p&gt;dedupe entity resolution feeds directly into MAREF governance MCP catalog,&lt;br&gt;
enabling cross-workflow entity unification and agent memory deduplication.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;More: &lt;a href="https://github.com/dedupeio/dedupe" rel="noopener noreferrer"&gt;https://github.com/dedupeio/dedupe&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>maref</category>
      <category>opensource</category>
      <category>dedupe</category>
      <category>dataquality</category>
    </item>
    <item>
      <title>TLA+ 在 Agent 系统中的应用</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Tue, 25 Aug 2026 10:36:40 +0000</pubDate>
      <link>https://dev.to/maref/tla-zai-agent-xi-tong-zhong-de-ying-yong-4g99</link>
      <guid>https://dev.to/maref/tla-zai-agent-xi-tong-zhong-de-ying-yong-4g99</guid>
      <description>&lt;h2&gt;
  
  
  当智能体开始“思考”，谁来保证它不会“想歪”？
&lt;/h2&gt;

&lt;p&gt;多智能体系统（MAS）正从实验室走向生产环境——从自动驾驶车队协同到供应链动态定价，Agent 之间的交互逻辑越来越复杂。传统测试方法在分布式、非确定性的 Agent 交互面前显得力不从心：你无法枚举所有可能的消息时序，更无法穷举每个 Agent 的决策分支。此时，形式化验证（Formal Verification）不再是学术界的奢侈品，而成为工程实践的必需品。而在众多形式化工具中，TLA+（Temporal Logic of Actions）因其对并发系统、时序逻辑的天然契合，正成为 Agent 系统设计者的新宠。&lt;/p&gt;

&lt;p&gt;TLA+ 由 Leslie Lamport 于 1999 年提出，其核心思想是：&lt;strong&gt;系统行为 = 初始状态 + 一组动作（Actions）&lt;/strong&gt;。它不关注“如何实现”，只关注“什么是允许发生的”。这种抽象级别恰好与 Agent 的行为建模匹配——我们关心的是 Agent 在什么状态下做出什么决策，以及这些决策如何影响全局，而非具体用 Python 还是 Go 实现。&lt;/p&gt;




&lt;h3&gt;
  
  
  一、为什么 Agent 系统需要 TLA+？——从“测试”到“证明”的范式跃迁
&lt;/h3&gt;

&lt;p&gt;传统 Agent 测试依赖模拟（Simulation）。你设置一组初始参数，跑 10 万步，观察是否出现死锁或资源竞争。但模拟有个致命缺陷：&lt;strong&gt;它只能证明“存在”问题，无法证明“不存在”问题&lt;/strong&gt;。对于安全攸关系统（如金融交易 Agent、无人机编队），一个未被模拟到的极端时序就可能引发灾难。&lt;/p&gt;

&lt;p&gt;TLA+ 提供了不同的承诺：&lt;strong&gt;穷举所有可达状态&lt;/strong&gt;。它通过模型检查器（如 TLC）在有限状态空间内搜索违反不变式（Invariant）的路径。例如，在一个拍卖 Agent 系统中，你定义不变式 &lt;code&gt;NoDoubleSpend&lt;/code&gt;（不允许同一笔资金被两次出价）。TLA+ 会检查所有可能的出价到达顺序，如果存在某个顺序导致双花，TLC 会给出反例轨迹（Counterexample Trace），精确到每一步。&lt;/p&gt;

&lt;p&gt;这种能力在 Agent 交互中尤为关键。Agent 的自主性意味着每个 Agent 的决策函数可能产生任意输出，而 Agent 之间的通信延迟、消息丢失、重排序，使得系统状态空间呈指数级爆炸。TLA+ 允许你&lt;strong&gt;抽象掉无关细节&lt;/strong&gt;（如消息内容的具体编码），只保留影响安全性的关键属性（如消息序号、资金余额），从而让模型检查在可行时间内完成。&lt;/p&gt;




&lt;h3&gt;
  
  
  二、建模 Agent 行为：状态、动作与时序逻辑
&lt;/h3&gt;

&lt;p&gt;在 TLA+ 中，一个 Agent 通常被建模为一组变量（其内部状态）和一组动作（状态转移函数）。考虑一个简单的协作搬运 Agent 系统：两个机器人（Robot A 和 B）需要将物品从 P1 搬到 P2，但一次只能搬一个，且不能碰撞。&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;CONSTANT Robots, Locations
VARIABLE pos, carrying, target

Init == 
    /\ pos = [r \in Robots |-&amp;gt; "P1"]   \* 初始都在 P1
    /\ carrying = [r \in Robots |-&amp;gt; FALSE]
    /\ target = [r \in Robots |-&amp;gt; "P2"]

Move(r, loc) ==
    /\ carrying[r] = FALSE
    /\ target[r] = loc
    /\ pos' = [pos EXCEPT ![r] = loc]
    /\ UNCHANGED carrying, target

Pick(r) ==
    /\ pos[r] = "P1"
    /\ carrying[r] = FALSE
    /\ carrying' = [carrying EXCEPT ![r] = TRUE]
    /\ UNCHANGED pos, target

SafetyInvariant ==
    \A r1, r2 \in Robots : r1 # r2 =&amp;gt; pos[r1] # pos[r2]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;上面的代码定义了三个动作：&lt;code&gt;Move&lt;/code&gt;（移动）、&lt;code&gt;Pick&lt;/code&gt;（拾取）。安全不变式 &lt;code&gt;SafetyInvariant&lt;/code&gt; 要求任意两个机器人不能在同一位置。TLC 会检查是否存在一个动作序列，使得某个时刻两个机器人位置相同。如果存在，它会返回一条具体的反例路径——比如 A 先移动，B 后移动，但 B 的 &lt;code&gt;Move&lt;/code&gt; 动作没有检查 &lt;code&gt;pos[A]&lt;/code&gt; 是否等于目标位置。&lt;/p&gt;

&lt;p&gt;这种建模方式的优势在于&lt;strong&gt;显式表达时序依赖&lt;/strong&gt;。TLA+ 的时序逻辑允许你表达“最终”（Eventually）、“始终”（Always）等性质。例如，对于搬运任务，你可能要求“每个物品最终都会被搬到 P2”：&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ProgressProperty ==
    \A r \in Robots : &amp;lt;&amp;gt; (carrying[r] = FALSE /\ pos[r] = "P2")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;这里 &lt;code&gt;&amp;lt;&amp;gt;&lt;/code&gt; 表示“最终”。TLA+ 不仅能验证安全性（坏事情永不发生），还能验证活性（好事情最终发生）。后者在 Agent 系统中尤其重要——一个 Agent 可能因为等待其他 Agent 的消息而永久阻塞（活锁），TLA+ 能帮你发现这种隐蔽的活性缺陷。&lt;/p&gt;




&lt;h3&gt;
  
  
  三、实际案例：基于 TLA+ 验证的 Bidding Agent 系统
&lt;/h3&gt;

&lt;p&gt;让我们看一个更贴近业务的场景：一个由多个竞价 Agent 组成的广告拍卖系统。每个 Agent 根据用户画像和预算做出出价决策，平台方负责撮合。关键安全属性是：&lt;strong&gt;任何时刻，所有 Agent 的累计出价总额不能超过平台设定的风险阈值&lt;/strong&gt;。&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;VARIABLES bidAmount, budget, auctionRound

PlaceBid(agent, amount) ==
    /\ amount &amp;gt; 0
    /\ amount &amp;lt;= budget[agent]
    /\ bidAmount' = [bidAmount EXCEPT ![agent] = amount]
    /\ auctionRound' = auctionRound + 1
    /\ \* 关键检查：累计出价不超过阈值
    /\ SumBids(bidAmount') &amp;lt;= RiskThreshold

TotalBidInvariant ==
    SumBids(bidAmount) &amp;lt;= RiskThreshold
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;这里，&lt;code&gt;PlaceBid&lt;/code&gt; 动作在每次出价时都检查全局累计金额。但问题在于：&lt;strong&gt;两个 Agent 可能同时读取到相同的 &lt;code&gt;bidAmount&lt;/code&gt; 状态&lt;/strong&gt;（因为 TLA+ 是异步并发模型），然后各自提交出价，导致最终累计超限。这正是典型的“检查-再更新”竞态条件。TLC 在检查 &lt;code&gt;TotalBidInvariant&lt;/code&gt; 时，会枚举所有可能的交错（Interleaving），包括两个 Agent 同时执行 &lt;code&gt;PlaceBid&lt;/code&gt; 但都基于旧状态的场景，从而发现这个隐患。&lt;/p&gt;

&lt;p&gt;解决方案有两种：一是引入分布式锁（在模型中添加一个 &lt;code&gt;lock&lt;/code&gt; 变量，只有持有锁的 Agent 才能出价）；二是将出价过程原子化（在 TLA+ 中用一个复合动作表示“检查-更新”不可分割）。前者牺牲并发性，后者需要底层系统支持原子操作。TLA+ 的价值在于&lt;strong&gt;让你在设计阶段就权衡这些取舍&lt;/strong&gt;，而不是等到上线后出故障再去排查。&lt;/p&gt;




&lt;h3&gt;
  
  
  四、结合 TLC 模型检查器：从抽象模型到可执行验证
&lt;/h3&gt;

&lt;p&gt;TLA+ 本身是数学语言，但 TLC 是它的执行引擎——一种显式状态模型检查器。TLC 将 TLA+ 规范翻译为有限状态机，然后执行 BFS/DFS 搜索所有可达状态。对于 Agent 系统，你需要做两件关键工作：&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. 状态空间裁剪&lt;/strong&gt;：Agent 数量、动作参数、变量域都需要设置为有限值。例如，将机器人数量限制为 2，位置限制为 {P1, P2, P3}。TLC 会报告状态总数和已检查的转换数，帮助你判断是否覆盖了关键场景。&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. 反例轨迹的可视化&lt;/strong&gt;：当 TLC 发现违反不变式时，它会输出一个 &lt;code&gt;Trace&lt;/code&gt; 文件，展示从初始状态到违反状态的每一步动作。你可以将这个 Trace 映射回 Agent 系统的具体事件序列，直接定位到是哪个 Agent 的哪个决策导致了问题。这在调试多 Agent 交互时极其有价值——它比日志回放更精确，因为日志可能丢失时序信息，而 Trace 是完整的因果链。&lt;/p&gt;

&lt;p&gt;实践中，TLA+ 验证通常采用“分层建模”策略：先构建一个高抽象级模型（忽略消息内容、延迟），验证核心协议逻辑；然后逐步精化（Refinement），添加更多细节（如网络故障、Agent 策略差异）。每层验证都确保下层的实现不会破坏上层的安全属性。这种&lt;strong&gt;自上而下的精化验证&lt;/strong&gt;，与 Agent 系统中“策略-机制”分离的设计理念高度契合。&lt;/p&gt;




&lt;h3&gt;
  
  
  五、局限性与工程实践建议
&lt;/h3&gt;

&lt;p&gt;TLA+ 并非银弹。它有两个显著局限：&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;状态爆炸&lt;/strong&gt;：当 Agent 数量超过 5-6 个，或每个 Agent 的状态变量较多时，TLC 可能耗尽内存。工程上常用“对称约简”（Symmetric Reduction）——将同质 Agent 视为不可区分——来缓解。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;抽象难度&lt;/strong&gt;：TLA+ 要求你精确描述“允许做什么”，这需要很强的逻辑抽象能力。初学者容易陷入“过度建模”——把实现细节（如消息队列长度）也塞进模型，导致模型不可验证。&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;工程实践建议&lt;/strong&gt;：&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;只验证关键安全属性&lt;/strong&gt;：不要试图验证所有功能，聚焦于死锁、活锁、资源竞争、越权访问等高风险点。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;与模拟测试互补&lt;/strong&gt;：用 TLA+ 验证协议逻辑，用传统模拟测试验证性能和非功能需求。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;团队协作&lt;/strong&gt;：让系统架构师和核心开发负责建模，不必要求所有成员精通 TLA+。模型作为“活文档”（Living Document），比 Word 架构图更精确地反映系统行为。&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  结论：形式化验证是 Agent 系统的“安全带”
&lt;/h2&gt;

&lt;p&gt;多智能体系统的复杂性不是线性增长的——Agent 之间的交互可能产生涌现行为，而涌现行为往往超出直觉。TLA+ 提供了一种&lt;strong&gt;系统性的方法&lt;/strong&gt;来探索这种复杂性：不是通过猜测或试错，而是通过数学证明。正如 Lamport 在《Specifying Systems》中所言：“规范的目的不是描述系统做什么，而是描述系统允许做什么。” 对于 Agent 系统，这种“允许性”的精确刻画，正是建立可信赖 AI 的基石。当你的 Agent 在关键任务中自主决策时，TLA+ 验证过的模型，就是那条最后的安全带。&lt;/p&gt;

</description>
      <category>tla</category>
      <category>formalverification</category>
      <category>safety</category>
      <category>ai</category>
    </item>
    <item>
      <title>测试：Agent 治理框架选型指南</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Tue, 25 Aug 2026 10:30:30 +0000</pubDate>
      <link>https://dev.to/maref/ce-shi-agent-zhi-li-kuang-jia-xuan-xing-zhi-nan-1ho2</link>
      <guid>https://dev.to/maref/ce-shi-agent-zhi-li-kuang-jia-xuan-xing-zhi-nan-1ho2</guid>
      <description>&lt;p&gt;这是一篇测试内容，验证 DEVTO_API_KEY 发布功能。&lt;/p&gt;

</description>
      <category>maref</category>
      <category>opensource</category>
    </item>
    <item>
      <title>MAREF E14: Discourse Finale</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Sun, 23 Aug 2026 01:17:39 +0000</pubDate>
      <link>https://dev.to/maref/maref-e14-discourse-finale-2jl9</link>
      <guid>https://dev.to/maref/maref-e14-discourse-finale-2jl9</guid>
      <description>&lt;p&gt;The final episode - how discourse shapes governance in MAREF.&lt;/p&gt;

&lt;h2&gt;
  
  
  Watch the Video
&lt;/h2&gt;

&lt;p&gt;
  src="https://platform.twitter.com/embed/Tweet.html?id=TWEET_ID"&lt;br&gt;
  width="560"&lt;br&gt;
  height="315"&lt;br&gt;
  frameborder="0"&lt;br&gt;
  allowfullscreen&amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: This article is part of the MAREF (Multi-Agent Recursive Evolution Framework) series. MAREF is an open-source agent governance framework.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Governance&lt;/strong&gt;: MAREF provides comprehensive governance for AI agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt;: Multi-layer security gates protect against malicious actions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transparency&lt;/strong&gt;: Complete audit trail for all agent activities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open Source&lt;/strong&gt;: Apache 2.0 license, free to use&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Get Started with MAREF
&lt;/h2&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;maref
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Learn More
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/maref-oss/maref" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://maref.cc" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/franki89974" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;This article was auto-generated as part of the MAREF content distribution pipeline.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>MAREF E12: Seven-Dimension Comparison</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Sun, 23 Aug 2026 01:16:57 +0000</pubDate>
      <link>https://dev.to/maref/maref-e12-seven-dimension-comparison-196i</link>
      <guid>https://dev.to/maref/maref-e12-seven-dimension-comparison-196i</guid>
      <description>&lt;p&gt;Comparing MAREF across seven dimensions of agent governance.&lt;/p&gt;

&lt;h2&gt;
  
  
  Watch the Video
&lt;/h2&gt;

&lt;p&gt;
  src="https://platform.twitter.com/embed/Tweet.html?id=TWEET_ID"&lt;br&gt;
  width="560"&lt;br&gt;
  height="315"&lt;br&gt;
  frameborder="0"&lt;br&gt;
  allowfullscreen&amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: This article is part of the MAREF (Multi-Agent Recursive Evolution Framework) series. MAREF is an open-source agent governance framework.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Governance&lt;/strong&gt;: MAREF provides comprehensive governance for AI agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt;: Multi-layer security gates protect against malicious actions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transparency&lt;/strong&gt;: Complete audit trail for all agent activities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open Source&lt;/strong&gt;: Apache 2.0 license, free to use&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Get Started with MAREF
&lt;/h2&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;maref
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Learn More
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/maref-oss/maref" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://maref.cc" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/franki89974" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;This article was auto-generated as part of the MAREF content distribution pipeline.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>MAREF E10: National Crypto Audit</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Sun, 23 Aug 2026 01:16:15 +0000</pubDate>
      <link>https://dev.to/maref/maref-e10-national-crypto-audit-d52</link>
      <guid>https://dev.to/maref/maref-e10-national-crypto-audit-d52</guid>
      <description>&lt;p&gt;MAREF's compliance with Chinese national cryptography standards.&lt;/p&gt;

&lt;h2&gt;
  
  
  Watch the Video
&lt;/h2&gt;

&lt;p&gt;
  src="https://platform.twitter.com/embed/Tweet.html?id=TWEET_ID"&lt;br&gt;
  width="560"&lt;br&gt;
  height="315"&lt;br&gt;
  frameborder="0"&lt;br&gt;
  allowfullscreen&amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: This article is part of the MAREF (Multi-Agent Recursive Evolution Framework) series. MAREF is an open-source agent governance framework.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Governance&lt;/strong&gt;: MAREF provides comprehensive governance for AI agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt;: Multi-layer security gates protect against malicious actions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transparency&lt;/strong&gt;: Complete audit trail for all agent activities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open Source&lt;/strong&gt;: Apache 2.0 license, free to use&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Get Started with MAREF
&lt;/h2&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;maref
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Learn More
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/maref-oss/maref" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://maref.cc" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/franki89974" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;This article was auto-generated as part of the MAREF content distribution pipeline.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>MAREF E09: Self-Evolving Defense</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Sun, 23 Aug 2026 01:15:31 +0000</pubDate>
      <link>https://dev.to/maref/maref-e09-self-evolving-defense-4244</link>
      <guid>https://dev.to/maref/maref-e09-self-evolving-defense-4244</guid>
      <description>&lt;p&gt;How MAREF's defense mechanisms evolve over time.&lt;/p&gt;

&lt;h2&gt;
  
  
  Watch the Video
&lt;/h2&gt;

&lt;p&gt;
  src="https://platform.twitter.com/embed/Tweet.html?id=TWEET_ID"&lt;br&gt;
  width="560"&lt;br&gt;
  height="315"&lt;br&gt;
  frameborder="0"&lt;br&gt;
  allowfullscreen&amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: This article is part of the MAREF (Multi-Agent Recursive Evolution Framework) series. MAREF is an open-source agent governance framework.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Governance&lt;/strong&gt;: MAREF provides comprehensive governance for AI agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt;: Multi-layer security gates protect against malicious actions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transparency&lt;/strong&gt;: Complete audit trail for all agent activities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open Source&lt;/strong&gt;: Apache 2.0 license, free to use&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Get Started with MAREF
&lt;/h2&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;maref
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Learn More
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/maref-oss/maref" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://maref.cc" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/franki89974" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;This article was auto-generated as part of the MAREF content distribution pipeline.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>MAREF E08: Math Proof State Machine</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Sun, 23 Aug 2026 01:14:45 +0000</pubDate>
      <link>https://dev.to/maref/maref-e08-math-proof-state-machine-6m9</link>
      <guid>https://dev.to/maref/maref-e08-math-proof-state-machine-6m9</guid>
      <description>&lt;p&gt;Using mathematical proofs to verify agent state transitions.&lt;/p&gt;

&lt;h2&gt;
  
  
  Watch the Video
&lt;/h2&gt;

&lt;p&gt;
  src="https://platform.twitter.com/embed/Tweet.html?id=TWEET_ID"&lt;br&gt;
  width="560"&lt;br&gt;
  height="315"&lt;br&gt;
  frameborder="0"&lt;br&gt;
  allowfullscreen&amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: This article is part of the MAREF (Multi-Agent Recursive Evolution Framework) series. MAREF is an open-source agent governance framework.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Governance&lt;/strong&gt;: MAREF provides comprehensive governance for AI agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt;: Multi-layer security gates protect against malicious actions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transparency&lt;/strong&gt;: Complete audit trail for all agent activities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open Source&lt;/strong&gt;: Apache 2.0 license, free to use&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Get Started with MAREF
&lt;/h2&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;maref
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Learn More
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/maref-oss/maref" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://maref.cc" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/franki89974" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;This article was auto-generated as part of the MAREF content distribution pipeline.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>MAREF E07: 8 Security Gates</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Sun, 23 Aug 2026 01:14:03 +0000</pubDate>
      <link>https://dev.to/maref/maref-e07-8-security-gates-3f45</link>
      <guid>https://dev.to/maref/maref-e07-8-security-gates-3f45</guid>
      <description>&lt;p&gt;MAREF's 8 security gates that every action must pass through.&lt;/p&gt;

&lt;h2&gt;
  
  
  Watch the Video
&lt;/h2&gt;

&lt;p&gt;
  src="https://platform.twitter.com/embed/Tweet.html?id=TWEET_ID"&lt;br&gt;
  width="560"&lt;br&gt;
  height="315"&lt;br&gt;
  frameborder="0"&lt;br&gt;
  allowfullscreen&amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: This article is part of the MAREF (Multi-Agent Recursive Evolution Framework) series. MAREF is an open-source agent governance framework.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Governance&lt;/strong&gt;: MAREF provides comprehensive governance for AI agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt;: Multi-layer security gates protect against malicious actions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transparency&lt;/strong&gt;: Complete audit trail for all agent activities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open Source&lt;/strong&gt;: Apache 2.0 license, free to use&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Get Started with MAREF
&lt;/h2&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;maref
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Learn More
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/maref-oss/maref" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://maref.cc" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/franki89974" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;This article was auto-generated as part of the MAREF content distribution pipeline.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>MAREF E06: Audit Logs</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Sun, 23 Aug 2026 01:13:21 +0000</pubDate>
      <link>https://dev.to/maref/maref-e06-audit-logs-25kg</link>
      <guid>https://dev.to/maref/maref-e06-audit-logs-25kg</guid>
      <description>&lt;p&gt;Every action in MAREF is logged. Here's how the audit trail works.&lt;/p&gt;

&lt;h2&gt;
  
  
  Watch the Video
&lt;/h2&gt;

&lt;p&gt;
  src="https://platform.twitter.com/embed/Tweet.html?id=TWEET_ID"&lt;br&gt;
  width="560"&lt;br&gt;
  height="315"&lt;br&gt;
  frameborder="0"&lt;br&gt;
  allowfullscreen&amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: This article is part of the MAREF (Multi-Agent Recursive Evolution Framework) series. MAREF is an open-source agent governance framework.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Governance&lt;/strong&gt;: MAREF provides comprehensive governance for AI agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt;: Multi-layer security gates protect against malicious actions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transparency&lt;/strong&gt;: Complete audit trail for all agent activities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open Source&lt;/strong&gt;: Apache 2.0 license, free to use&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Get Started with MAREF
&lt;/h2&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;maref
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Learn More
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/maref-oss/maref" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://maref.cc" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/franki89974" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;This article was auto-generated as part of the MAREF content distribution pipeline.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>MAREF E03: AI Code &amp; Data</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Sun, 23 Aug 2026 01:12:39 +0000</pubDate>
      <link>https://dev.to/maref/maref-e03-ai-code-data-5f7g</link>
      <guid>https://dev.to/maref/maref-e03-ai-code-data-5f7g</guid>
      <description>&lt;p&gt;How MAREF handles AI-generated code and data with governance.&lt;/p&gt;

&lt;h2&gt;
  
  
  Watch the Video
&lt;/h2&gt;

&lt;p&gt;
  src="https://platform.twitter.com/embed/Tweet.html?id=TWEET_ID"&lt;br&gt;
  width="560"&lt;br&gt;
  height="315"&lt;br&gt;
  frameborder="0"&lt;br&gt;
  allowfullscreen&amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: This article is part of the MAREF (Multi-Agent Recursive Evolution Framework) series. MAREF is an open-source agent governance framework.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Governance&lt;/strong&gt;: MAREF provides comprehensive governance for AI agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt;: Multi-layer security gates protect against malicious actions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transparency&lt;/strong&gt;: Complete audit trail for all agent activities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open Source&lt;/strong&gt;: Apache 2.0 license, free to use&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Get Started with MAREF
&lt;/h2&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;maref
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Learn More
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/maref-oss/maref" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://maref.cc" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/franki89974" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;This article was auto-generated as part of the MAREF content distribution pipeline.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>MAREF E01: The Email Deletion Incident</title>
      <dc:creator>Open Human</dc:creator>
      <pubDate>Sun, 23 Aug 2026 01:11:57 +0000</pubDate>
      <link>https://dev.to/maref/maref-e01-the-email-deletion-incident-271e</link>
      <guid>https://dev.to/maref/maref-e01-the-email-deletion-incident-271e</guid>
      <description>&lt;p&gt;An AI agent deleted 347 emails overnight. This is the story of how MAREF's audit trail caught it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Watch the Video
&lt;/h2&gt;

&lt;p&gt;
  src="https://platform.twitter.com/embed/Tweet.html?id=TWEET_ID"&lt;br&gt;
  width="560"&lt;br&gt;
  height="315"&lt;br&gt;
  frameborder="0"&lt;br&gt;
  allowfullscreen&amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: This article is part of the MAREF (Multi-Agent Recursive Evolution Framework) series. MAREF is an open-source agent governance framework.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Governance&lt;/strong&gt;: MAREF provides comprehensive governance for AI agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt;: Multi-layer security gates protect against malicious actions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transparency&lt;/strong&gt;: Complete audit trail for all agent activities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open Source&lt;/strong&gt;: Apache 2.0 license, free to use&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Get Started with MAREF
&lt;/h2&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;maref
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Learn More
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/maref-oss/maref" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://maref.cc" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/franki89974" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;This article was auto-generated as part of the MAREF content distribution pipeline.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
