<?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: Praneeth Kumar</title>
    <description>The latest articles on DEV Community by Praneeth Kumar (@praneeth54).</description>
    <link>https://dev.to/praneeth54</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%2F4060157%2Ff9f8c0d4-f1a4-4c9b-bafe-e8c47729581e.png</url>
      <title>DEV Community: Praneeth Kumar</title>
      <link>https://dev.to/praneeth54</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/praneeth54"/>
    <language>en</language>
    <item>
      <title>Your AI Coding Agent Might Be Making Your Repository Less Secure (I Built a Tool to Check)</title>
      <dc:creator>Praneeth Kumar</dc:creator>
      <pubDate>Mon, 03 Aug 2026 08:28:24 +0000</pubDate>
      <link>https://dev.to/praneeth54/your-ai-coding-agent-might-be-making-your-repository-less-secure-i-built-a-tool-to-check-eig</link>
      <guid>https://dev.to/praneeth54/your-ai-coding-agent-might-be-making-your-repository-less-secure-i-built-a-tool-to-check-eig</guid>
      <description>&lt;h1&gt;
  
  
  Your AI Coding Agent Might Be Making Your Repository Less Secure (I Built a Tool to Check)
&lt;/h1&gt;

&lt;p&gt;Over the last few months, AI coding agents like &lt;strong&gt;Cursor&lt;/strong&gt;, &lt;strong&gt;Claude Code&lt;/strong&gt;, and &lt;strong&gt;Codex&lt;/strong&gt; have become part of many developers' daily workflow.&lt;/p&gt;

&lt;p&gt;They're incredible at generating code, fixing bugs, and accelerating development.&lt;/p&gt;

&lt;p&gt;But while everyone talks about what AI can build...&lt;/p&gt;

&lt;p&gt;Almost nobody talks about &lt;strong&gt;who audits the AI agent configuration itself.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That got me thinking.&lt;/p&gt;

&lt;p&gt;What happens when:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MCP servers have overly broad permissions?&lt;/li&gt;
&lt;li&gt;Sensitive files like &lt;code&gt;.env&lt;/code&gt; are accidentally exposed?&lt;/li&gt;
&lt;li&gt;Multiple instruction files start conflicting with each other?&lt;/li&gt;
&lt;li&gt;AI agents receive inconsistent project guidance?&lt;/li&gt;
&lt;li&gt;Security-sensitive configuration quietly drifts over time?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We lint our code.&lt;/p&gt;

&lt;p&gt;We scan dependencies.&lt;/p&gt;

&lt;p&gt;We audit infrastructure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why aren't we auditing AI coding agent setups?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That question eventually led me to build &lt;strong&gt;AgentDoctor&lt;/strong&gt;.&lt;/p&gt;




&lt;h1&gt;
  
  
  What is AgentDoctor?
&lt;/h1&gt;

&lt;p&gt;AgentDoctor is an open-source CLI that audits AI coding agent configuration inside your repository.&lt;/p&gt;

&lt;p&gt;Instead of using AI to judge your project, AgentDoctor performs &lt;strong&gt;deterministic static analysis&lt;/strong&gt;, making it predictable, explainable, and suitable for CI.&lt;/p&gt;

&lt;p&gt;It currently understands:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cursor&lt;/li&gt;
&lt;li&gt;Claude Code&lt;/li&gt;
&lt;li&gt;Codex&lt;/li&gt;
&lt;li&gt;MCP configuration&lt;/li&gt;
&lt;li&gt;Repository instruction files&lt;/li&gt;
&lt;li&gt;Security configuration&lt;/li&gt;
&lt;li&gt;Repository readiness scoring&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything runs locally.&lt;/p&gt;

&lt;p&gt;No API key.&lt;/p&gt;

&lt;p&gt;No cloud upload.&lt;/p&gt;

&lt;p&gt;No LLM required.&lt;/p&gt;




&lt;h1&gt;
  
  
  Why deterministic?
&lt;/h1&gt;

&lt;p&gt;One thing I wanted from the beginning was predictable output.&lt;/p&gt;

&lt;p&gt;If the same repository is scanned twice, the result should be identical.&lt;/p&gt;

&lt;p&gt;That's why AgentDoctor doesn't ask another AI model to "review" your repository.&lt;/p&gt;

&lt;p&gt;Instead it evaluates explicit rules.&lt;/p&gt;

&lt;p&gt;That makes it reliable enough for automation and CI pipelines.&lt;/p&gt;




&lt;h1&gt;
  
  
  Example
&lt;/h1&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx @praneeth_54/agentdoctor scan
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Example output:&lt;/p&gt;

&lt;p&gt;(Add your screenshot here)&lt;/p&gt;




&lt;h1&gt;
  
  
  Current Features
&lt;/h1&gt;

&lt;p&gt;✅ Detects Cursor, Claude Code &amp;amp; Codex&lt;/p&gt;

&lt;p&gt;✅ Repository readiness scoring&lt;/p&gt;

&lt;p&gt;✅ Security rule checks&lt;/p&gt;

&lt;p&gt;✅ MCP validation&lt;/p&gt;

&lt;p&gt;✅ AI instruction validation&lt;/p&gt;

&lt;p&gt;✅ JSON reports for CI&lt;/p&gt;

&lt;p&gt;✅ GitHub Action support&lt;/p&gt;

&lt;p&gt;✅ Deterministic static analysis&lt;/p&gt;




&lt;h1&gt;
  
  
  Why I Open-Sourced It
&lt;/h1&gt;

&lt;p&gt;I believe AI coding tools will become part of every software project.&lt;/p&gt;

&lt;p&gt;As that happens, repositories will need tooling that checks AI-specific configuration just like we already check code quality.&lt;/p&gt;

&lt;p&gt;Making AgentDoctor open source allows developers to inspect how detections work, contribute new rules, and help shape the project.&lt;/p&gt;




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

&lt;p&gt;I'm currently working on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;More repository rules&lt;/li&gt;
&lt;li&gt;Better framework detection&lt;/li&gt;
&lt;li&gt;More AI agent support&lt;/li&gt;
&lt;li&gt;VS Code extension&lt;/li&gt;
&lt;li&gt;Automatic fixes&lt;/li&gt;
&lt;li&gt;Improved scoring&lt;/li&gt;
&lt;li&gt;Additional security checks&lt;/li&gt;
&lt;/ul&gt;




&lt;h1&gt;
  
  
  I'd Love Your Feedback
&lt;/h1&gt;

&lt;p&gt;This project is still in beta, and I'm actively improving it.&lt;/p&gt;

&lt;p&gt;If you use Cursor, Claude Code, Codex, or any other AI coding assistant, I'd love to hear:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What repository problems have you experienced?&lt;/li&gt;
&lt;li&gt;What checks should AgentDoctor add next?&lt;/li&gt;
&lt;li&gt;What would make a tool like this useful in your workflow?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;⭐ GitHub:&lt;br&gt;
&lt;a href="https://github.com/pranee54/AgentDoctor" rel="noopener noreferrer"&gt;https://github.com/pranee54/AgentDoctor&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;📦 npm:&lt;br&gt;
&lt;a href="https://www.npmjs.com/package/@praneeth_54/agentdoctor" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/@praneeth_54/agentdoctor&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading! If you find the project interesting, feedback and contributions are always welcome.&lt;/p&gt;

</description>
      <category>typescript</category>
      <category>opensource</category>
      <category>ai</category>
      <category>security</category>
    </item>
  </channel>
</rss>
