Skip to content

QuantuLabs/claude-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Claude Skills

A collection of custom skills for Claude Code.

Quick Start

# Clone the repo
git clone https://github.com/QuantuLabs/claude-skills.git

# Copy skills to Claude Code
cp claude-skills/skills/*.md ~/.claude/commands/

# Or symlink for auto-updates
ln -sf $(pwd)/claude-skills/skills/*.md ~/.claude/commands/

Then in Claude Code, type /codex-review or /gem-review to use them.

Available Skills

Command Description Requires
/codex-review Iterative code/plan review with OpenAI Codex Codex CLI
/gem-review Iterative code/plan review with Gemini CLI Gemini CLI

These skills enable Claude to collaborate with external AI models in a consensus loop:

┌────────────────────────────────────────────────────────┐
│  Claude + External AI = Collaborative Review           │
│                                                        │
│  1. Run external AI review (code or plan)              │
│  2. Claude analyzes each finding                       │
│  3. Valid issues → Fix immediately                     │
│  4. False positives → Document reasoning               │
│  5. Send analysis back for consensus                   │
│  6. Iterate until both AIs agree (max 3 rounds)        │
└────────────────────────────────────────────────────────┘

Supported modes:

  • Code Review: Analyze git uncommitted changes for bugs, type issues, error handling
  • Plan Review: Review architecture docs for gaps, risks, inconsistencies
  • Codebase Analysis: Deep architectural review (gem-review only)

Prerequisites

Codex CLI

Requires a ChatGPT Pro/Plus subscription.

npm install -g @openai/codex

Gemini CLI

npm install -g @google/gemini-cli

Configure your API key:

mkdir -p ~/.gemini
cp config/gemini-cli/.env.example ~/.gemini/.env
# Edit ~/.gemini/.env with your API key

Get your API key: https://aistudio.google.com/app/apikey

Related Projects

License

MIT

About

Custom skills for Claude Code.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors