🎯

skill-creator

🎯Skill

from bumgeunsong/daily-writing-friends

VibeIndex|
What it does

Guides developers in designing Claude Skills using progressive disclosure, optimizing skill architecture and content creation.

πŸ“¦

Part of

bumgeunsong/daily-writing-friends(12 items)

skill-creator

Installation

git cloneClone repository
git clone https://github.com/BumgeunSong/daily-writing-friends.git
npm runRun npm script
npm run dev
πŸ“– Extracted from docs: bumgeunsong/daily-writing-friends
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Design and create Claude Skills using progressive disclosure principles. Use when building new skills, planning skill architecture, or writing skill content.

Overview

# Skill Creator

Create effective Claude Skills using progressive disclosure.

When to Create a Skill

Create a skill when you notice:

  • Repeating context across conversations
  • Domain expertise needed repeatedly
  • Project-specific knowledge Claude should know automatically

Progressive Disclosure

Skills load in 3 levels:

  1. Metadata (~27 tokens) - YAML frontmatter for triggering
  2. Instructions (<680 tokens) - SKILL.md body with core patterns
  3. Resources (unlimited) - references/ scripts/ assets/ loaded on

demand

Key: Keep Levels 1 & 2 lean. Move details to Level 3.

Structure

```

my-skill/

β”œβ”€β”€ SKILL.md # Core instructions + metadata

β”œβ”€β”€ references/ # Detailed docs (loaded as needed)

β”œβ”€β”€ scripts/ # Executable operations

└── assets/ # Templates, images, files

```

References

  • [quick-start.md](references/quick-start.md) - Creating your first

skill

  • [writing-guide.md](references/writing-guide.md) - Writing effective

skills

  • [development-process.md](references/development-process.md) -

Step-by-step workflow

  • [skill-examples.md](references/skill-examples.md) - Patterns and

examples

  • [cli-reference.md](references/cli-reference.md) - CLI tool usage
  • [anthropic-resources.md](references/anthropic-resources.md) -

Official best practices

More from this repository10

🎯
refactoring🎯Skill

Refactors code by extracting pure functions from side-effect-laden logic, enabling easier testing and maintainability.

🎯
react-component🎯Skill

Generates React component boilerplate with structured imports, hooks, and TypeScript patterns for consistent and scalable frontend development.

🎯
code-style🎯Skill

Enforces clean, readable code by providing guidelines for function design, naming conventions, and code clarity principles.

🎯
testing🎯Skill

Enforces output-based testing of pure functions, guiding developers to write testable code by focusing on functional core transformations.

🎯
react-hook🎯Skill

I apologize, but I cannot generate a description without seeing the specific details about the "react-hook" skill from the repository. Could you provide more context or details about what this part...

🎯
pr-stacking🎯Skill

Enables developers to break large features into smaller, dependent PRs for incremental development and easier code reviews.

🎯
daily-writing-friends-design🎯Skill

Provides a comprehensive design system for Daily Writing Friends, ensuring consistent UI components, styling, and accessibility across the application.

🎯
commit🎯Skill

Stages and commits git changes following specific Korean commit message guidelines for clean, meaningful version control.

🎯
api-layer🎯Skill

Manages API interactions and request handling for the Daily Writing Friends application, facilitating communication between frontend and backend services.

🎯
firebase-functions🎯Skill

Streamlines Firebase Cloud Functions development with structured TypeScript patterns, error handling, and organized function implementations.