<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Claude-Code on ROBOCO</title>
    <link>https://roboco.io/en/tags/claude-code/</link>
    <description>Recent content in Claude-Code on ROBOCO</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Sun, 26 Jul 2026 10:00:00 +0900</lastBuildDate>
    <atom:link href="https://roboco.io/en/tags/claude-code/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Surprisingly, the Ralph Loop Is 9x Cheaper - The Economics of Context Caching</title>
      <link>https://roboco.io/en/posts/vibe-coding-token-experiments/</link>
      <pubDate>Sun, 26 Jul 2026 10:00:00 +0900</pubDate>
      <guid>https://roboco.io/en/posts/vibe-coding-token-experiments/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;A single-session loop that just states a goal and runs until done finished the same task at one-ninth the cost of a plan-driven workflow. The secret isn&amp;rsquo;t the loop — it&amp;rsquo;s the cache.&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;The Ralph loop is a simple approach. You specify only the goal and the completion criteria, then let the agent iterate autonomously in a single session until it passes the completion check. No plan document, no task decomposition, no handoff notes between sessions. At first glance it looks unplanned and inefficient.&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>A Token Management Strategy for Vibe Coding</title>
      <link>https://roboco.io/en/posts/vibe-coding-token-management-strategy/</link>
      <pubDate>Thu, 19 Mar 2026 09:00:00 +0900</pubDate>
      <guid>https://roboco.io/en/posts/vibe-coding-token-management-strategy/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;Running out of tokens is rarely a model performance problem. It is usually a problem with how you operate your context.&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 a vibe coding tool like Claude Code, Codex, or Gemini long enough and the same symptoms start showing up. Responses slow down, constraints you already agreed on get forgotten, and the model starts touching files that have nothing to do with the task. We usually describe this as &amp;ldquo;running out of tokens,&amp;rdquo; but what is actually happening is closer to &lt;strong&gt;context pollution&lt;/strong&gt;, or context rot.&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>The Best Production-Grade, Cost-Effective Vibe Coding Tool from an Enterprise and Heavy-User Perspective (as of January 2026)</title>
      <link>https://roboco.io/en/posts/best-production-vibe-coding-tool-jan2026/</link>
      <pubDate>Sun, 25 Jan 2026 11:45:52 +0900</pubDate>
      <guid>https://roboco.io/en/posts/best-production-vibe-coding-tool-jan2026/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;This piece was written &lt;strong&gt;as of January 2026&lt;/strong&gt;. Pricing, usage limits, context windows, and plan structures change extremely fast, so I recommend reading it for the &amp;ldquo;principles and structure&amp;rdquo; rather than the specifics.&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;Vibe coding tools are entering the phase where &amp;ldquo;whatever you use, it more or less works.&amp;rdquo; So for enterprise users and heavy users, the question naturally shifts. It is no longer &amp;ldquo;which tool is the smartest,&amp;rdquo; but &lt;strong&gt;which tool you can use every day in production without hitting a bottleneck, at a cost that still makes sense&lt;/strong&gt;.&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>
    <item>
      <title>Vibe Coding and Security: True or False</title>
      <link>https://roboco.io/en/posts/vibecoding-security/</link>
      <pubDate>Tue, 30 Dec 2025 10:01:21 +0900</pubDate>
      <guid>https://roboco.io/en/posts/vibecoding-security/</guid>
      <description>&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;These days, saying &amp;ldquo;I code with AI&amp;rdquo; is no longer special. It is already the new normal. Coding works — that is now a given — and today&amp;rsquo;s AI tools do far more than that in a business.&lt;/p&gt;&#xA;&lt;p&gt;Even so, many companies hesitate at the adoption stage. The reason is always the same: security. Today I want to sort through the security concerns surrounding AI coding agents from an enterprise perspective — in particular Claude Code, the most widely chosen tool for production-level vibe coding — separating what is true from what is false.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Claude Code Deep Dive: How Is Claude Code Actually Built?</title>
      <link>https://roboco.io/en/posts/claude-code-deep-dive/</link>
      <pubDate>Tue, 25 Nov 2025 10:05:54 +0900</pubDate>
      <guid>https://roboco.io/en/posts/claude-code-deep-dive/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;The world of meticulous prompt engineering hidden behind the &amp;ldquo;it just handles it for you&amp;rdquo; experience&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;Developers trying Claude Code for the first time often wonder, &amp;ldquo;How does it understand the context this well?&amp;rdquo; Claude Code doesn&amp;rsquo;t behave like a simple coding assistant; it acts like a colleague who has been on the project for a long time. The secret lies in &lt;strong&gt;a sophisticated system architecture in which more than 40 prompt fragments are assembled dynamically&lt;/strong&gt;.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
