Back to list
Falkicon

k-create-skill

by Falkicon

In-game development hub for World of Warcraft addon developers. Centralizes debugging, testing, error capture, and performance monitoring with universal copy support.

8🍴 1📅 Jan 24, 2026

SKILL.md


name: k-create-skill description: > Meta knowledge for creating Claude skills. Provides templates, best practices, and patterns for building effective skills with routing tables and reference files. Load this when creating new skills or understanding the skill system. Triggers: create skill, new skill, skill template, skill architecture, SKILL.md.

Creating Claude Skills

Knowledge for creating and maintaining Claude commands and skills.

Mechanic Skill System

This project uses a three-prefix taxonomy:

PrefixTypePurpose
c-CommandsAction workflows with explicit steps
s-SkillsHow-to knowledge (paired with commands)
k-KnowledgeContext/background (no command needed)

See ../../AGENTS.md for full system documentation.

Creating a New Action

To add a new action (e.g., "deploy"):

  1. Create commands/c-deploy.md with explicit steps
  2. Create skills/s-deploy/SKILL.md with detailed guidance
  3. Add bidirectional links between them

Creating New Knowledge

To add new context (e.g., "blizzard-api"):

  1. Create skills/k-blizzard-api/SKILL.md
  2. No command needed - the skill IS the context loader

Skill Structure

skills/[skill-name]/
├── SKILL.md              # Required: Main skill file
└── references/           # Optional: Supporting documents
    ├── topic1.md
    └── topic2.md

SKILL.md Format

---
name: [prefix]-[name]
description: >
  [What this skill does]. [What content it covers].
  Use when [scenarios]. Triggers: [keyword1], [keyword2], [keyword3].
---

# [Title]

[One-line description]

## Related Commands (for s-* skills only)

- [c-X](../../commands/c-X.md) - [description]

## Capabilities / Key Concepts

1. **[Item 1]** — [Brief description]
2. **[Item 2]** — [Brief description]

## Routing Logic (optional)

| Request type | Load reference |
|--------------|----------------|
| [Topic] | [references/file.md](references/file.md) |

Core Principles

1. Progressive Loading

Skills load in stages:

  • Stage 1: Name + description (always loaded)
  • Stage 2: SKILL.md body (when skill is relevant)
  • Stage 3: References (only when explicitly needed)

Design for minimal initial context, deep references.

2. Clear Triggers

Description should include trigger words that help Claude know when to use this skill.

3. Self-Contained References

Each reference file should be independently useful without requiring other files.

4. Actionable Content

Focus on rules, patterns, and examples—not background explanation.

Routing Logic

Request typeLoad reference
Skill file formatreferences/format.md
Routing tablesreferences/routing.md
Description writingreferences/descriptions.md
Reference file designreferences/reference-files.md
Skill architecturereferences/architecture.md

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon