<?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: Tim Wheeler</title>
    <description>The latest articles on DEV Community by Tim Wheeler (@utabadevmonkey).</description>
    <link>https://dev.to/utabadevmonkey</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3464527%2F9d1343e4-aae3-4f6d-b724-58e04c8ab368.jpg</url>
      <title>DEV Community: Tim Wheeler</title>
      <link>https://dev.to/utabadevmonkey</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/utabadevmonkey"/>
    <language>en</language>
    <item>
      <title>Supercharge your AI Coder with a code-graph</title>
      <dc:creator>Tim Wheeler</dc:creator>
      <pubDate>Wed, 24 Jun 2026 03:19:06 +0000</pubDate>
      <link>https://dev.to/utabadevmonkey/supercharge-your-ai-coder-with-a-code-graph-4je8</link>
      <guid>https://dev.to/utabadevmonkey/supercharge-your-ai-coder-with-a-code-graph-4je8</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;One of the most powerful upgrades you can give any AI developer&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  Introduction
&lt;/h3&gt;

&lt;p&gt;AI coding assistants are dazzling on a single file and surprisingly lost on a large one. Point a capable agent at a mature, multi-package codebase and you watch the same pattern every session: it greps for a symbol, opens a dozen files to work out how they fit together, and burns a large slice of its context window simply &lt;em&gt;rediscovering the shape of the system&lt;/em&gt; before it can do any actual work.&lt;/p&gt;

&lt;p&gt;That orientation phase — the crawling, the grepping, the file-by-file reconstruction of structure the codebase already encodes — is the single biggest waste of tokens in most AI-assisted workflows. And it repeats every session, because nothing persists.&lt;/p&gt;

&lt;p&gt;The fix is straightforward: give the agent a map. Model your codebase as a knowledge graph and let the agent query the map instead of crawling the territory. This article explains what that looks like, why it works, and what it actually finds when you run it on a real system.&lt;/p&gt;




&lt;h3&gt;
  
  
  TL;DR
&lt;/h3&gt;

&lt;p&gt;A code-graph should map your &lt;strong&gt;architecture&lt;/strong&gt; not just your code.&lt;/p&gt;

&lt;p&gt;Converting &lt;em&gt;grep&lt;/em&gt; to &lt;em&gt;graph&lt;/em&gt; minimises token usage and saves you time.&lt;/p&gt;

&lt;p&gt;Find bugs, security mistakes, and omissions in your codebase in seconds.&lt;/p&gt;

&lt;p&gt;Plan upgrades quickly and with far more accuracy.&lt;/p&gt;

&lt;p&gt;Using deep-memory's vocabulary simplifies usage for your AI.&lt;/p&gt;

&lt;p&gt;Use &lt;a href="https://github.com/TjWheeler/deep-memory" rel="noopener noreferrer"&gt;deep-memory&lt;/a&gt; free.&lt;/p&gt;

&lt;p&gt;Check out the full example &lt;a href="https://github.com/TjWheeler/deep-memory/blob/main/docs/code-graph-guide.md" rel="noopener noreferrer"&gt;code-graph-guide.md&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  What is a code-graph
&lt;/h3&gt;

&lt;p&gt;A code-graph is a graph database representation of your system. I use the word &lt;em&gt;system&lt;/em&gt; and not &lt;em&gt;code&lt;/em&gt; deliberately — the real power comes from driving architectural insights, not just building a faster file search.&lt;/p&gt;

&lt;p&gt;Code graphs are becoming popular. There are some impressive repositories where the author has scripted a process to mirror a codebase into a graph DB, capturing files, imports, and call relationships. That approach is useful for dependency visualisation. But mirroring syntax only scratches the surface.&lt;/p&gt;

&lt;p&gt;What separates a useful code-graph from an elaborate directory listing is &lt;em&gt;intentional modelling&lt;/em&gt;. You decide what entities matter to your architecture — commands, services, API routes, database tables, tests, authorisation checks, validation rules — and you define the relationships that carry meaning: &lt;em&gt;implements&lt;/em&gt;, &lt;em&gt;depends-on&lt;/em&gt;, &lt;em&gt;guards&lt;/em&gt;, &lt;em&gt;covers&lt;/em&gt;, &lt;em&gt;throws&lt;/em&gt;. The graph is built against &lt;em&gt;your&lt;/em&gt; conventions, not a generic notion of "code." That specificity is what makes absence detectable, and absence is where the real value hides.&lt;/p&gt;




&lt;h3&gt;
  
  
  The Power of Insights in a code-graph
&lt;/h3&gt;

&lt;p&gt;The real value isn't the graph itself — it's the questions it answers in one query that would otherwise require a mass of grepping. And often the most important answer is the relationship that isn't there.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Security holes show up as missing edges.&lt;/strong&gt; You can see which routes run an authorisation check — and, more importantly, which don't. The absence of a "checks access" edge on a route that reaches real business logic is a hole you'd never spot by reading files one at a time.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Defence-in-depth gaps become obvious.&lt;/strong&gt; When a guard lives only at the route and not on the command beneath it, the graph shows it — so you know before you add a second caller that bypasses the check.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Dead and dangerous code surfaces instantly.&lt;/strong&gt; Permission targets nothing enforces, validators no scenario uses, database tables no code reads — all are just nodes with no incoming edges.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Untested risk is ranked, not guessed.&lt;/strong&gt; You can list destructive operations with no test covering them, turning "we should test more" into a concrete, prioritised backlog.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Blast radius is one traversal away.&lt;/strong&gt; Before changing anything you can see everything that depends on it — callers, routes, docs, tests — so planning is faster and regressions are rarer.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Hot spots and choke points are visible.&lt;/strong&gt; The most-depended-on services and most-accessed tables tell you where a change ripples widest and where to focus review and hardening.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Architecture rules become checkable.&lt;/strong&gt; Intended conventions (e.g. "only the data layer touches SQL") turn into queries, so violations are caught in CI instead of code review.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;New developers ramp up faster.&lt;/strong&gt; A newcomer can ask "what calls this, what guards it, what tests it?" and get an answer in seconds instead of reverse-engineering it from source.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;It scales where people don't.&lt;/strong&gt; These insights hold across thousands of files and hundreds of routes — exactly the scale at which manual review quietly misses things.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fe3mqgtusp9sb10402awh.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fe3mqgtusp9sb10402awh.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  We dogfood this on our own codebase
&lt;/h3&gt;

&lt;p&gt;The best way to understand what a code-graph actually does is to see it working on a real system.&lt;/p&gt;

&lt;p&gt;At &lt;a href="https://utaba.ai" rel="noopener noreferrer"&gt;Utaba&lt;/a&gt; we use &lt;a href="https://github.com/TjWheeler/deep-memory" rel="noopener noreferrer"&gt;Deep Memory&lt;/a&gt; — our own open-source library — to build a live code-graph of the UCM platform itself. UCM is the product we ship; the code-graph is how our team and our AI coding agents navigate it. We build UCM &lt;em&gt;with&lt;/em&gt; the very capability we offer to customers.&lt;/p&gt;

&lt;p&gt;Here is what it has found and done.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Blast-radius analysis — in one query.&lt;/strong&gt; Before modifying a core UCM service, the graph returned the full dependency picture: &lt;strong&gt;35 commands&lt;/strong&gt; rely on that service. One query, no file reads. That list became the review checklist before the change landed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Security audit — zero false alarms.&lt;/strong&gt; We asked: &lt;em&gt;which public API endpoints reach a command with no permission check?&lt;/em&gt; The graph returned exactly &lt;strong&gt;four&lt;/strong&gt; — all legitimate sign-in and service-discovery routes. No surprises buried in the list, no manual triage needed. That kind of signal, at that precision, from a text search is not realistic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Dead code caught automatically.&lt;/strong&gt; The graph recently flagged &lt;strong&gt;24 validation rules that were defined but never used&lt;/strong&gt; — the kind of quiet accumulation that is invisible in day-to-day work and would only surface in a dedicated audit, if at all. It also caught a documentation example that had silently gone stale.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Planning a new feature from graph queries, not file reads.&lt;/strong&gt; When planning a new capability, our AI agents check the graph first: &lt;em&gt;Does this already exist? What will it affect? Are we duplicating something?&lt;/em&gt; These are graph queries, not guesswork. They consistently stop wasted effort and accidental duplication before a line is written.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Token efficiency — the quiet win.&lt;/strong&gt; Instead of an AI agent reading dozens of files to understand a dependency chain, one near-instant query returns the precise answer. Less reading means fewer tokens, lower cost, and faster, more accurate responses. On a large codebase the saving is not marginal — the orientation phase is often the single largest consumer of context, and the graph collapses it.&lt;/p&gt;

&lt;p&gt;One detail worth highlighting: roughly &lt;strong&gt;80% of the graph builds itself with no AI involved&lt;/strong&gt;. Most relationships are already declared in the code — imports, interface implementations, route registrations — so they are mined deterministically. Fast, exact, and free. The AI handles the edges that require interpretation; the extractor scripts handle everything mechanical.&lt;/p&gt;




&lt;h3&gt;
  
  
  Building a code-graph with deep-memory
&lt;/h3&gt;

&lt;p&gt;The implementation is a set of small, independent extractor scripts feeding a single reconciling orchestrator. Each extractor owns one layer of the model (packages, providers, tools, docs, tests, modules, errors) and is a pure function: it reads source with a real parser — never regex — and returns plain node and edge descriptors with no knowledge of the graph store.&lt;/p&gt;

&lt;p&gt;The script runs automatically on each build, or on-demand. It should take just a few seconds because it reconciles delta changes, not a full rebuild.&lt;/p&gt;

&lt;p&gt;There is a full &lt;a href="https://github.com/TjWheeler/deep-memory/tree/main/scripts/code-graph" rel="noopener noreferrer"&gt;example&lt;/a&gt; you can point your AI at to build its own specialised code-graph for your codebase. The guide walks through the vocabulary, the extractor pattern, and how to wire the orchestrator — an afternoon's work to have it running on your own system.&lt;/p&gt;




&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;AI coding agents do not struggle with large codebases because they cannot read. They struggle because they have no map. Every session, they reconstruct the same structural knowledge from scratch — at your cost in tokens, latency, and their finite attention.&lt;/p&gt;

&lt;p&gt;Build the map once, and every session after pays it back. Navigation becomes one query instead of twenty file reads. Security gaps surface as missing edges, not missed audits. Architecture rules move from wiki pages nobody re-reads to queries any agent can run on demand.&lt;/p&gt;

&lt;p&gt;The practical starting point: clone the &lt;a href="https://github.com/TjWheeler/deep-memory" rel="noopener noreferrer"&gt;deep-memory&lt;/a&gt; repo, read the &lt;a href="https://github.com/TjWheeler/deep-memory/blob/main/docs/code-graph-guide.md" rel="noopener noreferrer"&gt;code-graph guide&lt;/a&gt;, and point an AI agent at the example scripts. It is open source and designed to be adapted to your codebase in a single session.&lt;/p&gt;

&lt;p&gt;If you are working on a larger system and want to talk through what this would look like applied to your architecture, &lt;a href="https://utaba.ai/contact" rel="noopener noreferrer"&gt;get in touch&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>codegraph</category>
      <category>programming</category>
    </item>
    <item>
      <title>How I Solved AI's Inconsistent Code Problem</title>
      <dc:creator>Tim Wheeler</dc:creator>
      <pubDate>Fri, 29 Aug 2025 03:39:46 +0000</pubDate>
      <link>https://dev.to/utabadevmonkey/how-i-solved-ais-inconsistent-code-problem-37he</link>
      <guid>https://dev.to/utabadevmonkey/how-i-solved-ais-inconsistent-code-problem-37he</guid>
      <description>&lt;p&gt;&lt;em&gt;After 30 years of development, AI coding tools promised to revolutionize my workflow. After much learning, I found a solution.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  In the Beginning
&lt;/h2&gt;

&lt;p&gt;Do you find yourself restraining from scolding your AI developer?  Well, if yes, you are not alone.&lt;/p&gt;

&lt;p&gt;When I started working with Claude Desktop, then Claude Code, I said, "This is so cool!".&lt;/p&gt;

&lt;h2&gt;
  
  
  Reality Hits Hard
&lt;/h2&gt;

&lt;p&gt;"This is so cool!" quickly turned into "What a pile of @#$%#!"&lt;/p&gt;

&lt;p&gt;The problems were everywhere:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Inconsistent patterns&lt;/strong&gt; across different sessions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hardcoded configuration&lt;/strong&gt; scattered throughout the codebase
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Missing security validations&lt;/strong&gt; that any junior dev would catch&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Architectural decisions&lt;/strong&gt; that changed randomly between conversations&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reinventing the wheel&lt;/strong&gt; instead of using established libraries&lt;/li&gt;
&lt;/ul&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%2Fualjwc692o3me7f1mr33.jpg" 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%2Fualjwc692o3me7f1mr33.jpg" alt="Image showing quote about claudes wisdom being teenie" width="500" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Claude has epic amounts of Intelligence, and teenie tiny amounts of wisdom.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Giving Claude Wisdom
&lt;/h2&gt;

&lt;p&gt;After much frustration, I had a realization: &lt;strong&gt;the fault wasn't Claude's—it was mine.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;AI systems are basically a pattern matching behemoth. Without proper guidance to narrow down those patterns, they'll match against everything they've ever learned. That's a recipe for inconsistent, buggy, insecure code.&lt;/p&gt;

&lt;p&gt;The solution? &lt;strong&gt;Persistent guidance&lt;/strong&gt;, and the term in the industry right now is &lt;strong&gt;Context Engineering&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Failed First Attempts
&lt;/h2&gt;

&lt;p&gt;I started simple: markdown files with coding standards, architecture decisions, and examples stored in Git repositories.&lt;/p&gt;

&lt;p&gt;This worked... sort of. But it quickly became cumbersome:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AI couldn't easily discover relevant guidance&lt;/li&gt;
&lt;li&gt;No way to ensure AI actually read the documentation&lt;/li&gt;
&lt;li&gt;No continuity in our conversations &lt;/li&gt;
&lt;li&gt;Guidance scattered across different repos and folders&lt;/li&gt;
&lt;li&gt;Lack of governance&lt;/li&gt;
&lt;li&gt;Compacted conversations lost a lot of the initial reading&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I needed something better.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Solution: Context Management
&lt;/h2&gt;

&lt;p&gt;I built what I call the &lt;strong&gt;Universal Context Manager (UCM)&lt;/strong&gt; - essentially "GitHub for AI-consumable artifacts."&lt;/p&gt;

&lt;p&gt;Here's what it does:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Structured storage&lt;/strong&gt; for guidance, templates, and examples&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI-friendly tools&lt;/strong&gt; through MCP (Model Context Protocol) servers&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Discovery-first workflow&lt;/strong&gt; so AI finds relevant patterns automatically&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version control&lt;/strong&gt; for guidance and templates&lt;/li&gt;
&lt;/ul&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%2Ftb6tgg9tn3kzz72l1ll8.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%2Ftb6tgg9tn3kzz72l1ll8.png" alt="Mermaid diagram showing key aspects such as publishing and search" width="600" height="523"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;When I first started using the UCM for my own work, it felt like I was 7 years old again and got my first bike.  Wow, this is really cool.  Let's make it better.&lt;/p&gt;

&lt;p&gt;The aim was to minimize friction between the AI and the system.&lt;br&gt;
So, after much trial and error, working with Claude, testing, reviewing and improving the workflow, the UCM was ready.   &lt;/p&gt;

&lt;p&gt;Instead of inconsistent code, I got:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Quickly get up to speed with the 'Recent Artifacts Tool'&lt;/li&gt;
&lt;li&gt;Find code, patterns and guidance through the 'Search' and 'List Artifacts' tool&lt;/li&gt;
&lt;li&gt;Consistent architectural patterns&lt;/li&gt;
&lt;li&gt;Proper configuration management&lt;/li&gt;
&lt;li&gt;Security validations by default&lt;/li&gt;
&lt;li&gt;Reusable, tested components&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  What was so powerful about the UCM:
&lt;/h2&gt;

&lt;p&gt;The MCP Server tools forced Claude to do a few key things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Get initial guidance from the 'UCM Quickstart' tool which explained important concepts and rules&lt;/li&gt;
&lt;li&gt;Forced Claude to assign Categories and Subcategories to the artifacts, creating a natural structure and coherent filing system&lt;/li&gt;
&lt;li&gt;Gave Claude valuable metadata to fill out, such as a 'Description', allowing for search and quick retrieval of relevant details.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And all this I get now for almost no effort. Claude just knows how to deal with things.  &lt;/p&gt;

&lt;p&gt;This is the closest to 'J.A.R.V.I.S.' I've been able to get, one of my goals :)&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%2Fiyrzz2hpqk10276q92wp.jpg" 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%2Fiyrzz2hpqk10276q92wp.jpg" alt="Image of ironman helmet" width="500" height="352"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  A Real Example: The MCP Server Saga
&lt;/h2&gt;

&lt;p&gt;Let me share a concrete example that shows the before and after.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Task:&lt;/strong&gt; Build a Remote MCP Server compatible with Anthropic's specifications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Without UCM (Days of pain):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Day 1: Claude builds NodeJS server → Incompatible with NextJS
Day 2: Rebuild for NextJS → Doesn't follow MCP protocol standards  
Day 3: Add Anthropic MCP SDK → SDK incompatible with NextJS
Day 4: Build custom adapter → Partial success, still buggy
Day 5: Discover 'mcp-handler' package → Finally works!
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Many days of trial and error, wrong turns, and... let's say "colorful" feedback to Claude.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Next time, With my published guidance in the UCM (30 minutes):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Me: "Hi Claude, build a Remote MCP Server. Check UCM for implementation guidance."
Claude: *Reads stored guidance, finds mcp-handler solution, generates working code*
Result: Working server in first attempt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Check it out here: &lt;a href="https://ucm.utaba.ai/browse/utaba/main/guidance/development/nextjs-remote-mcp-server.md" rel="noopener noreferrer"&gt;nextjs-remote-mcp-server.md&lt;/a&gt; and here &lt;a href="https://ucm.utaba.ai/browse/utaba/main/implementations/remote-mcp-server/route.ts" rel="noopener noreferrer"&gt;route.ts&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Claude remembers your history
&lt;/h2&gt;

&lt;p&gt;I got a little frustrated with having to repeat myself, you know even a Junior Dev get's it after some practice, but not Claude.  &lt;strong&gt;That's solved now.&lt;/strong&gt;&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%2Fgik3dq02k1kbopycdei5.jpg" 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%2Fgik3dq02k1kbopycdei5.jpg" alt="Image of Claude Desktop reading recent history and acting intelligently" width="600" height="287"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Game Changer: Shared Knowledge
&lt;/h2&gt;

&lt;p&gt;Here's the powerful part - I documented that entire MCP server solution in UCM's public repository. &lt;/p&gt;

&lt;p&gt;This means other developers can:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Get a &lt;a href="https://ucm.utaba.ai/auth/signup" rel="noopener noreferrer"&gt;free UCM account&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://ucm.utaba.ai/guides/getting-started" rel="noopener noreferrer"&gt;Add the Remote MCP Connector&lt;/a&gt;: &lt;code&gt;https://ucm.utaba.ai/api/mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Ask their AI to check the Utaba repository for MCP guidance&lt;/li&gt;
&lt;li&gt;Build a working Remote MCP Server immediately&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No more three-day debugging sessions. No more reinventing solutions.&lt;/p&gt;

&lt;h2&gt;
  
  
  Building a Community
&lt;/h2&gt;

&lt;p&gt;The vision extends beyond personal productivity. Imagine a community where developers share battle-tested guidance:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Security patterns&lt;/strong&gt; that prevent common vulnerabilities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Architecture decisions&lt;/strong&gt; that scale properly
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Integration solutions&lt;/strong&gt; for complex scenarios&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Best practices&lt;/strong&gt; that actually work in production&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Currently, UCM accounts are private (you access your guidance plus public Utaba patterns). But I'm exploring public repositories - carefully, because we all know the security implications.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next?
&lt;/h2&gt;

&lt;p&gt;I'm looking for developers who want to try this approach. There's a free tier that will always exist, plus I'm offering free paid subscriptions for anyone willing to test the system and provide feedback.&lt;/p&gt;

&lt;p&gt;The goal isn't to replace your development skills - it's to amplify them. When your AI has consistent, tested guidance, you spend time solving business problems instead of debugging inconsistent generated code.  &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;More importantly, you get a &lt;strong&gt;code base&lt;/strong&gt; built on standards, that is &lt;strong&gt;cohesive&lt;/strong&gt; and &lt;strong&gt;consistent&lt;/strong&gt;. &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Connect to the UCM and become a true orchestrator of AI Development.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Want to try it?&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Grab a &lt;a href="https://ucm.utaba.ai/auth/signup" rel="noopener noreferrer"&gt;free UCM account&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://ucm.utaba.ai/guides/getting-started" rel="noopener noreferrer"&gt;Add the Remote MCP Connector&lt;/a&gt;: &lt;code&gt;https://ucm.utaba.ai/api/mcp&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Join our Discord for feedback and discussion or to request a free upgrade subscription: &lt;a href="https://discord.gg/ZkVEJvBt" rel="noopener noreferrer"&gt;https://discord.gg/ZkVEJvBt&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Send feedback directly through your AI (yes, really - we built tools for that)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After 30 years of development, I thought I'd seen every productivity tool. Turns out, the missing piece wasn't better AI - it was better context management.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;By Tim Wheeler&lt;/em&gt;, Code Monkey, Solution Architect - Passionate about Tech,  Founder of &lt;a href="https://utaba.ai" rel="noopener noreferrer"&gt;Utaba&lt;/a&gt;.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Tags: #ai #claude #development #aigovernance #productivity #mcp #coding  #contextengineering #anthropic&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
