<?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: Omni loop research Labs</title>
    <description>The latest articles on DEV Community by Omni loop research Labs (@omni_loopresearchlabs).</description>
    <link>https://dev.to/omni_loopresearchlabs</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%2F3990486%2F9e56edb5-de13-4684-851e-322858cab143.png</url>
      <title>DEV Community: Omni loop research Labs</title>
      <link>https://dev.to/omni_loopresearchlabs</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/omni_loopresearchlabs"/>
    <language>en</language>
    <item>
      <title>How Clioloop's Agentic Fusion Works: A Technical Deep Dive</title>
      <dc:creator>Omni loop research Labs</dc:creator>
      <pubDate>Fri, 19 Jun 2026 00:21:15 +0000</pubDate>
      <link>https://dev.to/omni_loopresearchlabs/how-clioloops-agentic-fusion-works-a-technical-deep-dive-2fjg</link>
      <guid>https://dev.to/omni_loopresearchlabs/how-clioloops-agentic-fusion-works-a-technical-deep-dive-2fjg</guid>
      <description>&lt;h2&gt;
  
  
  Architecture Overview
&lt;/h2&gt;

&lt;p&gt;Clioloop's Agentic Fusion is not just "run the same prompt 5 times and pick the best." It's a structured pipeline where different models play different roles, with strict security boundaries between them.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Pipeline
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Step 1: Planning Phase
&lt;/h3&gt;

&lt;p&gt;When you run &lt;code&gt;/fusion&lt;/code&gt;, up to 5 &lt;strong&gt;planner models&lt;/strong&gt; are dispatched in parallel. Each planner:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Receives your original prompt and context&lt;/li&gt;
&lt;li&gt;Has &lt;strong&gt;read-only tool access&lt;/strong&gt; — they can search the web, read files, but never modify anything&lt;/li&gt;
&lt;li&gt;Proposes an approach (not an answer — an approach)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The planners might suggest different strategies:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Planner A: "Search the web for similar problems, then write a script"&lt;/li&gt;
&lt;li&gt;Planner B: "Read the existing codebase first, then modify in place"&lt;/li&gt;
&lt;li&gt;Planner C: "Break it into subtasks and use the Kanban system"&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Step 2: Execution Phase
&lt;/h3&gt;

&lt;p&gt;Your &lt;strong&gt;main model&lt;/strong&gt; takes the planners' proposals and does the actual work:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Full tool access (file editing, shell, web, browser, image gen, etc.)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fully visible&lt;/strong&gt; — you watch every file edit, every command, every web search in real time&lt;/li&gt;
&lt;li&gt;Not a black box — you can intervene at any time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is the key difference from "ensemble" approaches: the main model does real work with real tools, not just text generation.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 3: Review Phase
&lt;/h3&gt;

&lt;p&gt;Up to 5 &lt;strong&gt;reviewer models&lt;/strong&gt; critique the draft:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Read-only access — they can see what the main model produced, including generated images&lt;/li&gt;
&lt;li&gt;They check for errors, suggest improvements, flag problems&lt;/li&gt;
&lt;li&gt;Each reviewer works independently&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Step 4: Verdict Loop
&lt;/h3&gt;

&lt;p&gt;The draft is revised based on reviewer feedback:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If reviewers find issues, the main model gets the feedback and revises&lt;/li&gt;
&lt;li&gt;The loop continues until reviewers approve&lt;/li&gt;
&lt;li&gt;You get the final, reviewed answer&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Step 5: Fusion
&lt;/h3&gt;

&lt;p&gt;Everything combines into one answer that has already passed independent review.&lt;/p&gt;

&lt;h2&gt;
  
  
  Security Model
&lt;/h2&gt;

&lt;p&gt;The safety comes from &lt;strong&gt;schema-level restrictions&lt;/strong&gt;:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Role&lt;/th&gt;
&lt;th&gt;Can Read&lt;/th&gt;
&lt;th&gt;Can Write&lt;/th&gt;
&lt;th&gt;Can Execute&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Planners&lt;/td&gt;
&lt;td&gt;✅ Files, web, images&lt;/td&gt;
&lt;td&gt;❌ Nothing&lt;/td&gt;
&lt;td&gt;❌ Nothing&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Main Model&lt;/td&gt;
&lt;td&gt;✅ Everything&lt;/td&gt;
&lt;td&gt;✅ Files&lt;/td&gt;
&lt;td&gt;✅ Commands&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Reviewers&lt;/td&gt;
&lt;td&gt;✅ Draft, files, images&lt;/td&gt;
&lt;td&gt;❌ Nothing&lt;/td&gt;
&lt;td&gt;❌ Nothing&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Planners and reviewers are read-only by construction. They can research and critique, but they can never touch your files or run commands. Only your main model has tool access, and you watch it work live.&lt;/p&gt;

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

&lt;p&gt;The quality comes from &lt;strong&gt;synthesis&lt;/strong&gt;, not brute force. Cheap open models combine into something that rivals a frontier model:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Planners bring diverse perspectives (different models see different approaches)&lt;/li&gt;
&lt;li&gt;The main model does focused execution with full tools&lt;/li&gt;
&lt;li&gt;Reviewers catch errors the main model missed&lt;/li&gt;
&lt;li&gt;The verdict loop ensures quality convergence&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You get frontier-level quality at a fraction of the cost, because you're paying for cheap models to plan and review, and only one model does the expensive tool work.&lt;/p&gt;

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



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/Clioloop/Clioloop-agent/main/scripts/install.sh | bash
clio setup
clio
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then run &lt;code&gt;/fusion&lt;/code&gt; on any task.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/Clioloop/Clioloop-agent" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://portal.clioloop.com" rel="noopener noreferrer"&gt;Portal&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://portal.clioloop.com/docs" rel="noopener noreferrer"&gt;Docs&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Feedback welcome!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>architecture</category>
      <category>llm</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Clioloop: The Open-Source AI Agent That Thinks in Teams</title>
      <dc:creator>Omni loop research Labs</dc:creator>
      <pubDate>Fri, 19 Jun 2026 00:17:49 +0000</pubDate>
      <link>https://dev.to/omni_loopresearchlabs/clioloop-the-open-source-ai-agent-that-thinks-in-teams-3ppg</link>
      <guid>https://dev.to/omni_loopresearchlabs/clioloop-the-open-source-ai-agent-that-thinks-in-teams-3ppg</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Most AI assistants give you one model's answer. If it's wrong, you catch it or you don't. If you use a cheap model, quality drops. If you use a frontier model, you pay frontier prices for everything — even a simple file rename.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Agentic Fusion?
&lt;/h2&gt;

&lt;p&gt;When you run &lt;code&gt;/fusion&lt;/code&gt;, a panel of models collaborates on your task:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Planners&lt;/strong&gt; (up to 5): Read-only models that research and propose routes in parallel. They figure out the best approach but can't touch your files or run commands.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Main model&lt;/strong&gt;: Your chosen model does the actual work — full tool access, fully visible. You watch every step. Not a black box.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Reviewers&lt;/strong&gt; (up to 5): Read-only models that critique the draft. They can see images the main model generated. They check for errors, suggest fixes, flag issues.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Verdict loop&lt;/strong&gt;: The draft is revised until reviewers approve. The answer you get has already passed independent review.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Fusion&lt;/strong&gt;: Everything combines into one reviewed, approved answer.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The quality comes from &lt;strong&gt;synthesis&lt;/strong&gt; — not from running the same job 5 times. Cheap open models combine into something that rivals a frontier model at a fraction of the cost.&lt;/p&gt;

&lt;h2&gt;
  
  
  Safety by Construction
&lt;/h2&gt;

&lt;p&gt;Planners and reviewers are read-only at the schema level. They can research and critique, but they can never touch your files or execute commands. Only your main model has tool access, and you watch it work live.&lt;/p&gt;

&lt;h2&gt;
  
  
  Beyond Fusion
&lt;/h2&gt;

&lt;p&gt;Clioloop is also:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Self-improving&lt;/strong&gt;: Keeps &lt;code&gt;MEMORY.md&lt;/code&gt; and &lt;code&gt;USER.md&lt;/code&gt;, updated automatically&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Autonomous&lt;/strong&gt;: Set a standing goal with &lt;code&gt;/goal&lt;/code&gt; and it loops until done&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Everywhere&lt;/strong&gt;: Terminal, desktop app, web dashboard, Telegram, Slack, Discord, WhatsApp&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-agent Kanban&lt;/strong&gt;: Break big work into tasks with worker agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tools&lt;/strong&gt;: File editing, shell, web search, browser, image/video gen, TTS, MCP&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scheduled jobs&lt;/strong&gt;: Run on cron for automated workflows&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open-source&lt;/strong&gt;: Self-host everything, own your data&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Omni Loop Portal
&lt;/h2&gt;

&lt;p&gt;One OAuth login gives you access to 300+ models. No API keys. An OpenAI-compatible proxy means any tool works out of the box.&lt;/p&gt;

&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/Clioloop/Clioloop-agent/main/scripts/install.sh | bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then: &lt;code&gt;clio setup&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Links:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/Clioloop/Clioloop-agent" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://portal.clioloop.com" rel="noopener noreferrer"&gt;Portal&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://portal.clioloop.com/docs" rel="noopener noreferrer"&gt;Docs&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We're building this in the open. Feedback welcome!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>llm</category>
      <category>devtools</category>
    </item>
    <item>
      <title>Clioloop: An Open-Source AI Agent with Agentic Fusion</title>
      <dc:creator>Omni loop research Labs</dc:creator>
      <pubDate>Thu, 18 Jun 2026 22:56:12 +0000</pubDate>
      <link>https://dev.to/omni_loopresearchlabs/clioloop-an-open-source-ai-agent-with-agentic-fusion-3lk9</link>
      <guid>https://dev.to/omni_loopresearchlabs/clioloop-an-open-source-ai-agent-with-agentic-fusion-3lk9</guid>
      <description>&lt;h2&gt;
  
  
  The problem with single-model AI assistants
&lt;/h2&gt;

&lt;p&gt;Most AI assistants give you one model's answer. If it's wrong, you catch it or you don't. If you use a cheap model, quality drops. If you use a frontier model, you pay frontier prices for everything — even a simple file rename.&lt;/p&gt;

&lt;p&gt;We wanted something better. So we built Clioloop.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Agentic Fusion?
&lt;/h2&gt;

&lt;p&gt;Agentic Fusion puts a whole team of models on one task. When you run &lt;code&gt;/fusion&lt;/code&gt;:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Planners&lt;/strong&gt; (up to 5): Read-only models that research and propose routes in parallel. They figure out the best approach but can't touch your files or run commands.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Main model&lt;/strong&gt;: Your chosen model does the actual work — full tool access, fully visible. You watch every step. Not a black box.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Reviewers&lt;/strong&gt; (up to 5): Read-only models that critique the draft. They can see images the main model generated. They check for errors, suggest fixes, flag issues.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Verdict loop&lt;/strong&gt;: The draft is revised until reviewers approve. The answer you get has already passed independent review.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Fusion&lt;/strong&gt;: Everything combines into one reviewed, approved answer.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  The key insight
&lt;/h3&gt;

&lt;p&gt;The quality comes from &lt;strong&gt;synthesis&lt;/strong&gt; — not from running the same job 5 times. Cheap open models combine into something that rivals a frontier model, at a fraction of the cost.&lt;/p&gt;

&lt;h3&gt;
  
  
  Safety by construction
&lt;/h3&gt;

&lt;p&gt;Planners and reviewers are read-only at the schema level. They can research and critique, but they can never touch your files or execute commands. Only your main model has tool access, and you watch it work live.&lt;/p&gt;

&lt;h2&gt;
  
  
  Beyond fusion
&lt;/h2&gt;

&lt;p&gt;Clioloop is also:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Self-improving&lt;/strong&gt;: Keeps &lt;code&gt;MEMORY.md&lt;/code&gt; and &lt;code&gt;USER.md&lt;/code&gt;, updated automatically as it learns your preferences and projects&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Autonomous&lt;/strong&gt;: Set a standing goal with &lt;code&gt;/goal&lt;/code&gt; and it loops — planning, running tools, checking progress — until done&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Everywhere&lt;/strong&gt;: Terminal, desktop app, web dashboard, Telegram, Slack, Discord, WhatsApp — same session, same memory&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-agent Kanban&lt;/strong&gt;: Break big work into a board of tasks; worker agents pick them up and report back&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tools&lt;/strong&gt;: File editing, shell, web search &amp;amp; extract, cloud browser, image generation (ComfyUI/Flux), video generation, TTS, any MCP server&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scheduled jobs&lt;/strong&gt;: Run it on cron for automated workflows&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open-source&lt;/strong&gt;: Self-host everything. Own your data. No vendor lock-in.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Omni Loop Portal
&lt;/h2&gt;

&lt;p&gt;One OAuth login gives you access to 300+ models. No API keys to manage. An OpenAI-compatible proxy means you can point any existing tool at it.&lt;/p&gt;

&lt;p&gt;The tool gateway handles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Web search &amp;amp; extract (Firecrawl)&lt;/li&gt;
&lt;li&gt;Browser automation (Browser Use)&lt;/li&gt;
&lt;li&gt;Image generation (FAL/Flux)&lt;/li&gt;
&lt;li&gt;Video generation (Vidu)&lt;/li&gt;
&lt;li&gt;Text-to-speech (OpenAI TTS)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All metered, all behind one account.&lt;/p&gt;

&lt;h2&gt;
  
  
  Install
&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;# macOS / Linux&lt;/span&gt;
curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/Clioloop/Clioloop-agent/main/scripts/install.sh | bash

&lt;span class="c"&gt;# Windows (PowerShell)&lt;/span&gt;
iex &lt;span class="o"&gt;(&lt;/span&gt;irm https://raw.githubusercontent.com/Clioloop/Clioloop-agent/main/scripts/install.ps1&lt;span class="o"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;clio setup    &lt;span class="c"&gt;# pick Omni Loop Portal, approve in browser&lt;/span&gt;
clio          &lt;span class="c"&gt;# start looping&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Architecture overview
&lt;/h2&gt;

&lt;p&gt;The repo is a monorepo:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Python core&lt;/strong&gt; (&lt;code&gt;clio&lt;/code&gt; CLI + agent loop in &lt;code&gt;clio_cli/&lt;/code&gt; and &lt;code&gt;agent/&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TypeScript surfaces&lt;/strong&gt; (Electron desktop, React-Ink TUI, React web dashboard)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Omni Loop Portal&lt;/strong&gt; (Next.js 15 + SQLite + Stripe)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every provider is a &lt;code&gt;ProviderProfile&lt;/code&gt; with lazy discovery. The &lt;code&gt;managed&lt;/code&gt; provider &lt;em&gt;is&lt;/em&gt; the Omni Loop Portal (OAuth device-code, no API key). Model catalog + switching is cached locally.&lt;/p&gt;

&lt;p&gt;The fusion engine lives in &lt;code&gt;agent/fusion_engine.py&lt;/code&gt;. Slash commands have a single source of truth in &lt;code&gt;clio_cli/commands.py&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/Clioloop/Clioloop-agent" rel="noopener noreferrer"&gt;https://github.com/Clioloop/Clioloop-agent&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Portal: &lt;a href="https://portal.clioloop.com" rel="noopener noreferrer"&gt;https://portal.clioloop.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Docs: &lt;a href="https://portal.clioloop.com/docs" rel="noopener noreferrer"&gt;https://portal.clioloop.com/docs&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We're building this in the open. PRs, issues, feedback — all welcome.&lt;/p&gt;

&lt;p&gt;What would you want from an AI agent? Let us know in the comments.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>python</category>
      <category>agents</category>
    </item>
    <item>
      <title>Clioloop — The Open-Source AI Agent with Agentic Fusion</title>
      <dc:creator>Omni loop research Labs</dc:creator>
      <pubDate>Thu, 18 Jun 2026 22:17:38 +0000</pubDate>
      <link>https://dev.to/omni_loopresearchlabs/clioloop-the-open-source-ai-agent-with-agentic-fusion-537e</link>
      <guid>https://dev.to/omni_loopresearchlabs/clioloop-the-open-source-ai-agent-with-agentic-fusion-537e</guid>
      <description>&lt;h1&gt;
  
  
  Clioloop — The Open-Source AI Agent with Agentic Fusion
&lt;/h1&gt;

&lt;p&gt;We just open-sourced &lt;strong&gt;Clioloop&lt;/strong&gt;, an AI agent with a feature we're calling &lt;strong&gt;Agentic Fusion&lt;/strong&gt;. I want to share how it works and why we built it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Most AI assistants give you one model's answer. If it's wrong, you catch it or you don't. If you use a cheap model, quality drops. If you use a frontier model, you pay frontier prices for everything — even a simple file rename.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Agentic Fusion?
&lt;/h2&gt;

&lt;p&gt;When you run &lt;code&gt;/fusion&lt;/code&gt;, a panel of models collaborates on your task:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Planners&lt;/strong&gt; (up to 5): Read-only models that research and propose routes in parallel. They figure out the best approach but can't touch your files or run commands.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Main model&lt;/strong&gt;: Your chosen model does the actual work — full tool access, fully visible. You watch every step. Not a black box.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reviewers&lt;/strong&gt; (up to 5): Read-only models that critique the draft. They can see images the main model generated. They check for errors, suggest fixes, flag issues.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Verdict loop&lt;/strong&gt;: The draft is revised until reviewers approve. The answer you get has already passed independent review.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fusion&lt;/strong&gt;: Everything combines into one reviewed, approved answer.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The quality comes from &lt;strong&gt;synthesis&lt;/strong&gt; — not from running the same job 5 times. Cheap open models combine into something that rivals a frontier model at a fraction of the cost.&lt;/p&gt;

&lt;h2&gt;
  
  
  Safety by Construction
&lt;/h2&gt;

&lt;p&gt;Planners and reviewers are read-only at the schema level. They can research and critique, but they can never touch your files or execute commands. Only your main model has tool access, and you watch it work live.&lt;/p&gt;

&lt;h2&gt;
  
  
  Beyond Fusion
&lt;/h2&gt;

&lt;p&gt;Clioloop is also:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Self-improving&lt;/strong&gt;: Keeps &lt;code&gt;MEMORY.md&lt;/code&gt; and &lt;code&gt;USER.md&lt;/code&gt;, updated automatically as it learns your preferences and projects&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Autonomous&lt;/strong&gt;: Set a standing goal with &lt;code&gt;/goal&lt;/code&gt; and it loops — planning, running tools, checking progress — until done&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Everywhere&lt;/strong&gt;: Terminal, desktop app, web dashboard, Telegram, Slack, Discord, WhatsApp — same session, same memory&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-agent Kanban&lt;/strong&gt;: Break big work into a board of tasks; worker agents pick them up and report back&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tools&lt;/strong&gt;: File editing, shell, web search &amp;amp; extract, cloud browser, image generation (ComfyUI/Flux), video generation, TTS, any MCP server&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scheduled jobs&lt;/strong&gt;: Run it on cron for automated workflows&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open-source&lt;/strong&gt;: Self-host everything. Own your data. No vendor lock-in.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Omni Loop Portal
&lt;/h2&gt;

&lt;p&gt;One OAuth login gives you access to 300+ models. No API keys to manage. An OpenAI-compatible proxy means you can point any existing tool at it. The tool gateway handles web search, browser automation, image gen, and TTS — all metered, all behind one account.&lt;/p&gt;

&lt;h2&gt;
  
  
  Install
&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;# macOS / Linux&lt;/span&gt;
curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/Clioloop/Clioloop-agent/main/scripts/install.sh | bash

&lt;span class="c"&gt;# Windows (PowerShell)&lt;/span&gt;
iex &lt;span class="o"&gt;(&lt;/span&gt;irm https://raw.githubusercontent.com/Clioloop/Clioloop-agent/main/install.ps1&lt;span class="o"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then: &lt;code&gt;clio setup&lt;/code&gt; → pick Omni Loop Portal → approve in browser → start looping&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/Clioloop/Clioloop-agent" rel="noopener noreferrer"&gt;https://github.com/Clioloop/Clioloop-agent&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Portal: &lt;a href="https://portal.clioloop.com" rel="noopener noreferrer"&gt;https://portal.clioloop.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Docs: &lt;a href="https://portal.clioloop.com/docs" rel="noopener noreferrer"&gt;https://portal.clioloop.com/docs&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We're building this in the open. Feedback, criticism, feature requests — all welcome. What would you want from an AI agent?&lt;/p&gt;

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