A collection of reusable Claude Code skills and commands.
| Skill | Description |
|---|---|
| refactor-components | Find large React components (.tsx/.jsx) and refactor them into smaller, focused components |
| refactor-code | Find large non-React code files (.ts/.js) and refactor them into smaller, focused files (routes, services, utils, etc.) |
| jira | Interact with Jira using the jira CLI and REST API. View, create, list, transition, and comment on issues with proper @mentions |
| jira-link | Link GitHub PRs to Jira tasks bidirectionally. Adds Jira issue key to PR title and PR URL as remote link on Jira issue. Auto-triggered after /pr for configured orgs |
| pr-comments | Fetch PR review comments, perform deep analysis with code context, suggest solutions, auto-resolve threads on GitHub. Supports a full-auto mode that autonomously processes comments, commits, pushes, and polls for new CodeRabbit reviews in a loop |
| pr-review | Review a GitHub PR and submit a single review with inline comments identifying bugs, security vulnerabilities, performance issues, and suggesting improvements |
| todo-resolver | Find TODO/FIXME/HACK comments in the codebase, analyze their impact and complexity, and resolve them |
| pr-screenshots | Capture screenshots or GIF recordings of UI features, upload them losslessly to a dedicated GitHub orphan branch (pr-assets), and add a labeled Screenshots section to the current PR description. Images are served via raw.githubusercontent.com — no compression, opens inline (no forced download). Infers what to capture from conversation context, PR diff analysis, or user clarification. |
| security-review | Scan code for security vulnerabilities (hardcoded secrets, env var exposure, injection, auth issues), generate SECURITY.md guidelines, or verify compliance with existing security rules |
| slack | Send messages, upload files, read conversations, react to messages, and manage Slack workspaces using SlackCLI |
| skill-creator | Guide for creating effective skills that extend Claude's capabilities. From Anthropic's skills repo |
Curated skills from the community, cloned as independent repositories into thirdparty/. See THIRDPARTY.md for instructions on adding new ones.
| Skill | Description | Repository |
|---|---|---|
| frontend-slides | Create animation-rich HTML presentations without design expertise | zarazhangrui/frontend-slides |
| Command | Description |
|---|---|
| /commit | Create structured git commits using conventional commit format with smart branch validation |
| /pr | Create well-structured pull requests with context and testing instructions |
| /sync-env-to-github | Sync environment variables to GitHub environment secrets (Production/staging) |
Clone the repository and run the install script to symlink all skills and commands to your personal Claude Code directory:
git clone https://github.com/BrOrlandi/my-claude-skills.git ~/Projects/my-claude-skills
cd ~/Projects/my-claude-skills
./update-thirdparty.sh # Clone all third-party skill repos
./install.sh # Symlink all skills and commandsThis creates symlinks in ~/.claude/skills/ and ~/.claude/commands/, making everything available globally across all your projects.
./update-thirdparty.shThis pulls the latest changes for all third-party skill repositories listed in thirdparty-skills.json.
cd ~/Projects/my-claude-skills
./uninstall.shYou can also copy individual skills/commands into a project's .claude/skills/ or .claude/commands/ directory if you prefer project-level installation.