<?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: Animesh Yadav</title>
    <description>The latest articles on DEV Community by Animesh Yadav (@animesh94).</description>
    <link>https://dev.to/animesh94</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%2F4013764%2Fbc173902-202d-4919-8af3-38eb0d6ebb57.png</url>
      <title>DEV Community: Animesh Yadav</title>
      <link>https://dev.to/animesh94</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/animesh94"/>
    <language>en</language>
    <item>
      <title>𝐈’𝐦 𝐨𝐟𝐟𝐢𝐜𝐢𝐚𝐥𝐥𝐲 𝐨𝐩𝐞𝐧-𝐬𝐨𝐮𝐫𝐜𝐢𝐧𝐠 𝐎𝐧𝐛𝐨𝐚𝐫𝐝-𝐂𝐋𝐈!</title>
      <dc:creator>Animesh Yadav</dc:creator>
      <pubDate>Sat, 04 Jul 2026 13:33:24 +0000</pubDate>
      <link>https://dev.to/animesh94/--1k0</link>
      <guid>https://dev.to/animesh94/--1k0</guid>
      <description>&lt;p&gt;𝐎𝐧𝐛𝐨𝐚𝐫𝐝-𝐂𝐋𝐈 𝐢𝐬 𝐚 𝐥𝐨𝐜𝐚𝐥-𝐟𝐢𝐫𝐬𝐭, 𝐬𝐭𝐚𝐧𝐝𝐚𝐥𝐨𝐧𝐞 𝐭𝐨𝐨𝐥 designed to enforce architectural boundaries and map system dependencies directly in your terminal, blocking bad code long before it ever hits a PR review.&lt;/p&gt;

&lt;p&gt;Check out the repository, drop a ⭐ to support the launch, and view the contribution guidelines here: &lt;a href="https://github.com/animesh-94/Onboard-CLI" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;br&gt;
Website Link: &lt;a href="https://onboard-cli.vercel.app/" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Calling all open-source developers, backend engineers, and systems enthusiasts:&lt;br&gt;
The project is officially open to the community, and I am looking for contributors to help scale it. Whether you want to optimize the Go concurrency models, expand Tree-sitter support for more languages, or test the limits of the parsing engine, I would love your feedback and code.&lt;/p&gt;

&lt;p&gt;Let’s build a high-performance standard for code architecture together.&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>cli</category>
      <category>opensource</category>
      <category>showdev</category>
    </item>
    <item>
      <title>How I built a Go CLI to parse 50k files in &lt;10s and stop architectural drift</title>
      <dc:creator>Animesh Yadav</dc:creator>
      <pubDate>Fri, 03 Jul 2026 14:58:49 +0000</pubDate>
      <link>https://dev.to/animesh94/how-i-built-a-go-cli-to-parse-50k-files-in-10s-and-stop-architectural-drift-34el</link>
      <guid>https://dev.to/animesh94/how-i-built-a-go-cli-to-parse-50k-files-in-10s-and-stop-architectural-drift-34el</guid>
      <description>&lt;p&gt;You know the feeling. You jump into a massive, legacy monorepo, and instead of writing code, you spend two weeks trying to figure out which microservice talks to what. The original architecture is either lost to "spaghetti dependencies" or hidden in an outdated Confluence document.&lt;/p&gt;

&lt;p&gt;I wanted a tool to automatically enforce boundaries and map this out. The problem? Existing tools were either painfully slow (relying on regex) or used LLMs that hallucinated system relationships. I needed something blazing fast and 100% deterministic. So, I built Onboard-CLI.&lt;/p&gt;

&lt;p&gt;What is Onboard-CLI? &lt;br&gt;
Onboard-CLI is a local-first, standalone binary that maps your codebase's architecture and blocks dependencies that violate your established boundaries—before they ever hit a PR review.&lt;/p&gt;

&lt;p&gt;You can check out the source code and try it locally: &lt;a href="https://github.com/animesh-94/Onboard-CLI" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://onboard-cli.vercel.app/docs/getting-started" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The Tech Stack (and why I chose it) &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Go for Concurrency&lt;br&gt;
I needed raw speed. Go’s concurrent worker pools allowed me to engineer the CLI to rip through massive codebases—analyzing over 50,000 files in under 10 seconds.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Tree-sitter for AST Parsing&lt;br&gt;
I completely avoided AI and regex. Instead, Onboard-CLI uses Tree-sitter to parse the Abstract Syntax Tree (AST) of the code. This means it maps the actual structural dependencies with 100% accuracy without ever executing the code.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;How it works in practice&lt;br&gt;
The workflow is designed to be completely invisible until you make a mistake:&lt;/p&gt;

&lt;p&gt;Define: You define your architectural rules in a simple architecture.yaml file (e.g., "The UI component cannot directly call the Database layer").&lt;/p&gt;

&lt;p&gt;Hook: The CLI runs as a local Git hook.&lt;/p&gt;

&lt;p&gt;Enforce: If you try to commit code that violates the YAML rules, the CLI blocks the commit and shows you exactly where the architectural drift occurred.&lt;/p&gt;

&lt;p&gt;Because it's a standalone binary, your proprietary code never leaves your local machine.&lt;/p&gt;

&lt;p&gt;I need your feedback! &lt;br&gt;
I am actively looking to break this tool and find its limits. Since I'm transitioning into the industry soon, getting real-world edge cases from senior engineers is incredibly valuable to me.&lt;/p&gt;

&lt;p&gt;How does your team currently handle architectural decay?&lt;/p&gt;

&lt;p&gt;Have you run into specific edge cases with Tree-sitter parsing?&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>go</category>
      <category>architecture</category>
      <category>devjournal</category>
    </item>
  </channel>
</rss>
