<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Agentic-Dev on ROBOCO</title>
    <link>https://roboco.io/en/tags/agentic-dev/</link>
    <description>Recent content in Agentic-Dev on ROBOCO</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Sat, 18 Jul 2026 10:00:00 +0900</lastBuildDate>
    <atom:link href="https://roboco.io/en/tags/agentic-dev/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Cognitive Debt - Managing a New Kind of Debt in the Vibe Coding Era</title>
      <link>https://roboco.io/en/posts/cognitive-debt/</link>
      <pubDate>Sat, 18 Jul 2026 10:00:00 +0900</pubDate>
      <guid>https://roboco.io/en/posts/cognitive-debt/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;&amp;ldquo;Shipping first time code is like going into debt. A little debt speeds development so long as it is paid back promptly.&amp;rdquo; — Ward Cunningham, OOPSLA &amp;lsquo;92&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;https://roboco.io/posts/images/Dohyun.png&#34;&gt;&lt;figcaption&gt;&#xA;      &lt;h4&gt;Dohyun Jung - Principal Consultant, ROBOCO&lt;/h4&gt;&#xA;    &lt;/figcaption&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;Work with vibe coding long enough and a strange moment arrives. This is unmistakably my project, yet when I open the code it feels like someone else&amp;rsquo;s house. The agent designed it, the agent implemented it, and I pressed the approve button. The work got done fast. But when something breaks, I find myself saying: &amp;ldquo;Why did this happen? The AI wrote it, so I&amp;rsquo;m not really sure.&amp;rdquo;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Does Karpathy&#39;s LLM Wiki Actually Work? A 72-Run Benchmark</title>
      <link>https://roboco.io/en/posts/karpathy-llm-wiki-72-run-benchmark/</link>
      <pubDate>Thu, 07 May 2026 11:00:00 +0900</pubDate>
      <guid>https://roboco.io/en/posts/karpathy-llm-wiki-72-run-benchmark/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;&amp;ldquo;To keep agents from re-deriving everything every time, you need a compiled knowledge artifact.&amp;rdquo; — Andrej Karpathy, &lt;em&gt;LLM Wiki&lt;/em&gt; (GitHub Gist, 2026-04)&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;https://roboco.io/posts/images/Dohyun.png&#34;&gt;&lt;figcaption&gt;&#xA;      &lt;h4&gt;Dohyun Jung - Principal Consultant, ROBOCO&lt;/h4&gt;&#xA;    &lt;/figcaption&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;tldr&#34;&gt;TL;DR&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;We measured whether Andrej Karpathy&amp;rsquo;s &lt;strong&gt;LLM Wiki pattern&lt;/strong&gt; (&amp;ldquo;don&amp;rsquo;t re-read every time; reuse knowledge compiled once&amp;rdquo;&lt;sup id=&#34;fnref1:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;) is actually a win, using an &lt;strong&gt;8-task × 3-technique × 3-repetition = 72-run&lt;/strong&gt; benchmark in a 30-repository migration workspace.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;LLM Wiki placed first on all three dimensions: tokens, time, and quality.&lt;/strong&gt; Versus Vanilla, &lt;strong&gt;54% fewer tokens and 39% less time&lt;/strong&gt; (statistically a large effect, §4), with quality equal to Vanilla and better than Graphify.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Graphify (GraphRAG) is unsuitable as a default tool.&lt;/strong&gt; Negligible token savings, the longest time, and the lowest quality.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;That said, it&amp;rsquo;s not universal.&lt;/strong&gt; Wiki wins decisively on tasks that synthesize multiple sources, but for tasks whose answer sits plainly in a single source (exhaustive grep, looking up a specific table), reading directly is faster and more accurate (§3).&lt;/li&gt;&#xA;&lt;li&gt;On receiving these results, the project&amp;rsquo;s default context-retrieval tool was switched to LLM Wiki that same evening.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th&gt;Technique&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: right&#34;&gt;Tokens (avg)&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: right&#34;&gt;Time (avg)&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: right&#34;&gt;Quality (out of 25)&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Vanilla (direct read/grep)&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: right&#34;&gt;755K&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: right&#34;&gt;167s&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: right&#34;&gt;15.1&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;strong&gt;LLM Wiki&lt;/strong&gt;&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: right&#34;&gt;&lt;strong&gt;350K&lt;/strong&gt;&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: right&#34;&gt;&lt;strong&gt;101s&lt;/strong&gt;&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: right&#34;&gt;&lt;strong&gt;16.0&lt;/strong&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Graphify (GraphRAG)&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: right&#34;&gt;617K&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: right&#34;&gt;180s&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: right&#34;&gt;13.6&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;Below is the experimental design and detailed numbers that support this conclusion.&lt;/p&gt;</description>
    </item>
    <item>
      <title>A Close Look at Ruflo: What It Means to Layer Multi-Agent Orchestration onto Claude Code</title>
      <link>https://roboco.io/en/posts/ruflo-claude-code-multi-agent-orchestration/</link>
      <pubDate>Mon, 04 May 2026 11:30:00 +0900</pubDate>
      <guid>https://roboco.io/en/posts/ruflo-claude-code-multi-agent-orchestration/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;How to design Claude Code workflows that learn from a team&amp;rsquo;s insights, not just a single project.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;https://roboco.io/posts/images/Dohyun.png&#34;&gt;&lt;figcaption&gt;&#xA;      &lt;h4&gt;Dohyun Jung - Principal Consultant, ROBOCO&lt;/h4&gt;&#xA;    &lt;/figcaption&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;Use Claude Code for a month and the limits become clear. Context disappears along with the session, and breaking work apart and putting it back together is ultimately a human job. The bigger problem surfaces the moment you have multiple projects and multiple developers. The testing strategy learned on project A, the refactoring pattern discovered by developer B, the architectural judgment validated in repository C — none of it flows well between them. &lt;code&gt;ruvnet/ruflo&lt;/code&gt; (formerly Claude Flow) targets exactly this gap. As of May 4, 2026, it has 39.4k stars and 4.5k forks on GitHub, with v3.6.27 as the latest release.&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;sup id=&#34;fnref:2&#34;&gt;&lt;a href=&#34;#fn:2&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;2&lt;/a&gt;&lt;/sup&gt; Ruflo aims to be an orchestration layer on top of Claude Code that adds roughly 100 specialized agents, HNSW vector memory, a plugin system, and Zero-Trust federation. This post lays out what Ruflo actually solves and what it does not, particularly from the standpoint of &lt;strong&gt;how to organically reuse the insights that multiple projects and multiple developers acquire&lt;/strong&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Serverless Autoresearch: A Record of Making an ML Experiment Pipeline Serverless Through Vibe Coding</title>
      <link>https://roboco.io/en/posts/serverless-autoresearch-vibe-coding/</link>
      <pubDate>Sun, 29 Mar 2026 16:00:00 +0900</pubDate>
      <guid>https://roboco.io/en/posts/serverless-autoresearch-vibe-coding/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;The real value of vibe coding is not only in writing code fast. It is in designing a way of operating that lets you repeat expensive experiments more cheaply and more quickly.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;https://roboco.io/posts/images/Dohyun.png&#34;&gt;&lt;figcaption&gt;&#xA;      &lt;h4&gt;Dohyun Jung - Principal Consultant, ROBOCO&lt;/h4&gt;&#xA;    &lt;/figcaption&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;p&gt;Most people first associate vibe coding with web app prototyping or CRUD automation. But ROBOCO&amp;rsquo;s &lt;a href=&#34;https://github.com/roboco-io/serverless-autoresearch&#34;&gt;&lt;code&gt;serverless-autoresearch&lt;/code&gt;&lt;/a&gt; repository widens that frame considerably. Instead of the &amp;ldquo;tie up a single H100 for several hours&amp;rdquo; approach that Andrej Karpathy&amp;rsquo;s &lt;code&gt;autoresearch&lt;/code&gt; presupposes, this project builds a structure that runs parallel experiments in short, explosive bursts on AWS SageMaker Spot.&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>OpenClaw&#39;s Five-Layer Gatekeeping: Quality Control in the Age of AI Agents</title>
      <link>https://roboco.io/en/posts/openclaw-gatekeeping-architecture/</link>
      <pubDate>Fri, 27 Mar 2026 00:00:00 +0900</pubDate>
      <guid>https://roboco.io/en/posts/openclaw-gatekeeping-architecture/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;Thousands of PRs pouring into a 310K-star project, plus parallel commits from eight AI agents. The secret to keeping quality from collapsing amid that chaos is five layers of automated gatekeeping.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;https://roboco.io/posts/images/Dohyun.png&#34;&gt;&lt;figcaption&gt;&#xA;      &lt;h4&gt;Dohyun Jung - Principal Consultant, ROBOCO&lt;/h4&gt;&#xA;    &lt;/figcaption&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;In an earlier post I analyzed &lt;a href=&#34;https://roboco.io/en/posts/openclaw-agents-md-productivity-secrets/&#34;&gt;the productivity principles embedded in OpenClaw&amp;rsquo;s AGENTS.md&lt;/a&gt;. The heart of that piece was &amp;ldquo;writing the rules down.&amp;rdquo; But writing rules and &lt;strong&gt;enforcing&lt;/strong&gt; them are entirely different problems.&lt;/p&gt;</description>
    </item>
    <item>
      <title>OpenClaw: Nine Best Practices from the World&#39;s Largest Vibe Coding Project</title>
      <link>https://roboco.io/en/posts/openclaw-vibe-coding-best-practices/</link>
      <pubDate>Sat, 14 Mar 2026 10:00:00 +0900</pubDate>
      <guid>https://roboco.io/en/posts/openclaw-vibe-coding-best-practices/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;&amp;ldquo;I used to lead a team. I had a lot of software engineers under me. Even then, I had to accept that they would not write code exactly the way I wanted it written.&amp;rdquo; – Peter Steinberger&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;https://roboco.io/posts/images/Dohyun.png&#34;&gt;&lt;figcaption&gt;&#xA;      &lt;h4&gt;Dohyun Jung - Principal Consultant, ROBOCO&lt;/h4&gt;&#xA;    &lt;/figcaption&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;OpenClaw is the most-starred software repository on GitHub (310K+ stars) and the definitive case study in large-scale AI-assisted &amp;ldquo;vibe coding.&amp;rdquo;&lt;sup id=&#34;fnref:2&#34;&gt;&lt;a href=&#34;#fn:2&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;2&lt;/a&gt;&lt;/sup&gt; Built by Austrian developer Peter Steinberger using three to eight parallel AI agent instances,&lt;sup id=&#34;fnref:3&#34;&gt;&lt;a href=&#34;#fn:3&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;3&lt;/a&gt;&lt;/sup&gt; the project demonstrates that a single developer can orchestrate a 300K+ LOC TypeScript monorepo, more than 20 messaging integrations, and native apps for three platforms — while barely reading most of the code.&lt;sup id=&#34;fnref1:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Everything Claude Code vs Oh My ClaudeCode: A Comparison for Team and Enterprise Adoption</title>
      <link>https://roboco.io/en/posts/everything-claude-code-vs-oh-my-claude-code/</link>
      <pubDate>Tue, 27 Jan 2026 09:30:31 +0900</pubDate>
      <guid>https://roboco.io/en/posts/everything-claude-code-vs-oh-my-claude-code/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;Everything Claude Code (ECC) hands developers a rich set of tools and guidelines. Its approach is to improve the output by making you follow optimal development habits and patterns. Oh My ClaudeCode (OMC), by contrast, automatically orchestrates multiple agents without any complicated setup. It focuses on getting results fast.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;figure class=&#34;author-image&#34;&gt;&lt;img src=&#34;https://roboco.io/posts/images/Dohyun.png&#34;&gt;&lt;figcaption&gt;&#xA;      &lt;h4&gt;Dohyun Jung - Principal Consultant, ROBOCO&lt;/h4&gt;&#xA;    &lt;/figcaption&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;I covered each of these in two earlier posts, &lt;a href=&#34;https://roboco.io/en/posts/everything-claude-code-distilled/&#34;&gt;Everything Claude Code Distilled&lt;/a&gt; and &lt;a href=&#34;https://roboco.io/en/posts/oh-my-claudecode-distilled/&#34;&gt;Oh My ClaudeCode Distilled&lt;/a&gt;. In this post I compare the two tools currently generating the most buzz in the vibe coding community, to help you choose between them.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Oh My Claude Code - The Plugin That Turns Claude Code Into a &#39;Team&#39;</title>
      <link>https://roboco.io/en/posts/oh-my-claudecode-distilled/</link>
      <pubDate>Wed, 21 Jan 2026 22:03:59 +0900</pubDate>
      <guid>https://roboco.io/en/posts/oh-my-claudecode-distilled/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;“Don’t learn Claude Code. Just use OMC.” – &lt;em&gt;oh-my-claudecode&lt;/em&gt; README&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;https://roboco.io/posts/images/Dohyun.png&#34;&gt;&lt;figcaption&gt;&#xA;      &lt;h4&gt;Dohyun Jung - Principal Consultant, ROBOCO&lt;/h4&gt;&#xA;    &lt;/figcaption&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;oh-my-claudecode (OMC) is a plugin that layers &amp;ldquo;multi-agent orchestration&amp;rdquo; on top of Claude Code.&lt;sup id=&#34;fnref1:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; Its goal is to &lt;strong&gt;automatically activate the behaviors you need — planning, parallelization, persistent execution, research, design sensibility — using your natural-language request as the cue&lt;/strong&gt;, so you never have to learn concepts like subagents, skills, and hooks one at a time.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Everything Claude Code: A Hackathon Winner&#39;s Recipe for an AI Dev Team</title>
      <link>https://roboco.io/en/posts/everything-claude-code-distilled/</link>
      <pubDate>Tue, 20 Jan 2026 09:30:07 +0900</pubDate>
      <guid>https://roboco.io/en/posts/everything-claude-code-distilled/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;&amp;ldquo;If you want to bring AI onto the team, you have to design the process before the tools.&amp;rdquo; – Affaan Mustafa, winner of the Anthropic x Forum Ventures hackathon&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;https://roboco.io/posts/images/Dohyun.png&#34;&gt;&lt;figcaption&gt;&#xA;      &lt;h4&gt;Dohyun Jung - Principal Consultant, ROBOCO&lt;/h4&gt;&#xA;    &lt;/figcaption&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;Everything Claude Code is a collection of configurations that turns the Claude Code CLI into a &lt;strong&gt;virtual development team environment&lt;/strong&gt;. A hackathon winner spent ten months refining these recipes while building an actual startup product, then gathered them all into one public repository; apply them and you can summon Claude as a &amp;ldquo;senior engineer + QA + architect.&amp;rdquo;&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; The repository is open for anyone to inspect on GitHub.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
