<?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: Szymon Paluch</title>
    <description>The latest articles on DEV Community by Szymon Paluch (@hculap).</description>
    <link>https://dev.to/hculap</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%2F3672229%2F6d595a9f-c7b9-40a8-8160-75bf30679a1d.png</url>
      <title>DEV Community: Szymon Paluch</title>
      <link>https://dev.to/hculap</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hculap"/>
    <language>en</language>
    <item>
      <title>Better Code with Claude: 4 AI-Powered Plugins for Code Quality</title>
      <dc:creator>Szymon Paluch</dc:creator>
      <pubDate>Sat, 20 Dec 2025 20:54:15 +0000</pubDate>
      <link>https://dev.to/hculap/better-code-with-claude-4-ai-powered-plugins-for-code-quality-38ad</link>
      <guid>https://dev.to/hculap/better-code-with-claude-4-ai-powered-plugins-for-code-quality-38ad</guid>
      <description>&lt;h1&gt;
  
  
  🚀 Better Code with Claude: 4 AI-Powered Plugins for Code Quality
&lt;/h1&gt;

&lt;p&gt;I'm excited to announce &lt;strong&gt;better-code&lt;/strong&gt; (v0.1.0) - a curated collection of Claude Code plugins designed to enforce code quality practices, TDD workflows, performance analysis, and documentation standards.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I Built This
&lt;/h2&gt;

&lt;p&gt;As developers, we often struggle with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;📝 Enforcing TDD discipline across teams&lt;/li&gt;
&lt;li&gt;🐢 Missing performance bottlenecks until production&lt;/li&gt;
&lt;li&gt;📚 Outdated or missing documentation&lt;/li&gt;
&lt;li&gt;🎯 Maintaining consistent code quality&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I built better-code to solve these problems using Claude Code's plugin system.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Inside? 📦
&lt;/h2&gt;

&lt;h3&gt;
  
  
  🧪 tdd-dev (v0.2.1)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Enforce Red→Green→Refactor TDD Cycles&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Tired of tests being an afterthought? This plugin enforces writing tests before implementation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Multiple strictness levels: strict, standard, relaxed&lt;/li&gt;
&lt;li&gt;Supports features, bugs, and refactoring modes&lt;/li&gt;
&lt;li&gt;Real-time feedback on TDD compliance
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;/tdd-dev:start          &lt;span class="c"&gt;# Enable TDD mode&lt;/span&gt;
/tdd-dev:feature &lt;span class="s2"&gt;"add auth"&lt;/span&gt;  &lt;span class="c"&gt;# Write feature with TDD&lt;/span&gt;
/tdd-dev:bug &lt;span class="s2"&gt;"fix #123"&lt;/span&gt;      &lt;span class="c"&gt;# Fix bug with regression test first&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  ⚡ n1-optimizer (v0.1.3)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Detect N+1 Queries &amp;amp; Performance Issues&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;4 parallel agents analyze your codebase across different layers:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it detects:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🗄️ &lt;strong&gt;Database&lt;/strong&gt;: N+1 queries, missing indexes, unbatched writes&lt;/li&gt;
&lt;li&gt;🔧 &lt;strong&gt;Backend&lt;/strong&gt;: O(n²) algorithms, blocking I/O, memory issues&lt;/li&gt;
&lt;li&gt;🎨 &lt;strong&gt;Frontend&lt;/strong&gt;: Re-render loops, large bundles, missing memoization&lt;/li&gt;
&lt;li&gt;🔗 &lt;strong&gt;API&lt;/strong&gt;: Over-fetching, missing pagination, chatty endpoints&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Catches performance issues before they hit production!&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;/n1-optimizer:analyze
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example Output:&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;Analysis Complete

Database Layer: 3 issues found
HIGH: N+1 query in UserService.getOrders()

Backend Layer: 1 issue found
MEDIUM: Sequential awaits could be parallelized

Frontend Layer: 2 issues found
HIGH: Missing React.memo on ExpensiveList

API Layer: 1 issue found
MEDIUM: Missing pagination on /api/products
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  📚 readme-writer (v0.1.0)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Generate Professional READMEs&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Follows PRD-README v1 standard with automated scoring (0-10):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;/readme-writer:generate   &lt;span class="c"&gt;# Generate README from codebase analysis&lt;/span&gt;
/readme-writer:audit      &lt;span class="c"&gt;# Score existing README (0-10)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Audit Score:&lt;/strong&gt; 7/10 ✓ Test 1: What is it? - PASS ✓ Test 2: Is it maintained? - PASS ✗ Test 3: Quick start works&lt;/p&gt;

&lt;h3&gt;
  
  
  📖 doc-master (v0.2.1)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;9 Specialized Documentation Agents&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Diátaxis-structured documentation covering:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;/doc-master:setup       &lt;span class="c"&gt;# Choose framework (Diátaxis/Traditional/Custom)&lt;/span&gt;
/doc-master:generate &lt;span class="s2"&gt;"API"&lt;/span&gt;  &lt;span class="c"&gt;# Generate API documentation&lt;/span&gt;
/doc-master:audit       &lt;span class="c"&gt;# Audit existing docs&lt;/span&gt;
/doc-master:plan        &lt;span class="c"&gt;# Create documentation plan&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Agents include:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;api-docs: REST/GraphQL endpoints, schemas&lt;/li&gt;
&lt;li&gt;backend-docs: Services, data flows, deployment&lt;/li&gt;
&lt;li&gt;frontend-docs: Components, state management&lt;/li&gt;
&lt;li&gt;database-docs: Schema, migrations, ER diagrams&lt;/li&gt;
&lt;li&gt;architecture-docs: System design, ADRs&lt;/li&gt;
&lt;li&gt;test-docs: Test strategy, coverage&lt;/li&gt;
&lt;li&gt;user-guide-docs: Tutorials, help articles&lt;/li&gt;
&lt;li&gt;compliance-docs: Security, audit, regulatory&lt;/li&gt;
&lt;li&gt;mobile-docs: iOS/Android, app stores&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Quick Start ⚡
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# 1. Add the marketplace&lt;/span&gt;
/plugin marketplace add hculap/better-code

&lt;span class="c"&gt;# 2. Install your first plugin&lt;/span&gt;
/plugin &lt;span class="nb"&gt;install &lt;/span&gt;tdd-dev

&lt;span class="c"&gt;# 3. Use it!&lt;/span&gt;
/tdd-dev:start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it! You're now enforcing TDD in your workflow.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Impact
&lt;/h2&gt;

&lt;p&gt;These plugins help teams:&lt;br&gt;
✅ &lt;strong&gt;Ship fewer bugs&lt;/strong&gt; by catching performance issues early&lt;br&gt;
✅ &lt;strong&gt;Maintain better documentation&lt;/strong&gt; (always in sync)&lt;br&gt;
✅ &lt;strong&gt;Enforce testing discipline&lt;/strong&gt; across the team&lt;br&gt;
✅ &lt;strong&gt;Onboard new developers faster&lt;/strong&gt;&lt;br&gt;
✅ &lt;strong&gt;Scale code quality&lt;/strong&gt; across larger projects&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;GitHub Repository:&lt;/strong&gt; &lt;a href="https://github.com/hculap/better-code" rel="noopener noreferrer"&gt;https://github.com/hculap/better-code&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Full documentation at &lt;code&gt;/docs&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Report bugs or request features via Issues&lt;/li&gt;
&lt;li&gt;Join discussions for questions &amp;amp; feedback&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Installation:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Have Claude Code installed&lt;/li&gt;
&lt;li&gt;Run: &lt;code&gt;/plugin marketplace add hculap/better-code&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Install any plugin you want: &lt;code&gt;/plugin install tdd-dev&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

&lt;p&gt;I'm actively developing more plugins for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;API contract testing&lt;/li&gt;
&lt;li&gt;Security scanning
&lt;/li&gt;
&lt;li&gt;Database migration validation&lt;/li&gt;
&lt;li&gt;Component testing strategies&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Community &amp;amp; Feedback
&lt;/h2&gt;

&lt;p&gt;This is just the beginning! I'd love to hear:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;💬 Your feedback on the plugins&lt;/li&gt;
&lt;li&gt;🐛 Bug reports&lt;/li&gt;
&lt;li&gt;💡 Feature requests&lt;/li&gt;
&lt;li&gt;🤝 Community contributions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Drop by the GitHub Discussions&lt;/strong&gt; to share your thoughts and stay updated on what's coming next!&lt;/p&gt;




&lt;p&gt;Have you tried Claude Code plugins before? What would you like to see in developer tools? Drop a comment below! 👇&lt;/p&gt;

</description>
      <category>claude</category>
      <category>plugins</category>
      <category>tdd</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
