Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

skills

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.

Skills

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.

Layout

Each skill directory contains:

  • SKILL.md — YAML frontmatter (name, description) followed by Markdown instructions. The description is the discovery hook: it tells the model when to invoke the skill.
  • scripts/ (optional) — the executable logic the skill runs.

Scripts

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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages