Skip to content

Skills (Agent Skills / Claude Skills)

Skills provide AI agents with reusable specialized knowledge, procedures, and scripts. This page organizes related articles by category.

Start here


Key Takeaways

  • Skills essence: Reusable "instruction packages" for agents
  • Design core: Script deterministic processing in scripts/, use text for AI judgment
  • Trigger design: description is the most critical element for trigger conditions

Core Design Principles

Principle 1: Script Deterministic Processing

Processing TypeShould Script?Reason
Character/line countingRequiredSame result needed every time
Syntax/format checkingRequiredDetect all items without omission
File conversionRecommendedOutput format consistency
Text editing/reviewNot neededAI judgment appropriate
Design/structure evaluationNot neededContext understanding required

Principle 2: Prioritize Conciseness

Claude is already very smart—only add information Claude doesn't inherently have.

Principle 3: Progressive Disclosure

  1. Level 1: Metadata (~100 tokens, always loaded)
  2. Level 2: SKILL.md body (<5000 tokens, on trigger)
  3. Level 3: Bundled resources (unlimited, on demand)

Article Map

Introduction & Concepts

ArticleAudienceContent
Agent Skills QuickstartBeginnerpre-built vs SKILL.md (3 min)
Claude Skills Complete GuideBeginner-IntermediateMechanisms, use cases, security

Implementation & Development

ArticleAudienceContent
Agent Skills GuideIntermediateSKILL.md writing, trigger design
skill-creator Complete GuideIntermediateDialog-based generation
Description Design GuideIntermediateWhy Skills don't fire and how to fix it
Claude Skills API ImplementationAdvancedProduction, error handling

Comparison & Selection

ArticleAudienceContent
Skills vs Projects ComparisonIntermediateWhich to use
pre-built vs CustomBeginnerUsage guide

Practice & Use Cases

ArticleAudienceContent
Practical Use CasesIntermediateWhere it works, benefits, measurement
Installation Guide (10 Examples)Beginner-IntermediateFinding skills, safety checklist

Learning Path

graph LR
    A[Quickstart<br/>3-min overview] --> B[Complete Guide<br/>Understanding]
    B --> C{Goal}
    C -->|Create| D[skill-creator<br/>Guide]
    C -->|Install| E[Installation<br/>Guide]
    C -->|Use API| F[API Implementation<br/>Guide]
    D --> G[Practical<br/>Use Cases]
    E --> G
  1. Grasp concepts: Claude Skills Complete Guide
  2. Create Skills: skill-creator Complete Guide
  3. Apply in practice: Practical Use Cases


Tags & Navigation

  • Tag: pillar-skills