<?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: assaf baruch</title>
    <description>The latest articles on DEV Community by assaf baruch (@asfbar).</description>
    <link>https://dev.to/asfbar</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%2F4069241%2F85678e70-b666-4935-ae7c-e75f2b9d700f.png</url>
      <title>DEV Community: assaf baruch</title>
      <link>https://dev.to/asfbar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/asfbar"/>
    <language>en</language>
    <item>
      <title>Your Claude Code Skill Never Fires — and It's Not the Skill's Fault</title>
      <dc:creator>assaf baruch</dc:creator>
      <pubDate>Sat, 08 Aug 2026 20:39:09 +0000</pubDate>
      <link>https://dev.to/asfbar/your-claude-code-skill-never-fires-and-its-not-the-skills-fault-2mpg</link>
      <guid>https://dev.to/asfbar/your-claude-code-skill-never-fires-and-its-not-the-skills-fault-2mpg</guid>
      <description>&lt;p&gt;I manage a dev team, and we've been running Claude Code daily for months. I built a set of custom skills for us — code review, a debugging protocol, our team conventions — and the biggest lesson I learned surprised me:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The body of your skill barely matters if the description is wrong.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The failure mode nobody warns you about
&lt;/h2&gt;

&lt;p&gt;Here's what happens to most developers who discover skills. They get excited, write a detailed 200-line SKILL.md encoding everything they know about code review... and then it never triggers. Not once. They conclude skills "don't really work" and go back to re-typing the same prompt every session.&lt;/p&gt;

&lt;p&gt;The skill was probably fine. The description killed it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The description is a routing rule, not documentation
&lt;/h2&gt;

&lt;p&gt;A skill's description is the &lt;strong&gt;only&lt;/strong&gt; part Claude sees upfront. The full instructions load only after the description matches your request. So the description isn't marketing copy — it's a routing rule, and it needs to be written like one.&lt;/p&gt;

&lt;p&gt;Compare:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="c1"&gt;# WEAK — reads nicely, never triggers&lt;/span&gt;
&lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Helps with code quality and best practices.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="c1"&gt;# STRONG — names the situations AND the phrasings&lt;/span&gt;
&lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Security-first code review for Python/FastAPI.&lt;/span&gt;
  &lt;span class="s"&gt;Trigger when the user asks to "review", "check", or&lt;/span&gt;
  &lt;span class="s"&gt;"look at" code, pastes a function or endpoint, mentions&lt;/span&gt;
  &lt;span class="s"&gt;a bug, or asks "what's wrong with this". Also trigger&lt;/span&gt;
  &lt;span class="s"&gt;on short requests like "review this".&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The difference: the strong version contains the actual words you type. Including the lazy ones. Nobody writes "please perform a comprehensive quality assessment" at 11pm — they write "review this". If your description doesn't cover the two-word tired version, your skill sleeps through most of your real requests.&lt;/p&gt;

&lt;h2&gt;
  
  
  Three rules that fixed my skills
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. List your real trigger phrases.&lt;/strong&gt; Open your chat history and look at how you &lt;em&gt;actually&lt;/em&gt; phrase requests. Those exact phrases go in the description — "fix it", "what's wrong here", "check this". Your real vocabulary, not your professional vocabulary.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Name the artifacts, not just the verbs.&lt;/strong&gt; "When the user pastes Python code", "when a stack trace appears", "when a diff is shared". Half my requests don't contain a verb at all — I just paste code. The description has to catch that.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Draw the boundary.&lt;/strong&gt; Say what the skill is &lt;em&gt;not&lt;/em&gt; for: "not for writing new features — that's handled by the builder skill". Without boundaries, overlapping skills shadow each other and you get the wrong specialist answering.&lt;/p&gt;

&lt;h2&gt;
  
  
  Test it like code
&lt;/h2&gt;

&lt;p&gt;My rule now: after writing a skill, open a fresh session and make five requests the way I'd naturally type them — tired, abbreviated, mid-task. If the skill fires on four out of five, it ships. If not, the description needs more of my real phrasing, not more adjectives.&lt;/p&gt;

&lt;p&gt;Treat every miss as a bug. The fix is almost always adding one more real-world phrasing to the description.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I packaged everything I learned building skills for my team — the anatomy, five battle-tested patterns, a complete production-ready security-review skill, and the seven mistakes I made — into a short field guide: &lt;a href="https://asfbar.gumroad.com/l/vqfdcy" rel="noopener noreferrer"&gt;Stop Prompting. Start Building Claude Code Skills&lt;/a&gt;. Happy to answer skill-building questions in the comments either way.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>programming</category>
      <category>claude</category>
    </item>
  </channel>
</rss>
