Skip to content

mmungdong/skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skills

中文 | English

A collection of Claude Code Skills I use and maintain.

Directory Structure

skills/
├── README.md
├── Agents.md                # Agent conventions
├── CLAUDE.md                # Claude Code project config
├── .claude/skills/          # Project-level skills (not distributable)
│   └── <skill-name>/
│       └── SKILL.md
├── github/                  # GitHub repos (not yet integrated into workspace)
│   └── <user>/<repo>/
│       └── install_reference.md
└── skills/
    └── <category>/
        └── <skill-name>/
            ├── SKILL.md             # Custom skill main file
            ├── skill.json           # Custom skill metadata
            ├── helpers/             # Helper scripts (optional)
            └── install_reference.md # Referenced skill source info

Skill Types

Custom Skill (Full)

Skills I create and maintain, containing:

  • SKILL.md (required) — with frontmatter, defines skill functionality and usage
  • skill.json (required) — generated by /create-skill-json
  • helpers/ (optional) — helper scripts, templates, etc.

SKILL.md Format

---
name: skill-name
description: One-line description of the skill's purpose and trigger
metadata:
  version: 1.0.0
---

# Skill Title

Detailed description of the skill's functionality, usage, and notes.

skill.json Format

{
  "version": "1.0.0",
  "name": "category/skill-name",
  "title": "skill-name",
  "aliases": ["skill-name", "category/skill-name"]
}

Referenced Skill (External)

Skills maintained by others (GitHub, npm, etc.), no SKILL.md or skill.json needed, only:

  • install_reference.md — describes the source and installation method

install_reference.md Format

# Skill Name

- **Source**: <url>
- **Type**: git | npm | other

## Install

Install command...

Installation

# Custom skill: symlink to Claude Code skills directory
ln -s $(pwd)/skills/dev/my-skill ~/.claude/skills/my-skill

# Referenced skill: follow instructions in install_reference.md

Project Skills

Skills in .claude/skills/ are project-level tools for managing this repository itself. They are not distributable.

Skill Description Version
skill-sync Check if external skill references are up-to-date, fetch updates from GitHub, and sync local records 1.0.0
skill-installer Check installation status and interactively install skills to Agent skills directories 1.0.0

Collected Skills

dev

Skill Description Version
superpowers Practical Claude Code superpowers for enhanced development workflows -
code-reviewer Code review skill from claude-code-templates -
ui-ux-pro-max UI/UX design skill from claude-code-templates -

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors