<?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: Artur Schaback</title>
    <description>The latest articles on DEV Community by Artur Schaback (@skyzer).</description>
    <link>https://dev.to/skyzer</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%2F3850037%2F8651604d-7f79-4b80-a9e4-6d18e5ff6a37.png</url>
      <title>DEV Community: Artur Schaback</title>
      <link>https://dev.to/skyzer</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/skyzer"/>
    <language>en</language>
    <item>
      <title>I built a Claude Code skill that strips AI slop from writing and adds soul back in</title>
      <dc:creator>Artur Schaback</dc:creator>
      <pubDate>Wed, 01 Apr 2026 10:59:51 +0000</pubDate>
      <link>https://dev.to/skyzer/i-built-a-claude-code-skill-that-strips-ai-slop-from-writing-and-adds-soul-back-in-58i6</link>
      <guid>https://dev.to/skyzer/i-built-a-claude-code-skill-that-strips-ai-slop-from-writing-and-adds-soul-back-in-58i6</guid>
      <description>&lt;h1&gt;
  
  
  I built a Claude Code skill that strips AI slop from writing — and adds soul back in
&lt;/h1&gt;

&lt;p&gt;Wikipedia's editors maintain a guide called &lt;a href="https://en.wikipedia.org/wiki/Wikipedia:Signs_of_AI_writing" rel="noopener noreferrer"&gt;Signs of AI writing&lt;/a&gt;. It catalogs patterns observed across thousands of AI-generated texts. NPR, TechCrunch, and FlowingData have all called it the best reference for spotting machine-written prose.&lt;/p&gt;

&lt;p&gt;The patterns are painfully recognizable once you see them.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"In today's rapidly evolving digital landscape, organizations are leveraging robust AI solutions to foster innovation and drive sustainable growth."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's not a sentence. That's a random walk through the top 20 AI vocabulary words.&lt;/p&gt;

&lt;p&gt;Existing tools use the Wikipedia guide to detect and strip these patterns — banned phrases, structural clichés, sentence-level rules. They do detection and removal. They strip the bad stuff out.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;deslop-the-copy goes further.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Three passes, not two
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Pass 1: Kill AI patterns
&lt;/h3&gt;

&lt;p&gt;Four categories of tells, removed on sight:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Content patterns&lt;/strong&gt; — significance inflation ("stands as a testament"), promotional language ("groundbreaking", "nestled in the heart of"), vague attributions ("experts argue"), formulaic conclusions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Language patterns&lt;/strong&gt; — the full AI vocabulary list (robust, leverage, navigate, landscape, paradigm, delve, foster, synergy), copula avoidance ("serves as" instead of just "is"), negative parallelisms ("it's not just about X, it's about Y"), rule-of-three overuse, synonym cycling, filler phrases.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Style patterns&lt;/strong&gt; — em dash overuse (zero tolerance, not even one), boldface overuse, inline-header vertical lists, Title Case headings, emojis in headings.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Communication artifacts&lt;/strong&gt; — chatbot language ("I hope this helps!"), knowledge-cutoff disclaimers, sycophancy, meta-signposting ("let's explore", "here's the thing").&lt;/p&gt;

&lt;h3&gt;
  
  
  Pass 2: Add soul
&lt;/h3&gt;

&lt;p&gt;This is the part other tools skip. After stripping the AI patterns, the text can be clean but lifeless. Pass 2 makes it human:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Vary sentence rhythm aggressively — mix 3-word fragments with 25-word sentences&lt;/li&gt;
&lt;li&gt;Add opinions where appropriate&lt;/li&gt;
&lt;li&gt;Use contractions everywhere (scan every sentence, contract what a native speaker would)&lt;/li&gt;
&lt;li&gt;Start sentences with And, But, So&lt;/li&gt;
&lt;li&gt;Leave rough edges and trust the reader&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Pass 3: Final audit
&lt;/h3&gt;

&lt;p&gt;One question: "What would make someone suspect AI wrote this?" Fix anything that still feels off. Zero em dashes, contractions in place, meaning preserved.&lt;/p&gt;

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

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

&lt;blockquote&gt;
&lt;p&gt;In today's rapidly evolving digital landscape, artificial intelligence stands as a transformative force that is fundamentally reshaping how businesses navigate the complexities of modern commerce. From small startups to large enterprises, organizations are leveraging robust AI solutions to enhance their operational efficiency, foster innovation, and drive sustainable growth. It's not just about automation — it's about reimagining what's possible.&lt;/p&gt;
&lt;/blockquote&gt;

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

&lt;blockquote&gt;
&lt;p&gt;AI is changing how businesses work. Companies of all sizes are using it to cut costs, speed up processes, and try things they couldn't before. That matters. But we're still figuring out the real risks, and not everyone benefits equally.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Install it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; ~/.claude/skills
git clone https://github.com/skyzer/deslop-the-copy.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then just tell Claude: "deslop this" or "make this not sound like AI."&lt;/p&gt;

&lt;p&gt;Open source, MIT licensed: &lt;a href="https://github.com/skyzer/deslop-the-copy" rel="noopener noreferrer"&gt;github.com/skyzer/deslop-the-copy&lt;/a&gt;&lt;/p&gt;

</description>
      <category>claudecode</category>
      <category>ai</category>
      <category>writing</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
