bail

Custom skills for agents

インストール
CLI
npx skills add https://github.com/camacho/ai-skills --skill bail

CLI を使用してこのスキルをインストールし、ワークスペースで SKILL.md ワークフローの使用を開始します。

最終更新日: 4/23/2026

ai-skills

A collection of AI skills for Claude Code and Codex, installed via npx skills.

Repo structure

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.

Install a skill globally

npx skills add ~/projects/camacho/ai-skills --skill <skill-name> -g -a claude-code -a codex -y

Verify installed skills

npx skills list -g

Update a skill after editing

Re-run the install command, or — for Claude Code — file changes are picked up automatically. Codex picks up changes on next session start.

Add a new skill

  1. Create a folder under skills/ with your skill name
  2. Add a SKILL.md with frontmatter:
    ---
    name: my-skill
    description: What it does and when to trigger it.
    ---
    
  3. Install it:
    npx skills add ~/projects/camacho/ai-skills --skill my-skill -g -a claude-code -a codex -y
    

Available skills

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