<?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: enioxt</title>
    <description>The latest articles on DEV Community by enioxt (@enioxt).</description>
    <link>https://dev.to/enioxt</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%2F3786816%2F7ca9487d-927c-4885-a942-fb533afafc50.png</url>
      <title>DEV Community: enioxt</title>
      <link>https://dev.to/enioxt</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/enioxt"/>
    <language>en</language>
    <item>
      <title>I Built 23 AI Agents That Audit Any Codebase in 3 Minutes — For Free</title>
      <dc:creator>enioxt</dc:creator>
      <pubDate>Mon, 23 Feb 2026 14:41:34 +0000</pubDate>
      <link>https://dev.to/enioxt/i-built-23-ai-agents-that-audit-any-codebase-in-3-minutes-for-free-1eg3</link>
      <guid>https://dev.to/enioxt/i-built-23-ai-agents-that-audit-any-codebase-in-3-minutes-for-free-1eg3</guid>
      <description>&lt;p&gt;What if you could run 23 diagnostic agents on any TypeScript codebase and get a full health report in under 3 minutes — for $0?&lt;/p&gt;

&lt;p&gt;I built &lt;a href="https://github.com/enioxt/egos-lab" rel="noopener noreferrer"&gt;EGOS&lt;/a&gt;, a zero-dependency agent platform that does exactly that. Then I ran it on 5 of the most popular open-source TypeScript projects in the world.&lt;/p&gt;

&lt;p&gt;The results surprised me.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Another Agent Framework?
&lt;/h2&gt;

&lt;p&gt;Every agent framework (LangChain, CrewAI, AutoGen) starts with: &lt;em&gt;"Here's an LLM, give it tools, let it figure things out."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;EGOS starts differently: &lt;em&gt;"Here are the RULES that govern this codebase. Agents enforce them."&lt;/em&gt;&lt;/p&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;Traditional Frameworks&lt;/th&gt;
&lt;th&gt;EGOS&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Core primitive&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Prompt + LLM + Tools&lt;/td&gt;
&lt;td&gt;Rules + Registry + Runner&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Agent identity&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;System prompt (ephemeral)&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;.guarani/IDENTITY.md&lt;/code&gt; (persistent)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Dependencies&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;50-200+ packages&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Zero&lt;/strong&gt; (pure TS + Bun)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Cost to run&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;$0.01-$1.00/run&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;$0&lt;/strong&gt; (most agents are static analysis)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Install size&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;100-200MB&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;~50KB of agent code&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The biological metaphor isn't just marketing — it's the architecture:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;.guarani/&lt;/code&gt; = &lt;strong&gt;DNA&lt;/strong&gt; — identity, values, immutable principles&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;.windsurfrules&lt;/code&gt; = &lt;strong&gt;Epigenetics&lt;/strong&gt; — context-specific activation rules&lt;/li&gt;
&lt;li&gt;Agents = &lt;strong&gt;Cells&lt;/strong&gt; — each specialized for one function&lt;/li&gt;
&lt;li&gt;Registry = &lt;strong&gt;Nervous system&lt;/strong&gt; — coordination, discovery&lt;/li&gt;
&lt;li&gt;Runner = &lt;strong&gt;Metabolism&lt;/strong&gt; — execution, cost tracking&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Agents
&lt;/h2&gt;

&lt;p&gt;23 registered agents organized in a 5-layer testing architecture:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Layer&lt;/th&gt;
&lt;th&gt;Agents&lt;/th&gt;
&lt;th&gt;What They Do&lt;/th&gt;
&lt;th&gt;Cost&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Static Analysis&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;SSOT Auditor, Security Scanner, Dead Code, Dep Auditor&lt;/td&gt;
&lt;td&gt;Find structural problems without running code&lt;/td&gt;
&lt;td&gt;$0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Contract Testing&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Contract Tester&lt;/td&gt;
&lt;td&gt;Verify API routes return correct status codes and schemas&lt;/td&gt;
&lt;td&gt;$0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Integration Testing&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Integration Tester&lt;/td&gt;
&lt;td&gt;Test Supabase RLS policies, SQL injection, XSS&lt;/td&gt;
&lt;td&gt;$0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Regression&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Regression Watcher&lt;/td&gt;
&lt;td&gt;Compare test results over time, detect flaky tests&lt;/td&gt;
&lt;td&gt;$0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;AI Verification&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;AI Verifier&lt;/td&gt;
&lt;td&gt;Adversarial testing, factual accuracy, safety checks&lt;/td&gt;
&lt;td&gt;~$0.01&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Plus specialized agents: Rho Calculator (team health), Auth Checker (permission drift), Showcase Writer (case study generator), and an Orchestrator that runs them all.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Experiment: 5 Famous Repos
&lt;/h2&gt;

&lt;p&gt;For each repository, the SSOT Auditor performed:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;AST Extraction&lt;/strong&gt; — Parse all &lt;code&gt;.ts/.tsx&lt;/code&gt; files&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fingerprinting&lt;/strong&gt; — Generate normalized structural fingerprints for every type&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clustering&lt;/strong&gt; — Group identical names, compare shapes (EXACT, RELAXED, DIVERGENT)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Drift Classification&lt;/strong&gt; — Analyze field differences, optionality changes, naming conventions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Codemod Generation&lt;/strong&gt; — Generate safe, executable fix plans&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  1. Cal.com — The Open-Source Calendly
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Stars:&lt;/strong&gt; ~32K | &lt;strong&gt;Files scanned:&lt;/strong&gt; 6,660&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;1,236 actionable declarations&lt;/strong&gt; across 1,266 clusters&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;105 cross-package high-risk clusters&lt;/strong&gt; (419 declarations)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;86 codemod plans generated&lt;/strong&gt; (84 safe to apply instantly)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Top offender:&lt;/strong&gt; &lt;code&gt;FormValues&lt;/code&gt; — defined &lt;strong&gt;35 times&lt;/strong&gt; across web and features packages&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Cal.com's massive monorepo scale has led to significant type duplication. The auditor generated 86 immediate fix plans that could consolidate 198 duplicate actions into canonical imports.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. NestJS — Progressive Node.js Framework
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Stars:&lt;/strong&gt; ~70K | &lt;strong&gt;Files scanned:&lt;/strong&gt; 1,939&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;467 actionable declarations&lt;/strong&gt; across 444 clusters&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;44 cross-package high-risk clusters&lt;/strong&gt; (284 declarations)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;28 codemod plans&lt;/strong&gt; (all safe to apply)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Top offender:&lt;/strong&gt; &lt;code&gt;Type&lt;/code&gt; — defined &lt;strong&gt;11 times&lt;/strong&gt; across common, core, and microservices&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Even highly structured frameworks have cross-package drift. The auditor correctly identified 28 consolidation opportunities without breaking the framework's strict architectural boundaries.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. tRPC — End-to-End Typesafe APIs
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Stars:&lt;/strong&gt; ~35K | &lt;strong&gt;Files scanned:&lt;/strong&gt; 643&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;165 actionable declarations&lt;/strong&gt; across 71 clusters&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;3 cross-package high-risk clusters&lt;/strong&gt; (41 declarations)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;23 codemod plans&lt;/strong&gt; (all safe)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Top offender:&lt;/strong&gt; &lt;code&gt;AnyRouter&lt;/code&gt; — defined &lt;strong&gt;14 times&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A library &lt;em&gt;dedicated to type safety&lt;/em&gt; still experiences internal type fragmentation. The examples directory was the worst offender — each example re-defines core types instead of importing.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Supabase JS Client
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Stars:&lt;/strong&gt; ~13K | &lt;strong&gt;Files scanned:&lt;/strong&gt; 359&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;89 actionable declarations&lt;/strong&gt; across 243 clusters&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;1 cross-package high-risk cluster&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;32 codemod plans&lt;/strong&gt; (all safe)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Despite being a focused client library, internal duplication exists. &lt;code&gt;Fetch&lt;/code&gt; defined multiple times across different modules.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Excalidraw — Virtual Whiteboard
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Stars:&lt;/strong&gt; ~85K | &lt;strong&gt;Files scanned:&lt;/strong&gt; 750&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;35 actionable declarations&lt;/strong&gt; across 128 clusters&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;4 cross-package clusters&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Only 2 codemod plans&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Excalidraw is &lt;strong&gt;exceptionally clean&lt;/strong&gt;. Only 2 fix plans were generated, indicating very strong central type management. This is the gold standard.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Scoreboard
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Repo&lt;/th&gt;
&lt;th&gt;Files&lt;/th&gt;
&lt;th&gt;Actionable Drift&lt;/th&gt;
&lt;th&gt;Codemods&lt;/th&gt;
&lt;th&gt;Verdict&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Cal.com&lt;/td&gt;
&lt;td&gt;6,660&lt;/td&gt;
&lt;td&gt;1,236&lt;/td&gt;
&lt;td&gt;86&lt;/td&gt;
&lt;td&gt;Needs governance layer&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;NestJS&lt;/td&gt;
&lt;td&gt;1,939&lt;/td&gt;
&lt;td&gt;467&lt;/td&gt;
&lt;td&gt;28&lt;/td&gt;
&lt;td&gt;Healthy with some drift&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;tRPC&lt;/td&gt;
&lt;td&gt;643&lt;/td&gt;
&lt;td&gt;165&lt;/td&gt;
&lt;td&gt;23&lt;/td&gt;
&lt;td&gt;Examples pollute types&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Supabase JS&lt;/td&gt;
&lt;td&gt;359&lt;/td&gt;
&lt;td&gt;89&lt;/td&gt;
&lt;td&gt;32&lt;/td&gt;
&lt;td&gt;Minor internal duplication&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Excalidraw&lt;/td&gt;
&lt;td&gt;750&lt;/td&gt;
&lt;td&gt;35&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;Gold standard&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Why This Matters
&lt;/h2&gt;

&lt;h3&gt;
  
  
  The "Silent Killer" of Monorepos
&lt;/h3&gt;

&lt;p&gt;Duplicate types (&lt;code&gt;interface User&lt;/code&gt; defined 5 times differently) break the Single Source of Truth principle. When the database schema changes, developers must hunt down all 5 variants. Miss one → runtime bug.&lt;/p&gt;

&lt;h3&gt;
  
  
  Automated Remediation, Not Just Complaints
&lt;/h3&gt;

&lt;p&gt;The SSOT Auditor doesn't just find problems — it generates &lt;strong&gt;executable AST codemods&lt;/strong&gt;. In Cal.com, it produced 84 safe-to-apply changes that a developer could execute with a single command.&lt;/p&gt;

&lt;h3&gt;
  
  
  Bounded Context Awareness
&lt;/h3&gt;

&lt;p&gt;Not all duplicates are bugs. The auditor uses a DDD (Domain-Driven Design) classifier to distinguish between:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Drift Evolution&lt;/strong&gt; → needs merge (same intent, diverged over time)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bounded Context Collision&lt;/strong&gt; → needs rename (&lt;code&gt;AuthUser&lt;/code&gt; vs &lt;code&gt;GamificationUser&lt;/code&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How to Try It
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Clone EGOS&lt;/span&gt;
git clone https://github.com/enioxt/egos-lab.git
&lt;span class="nb"&gt;cd &lt;/span&gt;egos-lab &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; bun &lt;span class="nb"&gt;install&lt;/span&gt;

&lt;span class="c"&gt;# List all 23 agents&lt;/span&gt;
bun agent:list

&lt;span class="c"&gt;# Run SSOT Auditor on YOUR repo&lt;/span&gt;
bun agent:run ssot_auditor &lt;span class="nt"&gt;--dry&lt;/span&gt;

&lt;span class="c"&gt;# Run ALL agents (full diagnostic)&lt;/span&gt;
bun agent:all &lt;span class="nt"&gt;--exec&lt;/span&gt;

&lt;span class="c"&gt;# Or use the web UI — paste any GitHub URL&lt;/span&gt;
&lt;span class="c"&gt;# https://egos.ia.br&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No API keys needed for static analysis agents. The web UI at &lt;a href="https://egos.ia.br" rel="noopener noreferrer"&gt;egos.ia.br&lt;/a&gt; lets you paste any public GitHub repo URL and get a full report.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Learned Building This
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Zero dependencies = maximum portability
&lt;/h3&gt;

&lt;p&gt;No framework overhead means: runs anywhere (CI/CD, local, cloud, Railway), no version conflicts, easy to fork, fast startup (~100ms).&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Pre-commit hooks are the enforcement layer
&lt;/h3&gt;

&lt;p&gt;We added SSOT governance to our pre-commit:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Scans for new duplicate types (blocking)&lt;/li&gt;
&lt;li&gt;Detects &lt;code&gt;select('*')&lt;/code&gt; in API routes (warning)
&lt;/li&gt;
&lt;li&gt;Flags exposed secrets via entropy analysis (blocking)&lt;/li&gt;
&lt;li&gt;Validates agent registry integrity (blocking)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. Rules are more valuable than agents
&lt;/h3&gt;

&lt;p&gt;The agents are just enforcers. The real product is the &lt;strong&gt;rules&lt;/strong&gt; — shareable, composable, community-improvable governance configs in &lt;code&gt;.guarani/&lt;/code&gt; and &lt;code&gt;.windsurfrules&lt;/code&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Small, focused agents beat general-purpose ones
&lt;/h3&gt;

&lt;p&gt;Each EGOS agent does ONE thing, in &amp;lt;50ms, produces structured output, costs $0. A general-purpose agent tries everything and does nothing well.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Diagnostic Kit (5 checks, 3 minutes, $0)
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Diagnostic&lt;/th&gt;
&lt;th&gt;Time&lt;/th&gt;
&lt;th&gt;Cost&lt;/th&gt;
&lt;th&gt;What You Learn&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;SSOT Audit&lt;/td&gt;
&lt;td&gt;&amp;lt;1 min&lt;/td&gt;
&lt;td&gt;$0&lt;/td&gt;
&lt;td&gt;Duplicated data, type drift&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Security Scan&lt;/td&gt;
&lt;td&gt;&amp;lt;30s&lt;/td&gt;
&lt;td&gt;$0&lt;/td&gt;
&lt;td&gt;Exposed secrets, PII risks&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Rho Score&lt;/td&gt;
&lt;td&gt;&amp;lt;10s&lt;/td&gt;
&lt;td&gt;$0&lt;/td&gt;
&lt;td&gt;Team health, bus factor&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Auth Audit&lt;/td&gt;
&lt;td&gt;&amp;lt;1 min&lt;/td&gt;
&lt;td&gt;$0&lt;/td&gt;
&lt;td&gt;Role/permission inconsistencies&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Dead Code&lt;/td&gt;
&lt;td&gt;&amp;lt;30s&lt;/td&gt;
&lt;td&gt;$0&lt;/td&gt;
&lt;td&gt;Orphan exports, empty files&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Run all 5 with:&lt;/strong&gt; &lt;code&gt;bun agent:all --exec&lt;/code&gt;&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Self-Service Audit Hub&lt;/strong&gt; — paste any repo URL at &lt;a href="https://egos.ia.br" rel="noopener noreferrer"&gt;egos.ia.br&lt;/a&gt;, get a full report (live now, free tier available)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rule Marketplace&lt;/strong&gt; — share &lt;code&gt;.guarani/&lt;/code&gt; configs between projects&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;npx create-egos-kit&lt;/code&gt;&lt;/strong&gt; — one command to add agents to any project&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;More case studies&lt;/strong&gt; — accepting audit requests!&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Want a Free Audit?
&lt;/h2&gt;

&lt;p&gt;We're offering free SSOT audits for open-source projects:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open an issue at &lt;a href="https://github.com/enioxt/egos-lab/issues" rel="noopener noreferrer"&gt;github.com/enioxt/egos-lab&lt;/a&gt; with your repo URL&lt;/li&gt;
&lt;li&gt;We'll run the full 23-agent suite&lt;/li&gt;
&lt;li&gt;You get a detailed report with actionable fixes&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Or just try it yourself — clone, install, run. Three commands. Three minutes. Zero cost.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Star the repo:&lt;/strong&gt; &lt;a href="https://github.com/enioxt/egos-lab" rel="noopener noreferrer"&gt;github.com/enioxt/egos-lab&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Good first issues:&lt;/strong&gt; &lt;a href="https://github.com/enioxt/egos-lab/issues/6" rel="noopener noreferrer"&gt;#6&lt;/a&gt;, &lt;a href="https://github.com/enioxt/egos-lab/issues/7" rel="noopener noreferrer"&gt;#7&lt;/a&gt;, &lt;a href="https://github.com/enioxt/egos-lab/issues/8" rel="noopener noreferrer"&gt;#8&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live demo:&lt;/strong&gt; &lt;a href="https://egos.ia.br" rel="noopener noreferrer"&gt;egos.ia.br&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;"Small, focused, auditable, democratic. Rules as DNA. Agents as cells. Community as evolution."&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>blockchain</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
