<?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: MakerDrive</title>
    <description>The latest articles on DEV Community by MakerDrive (@makerdrive).</description>
    <link>https://dev.to/makerdrive</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%2F1259274%2F372867af-6595-4a3c-869b-ffad77398624.png</url>
      <title>DEV Community: MakerDrive</title>
      <link>https://dev.to/makerdrive</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/makerdrive"/>
    <language>en</language>
    <item>
      <title>Getting More Out of Your Google AI Subscription: Parallel Agents and Cross-Model Consensus</title>
      <dc:creator>MakerDrive</dc:creator>
      <pubDate>Mon, 23 Mar 2026 20:50:03 +0000</pubDate>
      <link>https://dev.to/makerdrive/getting-more-out-of-your-google-ai-subscription-parallel-agents-and-cross-model-consensus-5nm</link>
      <guid>https://dev.to/makerdrive/getting-more-out-of-your-google-ai-subscription-parallel-agents-and-cross-model-consensus-5nm</guid>
      <description>&lt;p&gt;&lt;strong&gt;TL;DR:&lt;/strong&gt; If you have a Google AI Ultra subscription, you are sitting on a practically unlimited pool of background AI agents. I built an open-source tool, Agent-Pool-MCP, that lets your main IDE agent delegate routine tasks to background Gemini CLI workers. The best part -- you can use Claude as the main agent and Gemini as the worker pool, getting real cross-model consensus on a single subscription.&lt;/p&gt;

&lt;p&gt;Hey everyone. Many of us are paying for premium AI subscriptions. They are not cheap -- usually around $20/month or more. If you use AI for coding every day, you know the pain of hitting message limits in tools like Cursor right when you need them most.&lt;/p&gt;

&lt;p&gt;But what if you could offset routine work to a practically unlimited background pool of agents, all covered by your existing Google AI Ultra subscription?&lt;/p&gt;

&lt;p&gt;I tried most of the alternatives -- maxed out Cursor, then moved to Claude. Then I found &lt;strong&gt;Antigravity IDE&lt;/strong&gt;, and that is what got me to subscribe to Google AI Ultra. The reason is simple: it is the only IDE where one subscription gives you both top-tier Claude Opus as the main agent and Gemini with limits that are nearly impossible to exhaust. In Cursor, you burn through limits fast even on the highest plan, and then you wait or pay more.&lt;/p&gt;

&lt;p&gt;If you ever hit the daily Claude limit -- just switch the main agent to Gemini and keep going. Best Anthropic model as the orchestrator, practically unlimited Gemini as the background worker pool, all on one payment.&lt;/p&gt;

&lt;p&gt;On top of that, you get the Google ecosystem as a bonus: Deep Research, NotebookLM, video generators, and the lightweight Nano models. Plus &lt;strong&gt;Stitch MCP&lt;/strong&gt; -- Google's own MCP server for UI generation. Combined with the agent pool, you get the effect of a full product team: one agent builds UI through Stitch, while others work on the backend or write business logic.&lt;/p&gt;

&lt;p&gt;For those new to the term, MCP (Model Context Protocol) is an open standard that allows AI models to securely connect with local tools, files, and external services. It essentially gives your AI a standardized API to interact with your computer.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Single Agent Bottleneck
&lt;/h2&gt;

&lt;p&gt;Modern IDEs can run some sub-agents, but they lack true flexibility. You usually cannot customize their workflows or have them split into specialized teams. &lt;/p&gt;

&lt;p&gt;I wanted fractal orchestration. I wanted my main agent to break down a large refactoring task, spin up a team of background workers, and have them execute in parallel. This is especially useful for isolating tasks in a secure environment.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: Agent-Pool-MCP
&lt;/h2&gt;

&lt;p&gt;To fix this, we wrote a custom MCP server that acts as a worker pool. It dispatches tasks to background Gemini CLI agents. &lt;/p&gt;

&lt;p&gt;This operates on a PULL model. Background tasks do not block your main IDE agent. You tell your main agent what you want, and it decides whether to delegate the task to a worker via &lt;code&gt;delegate_task&lt;/code&gt;, consult another model via &lt;code&gt;consult_peer&lt;/code&gt;, or both. It gets a &lt;code&gt;task_id&lt;/code&gt; and moves on to other things.&lt;/p&gt;

&lt;p&gt;Here is an example of a Research -&amp;gt; Consult -&amp;gt; Refactor pipeline:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# 1. IDE agent kicks off a background analysis of legacy components&lt;/span&gt;
delegate_task_readonly&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"Analyze src/components/ for outdated React hooks..."&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt;  -&amp;gt; task_1

&lt;span class="c"&gt;# 2. While the worker analyzes, the IDE agent continues with other tasks&lt;/span&gt;

&lt;span class="c"&gt;# 3. Before refactoring -- consult a different model&lt;/span&gt;
consult_peer&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"I propose rewriting components from React to Symbiote.js. Here's the plan..."&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt; -&amp;gt; verdict

&lt;span class="c"&gt;# 4. Gets AGREE or SUGGEST_CHANGES, then delegates the refactoring&lt;/span&gt;
delegate_task&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"Rewrite UserProfile.jsx from React to vanilla Symbiote.js..."&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt; -&amp;gt; task_2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We have a strict rule to prevent file conflicts: no two agents touch the same file. They communicate through a sync directory at &lt;code&gt;.agents/delegation/&lt;/code&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.agents/delegation/
├── findings-react-legacy.md      - Research worker writes here
├── architecture-symbiote.md      - Migration proposal from main agent
└── review-symbiote-patterns.md   - Pattern audit by a third agent
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;One agent writes its findings there, and others read them. &lt;/p&gt;

&lt;p&gt;The real killer feature here is cross-model consensus using &lt;code&gt;consult_peer&lt;/code&gt;. Since the background pool runs on Gemini CLI, the workers are always Gemini. To get real cross-model consensus -- not Gemini talking to itself -- the main IDE agent should be a different model. That is why we use Claude through Antigravity: when it faces a hard architectural decision, it writes a proposal and sends it to a background Gemini. Two fundamentally different architectures validate the idea BEFORE any code changes are made. Claude proposes, Gemini looks for blind spots, returning either &lt;code&gt;SUGGEST_CHANGES&lt;/code&gt; or &lt;code&gt;AGREE&lt;/code&gt;. And all of this runs on a single subscription.&lt;/p&gt;

&lt;h2&gt;
  
  
  Fractal Orchestration
&lt;/h2&gt;

&lt;p&gt;You can customize how agents interact. We call one of our favorite setups "fractal orchestration."&lt;/p&gt;

&lt;p&gt;The structure repeats like a pyramid. You create a main orchestrator, and it spawns teams. Each team can have its own orchestrator, which spawns more workers. You decide the depth.&lt;/p&gt;

&lt;p&gt;It looks exactly like a standard development company:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;IDE agent (Claude)
 └─ Project orchestrator (Gemini CLI)
     ├─ Backend team
     │   ├─ Backend orchestrator (Gemini CLI)
     │   ├─ Worker: API logic
     │   └─ Worker: tests
     └─ Frontend team
         ├─ Frontend orchestrator (Gemini CLI)
         ├─ Worker: components
         └─ Worker: styles
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each orchestrator uses an &lt;code&gt;orchestrator.md&lt;/code&gt; skill to break down tasks and call &lt;code&gt;delegate_task&lt;/code&gt;. The workers do their jobs in isolation, and the results flow back up. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Technical detail:&lt;/strong&gt; If you configure &lt;code&gt;agent-pool-mcp&lt;/code&gt; in the Gemini CLI settings just once, your background agents can recursively spawn new agents infinitely.&lt;/p&gt;

&lt;h2&gt;
  
  
  Managing Agent Attention
&lt;/h2&gt;

&lt;p&gt;Asynchronous tasks have a catch. IDE system prompts usually tell the agent to "be proactive" and "finish your tasks." This conflicts with parallel background work. Without tweaks, you run into two issues:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The agent waits instead of working.&lt;/strong&gt; It spams &lt;code&gt;get_task_result&lt;/code&gt; in a loop instead of picking up a new task.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The agent gets impatient.&lt;/strong&gt; It thinks the background task is taking too long and just does the work itself, duplicating the effort.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We solved this with an &lt;code&gt;on_wait_hint&lt;/code&gt; parameter in &lt;code&gt;delegate_task&lt;/code&gt;. You pass an instruction that gets fed back to the agent every time it checks the status. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;em&gt;"The worker is still writing code. Do not wait -- go analyze style-guide.md"&lt;/em&gt; -&amp;gt; The agent switches context.&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;"The worker is still processing data. Wait for the result, do not try to do it yourself"&lt;/em&gt; -&amp;gt; The agent waits patiently.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is a simple way to override the IDE's default behavior and control the model's focus.&lt;/p&gt;

&lt;h2&gt;
  
  
  Skills and Workflows
&lt;/h2&gt;

&lt;p&gt;The pool has a built-in customization system using standard &lt;code&gt;.md&lt;/code&gt; files. No complex YAML configs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Skills&lt;/strong&gt; (&lt;code&gt;.gemini/skills/*.md&lt;/code&gt;) define an agent's role and rules. Write a &lt;code&gt;code-reviewer.md&lt;/code&gt; with your checklist, and any worker using that skill will review code exactly to your standards. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Workflows&lt;/strong&gt; (&lt;code&gt;.agents/workflows/*.md&lt;/code&gt;) are step-by-step pipelines. You describe the process once, and any agent can follow it.&lt;/p&gt;

&lt;p&gt;You can attach a skill to a task with a single parameter:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# IDE agent activates the "code-reviewer" skill for a delegated task&lt;/span&gt;
delegate_task&lt;span class="o"&gt;(&lt;/span&gt;
  prompt: &lt;span class="s2"&gt;"Review src/auth/ against project standards"&lt;/span&gt;,
  skill: &lt;span class="s2"&gt;"code-reviewer"&lt;/span&gt;
&lt;span class="o"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You are basically defining your team's expertise in text files. &lt;/p&gt;

&lt;h2&gt;
  
  
  Quick Start
&lt;/h2&gt;

&lt;p&gt;You can set this up in a couple of commands:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# 1. Install Gemini CLI globally and log in (requires Google AI Ultra subscription)&lt;/span&gt;
npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; @google/gemini-cli
gemini &lt;span class="nt"&gt;--login&lt;/span&gt;

&lt;span class="c"&gt;# 2. Run diagnostics to check Node.js, CLI, and access:&lt;/span&gt;
npx agent-pool-mcp &lt;span class="nt"&gt;--check&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then add the pool to your IDE config:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"agent-pool"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"-y"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"agent-pool-mcp"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



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

&lt;p&gt;Treat any MCP server as a potential risk -- they can be vectors for prompt injections. Pin your versions and only update after auditing the changes. Use approval modes and restrict agent file system access. Never pass secrets in prompts, and always review the results before merging.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;P.S. If you want to see how everything works under the hood, check out the code on &lt;a href="https://github.com/rnd-pro/agent-pool-mcp" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; or install it from &lt;a href="https://www.npmjs.com/package/agent-pool-mcp" rel="noopener noreferrer"&gt;npm&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>nocode</category>
      <category>programming</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>MakerDrive</dc:creator>
      <pubDate>Mon, 23 Mar 2026 17:42:44 +0000</pubDate>
      <link>https://dev.to/makerdrive/-34ii</link>
      <guid>https://dev.to/makerdrive/-34ii</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/foxeyes/lit-vs-symbiotejs-22gj" class="crayons-story__hidden-navigation-link"&gt;Lit vs Symbiote.js&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/foxeyes" class="crayons-avatar  crayons-avatar--l  "&gt;
            &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F427682%2F394a3b73-2fee-4a07-a4b2-68ae0e65d068.png" alt="foxeyes profile" class="crayons-avatar__image" width="800" height="800"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/foxeyes" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Alex M
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Alex M
                
              
              &lt;div id="story-author-preview-content-3390115" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/foxeyes" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&gt;
                        &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F427682%2F394a3b73-2fee-4a07-a4b2-68ae0e65d068.png" class="crayons-avatar__image" alt="" width="800" height="800"&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Alex M&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/foxeyes/lit-vs-symbiotejs-22gj" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;Mar 23&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/foxeyes/lit-vs-symbiotejs-22gj" id="article-link-3390115"&gt;
          Lit vs Symbiote.js
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/webcomponents"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;webcomponents&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/webdev"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;webdev&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/frontend"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;frontend&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/javascript"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;javascript&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/foxeyes/lit-vs-symbiotejs-22gj" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/fire-f60e7a582391810302117f987b22a8ef04a2fe0df7e3258a5f49332df1cec71e.svg" width="24" height="24"&gt;
                  &lt;/span&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="24" height="24"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;3&lt;span class="hidden s:inline"&gt; reactions&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/foxeyes/lit-vs-symbiotejs-22gj#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              Comments


              &lt;span class="hidden s:inline"&gt;Add Comment&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            7 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
      <category>webcomponents</category>
      <category>webdev</category>
      <category>frontend</category>
      <category>javascript</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>MakerDrive</dc:creator>
      <pubDate>Wed, 18 Mar 2026 03:20:11 +0000</pubDate>
      <link>https://dev.to/makerdrive/-2d2m</link>
      <guid>https://dev.to/makerdrive/-2d2m</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/foxeyes" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F427682%2F394a3b73-2fee-4a07-a4b2-68ae0e65d068.png" alt="foxeyes"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/foxeyes/symbiotejs-v3-web-components-with-ssr-in-6kb-10n6" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Symbiote.js v3 — Web Components with SSR in ~6kb&lt;/h2&gt;
      &lt;h3&gt;Alex M ・ Mar 17&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#webcomponents&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#ssr&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#javascript&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>webdev</category>
      <category>webcomponents</category>
      <category>ssr</category>
      <category>javascript</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>MakerDrive</dc:creator>
      <pubDate>Thu, 11 Dec 2025 17:36:55 +0000</pubDate>
      <link>https://dev.to/makerdrive/-2c0k</link>
      <guid>https://dev.to/makerdrive/-2c0k</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/foxeyes" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F427682%2F394a3b73-2fee-4a07-a4b2-68ae0e65d068.png" alt="foxeyes"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/foxeyes/jsda-is-very-simple-1cfk" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;JSDA - let's change the landscape&lt;/h2&gt;
      &lt;h3&gt;Alex M ・ Dec 11&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#jamstack&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#javascript&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#fullstack&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>webdev</category>
      <category>jamstack</category>
      <category>javascript</category>
      <category>fullstack</category>
    </item>
  </channel>
</rss>
