<?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: Denis Kolodin</title>
    <description>The latest articles on DEV Community by Denis Kolodin (@therustmonk).</description>
    <link>https://dev.to/therustmonk</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%2F556179%2Fcaabc85f-df27-4ca9-98a1-d2dc8614be4b.png</url>
      <title>DEV Community: Denis Kolodin</title>
      <link>https://dev.to/therustmonk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/therustmonk"/>
    <language>en</language>
    <item>
      <title>I built interactive playgrounds where AI helps you build real applications</title>
      <dc:creator>Denis Kolodin</dc:creator>
      <pubDate>Tue, 07 Apr 2026 18:00:00 +0000</pubDate>
      <link>https://dev.to/therustmonk/i-built-interactive-playgrounds-where-ai-helps-you-build-real-applications-5aoh</link>
      <guid>https://dev.to/therustmonk/i-built-interactive-playgrounds-where-ai-helps-you-build-real-applications-5aoh</guid>
      <description>&lt;h2&gt;
  
  
  How it all started
&lt;/h2&gt;

&lt;p&gt;A few years ago, I created RustInsight. It was a set of step-by-step Rust courses where the reader built an application by following instructions — kind of like assembling a LEGO set. You’d go step by step, adding code to source files, and that’s how you learned Rust.&lt;/p&gt;

&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%2Fqrt4h9dum20osq6bznq7.png" 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%2Fqrt4h9dum20osq6bznq7.png" alt="Playground Box | Knowledge.Dev" width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;At the same time, the application was being built as you progressed, so you could always see what the final result should look like and compare it with your own work. In the end, you didn’t just learn — you practiced and got a real, working application, like a microservice.&lt;/p&gt;

&lt;p&gt;The downside was that if you made a mistake, you had to debug it yourself (though diffs sometimes helped).&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I still believe in this idea
&lt;/h2&gt;

&lt;p&gt;I still think the core idea was right. People don’t really learn by endlessly watching videos or reading articles — they learn by building things with their own hands.&lt;/p&gt;

&lt;p&gt;RustInsight brought me my first customers. People actually needed this. But it was also my first serious launch, and I didn’t do everything right. I barely tracked metrics, didn’t fully understand what worked and what didn’t, and sometimes I simply couldn’t keep up with support requests.&lt;/p&gt;

&lt;p&gt;I didn’t shut the project down, but it slowly drifted into stagnation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Then the AI revolution happened
&lt;/h2&gt;

&lt;p&gt;By that time, I was already actively using AI in my work. It helped me test applications, process voice recordings, and turn speech into structured text. It made both content creation and development much faster.&lt;/p&gt;

&lt;p&gt;But there was a problem: all these improvements mostly helped &lt;em&gt;me&lt;/em&gt;, not the learner.&lt;/p&gt;

&lt;p&gt;Meanwhile, developers had already started using AI agents in their daily workflows.&lt;/p&gt;

&lt;h2&gt;
  
  
  Rethinking the format
&lt;/h2&gt;

&lt;p&gt;That’s when it clicked — the old format had to change. It wasn’t enough to just create good step-by-step courses anymore. AI had to be embedded directly into the learning process, because we now work &lt;em&gt;inside&lt;/em&gt; dev agents (some people have even ditched IDEs altogether — though I still stick with good old vim).&lt;/p&gt;

&lt;p&gt;This is also the point where I started building what eventually became &lt;a href="https://knowledge.dev/" rel="noopener noreferrer"&gt;Knowledge.Dev&lt;/a&gt; — a new attempt to rethink how learning-by-building should work in the AI era.&lt;/p&gt;

&lt;h2&gt;
  
  
  First attempt: a web-based player
&lt;/h2&gt;

&lt;p&gt;At first, I built a new player as a web app. It would set up context for an AI agent (locally, in a selected folder — which was a pretty neat idea), and the agent would act as an instructor: helping you build the app, guiding you, explaining things, and nudging you forward step by step.&lt;/p&gt;

&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%2Fw5l063jjgpicq8s6f6vi.webp" 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%2Fw5l063jjgpicq8s6f6vi.webp" alt="Web Player | Knowledge.Dev" width="800" height="530"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It worked in a really interesting way. But it also had limitations. Everything relied on the File Access API, which meant it mostly worked well only in Chrome. Plus, the AI agent would sometimes lose context and forget what it was supposed to do.&lt;/p&gt;

&lt;h2&gt;
  
  
  A different approach: MCP
&lt;/h2&gt;

&lt;p&gt;So I decided to try a completely different approach.&lt;/p&gt;

&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%2F88nruf5nm7s9uaxrd28c.webp" 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%2F88nruf5nm7s9uaxrd28c.webp" alt="MCP Install | Knowledge.Dev" width="800" height="609"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I built a player with no separate interface at all — just a local MCP server that connects directly to your AI agent. It loads step-by-step instructions and guides the agent throughout the learning process. The agent then helps the learner write code, complete tasks, and understand key concepts along the way.&lt;/p&gt;

&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%2Ffi3j7hcwb2xtp4rzmjws.png" 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%2Ffi3j7hcwb2xtp4rzmjws.png" alt="Agent Workflow | Knowledge.Dev" width="800" height="637"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The breakthrough moment
&lt;/h2&gt;

&lt;p&gt;And this is where it started to feel like a real breakthrough.&lt;/p&gt;

&lt;p&gt;There’s now way more hands-on practice than before. Learners don’t have to sit through long chunks of text anymore. Instead, they get short, clear tasks, complete them step by step, and gradually build a full product.&lt;/p&gt;

&lt;p&gt;Not a toy. Not a code snippet. A real application.&lt;/p&gt;

&lt;p&gt;That’s exactly what I wanted from the very beginning: learning that mirrors real engineering work.&lt;/p&gt;

&lt;h2&gt;
  
  
  Trade-offs and what’s next
&lt;/h2&gt;

&lt;p&gt;Yes, learning through MCP might not be the easiest entry point for beginners. It’s not as simple as opening a website and clicking a button. But for me, what matters more is that learners gain real, practical engineering experience — not just the feeling that they’ve “covered the material.”&lt;/p&gt;

&lt;p&gt;That said, I do have another big idea in mind to make the experience even better, and I’m actively working on it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it out
&lt;/h2&gt;

&lt;p&gt;If this kind of learning sounds interesting to you, check out the project here: &lt;a href="https://knowledge.dev" rel="noopener noreferrer"&gt;https://knowledge.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That’s what I’ve built so far. There’s also a small demo that doesn’t require MCP — give it a try to see how it works.&lt;/p&gt;

&lt;h2&gt;
  
  
  Let’s talk
&lt;/h2&gt;

&lt;p&gt;And if you’d like to follow the progress or discuss the idea, join the Discord: &lt;a href="https://knowledge.dev/discord/" rel="noopener noreferrer"&gt;https://knowledge.dev/discord/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I just launched it recently, so you can reach me there directly. Maybe you even have an idea for a specific playground 🙂&lt;/p&gt;

</description>
      <category>learning</category>
      <category>ai</category>
      <category>rust</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
