<?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: yasir</title>
    <description>The latest articles on DEV Community by yasir (@yaaha007).</description>
    <link>https://dev.to/yaaha007</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%2F3838736%2Fca91abb9-8d3d-401f-814f-dcfedfe8930e.png</url>
      <title>DEV Community: yasir</title>
      <link>https://dev.to/yaaha007</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yaaha007"/>
    <language>en</language>
    <item>
      <title>I built an open-source orchestration engine for multi-agent AI – Fulcrum</title>
      <dc:creator>yasir</dc:creator>
      <pubDate>Sun, 22 Mar 2026 17:50:20 +0000</pubDate>
      <link>https://dev.to/yaaha007/i-built-an-open-source-orchestration-engine-for-multi-agent-ai-fulcrum-424j</link>
      <guid>https://dev.to/yaaha007/i-built-an-open-source-orchestration-engine-for-multi-agent-ai-fulcrum-424j</guid>
      <description>&lt;p&gt;Been thinking about the same problem everyone building multi-agent systems runs into: you spend more time writing routing logic, retry handlers, and state management than actually building agents.&lt;/p&gt;

&lt;p&gt;So I built Fulcrum — a TypeScript library that handles the plumbing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Task decomposition via LLM (splits your task into parallel subtasks automatically)&lt;/li&gt;
&lt;li&gt;Agent routing by capability type (researcher, writer, analyst, coder, etc.)&lt;/li&gt;
&lt;li&gt;Parallel execution with dependency graphs (tasks that don't depend on each other run concurrently)&lt;/li&gt;
&lt;li&gt;Automatic retry with exponential backoff&lt;/li&gt;
&lt;li&gt;SQLite persistence so state survives process restarts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Works with Anthropic and OpenAI out of the box:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import { Fulcrum, createAnthropicAgents, createAnthropicDecomposer } from '@fulcrumhq/core'

const orchestrator = new Fulcrum({
  agents: createAnthropicAgents({ apiKey: process.env.ANTHROPIC_API_KEY }),
  decompose: createAnthropicDecomposer({ apiKey: process.env.ANTHROPIC_API_KEY }),
})

const result = await orchestrator.run(
  'Research our top 3 competitors and draft a positioning doc'
)

console.log(result.summary)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;npm install @fulcrumhq/core&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/hashegsethbeenfired-web/fulcrum" rel="noopener noreferrer"&gt;https://github.com/hashegsethbeenfired-web/fulcrum&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Would genuinely love feedback from anyone building multi-agent pipelines. What's the biggest pain point you hit that this doesn't solve?&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>showdev</category>
      <category>typescript</category>
    </item>
  </channel>
</rss>
