Claude Skills Suite
A comprehensive skill suite for orchestrating multi-model development workflows with Claude Code.
Claude Skills Suite
A production skill suite for Claude Code that orchestrates multi-model development workflows. 42 skills, 10 specialized agents, and 7 lifecycle hooks — designed for projects where AI writes, reviews, and ships code with human oversight at every gate.
What This Does
Instead of using Claude Code as a single-model assistant, this suite turns it into an orchestration layer that delegates work across 6 AI models (Claude, Codex, Gemini, Cursor, Copilot, Vibe/Mistral), runs parallel review panels, and enforces quality gates before anything ships.
You say: "Initialize a new project"
Claude runs: /meta-init
→ Scaffolds project structure
→ Interviews you about goals and constraints
→ Writes project-context.md (the cold-start doc)
→ Fans out research across Gemini + Codex + web sources
→ Produces an approved build plan with dependency-ordered work units
You say: "Build it"
Claude runs: /meta-execute
→ Generates code via Vibe + Cursor (cross-model Best-of-2)
→ Reviews each unit with a 5-model panel (Codex + Sonnet + Cursor + Copilot + Gemini)
→ Merges passing units wave-by-wave with review gates between each wave
→ You approve each wave before the next one starts
You say: "Is this ready to ship?"
Claude runs: /meta-production
→ Scores 12 dimensions (SLO/SLI, deployment, observability, security, chaos readiness...)
→ Verdict: READY / CONDITIONAL / NOT READY
Architecture
┌─────────────────────────────┐
│ Meta-Skills (6) │
│ Orchestrators that chain │
│ atomic skills + models │
└──────────┬──────────────────┘
│
┌─────────────────────┼─────────────────────┐
▼ ▼ ▼
┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐
│ Atomic Skills │ │ Review Lenses │ │ Driver Skills │
│ (21 skills) │ │ (8 skills) │ │ (5 skills) │
│ │ │ │ │ │
│ scaffold, plan, │ │ security, test, │ │ codex, gemini, │
│ research, build, │ │ counter, drift, │ │ vibe, cursor, │
│ sync, release... │ │ refactor, comp- │ │ copilot │
│ │ │ leteness, comp- │ │ │
│ │ │ liance, browser │ │ CLI syntax & │
│ │ │ │ │ path discovery │
└──────────────────┘ └──────────────────┘ └──────────────────┘
│ │ │
└─────────────────────┼─────────────────────┘
▼
┌─────────────────────────────┐
│ Infrastructure │
│ hooks, agents, artifact DB, │
│ cross-cutting rules │
└─────────────────────────────┘
Progressive Disclosure
Skills load in 3 levels to minimize context window usage:
| Level | What Loads | When |
|---|---|---|
| 1. Metadata | Frontmatter only (name + description) | Always — part of skill index |
| 2. SKILL.md body | Full instructions, examples, I/O spec | On trigger — when you invoke the skill |
| 3. References | Deep catalogs, checklists, agent prompts | On demand — only when a specific section needs it |
This means a 270-line review skill with 6 reference files only loads ~150 chars until triggered, then ~270 lines, and never loads reference material unless it reaches the step that needs it.
Skill Catalog
Meta-Skills (Orchestrators)
| Skill | What It Does |
|---|---|
/meta-init | Zero-to-plan: scaffold, interview, research, build plan |
/meta-execute | Parallel implementation with cross-model Best-of-2 generation + 5-reviewer panel |
/meta-review | 7-lens review across 3 model families (12 parallel reviews) |
/meta-research | End-to-end research pipeline with parallel connector fan-out |
/meta-deep-research | Exhaustive research with ~20 workers and adversarial debate |
/meta-production | 12-dimension production readiness scoring |
Review Lenses
Each lens runs standalone or as part of /meta-review:
| Skill | Focus |
|---|---|
/security-review | Dependencies, auth, secrets, injection, OWASP Agentic Top 10 |
/test-review | Coverage, mutation testing, PBT, contract tests, LLM anti-patterns |
/counter-review | Adversarial red-team: abuse cases, attack chains, failure scenarios |
/refactor-review | Over-engineering, duplication, bloat, unnecessary abstractions |
/drift-review | Code vs docs drift detection |
/completeness-review | Stubs, TODOs, placeholders, empty bodies |
/compliance-review | Code vs project rules adherence |
/browser-review | Visual QA via Playwright/browser-use |
Project Lifecycle
| Skill | What It Does |
|---|---|
/project-scaffold | Standard folder structure + templates |
/project-questions | Deep-dive interview before planning |
/project-context | Writes the cold-start handoff doc |
/research-plan | Prioritized research with topic-to-connector mapping |
/research-execute | Parallel research execution across connectors |
/build-plan | Phased implementation plan with work unit decomposition |
/meta-join | Onboard to an existing project (full or quick mode) |
/evolve | Sync project docs to match current code reality |
Development & Operations
| Skill | What It Does |
|---|---|
/github-sync | Commit and push with conventional commit messages |
/github-pull | Pull latest changes from remote |
/review-fix | Implement fixes from review findings with worker dispatch |
/release-prep | Changelog, version bump, release notes, git tag |
/deploy-gateway | MCP gateway container deployment |
/infra-health | Service health checks across containers and endpoints |
/meta-context-save | Preserve session state before compacting/clearing |
/todo-features | Update project tracking files |
/repo-create | Initialize or connect GitHub repos |
/init-db | Bootstrap SQLite+FTS5 artifact store |
Tooling
| Skill | What It Does |
|---|---|
/skill-forge | Create or edit skills with template + validation checklist |
/skill-doctor | Self-diagnostic for the skill suite |
/quick-plan | Lightweight in-session planning |
/sync-skills | Inject missing or stale template files into projects |
Driver Skills (CLI Adapters)
These encode the exact syntax, path discovery, and gotchas for each external CLI so consuming skills don't have to:
| Skill | CLI | Model |
|---|---|---|
/codex | OpenAI Codex CLI | GPT-5.4 |
/gemini | Google Gemini CLI | Gemini 2.5 |
/vibe | Mistral Vibe CLI | Devstral-2 |
/cursor | Cursor Agent CLI | Configurable (default: Sonnet 4.6 Thinking) |
/copilot | GitHub Copilot CLI | Configurable (default: Sonnet 4.5) |
Multi-Model Orchestration
The suite treats AI models as specialized workers, not interchangeable commodities:
| Role | Models Used | Why |
|---|---|---|
| Orchestration | Claude (Opus) | Architecture decisions, synthesis, final calls |
| Code generation | Vibe (Mistral) + Cursor | Cross-model diversity beats same-model N>1 |
| Code review + fix | Codex | Only reviewer that applies fixes in-place |
| Read-only review | Sonnet, Cursor, Copilot, Gemini | Different perspectives, no write access |
| Web research | Gemini | Web grounding for current best practices |
| Fast generation | Vibe | Fastest for single-file, scoped tasks |
Concurrency Limits
Hard limits enforced across all skills:
| CLI | Max Concurrent |
|---|---|
| Codex | 5 |
| Vibe | 3 |
| Cursor | 3 |
| Gemini | 2 |
| Copilot | 2 |
Artifact Store
Skills persist intermediate findings in a SQLite + FTS5 database (artifacts/project.db), not scattered markdown files. This enables:
- Fresh-findings check: Review lenses skip re-scanning if results are <24 hours old
- Full-text search: Find findings across all lenses with
db_search - Cross-lens synthesis: Meta-review reads findings from all lenses via DB queries
source artifacts/db.sh
db_upsert 'security-review' 'findings' 'standalone' "$CONTENT"
db_read 'security-review' 'findings' 'standalone'
db_search 'SQL injection'
db_age_hours 'security-review' 'findings' 'standalone'
Installation
-
Clone this repo to a shared location:
git clone https://github.com/trevorbyrum/claude-skills-suite.git ~/shared/claude-skills -
Point Claude Code at it. Add to your project's
.claude/settings.json:{ "skills": ["~/shared/claude-skills/skills"] }Or for user-wide access, add to
~/.claude/settings.json. -
Initialize the artifact store in any project:
/init-db -
Verify the suite is working:
/skill-doctor
Optional: External CLIs
The suite works with Claude alone, but multi-model features require external CLIs:
| CLI | Install | Used For |
|---|---|---|
| Codex | npm install -g @openai/codex | Review+fix, code generation |
| Gemini CLI | npm install -g @google/gemini-cli | Web research, architecture review |
| Vibe | pip install vibe-cli | Fast code generation |
| Cursor | Cursor Pro+ desktop app | Generation, review |
| Copilot | npm install -g @githubnext/github-copilot-cli | Review, multi-model tasks |
All CLIs are optional — skills gracefully degrade when a CLI is unavailable, falling back to Claude subagents.
Creating New Skills
/skill-forge my-new-skill
This scaffolds the directory, writes SKILL.md from the canonical template, and validates against a 40+ check validation checklist covering structure, anti-patterns, and integration rules.
See skills/skill-forge/references/skill-template.md for the full template specification.
Project Structure
├── skills/ # 42 skill directories, each with SKILL.md
│ ├── meta-*/ # Orchestrators
│ ├── *-review/ # Review lenses (+ references/)
│ ├── codex/ gemini/ etc. # Driver skills
│ └── skill-forge/ # Skill creation/editing tool
├── agents/ # 10 specialized subagent definitions
├── hooks/ # 7 lifecycle hooks (session, commit, compact)
├── references/ # Shared references (db.sh, cross-cutting rules)
├── rules/ # Global rules (general.md)
├── artifacts/ # Research summaries (DB is gitignored)
└── skill-suite-build-spec.md # Architecture specification
License
MIT