$git clone https://github.com/yonatangross/orchestkitThe Complete AI Development Toolkit for Claude Code — 114 skills, 37 agents, 212 hooks. Production-ready patterns for full-stack development.
| 1 | <!-- markdownlint-disable MD033 MD041 --> |
| 2 | <div align="center"> |
| 3 | |
| 4 | <img src="docs/banner.png" alt="OrchestKit - Stop explaining your stack. Start shipping." width="100%" /> |
| 5 | |
| 6 | **<!--ork:skills-->114<!--/ork--> skills · <!--ork:agents-->36<!--/ork--> agents · <!--ork:hooks-->217<!--/ork--> hooks** |
| 7 | |
| 8 | [](https://claude.ai/claude-code) |
| 9 | [](./LICENSE) |
| 10 | [](https://github.com/yonatangross/orchestkit) |
| 11 | [](https://chat.whatsapp.com/IKgu1xuvKNXHikJ4Qeotpk) |
| 12 | [](https://deepwiki.com/yonatangross/orchestkit) |
| 13 | |
| 14 | </div> |
| 15 | |
| 16 | --- |
| 17 | |
| 18 | <p align="center"> |
| 19 | <a href="https://orchestkit.yonyon.ai/"><strong>Explore the Docs →</strong></a> · |
| 20 | <a href="https://chat.whatsapp.com/Krraz7LhB951K7nQfC08B2"><strong>OrchestKit Users Group →</strong></a><br> |
| 21 | <sub>Skill browser, demo gallery, setup wizard</sub> |
| 22 | </p> |
| 23 | |
| 24 | --- |
| 25 | |
| 26 | ## Contents |
| 27 | |
| 28 | - [Quick Start](#quick-start) |
| 29 | - [Why OrchestKit?](#why-orchestkit) |
| 30 | - [What You Get](#what-you-get) |
| 31 | - [Key Commands](#key-commands) |
| 32 | - [Configuration](#configuration) |
| 33 | - [Install](#install) |
| 34 | - [Release Channels](#release-channels) |
| 35 | - [FAQ](#faq) |
| 36 | - [Development](#development) |
| 37 | - [What's New](#whats-new) |
| 38 | - [Community](#community) |
| 39 | |
| 40 | |
| 41 | ## Quick Start |
| 42 | |
| 43 | ```bash |
| 44 | /plugin marketplace add yonatangross/orchestkit |
| 45 | /plugin install ork |
| 46 | ``` |
| 47 | |
| 48 | Then start your personalized onboarding: |
| 49 | |
| 50 | ```bash |
| 51 | /ork:setup |
| 52 | ``` |
| 53 | |
| 54 | The setup wizard scans your codebase, detects your tech stack, recommends skills for your needs, configures MCP servers, and creates a readiness score — all in one command. |
| 55 | |
| 56 | --- |
| 57 | |
| 58 | ## Why OrchestKit? |
| 59 | |
| 60 | Every Claude Code session starts from zero. You explain your stack, patterns, preferences—again and again. |
| 61 | |
| 62 | OrchestKit gives Claude **persistent knowledge** of production patterns that work automatically: |
| 63 | |
| 64 | | Without | With OrchestKit | |
| 65 | |---------|-----------------| |
| 66 | | "Use FastAPI with async SQLAlchemy 2.0..." | "Create an API endpoint" → Done right | |
| 67 | | "Remember cursor pagination, not offset..." | Agents know your patterns | |
| 68 | | "Don't commit to main branch..." | Hooks block bad commits | |
| 69 | | "Run tests before committing..." | `/ork:commit` runs tests for you | |
| 70 | |
| 71 | --- |
| 72 | |
| 73 | ## What You Get |
| 74 | |
| 75 | **One unified plugin, everything included.** |
| 76 | |
| 77 | | Component | Details | |
| 78 | |-----------|---------| |
| 79 | | **<!--ork:skills-->114<!--/ork--> Skills** | RAG patterns, FastAPI, React 19, testing, security, database design, ML integration — loaded on-demand, zero overhead | |
| 80 | | **<!--ork:agents-->36<!--/ork--> Agents** | Specialized personas (backend-architect, frontend-dev, security-auditor) — route tasks to the right expert | |
| 81 | | **<!--ork:hooks-->217<!--/ork--> Hooks** | Pre-commit checks, git protection, quality gates, browser safety — ship with confidence | |
| 82 | |
| 83 | All available in a single `/plugin install ork`. Skills load on-demand. Hooks work automatically. |
| 84 | |
| 85 | **[Browse everything in the Docs →](https://orchestkit.yonyon.ai/docs/skills/overview)** |
| 86 | |
| 87 | --- |
| 88 | |
| 89 | ## Key Commands |
| 90 | |
| 91 | ```bash |
| 92 | /ork:setup # Personalized onboarding wizard |
| 93 | /ork:implement # Full-stack implementation with parallel agents |
| 94 | /ork:expect # Diff-aware AI browser testing |
| 95 | /ork:review-pr # PR review with parallel agents |
| 96 | /ork:verify # Multi-agent validation |
| 97 | /ork:commit # Conventional commit with pre-checks |
| 98 | /ork:explore # Analyze unfamiliar codebase |
| 99 | /ork:remember # Save to persistent memory |
| 100 | /ork:doctor # Health check |
| 101 | ``` |
| 102 | |
| 103 | --- |
| 104 | |
| 105 | ## Configuration |
| 106 | |
| 107 | ```bash |
| 108 | /ork:configure |
| 109 | ``` |
| 110 | |
| 111 | ### Recommended MCP Servers |
| 112 | |
| 113 | | Server | Purpose | Required? | |
| 114 | |--------|---------|-----------| |
| 115 | | Context7 | Up-to-date library docs | Recommended | |
| 116 | | Memory | Knowledge graph persistence | Recommended | |
| 117 | | Sequential Thinking | Structured reasoning for subagents | Optional | |
| 118 | | Tavily | Web search and extraction | Optional | |
| 119 | |
| 120 | The setup wizard (`/ork:setup`) will recommend MCPs based on your stack. |
| 121 | |
| 122 | ### Customizing skills |
| 123 | |
| 124 | Skills install as files on your disk, but **don't hand-edit the installed copy** — it gets overwritten on update and silently diverges from the canonical playbook. The supported ways to extend (user-level skills, project skills, upstream PRs, or disabling a bundled skill) are in [docs/extending-skills.md](docs/extending-skills.md). |
| 125 | |
| 126 | --- |
| 127 | |
| 128 | ## Install |
| 129 | |
| 130 | ```bash |
| 131 | /plugin install ork |
| 132 | ``` |
| 133 | |
| 134 | No tiering. No version confusion. Just one powerful plugin. |
| 135 | |
| 136 | Not on Claude Code? Pull the skills into any agent (Cursor, Codex, OpenCode, …) via [skills.sh](https://skills.sh): |
| 137 | |
| 138 | ```bash |
| 139 | npx skills add yonatangross/orchestkit |
| 140 | ``` |
| 141 | |
| 142 | --- |
| 143 | |
| 144 | ## Release Channels |
| 145 | |
| 146 | | Channel | Stability | Install | |
| 147 | |---------|-----------|---------| |
| 148 | | **Stabl |