Custom skills for agents
npx skills add https://github.com/camacho/ai-skills --skill bailCLI를 사용하여 이 스킬을 설치하고 작업 공간에서 SKILL.md 워크플로 사용을 시작하세요.
A collection of AI skills for Claude Code and Codex, installed via npx skills.
ai-skills/
└── skills/
└── <skill-name>/
└── SKILL.md
Each skill is a folder under skills/ containing a SKILL.md with YAML frontmatter (name, description) and markdown instructions. No other files are required — npx skills discovers skills automatically by scanning the skills/ directory. Some skills bundle ancillary files (e.g. sync.sh) that the skill's instructions reference.
Skills may include supporting files alongside SKILL.md (e.g., scripts, manifests). The folder name must still match the name field in SKILL.md frontmatter.
npx skills add ~/projects/camacho/ai-skills --skill <skill-name> -g -a claude-code -a codex -y
npx skills list -g
Re-run the install command, or — for Claude Code — file changes are picked up automatically. Codex picks up changes on next session start.
skills/ with your skill nameSKILL.md with frontmatter:---
name: my-skill
description: What it does and when to trigger it.
---
npx skills add ~/projects/camacho/ai-skills --skill my-skill -g -a claude-code -a codex -y
| Skill | Description | Install Scope |
|---|---|---|
| apply-template | Apply/update ai-env template to any project | Global |
| sync-dotfiles | Sync user-level AI configs with dotfiles/ | Global |
| elevate-skill | Promote local skill to ai-skills repo | Global |
| validate | Full project validation (typecheck + lint + format + test + build (optional)) | Project |
| reflect | Post-task review and memory extraction | Project |
| catchup | Reconstruct context after /clear or resume | Project |
| name-project | Interactive naming sessions for projects, apps, packages, tools, or repos | Project |