Agent skill · AI & Agents

skill-developer

Comprehensive guide for creating and managing skills in Claude Code with auto-activation system, following Anthropic's official best practices including the 500-line rule and progressive disclosure pattern.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill skill-developer --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 7
SKILL.md size: 12 KB
Bundled scripts: none
Path: skills/skill-developer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Skill Developer Guide ## Purpose Comprehensive guide for creating and managing skills in Claude Code with auto-activation system, following Anthropic's official best practices including the 500-line rule and progressive disclosure pattern. ## When to Use This Skill Automatically activates when you mention: - Creating or adding skills - Modifying skill triggers or rules - Understanding how skill activation works - Debugging skill activation issues - Working with skill-rules.json - Hook system mechanics - Claude Code best practices - Progressive disclosure - YAML frontmatter - 500-line rule --- ## System Overview ### Two-Hook Architecture **1. UserPromptSubmit Hook** (Proactive Suggestions) - **File**: `.claude/hooks/skill-activation-prompt.ts` - **Trigger**: BEFORE Claude sees user's prompt - **Purpose**: Suggest relevant skills based on keywords + intent patterns - **Method**: Injects formatted reminder as context (stdout → Claude's input) - **Use Cases**: Topic-based skills, implicit work detection **2. Stop Hook - Error Handling Reminder** (Gentle Reminders) - **File**: `.claude/hooks/error-handling-reminder.ts` - **Trigger**: AFTER Claude finishes responding - **Purpose**: Gen

What's inside
Steps it walks through
  1. Purpose
  2. When to Use This Skill
  3. System Overview
  4. Two-Hook Architecture
  5. Configuration File
  6. Skill Types
  7. 1. Guardrail Skills
  8. 2. Domain Skills
  9. Quick Start: Creating a New Skill
  10. Step 1: Create Skill File
  11. Step 2: Add to skill-rules.json
  12. Step 3: Test Triggers
  13. Step 4: Refine Patterns
  14. Step 5: Follow Anthropic Best Practices
Ships with 6 files
  • ADVANCED.md
  • HOOK_MECHANISMS.md
  • PATTERNS_LIBRARY.md
  • SKILL_RULES_REFERENCE.md
  • TRIGGER_TYPES.md
  • TROUBLESHOOTING.md
Commands it runs
echo '{"session_id":"test","prompt":"your test prompt"}' | \
npx tsx .claude/hooks/skill-activation-prompt.ts
cat <<'EOF' | npx tsx .claude/hooks/skill-verification-guard.ts
export SKIP_SKILL_GUARDRAILS=true  # Disables ALL PreToolUse blocks
export SKIP_DB_VERIFICATION=true
export SKIP_ERROR_REMINDER=true
UserPromptSubmit
echo '{"prompt":"test"}' | npx tsx .claude/hooks/skill-activation-prompt.ts
PreToolUse
More from agentic-awesome-skills
All skills →
About this skill
What does the skill-developer skill do?

Comprehensive guide for creating and managing skills in Claude Code with auto-activation system, following Anthropic's official best practices including the 500-line rule and progressive disclosure pattern.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill skill-developer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going