A curated collection of reusable Skills for Claude Code and other AI coding agents.
Skills are modular capabilities that extend AI agent functionality with specialized, reusable features. Each Skill is:
- Model-invoked: The agent autonomously decides when to use it based on context
- Focused: Handles one specific capability well
- Portable: Easy to share via git for team collaboration
# Clone the repository
git clone https://github.com/stephen-tatari/claude-skills.git
# Copy desired skills to your global skills directory
cp -r claude-skills/skill-name ~/.claude/skills/# In your project root
mkdir -p .claude/skills
# Copy desired skills
cp -r /path/to/claude-skills/skill-name .claude/skills/
# Commit to version control for team sharing
git add .claude/skills
git commit -m "Add skill-name skill"- init-ai-docs: Bootstrap local ai_docs/ directory structure for decision records
- init-central-docs: Bootstrap a central AI documentation repository for cross-project decision records
- create-plan: Create implementation plan documents (local or central repo)
- create-research: Create research notes or ADRs (local or central repo)
- create-handoff: Create session handoff documents (always local, gitignored by default)
- resume-handoff: Resume work from previous handoff documents
- tatari-turbolift: Automate bulk code changes across GitHub repositories using turbolift
- argocd-ops: Manage ArgoCD applications - sync status, refresh, trigger jobs, toggle settings
- pr-status: Analyze PR merge readiness - diagnose blockers, CI failures, reviews, missing checks, bot comments
- loki-debug: Debug Kubernetes pod failures by querying logs from Loki
- codex: Execute OpenAI Codex CLI for code analysis, refactoring, and automated editing
- convergent-review: Run parallel review agents across 5 lenses until output converges
- jira: Manage Jira tickets - search, view, create, update status, add comments
Each Skill is a directory containing a SKILL.md file with YAML frontmatter. For comprehensive documentation on creating Skills, see AGENTS.md.
Quick example:
---
name: your-skill-name
description: Clear explanation of what it does and when to use it
---
# Detailed Instructions
Provide comprehensive instructions here for the AI agent to follow.Contributions are welcome! Please:
- Follow the structure outlined in AGENTS.md
- Ensure your Skill passes CI validation
- Test the Skill with various prompts
- Submit a pull request
- Complete Documentation - Comprehensive guide to creating and using Skills
- Claude Code Skills Docs - Official documentation
MIT License - See LICENSE for details.