惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MongoDB | Blog
MongoDB | Blog
博客园_首页
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
B
Blog RSS Feed
D
Docker
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
V
V2EX
量子位
雷峰网
雷峰网
月光博客
月光博客
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why Most Custom AI Skills Never Run (And the One Fix)
PromptMaster · 2026-06-20 · via DEV Community

There is a quiet failure mode with AI agent skills that almost everyone hits: you build a custom skill, it looks perfect, and it simply never runs. No error, no warning. It just sits there unused. The reason is remarkably consistent, and so is the fix.

The failure is silent

Unlike a bug that throws an error, a skill that never triggers gives you nothing to debug. You ask for the thing the skill was built for, the agent does something reasonable without it, and you never realize the skill was skipped. That silence is what makes this so common — people do not even know it is happening.

The cause is almost always the description

An agent chooses which skills to use by reading their descriptions and matching them against your request. If the description does not match how you phrased things, the skill is skipped. And most descriptions are written too narrowly — as a label for the task rather than a map of how people ask for it.

"Reviews pull requests" is a label. But you do not always say "pull request." You say "check this," "look this over," "audit my code." None of those match, so the skill never fires.

The one fix

Write the description around the language you actually use, and list the synonyms:

description: Reviews code for bugs, style and security. Use when
  the user asks to review, check, audit or look over code, a pull
  request, a diff, or a specific file.

This matches nearly any natural phrasing of the request. It is the single highest-leverage change you can make to a skill, and it fixes the large majority of "my skill does not work" cases.

How to confirm it is fixed

Test the way you actually talk. Phrase a few casual, natural requests — the way you would on a busy afternoon — and watch whether the skill loads. If a reasonable request misses, add those exact words to the description and try again. A couple of rounds and it fires every time.

Prevent it from the start

The habit that prevents the silent failure entirely: write the description first, before the body, around real phrasing. It forces you to think about when the skill should fire before you think about what it does. Get the trigger right, and all the careful work inside the skill finally gets used.

The bottom line

Most custom skills do not fail because they are badly written. They fail because they are never triggered, and that comes down to one field. Write descriptions around how you actually ask, test with natural phrasing, and your skills stop gathering dust.


Free starter: The format, a working template, and the description technique are all on a free cheat sheet: AI Agent Skills Quick-Start Cheat Sheet

Go deeper: The full guide covers the complete specification, five build walkthroughs, ten production-ready templates, security, and a 30-day plan: AI Agent Skills: The Complete SKILL.md Standard Guide

What is your experience — have your custom skills been firing reliably, or silently sitting unused? Curious to compare notes below.