Skip to content

stephen-tatari/claude-skills

Repository files navigation

Claude Skills

CI

A curated collection of reusable Skills for Claude Code and other AI coding agents.

What Are Skills?

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

Quick Start

Install Globally (All Projects)

# 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/

Install for Specific Project

# 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"

Available Skills

Decision Records

  • 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

DevOps & CI/CD

  • 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

Code Analysis

  • codex: Execute OpenAI Codex CLI for code analysis, refactoring, and automated editing

Quality & Review

  • convergent-review: Run parallel review agents across 5 lenses until output converges

Project Management

  • jira: Manage Jira tickets - search, view, create, update status, add comments

Creating Your Own Skills

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.

Contributing

Contributions are welcome! Please:

  1. Follow the structure outlined in AGENTS.md
  2. Ensure your Skill passes CI validation
  3. Test the Skill with various prompts
  4. Submit a pull request

Documentation

License

MIT License - See LICENSE for details.

About

Claude Code Skills for Tatari

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors