A collection of reusable skills for AI coding assistants. Each skill is a structured workflow defined in a SKILL.md file that tells your AI assistant how to approach a specific type of task.
| Skill | Description |
|---|---|
| quick-brainstorm | Lightweight brainstorming for bug fixes, small features, and code improvements. Asks targeted questions before jumping into implementation. |
Install via the skills CLI:
npx skills add hccake/skillsOr install a specific skill:
npx skills add hccake/skills --skill quick-brainstormThen tell your AI assistant to use it:
Fix the login timeout bug. Use quick-brainstorm skill.
Each skill lives in its own directory with a SKILL.md file:
<skill-name>/
└── SKILL.md
SKILL.md uses YAML frontmatter + skill content:
```skill
---
name: my-skill-name
description: When and why to use this skill.
---
# Skill Title
## Overview
What this skill does.
## Process
Step-by-step workflow.
```Conventions:
- Directory name matches the
namefield - Use kebab-case for names
- Wrap content in
```skill ```fenced code blocks - One skill, one workflow
- Fork this repository
- Create a branch:
git checkout -b skill/your-skill-name - Add your skill directory with a
SKILL.md - Update the Skills table in both
README.mdandREADME.zh-CN.md - Submit a Pull Request
MIT