A collection of Claude skills distributed as a Claude Code plugin marketplace. Skills are primarily designed for the Claude.ai PaaS skill compute environment; mileage will vary if used as Claude Code Agent Skills.
Add this repository as a plugin marketplace in Claude Code:
/plugin marketplace add oaustegard/claude-skills
Then browse and install individual plugins:
/plugin install skill-name@oaustegard-claude-skills
Update all marketplace plugins to latest:
/plugin marketplace update
- You need a paid Claude account (Pro or Team)
- Download the skill ZIP from the Releases page
- Note: Use the direct download link for the skill ZIP, not the "Source code" archives auto-generated by GitHub
- Upload to Claude.ai Skills Settings
- See official documentation for more details
Install skills directly to your project with a single command:
curl -fsSL https://raw.githubusercontent.com/oaustegard/claude-skills/main/templates/installation/install-skills.sh | bashOr download and customize which skills to install:
curl -O https://raw.githubusercontent.com/oaustegard/claude-skills/main/templates/installation/install-skills.sh
nano install-skills.sh # Edit SKILLS array
chmod +x install-skills.sh && ./install-skills.shCI/CD Integration:
mkdir -p .github/workflows
curl -o .github/workflows/install-skills.yml \
https://raw.githubusercontent.com/oaustegard/claude-skills/main/templates/installation/install-skills.ymlFor complete documentation, see templates/installation/README.md
Note: If your skill contribution is just a marketing ploy I'll simply delete it.
- Create your skill folder with
SKILL.mdat the root - Package your skill:
your-skill.zip └── your-skill/ ├── SKILL.md └── resources/ (optional) - Upload the ZIP to the
.uploads/directory - The workflow will automatically create a PR with your skill content
- Create a new branch
- Add your skill folder at the repository root (SKILL.md and resources)
- Submit a PR with your skill content
Releases are triggered by updating metadata.version in SKILL.md frontmatter on main branch.
Use semantic versioning:
0.1.0- Initial release0.1.1- Patch (bug fixes)0.2.0- Minor (new features, backward compatible)1.0.0- Major (breaking changes)