<?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: Sriram Sureshkumar</title>
    <description>The latest articles on DEV Community by Sriram Sureshkumar (@sriram7).</description>
    <link>https://dev.to/sriram7</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%2F1230468%2Fc5456cd5-7882-4ac8-8f4c-430eabc7965b.jpeg</url>
      <title>DEV Community: Sriram Sureshkumar</title>
      <link>https://dev.to/sriram7</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sriram7"/>
    <language>en</language>
    <item>
      <title>How to Migrate from Cursor Rules to Agent Skills</title>
      <dc:creator>Sriram Sureshkumar</dc:creator>
      <pubDate>Fri, 19 Jun 2026 23:10:00 +0000</pubDate>
      <link>https://dev.to/sriram7/how-to-migrate-from-cursor-rules-to-agent-skills-1cl7</link>
      <guid>https://dev.to/sriram7/how-to-migrate-from-cursor-rules-to-agent-skills-1cl7</guid>
      <description>&lt;p&gt;&lt;strong&gt;Agent Skills&lt;/strong&gt; are the open standard (&lt;a href="https://agentskills.io" rel="noopener noreferrer"&gt;agentskills.io&lt;/a&gt;) for packaging team-specific instructions that any AI coding tool can discover.&lt;/p&gt;

&lt;p&gt;Migrating from hand-maintained Cursor rules means moving from static markdown you write once to structured, evidence-ranked intelligence your team already enforced in PR review — and (optionally) letting tooling generate the skill automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why migrate?
&lt;/h2&gt;

&lt;p&gt;Cursor rules live only in Cursor's tree. Copilot wants &lt;code&gt;.github/copilot-instructions.md&lt;/code&gt;. Claude Code reads &lt;code&gt;CLAUDE.md&lt;/code&gt;. Maintaining the same conventions in four places doesn't scale.&lt;/p&gt;

&lt;p&gt;Agent Skills provide one portable package. See &lt;a href="https://codehabits.dev/blog/what-are-agent-skills" rel="noopener noreferrer"&gt;what are Agent Skills&lt;/a&gt; for the full picture.&lt;/p&gt;

&lt;h2&gt;
  
  
  What you're migrating from
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Legacy &lt;code&gt;.cursorrules&lt;/code&gt; or &lt;code&gt;.cursor/rules/*.mdc&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Ad-hoc pasted instructions in chat&lt;/li&gt;
&lt;li&gt;CONTRIBUTING.md sections nobody reads&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What you're migrating to
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;.codehabits/conventions.json&lt;/code&gt; — structured, confidence-ranked&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;.cursor/skills/codehabits-team-intel/SKILL.md&lt;/code&gt; — Agent Skill auto-discovered by Cursor and compatible tools&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;AGENTS.md&lt;/code&gt; — fallback for agents that read AGENTS.md&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Migration path (manual audit + auto-generate)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Audit existing rules
&lt;/h3&gt;

&lt;p&gt;Export your current &lt;code&gt;.cursor/rules&lt;/code&gt; files. Mark each rule as either:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Evidence-backed&lt;/strong&gt; — appears in PR review&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Aspirational&lt;/strong&gt; — you wish the team did it but PRs don't enforce it&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Automated extraction handles evidence-backed patterns; keep aspirational rules as short manual additions if needed.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Run Codehabits enable
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx @codehabits/cli login
npx @codehabits/cli &lt;span class="nb"&gt;enable&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Compare generated conventions against your audit. You'll often find rules you forgot to document — and gaps where your written rules didn't match PR reality.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Commit intelligence to git
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git add .codehabits/ .cursor/skills/ AGENTS.md
git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"chore: migrate team conventions to Agent Skills"&lt;/span&gt;
git push
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  4. Deprecate duplicate rule files
&lt;/h3&gt;

&lt;p&gt;Remove or slim down hand-written rules that now live in the generated skill. Keep only temporary or project-specific rules in &lt;code&gt;.cursor/rules/&lt;/code&gt;. Document the change in your team channel so engineers know to pull latest.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Keep intelligence fresh
&lt;/h3&gt;

&lt;p&gt;Set up &lt;a href="https://codehabits.dev/docs/ci" rel="noopener noreferrer"&gt;CI auto-sync&lt;/a&gt; so merged PRs update conventions and regenerate the skill. Manual rules drift; PR-derived intelligence compounds.&lt;/p&gt;

&lt;h2&gt;
  
  
  Before and after
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Hand-written Cursor rules&lt;/th&gt;
&lt;th&gt;Codehabits Agent Skills&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;You write and maintain&lt;/td&gt;
&lt;td&gt;Extracted from PR evidence&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cursor-only&lt;/td&gt;
&lt;td&gt;Portable across 16+ tools&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Static until someone edits&lt;/td&gt;
&lt;td&gt;Syncs after each merged PR&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;No confidence scores&lt;/td&gt;
&lt;td&gt;Ranked by review frequency&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Related guides
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://codehabits.dev/blog/cursor-rules-not-working" rel="noopener noreferrer"&gt;Cursor rules not working? Common fixes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://codehabits.dev/blog/ai-coding-tools-team-conventions" rel="noopener noreferrer"&gt;Configure every major AI tool for team conventions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://codehabits.dev/docs/quickstart" rel="noopener noreferrer"&gt;Codehabits quickstart&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://codehabits.dev/blog/migrate-cursor-rules-to-agent-skills" rel="noopener noreferrer"&gt;codehabits.dev&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>cursor</category>
      <category>ai</category>
      <category>agents</category>
      <category>agentskills</category>
    </item>
    <item>
      <title>Setting Up the Codehabits MCP Server in Cursor (5 Minutes)</title>
      <dc:creator>Sriram Sureshkumar</dc:creator>
      <pubDate>Wed, 17 Jun 2026 23:08:00 +0000</pubDate>
      <link>https://dev.to/sriram7/setting-up-the-codehabits-mcp-server-in-cursor-5-minutes-4h42</link>
      <guid>https://dev.to/sriram7/setting-up-the-codehabits-mcp-server-in-cursor-5-minutes-4h42</guid>
      <description>&lt;p&gt;The &lt;strong&gt;Codehabits MCP server&lt;/strong&gt; gives Cursor six tools that read from &lt;code&gt;.codehabits/&lt;/code&gt; in your repo — convention lookup, code validation, domain knowledge, reviewer suggestions, and a feedback loop for updating conventions.&lt;/p&gt;

&lt;p&gt;Setup takes about five minutes if you already ran &lt;code&gt;codehabits enable&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Node.js 20+&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;.codehabits/meta.json&lt;/code&gt; in your repo (from &lt;code&gt;npx @codehabits/cli enable&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Cursor with MCP support enabled&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you don't have intelligence files yet, run enable first — see the &lt;a href="https://codehabits.dev/docs/quickstart" rel="noopener noreferrer"&gt;quickstart&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 1: Install the MCP server
&lt;/h2&gt;

&lt;p&gt;From your repository root:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx @codehabits/cli mcp-install
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This writes to &lt;code&gt;.cursor/mcp.json&lt;/code&gt;. Commit it so teammates get the same config:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git add .cursor/mcp.json
git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"chore: add codehabits MCP server"&lt;/span&gt;
git push
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 2: Restart Cursor
&lt;/h2&gt;

&lt;p&gt;MCP servers load at startup. Fully quit and reopen Cursor (or reload the window) before testing tools.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 3: Verify tools appear
&lt;/h2&gt;

&lt;p&gt;Open Cursor Agent and check that the &lt;strong&gt;codehabits&lt;/strong&gt; MCP server is connected. You should see these tools:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;Purpose&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;get_team_context&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Conventions and anti-patterns&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;check_code&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Validate a snippet against team rules&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;get_knowledge&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Domain knowledge by topic&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;suggest_reviewers&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Expertise-based reviewer routing&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;record_feedback&lt;/code&gt; / &lt;code&gt;approve_proposal&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Propose and merge convention updates&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Full reference: &lt;a href="https://codehabits.dev/docs/mcp" rel="noopener noreferrer"&gt;MCP server documentation&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 4: Use it in practice
&lt;/h2&gt;

&lt;p&gt;Try these prompts in Cursor Agent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;"Use get_team_context for the api scope before writing this endpoint."&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;"Run check_code on this handler before I commit."&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;"Who should review changes to files under src/auth/? Use suggest_reviewers."&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  MCP vs Agent Skills
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://codehabits.dev/docs/agent-skills" rel="noopener noreferrer"&gt;Agent Skills&lt;/a&gt; load passively when Cursor starts a task. MCP tools are explicit lookups — use them when you need validation or knowledge mid-task.&lt;/p&gt;

&lt;p&gt;Most teams enable both: skills for baseline context, MCP for active checks.&lt;/p&gt;

&lt;h2&gt;
  
  
  One-prompt onboarding
&lt;/h2&gt;

&lt;p&gt;The &lt;a href="https://codehabits.dev/agents" rel="noopener noreferrer"&gt;codehabits.dev/agents&lt;/a&gt; page has a bootstrap prompt that runs enable, mcp-install, and reads your intelligence files in one shot. Paste it when onboarding a new repo or teammate.&lt;/p&gt;

&lt;h2&gt;
  
  
  Troubleshooting
&lt;/h2&gt;

&lt;p&gt;If tools return &lt;em&gt;"No intelligence data available,"&lt;/em&gt; confirm &lt;code&gt;.codehabits/&lt;/code&gt; exists and the MCP server's working directory is your repo root. Run &lt;code&gt;codehabits enable&lt;/code&gt; if files are missing.&lt;/p&gt;

&lt;p&gt;Common fixes:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Symptom&lt;/th&gt;
&lt;th&gt;Fix&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Server not listed&lt;/td&gt;
&lt;td&gt;Restart Cursor after editing &lt;code&gt;mcp.json&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Wrong conventions&lt;/td&gt;
&lt;td&gt;Check MCP &lt;code&gt;cwd&lt;/code&gt; is repo root, not a subfolder&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Stale rules&lt;/td&gt;
&lt;td&gt;Run &lt;code&gt;npx @codehabits/cli sync&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  What is Codehabits?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://codehabits.dev" rel="noopener noreferrer"&gt;Codehabits&lt;/a&gt; extracts team coding conventions from GitHub PR history and delivers them to AI tools via Agent Skills and MCP — so your whole team shares the same evidence-backed patterns, not hand-maintained rule files.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://codehabits.dev/blog/setup-codehabits-mcp-in-cursor" rel="noopener noreferrer"&gt;codehabits.dev&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>cursor</category>
      <category>mcp</category>
      <category>ai</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Cursor Rules Not Working? Here's Why (And the Fix)</title>
      <dc:creator>Sriram Sureshkumar</dc:creator>
      <pubDate>Mon, 15 Jun 2026 23:04:57 +0000</pubDate>
      <link>https://dev.to/sriram7/cursor-rules-not-working-heres-why-and-the-fix-21bk</link>
      <guid>https://dev.to/sriram7/cursor-rules-not-working-heres-why-and-the-fix-21bk</guid>
      <description>&lt;p&gt;If &lt;strong&gt;Cursor rules aren't working&lt;/strong&gt;, you're not alone. You wrote &lt;code&gt;.cursor/rules&lt;/code&gt; (or a legacy &lt;code&gt;.cursorrules&lt;/code&gt; file) telling the agent to use named exports, Zod validation, and your error-handling pattern — and the agent still generates default exports and skips validation.&lt;/p&gt;

&lt;p&gt;This usually means one of three things:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The rules file is in the wrong place or format&lt;/li&gt;
&lt;li&gt;The rules are too vague for the model to prioritize&lt;/li&gt;
&lt;li&gt;The conventions you wrote don't match what your team &lt;strong&gt;actually&lt;/strong&gt; enforces in PR review&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Cursor rules are static instructions you maintain by hand. They don't learn from your PR history unless you rebuild them constantly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Symptom: Cursor ignores your rules
&lt;/h2&gt;

&lt;p&gt;This is the most common complaint from teams adopting AI coding tools. The agent has strong defaults; your rules compete with open files, chat history, and generic model behavior.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cause 1: Wrong file location or format
&lt;/h2&gt;

&lt;p&gt;Cursor has moved from a single &lt;code&gt;.cursorrules&lt;/code&gt; file to the &lt;code&gt;.cursor/rules/&lt;/code&gt; directory with individual rule files. If your rules live in the old location, newer Cursor versions may not load them consistently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fix:&lt;/strong&gt; Check Cursor's docs for your version and migrate to the current rules directory structure.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cause 2: Rules compete with everything else
&lt;/h2&gt;

&lt;p&gt;Vague rules like "write clean code" lose against strong defaults. Specific, evidence-backed rules work better — but writing them for every convention your team enforces takes hours and drifts out of date.&lt;/p&gt;

&lt;p&gt;I wrote more about this dynamic in &lt;a href="https://codehabits.dev/blog/why-ai-tools-ignore-team-patterns" rel="noopener noreferrer"&gt;why AI tools ignore your team's patterns&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cause 3: Rules don't match PR reality
&lt;/h2&gt;

&lt;p&gt;The gap between what you &lt;em&gt;think&lt;/em&gt; your team does and what PR review actually enforces is large. A rule file written by one engineer often misses conventions that only appear in review comments — the named-export preference, the ban on &lt;code&gt;console.log&lt;/code&gt;, the custom error base class.&lt;/p&gt;

&lt;p&gt;Without PR-derived evidence, rules are guesswork.&lt;/p&gt;

&lt;h2&gt;
  
  
  The fix: evidence-ranked team intelligence
&lt;/h2&gt;

&lt;p&gt;Instead of hand-writing rules forever, extract conventions from merged and closed PRs where your team already enforced them.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://codehabits.dev" rel="noopener noreferrer"&gt;Codehabits&lt;/a&gt; analyzes review comments and code patterns, ranks each convention by confidence, and writes structured intelligence to &lt;code&gt;.codehabits/&lt;/code&gt; plus an &lt;a href="https://codehabits.dev/docs/agent-skills" rel="noopener noreferrer"&gt;Agent Skill&lt;/a&gt; that Cursor auto-discovers:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx @codehabits/cli &lt;span class="nb"&gt;enable
&lt;/span&gt;git add .codehabits/ .cursor/skills/ AGENTS.md
git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"chore: add team intelligence"&lt;/span&gt;
git push
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Teammates clone the repo and Cursor picks up the same skill — no per-developer rule files, no copy-paste.&lt;/p&gt;

&lt;p&gt;(Free for individuals and OSS repos; team workspaces have a trial on &lt;a href="https://codehabits.dev/pricing" rel="noopener noreferrer"&gt;codehabits.dev/pricing&lt;/a&gt;.)&lt;/p&gt;

&lt;h2&gt;
  
  
  When hand-written rules still make sense
&lt;/h2&gt;

&lt;p&gt;Project-specific one-offs (a migration in progress, a temporary API freeze) belong in explicit rules. Team-wide conventions that repeat in every PR belong in intelligence extracted from evidence.&lt;/p&gt;

&lt;p&gt;Use both: keep short-lived rules in &lt;code&gt;.cursor/rules/&lt;/code&gt; and let automated extraction own the long-lived patterns.&lt;/p&gt;

&lt;h2&gt;
  
  
  Next steps
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://codehabits.dev/docs/quickstart" rel="noopener noreferrer"&gt;Quickstart&lt;/a&gt; — enable in ~5 minutes&lt;/li&gt;
&lt;li&gt;&lt;a href="https://codehabits.dev/blog/migrate-cursor-rules-to-agent-skills" rel="noopener noreferrer"&gt;Migrate from Cursor rules to Agent Skills&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://codehabits.dev/blog/setup-codehabits-mcp-in-cursor" rel="noopener noreferrer"&gt;Add MCP for real-time convention checks&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://codehabits.dev/blog/cursor-rules-not-working" rel="noopener noreferrer"&gt;codehabits.dev&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>cursor</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
