<?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: Manuel Fuß – AI Engineering &amp; Agentic Development</title>
    <description>The latest articles on DEV Community by Manuel Fuß – AI Engineering &amp; Agentic Development (@manuelfusstc).</description>
    <link>https://dev.to/manuelfusstc</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%2F3722218%2Fb583ddb6-13f3-482d-87e3-0f372185f78f.jpeg</url>
      <title>DEV Community: Manuel Fuß – AI Engineering &amp; Agentic Development</title>
      <link>https://dev.to/manuelfusstc</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/manuelfusstc"/>
    <language>en</language>
    <item>
      <title>I Built ESLint for Cursor Agent Mode (and learned why packaging matters)</title>
      <dc:creator>Manuel Fuß – AI Engineering &amp; Agentic Development</dc:creator>
      <pubDate>Tue, 20 Jan 2026 17:32:30 +0000</pubDate>
      <link>https://dev.to/manuelfusstc/i-built-eslint-for-cursor-agent-mode-and-learned-why-packaging-matters-27ch</link>
      <guid>https://dev.to/manuelfusstc/i-built-eslint-for-cursor-agent-mode-and-learned-why-packaging-matters-27ch</guid>
      <description>&lt;p&gt;Meh.&lt;/p&gt;

&lt;p&gt;This week I wrapped the same tool as a Cursor Extension. One-click setup instead of npm install.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;274 downloads in 12 hours.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Same product. Different packaging. Completely different result.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem PULSE Solves
&lt;/h2&gt;

&lt;p&gt;Agent Mode in Cursor is powerful. But it has no memory. No awareness of time. No guardrails.&lt;/p&gt;

&lt;p&gt;You start a task, grab coffee, come back 45 minutes later - and the agent went completely off track. Or deleted files. Or committed secrets. Or looped through the same fix 12 times.&lt;/p&gt;

&lt;p&gt;Cursor gives you Rules and MCP. But no system that uses them for actual control.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;PULSE is that system.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Time Control&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tracks time since last checkpoint&lt;/li&gt;
&lt;li&gt;Reminds you after 15 min&lt;/li&gt;
&lt;li&gt;Stops after 30 min without input&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Loop Detection (5 patterns)&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;fix_chain: 3+ "fix" commits in a row&lt;/li&gt;
&lt;li&gt;revert: Reverts in git log&lt;/li&gt;
&lt;li&gt;churn: Same file changed 5+ times&lt;/li&gt;
&lt;li&gt;pendeln: Back and forth between solutions&lt;/li&gt;
&lt;li&gt;fix_no_test: Fix without test changes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Safeguards (6 checks)&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;SECRETS: API keys, passwords → blocked&lt;/li&gt;
&lt;li&gt;PROD_URL: Production URLs → flagged&lt;/li&gt;
&lt;li&gt;MASS_DELETE: File deletions → confirmation&lt;/li&gt;
&lt;li&gt;BIG_CHANGESET: Too many changes → warning&lt;/li&gt;
&lt;li&gt;UNKNOWN_DEPS: New packages → flagged&lt;/li&gt;
&lt;li&gt;CONSOLE_LOG: Debug output → detected&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Scope Presets&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;frontend: 10 files / 250 lines&lt;/li&gt;
&lt;li&gt;backend: 15 files / 400 lines&lt;/li&gt;
&lt;li&gt;fullstack: 15 files / 300 lines&lt;/li&gt;
&lt;li&gt;monorepo: 25 files / 600 lines&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Workflow Tools&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;pulse_run: Creates branch + structured mission&lt;/li&gt;
&lt;li&gt;pulse_status: Time, scope, risk level&lt;/li&gt;
&lt;li&gt;pulse_checkpoint: Commit with validation&lt;/li&gt;
&lt;li&gt;pulse_doctor: Scan + loop detection&lt;/li&gt;
&lt;li&gt;pulse_review: Decision briefing before merge&lt;/li&gt;
&lt;li&gt;pulse_learn: Save solutions for next time&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;Install the extension. Click "Setup Pulse" in the sidebar. Done.&lt;/p&gt;

&lt;p&gt;PULSE creates:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;.cursor/mcp.json&lt;/code&gt; (MCP server config)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;.cursor/rules/pulse.mdc&lt;/code&gt; (Rules with alwaysApply: true)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After that, the agent calls the tools itself. Every message, it checks its status. No manual commands. No terminal switching.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The agent controls itself. You just steer.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Lesson
&lt;/h2&gt;

&lt;p&gt;I spent weeks building a solid CLI. Good docs. Clean architecture. The works.&lt;/p&gt;

&lt;p&gt;Nobody cared.&lt;/p&gt;

&lt;p&gt;Then I spent one day wrapping it as an extension. Same code. Just easier to install.&lt;/p&gt;

&lt;p&gt;274 downloads in half a day.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Friction kills adoption.&lt;/strong&gt; Doesn't matter how good your tool is if people won't try it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Cursor Extension:&lt;/strong&gt; Search "Pulse Framework" in Extensions&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/manuelfussTC/PulseFramework" rel="noopener noreferrer"&gt;github.com/manuelfussTC/PulseFramework&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I'm looking for:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;⭐ Stars if it helps you&lt;/li&gt;
&lt;li&gt;🧪 Feedback on what's missing or broken&lt;/li&gt;
&lt;li&gt;🛠️ Contributors who want to build together&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Open source. MIT license. PRs welcome.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;What's the worst Agent Mode disaster you've had? I'd love to hear your stories in the comments.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>cursor</category>
      <category>ai</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
