ShakaCode Team Shared Claude Code Commands, Agents, Skills, and Tips.
Copy what you need to your ~/.claude/ directory:
# Clone the repo
git clone https://github.com/shakacode/claude-code-boosters.git
cd claude-code-boosters
# Install all commands
mkdir -p ~/.claude/commands
cp commands/*.md ~/.claude/commands/
# Install all agents
mkdir -p ~/.claude/agents
cp agents/*.md ~/.claude/agents/
# Or install specific ones
cp commands/self-review.md ~/.claude/commands/
cp commands/merge-commit-msg.md ~/.claude/commands/For project-level sharing, copy to your project's .claude/commands/ or .claude/agents/ directory instead.
| Command | Description |
|---|---|
/address-review |
Fetch GitHub PR review comments and create todos to address them |
/review-all-prs |
Review all open PRs or a specific PR, post reviews to GitHub |
/self-review |
Comprehensive self-review of uncommitted changes before creating a PR |
/merge-commit-msg |
Generate a structured merge commit message from PR changes |
/optimize |
Analyze code for performance issues with structured recommendations |
/security-review |
Review code for security vulnerabilities (OWASP Top 10 checklist) |
| Agent | Description |
|---|---|
pr-testing-agent |
Identify and run only the tests affected by PR changes |
Install to ~/.claude/agents/ (personal) or .claude/agents/ (project).
Starter templates for new projects:
| Template | Description |
|---|---|
CLAUDE.md |
Project-level Claude Code instructions template |
AGENTS.md |
Cross-tool AI agent instructions template (works with Codex CLI, Cursor, etc.) |
| Guide | Description |
|---|---|
| Writing Effective CLAUDE.md | Memory hierarchy, what to include/exclude, path-specific rules, imports |
| Custom Agents and Skills | Creating custom agents, skills, slash commands, and agent teams |
| Hooks Guide | Lifecycle hooks for automation, quality gates, and safety |
| Claude Code + Codex CLI | Using both tools together, shared instructions, workflows |
| Tips and Tricks | Context management, parallel sessions, effective prompting, common pitfalls |
| Script | Description |
|---|---|
bin/chrome-mcp |
Launch Chrome with a separate profile for MCP browser debugging |
| Workflow | Description |
|---|---|
| Claude Code Review | Automatic PR review on open/sync |
| Claude Code | Respond to @claude mentions in issues/PRs |
- Add new commands to
commands/ - Add new agents to
agents/ - Add documentation to
docs/ - Keep everything generic -- project-specific instructions belong in project CLAUDE.md files
- All files must end with a newline character