中文 | English
A collection of Claude Code Skills I use and maintain.
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
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.
---
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.{
"version": "1.0.0",
"name": "category/skill-name",
"title": "skill-name",
"aliases": ["skill-name", "category/skill-name"]
}Skills maintained by others (GitHub, npm, etc.), no SKILL.md or skill.json needed, only:
- install_reference.md — describes the source and installation method
# Skill Name
- **Source**: <url>
- **Type**: git | npm | other
## Install
Install command...# 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.mdSkills 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 |
| 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 | - |