<?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: KyosukeIshizu</title>
    <description>The latest articles on DEV Community by KyosukeIshizu (@kyosuke1008).</description>
    <link>https://dev.to/kyosuke1008</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%2F3923506%2F663e311f-c7be-432b-8b63-c4e26f6897ab.jpeg</url>
      <title>DEV Community: KyosukeIshizu</title>
      <link>https://dev.to/kyosuke1008</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kyosuke1008"/>
    <language>en</language>
    <item>
      <title>I'd been trying to build my own editor for 20 years. AI finally got me there.</title>
      <dc:creator>KyosukeIshizu</dc:creator>
      <pubDate>Sun, 10 May 2026 16:22:33 +0000</pubDate>
      <link>https://dev.to/kyosuke1008/id-been-trying-to-build-my-own-editor-for-20-years-ai-finally-got-me-there-3ge9</link>
      <guid>https://dev.to/kyosuke1008/id-been-trying-to-build-my-own-editor-for-20-years-ai-finally-got-me-there-3ge9</guid>
      <description>&lt;p&gt;&lt;a href="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%2Farticles%2Fc88ka3oqrj04poa8chf1.gif" class="article-body-image-wrapper"&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%2Farticles%2Fc88ka3oqrj04poa8chf1.gif" alt="BerryCode v0.8 IDE demo showing the file tree, code editor, scene editor, and ECS inspector running on a Bevy&amp;lt;br&amp;gt;
  project" width="600" height="369"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A senior dev once told me:&lt;/p&gt;

&lt;p&gt;"You ship 100 projects, you're competent. You write an editor, you're intermediate. A browser, you're advanced. An OS, you're a god."&lt;/p&gt;

&lt;p&gt;I crossed 100 a long time ago. CLI tools, web apps, mobile, games, internal business stuff, whatever. But the editor part stayed unfinished. I could write a notepad with a compile button, sure. Anything with code completion or jump-to-definition? It always stalled. There were better editors out there, no point shipping mine, and I just kept using the ones other people made.&lt;/p&gt;

&lt;p&gt;This is the story of the editor that sat as a draft on my hard drive for 20 years, and how it finally became v0.8.&lt;/p&gt;

&lt;p&gt;The thing I shipped is called &lt;strong&gt;BerryCode&lt;/strong&gt;, a Bevy game engine IDE built in Bevy itself. It's open-source on &lt;a href="https://github.com/KyosukeIshizu1008/berryscode" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;
  
  
  Two decades of wanting an editor I never finished
&lt;/h2&gt;

&lt;p&gt;The first time I felt the urge to write my own editor, I was using JCPad, a free Japanese teaching IDE for Java that schools handed out in the&lt;br&gt;
  early 2000s. Tiny tool by today's standards, but when I hit the run button and a compiler kicked in, I was a kid thinking "I want to build something like this."&lt;/p&gt;

&lt;p&gt;Then I spent the next 20-something years using other people's editors.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Eclipse&lt;/strong&gt;: heavy. But the moment I saw refactoring and completion in action, I was hooked.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;IntelliJ&lt;/strong&gt;: the first IDE I ever paid money for, and felt right doing it. Still locks up after a few days as the heap fills.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;VS Code&lt;/strong&gt;: fast, infinitely extensible. But the extensions create their own version-mismatch hell: slow startup, conflicts, breaking changes between releases.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unity / Unreal&lt;/strong&gt;: the obvious choice for games. Both excellent. Both not-quite-mine in a way I can't ignore. Bevy maturing as a fully-open-source Rust engine made me realize I could finally have something I controlled end-to-end.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Good tools, all of them. And I always had something to complain about.&lt;/p&gt;

&lt;p&gt;There was another reason, more recent. My 10-year-old started writing Roblox games and was getting decent at code. I wanted to point him at Unity, but it's heavy and the licensing scares me for a kid. More importantly, I'd rather he learn how memory and CPU and concurrency actually work than mess around with C# garbage collection. Go or Rust, basically. And there was no editor that felt right for "the next thing after Roblox, for kids."&lt;/p&gt;

&lt;p&gt;The hypothesis I kept coming back to:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"What if the editor itself ran on the GPU?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Every CPU-based editor gets heavier the more extensions you stack on it. If text rendering, scene preview, all of it, lived on the GPU instead, you'd get game-engine-level responsiveness. Plus you could build it specifically for the language and engine you actually use, instead of bolting plugins onto a general-purpose tool.&lt;/p&gt;

&lt;p&gt;The hypothesis sat unproven for years. The tooling wasn't there. Then WGPU matured enough that you could drive the GPU end-to-end from Rust, and Bevy became viable as a real game engine, and suddenly the idea was tractable.&lt;/p&gt;
&lt;h2&gt;
  
  
  January 2026, finally starting
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;2026-01-11  feat: Integrate berry-api gRPC server and fix session management
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;First commit.&lt;/p&gt;

&lt;p&gt;I bet on Dioxus for the first week. React-style components looked clean, I shipped 26 commits in a single day. A week later I knew it was wrong.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;2026-01-17  feat: Complete egui migration and add new features
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Switched to egui. Immediate mode meant I could sync directly to Bevy's frame, which made the "the editor runs on the same engine as the games it edits" idea actually structural instead of aspirational.&lt;br&gt;
Then nothing happened for three months.&lt;/p&gt;

&lt;p&gt;I had under 50 commits in that whole stretch. I added LSP, played with LLM routing, wired up an AI review workflow. Forward motion, but slow. The voice in my head kept saying "yeah, this editor won't ship either." I'd more or less accepted the project would take years.&lt;/p&gt;
&lt;h2&gt;
  
  
  April 17: Claude Code arrived
&lt;/h2&gt;

&lt;p&gt;The turning point has a date.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;2026-04-17  feat: Implement Unity-class Scene Editor (76 phases, 232 tests)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That commit message tells you the whole story. 76 phases and 232 tests landed in a single commit. The Unity-class scene editor I'd planned to spend three months on stood up as a skeleton in a day.&lt;/p&gt;

&lt;p&gt;The next three weeks logged 230 commits.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Date&lt;/th&gt;
&lt;th&gt;Commits&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;2026-04-22&lt;/td&gt;
&lt;td&gt;32&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2026-04-26&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;52&lt;/strong&gt; ← peak&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2026-04-28&lt;/td&gt;
&lt;td&gt;21&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2026-05-03&lt;/td&gt;
&lt;td&gt;34 (v0.7 mobile pipeline)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;What used to be v0.2 went out as v0.8 three weeks later.&lt;/p&gt;

&lt;p&gt;What actually changed was my role.&lt;/p&gt;

&lt;p&gt;Before Claude Code, I was the one writing the code. After, I was the architect and the reviewer. The split looked like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;AI&lt;/strong&gt;: boilerplate, refactors, scaffolding, tests&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Me&lt;/strong&gt;: architecture decisions, library choices, UX, dodging egui's footguns, final review&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To stop the model from making the same mistake twice, I started keeping a &lt;code&gt;CLAUDE.md&lt;/code&gt; at the repo root. It's loaded into every agent run. Contents are pure "do not do this" and "this is a trap":&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="p"&gt;-&lt;/span&gt; Don't spawn &lt;span class="sb"&gt;`PrimaryEguiContext`&lt;/span&gt; twice. Plugin spawns one and only one.
&lt;span class="p"&gt;-&lt;/span&gt; Trust &lt;span class="sb"&gt;`cargo check`&lt;/span&gt;, not rust-analyzer's diagnostics.
&lt;span class="p"&gt;-&lt;/span&gt; Codicon glyph codepoints are not what their names suggest. Verify in the .ttf with fonttools.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Add a line every time I bang my head against a wall. Six months in, it's over a hundred lines.&lt;/p&gt;

&lt;p&gt;People will look at this from outside and bucket it as "AI wrote it." That's not quite right. It feels more like &lt;strong&gt;the AI is the hands, and I'm the architect plus the reviewer&lt;/strong&gt;. Claude Code writes, I read, I throw out what doesn't fit. When something doesn't compile, I paste the error and we fix it. The design comes from me.&lt;/p&gt;

&lt;p&gt;Three months of silence, then three weeks of acceleration. v0.8 shipped.&lt;/p&gt;

&lt;h2&gt;
  
  
  At the gate of "intermediate"
&lt;/h2&gt;

&lt;p&gt;Even after v0.8 went out, I don't feel like the editor is done. Editing scripts, scene editing, the ECS inspector, terminal, debugger, release pipeline. Every time I touch any of it, three more missing things appear.&lt;/p&gt;

&lt;p&gt;Editors don't get finished. That's probably what writing one means.&lt;/p&gt;

&lt;p&gt;But the project I'd been carrying around half-written for 20 years is finally in motion. That part is real.&lt;/p&gt;

&lt;p&gt;Hundred projects shipped, editor under construction. By my old colleague's standard, I might have just stepped onto the &lt;strong&gt;gate of "intermediate."&lt;/strong&gt; Browser next? Operating system? Both feel out of reach for the foreseeable future. Thinking about it is its own kind of fun.&lt;/p&gt;

&lt;p&gt;And soon I'm going to hand BerryCode to my son. The bridge from Roblox (Lua) to Rust, if it actually works as a bridge. That's the real test.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/KyosukeIshizu1008/berryscode" rel="noopener noreferrer"&gt;https://github.com/KyosukeIshizu1008/berryscode&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;v0.8.2 release&lt;/strong&gt;: &lt;a href="https://github.com/KyosukeIshizu1008/berryscode/releases/tag/v0.8.2" rel="noopener noreferrer"&gt;https://github.com/KyosukeIshizu1008/berryscode/releases/tag/v0.8.2&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Japanese original (Zenn)&lt;/strong&gt;: &lt;a href="https://zenn.dev/berrycode/articles/c8236fba64503b" rel="noopener noreferrer"&gt;https://zenn.dev/berrycode/articles/c8236fba64503b&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;X&lt;/strong&gt;: &lt;a href="https://x.com/KyosukeIshizu" rel="noopener noreferrer"&gt;https://x.com/KyosukeIshizu&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




</description>
      <category>ai</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
