Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.43 KB

File metadata and controls

47 lines (31 loc) · 1.43 KB

Claude Tools

Reusable Claude Code skills and commands.

Contents

Skills

Skill Description
skill-creator Create, test, benchmark, and optimize Claude Code skills

Commands

Command Description
commit-push-pr Commit changes, push, and create a GitHub PR
review Review code changes with quick or deep interactive mode

Usage as a Submodule

This repo is designed to be consumed as a git submodule. Add it to your project:

git submodule add -b main https://github.com/sirius-db/claude-tools.git .claude/claude-tools

Then create symlinks so Claude Code discovers the tools:

# Skills
ln -s ../claude-tools/skills/skill-creator .claude/skills/skill-creator

# Commands
ln -s ../claude-tools/commands/commit-push-pr.md .claude/commands/commit-push-pr.md
ln -s ../claude-tools/commands/review.md .claude/commands/review.md

Adding a New Skill

  1. Create a directory under skills/<name>/
  2. Add a SKILL.md with frontmatter (name, description)
  3. Commit, push, and update the submodule pin in consuming repos

License

Skills and commands in this repository are available under their individual licenses where specified. The skill-creator skill is licensed under Apache 2.0.