A collection of Claude Code agent skills. Each
top-level directory is one skill: a SKILL.md describing when and how to use it, plus
any bundled scripts it invokes. Claude Code loads these so the model can discover and run
them on demand.
| Skill | What it does |
|---|---|
add-orphan-worktree |
Register an existing non-empty folder of files as a git worktree on a new orphan branch, committing the files in place as the branch's root commit. Useful when git worktree add refuses a directory that already has files. |
Each skill directory contains:
SKILL.md— YAML frontmatter (name,description) followed by Markdown instructions. Thedescriptionis the discovery hook: it tells the model when to invoke the skill.scripts/(optional) — the executable logic the skill runs.
Bundled Python scripts are self-contained uv scripts using
PEP 723 inline metadata — no virtualenv or project dependency file to manage:
uv run <skill>/scripts/<script>.py <args...>
For example:
uv run add-orphan-worktree/scripts/add_worktree.py <files_dir> <git_repo_dir> <branch_name>
See each skill's SKILL.md for full usage and caveats.