$git clone https://github.com/noah-sheldon/ai-dev-kitProduction-ready AI dev workflow scaffold with 59 skills, 33 agents, hooks, and rules for Claude Code, Codex, Gemini CLI, Copilot CLI, Qwen Code, and OpenCode.
| 1 | # AI Dev Kit |
| 2 | |
| 3 | > Production-ready AI dev workflow scaffold with 59 skills, 33 agents, hooks, and rules. |
| 4 | |
| 5 | [](https://opensource.org/licenses/MIT) |
| 6 | [](https://noahsheldon.dev) |
| 7 | [](./skills/) |
| 8 | [](./agents/) |
| 9 | [](./commands/) |
| 10 | |
| 11 | --- |
| 12 | |
| 13 | ## What Is This? |
| 14 | |
| 15 | AI Dev Kit is a **complete plugin-oriented developer workspace** for AI coding assistants. It ships everything needed to run professional-grade engineering workflows — TDD, code review, security audit, CI/CD, ML pipelines, infrastructure-as-code, code quality analysis, and debt tracking — across Claude Code, Codex, OpenCode, and Gemini CLI. |
| 16 | |
| 17 | Think of it as a **system prompt that scales to 59 specialized skills and 33 domain agents**, with lifecycle hooks and automated validation. |
| 18 | |
| 19 | --- |
| 20 | |
| 21 | ## Quick Start |
| 22 | |
| 23 | ### Claude Code |
| 24 | |
| 25 | ```bash |
| 26 | /plugin marketplace add noah-sheldon/ai-dev-kit |
| 27 | /plugin install ai-dev-kit@ai-dev-kit |
| 28 | ``` |
| 29 | |
| 30 | Or install directly via HTTPS: |
| 31 | |
| 32 | ```bash |
| 33 | /plugin marketplace add https://github.com/noah-sheldon/ai-dev-kit |
| 34 | /plugin install ai-dev-kit@ai-dev-kit |
| 35 | ``` |
| 36 | |
| 37 | ### Codex |
| 38 | |
| 39 | ```bash |
| 40 | codex extensions add https://github.com/noah-sheldon/ai-dev-kit |
| 41 | ``` |
| 42 | |
| 43 | Or clone and discover automatically: |
| 44 | |
| 45 | ```bash |
| 46 | git clone https://github.com/noah-sheldon/ai-dev-kit |
| 47 | ``` |
| 48 | |
| 49 | The marketplace at `.agents/plugins/marketplace.json` will be discovered automatically. |
| 50 | |
| 51 | ### OpenCode |
| 52 | |
| 53 | ```bash |
| 54 | cd .opencode/plugins && npm install && npm run build |
| 55 | ``` |
| 56 | |
| 57 | Or install via HTTPS: |
| 58 | |
| 59 | ```bash |
| 60 | npx opencode plugin install https://github.com/noah-sheldon/ai-dev-kit |
| 61 | ``` |
| 62 | |
| 63 | ### Gemini CLI |
| 64 | |
| 65 | ```bash |
| 66 | gemini extensions link https://github.com/noah-sheldon/ai-dev-kit |
| 67 | ``` |
| 68 | |
| 69 | Or install via HTTPS directly: |
| 70 | |
| 71 | ```bash |
| 72 | gemini extensions install https://github.com/noah-sheldon/ai-dev-kit |
| 73 | ``` |
| 74 | |
| 75 | ### GitHub Copilot CLI |
| 76 | |
| 77 | ```bash |
| 78 | copilot plugin marketplace add https://github.com/noah-sheldon/ai-dev-kit |
| 79 | copilot plugin install ai-dev-kit@ai-dev-kit |
| 80 | ``` |
| 81 | |
| 82 | Or install via HTTPS shorthand: |
| 83 | |
| 84 | ```bash |
| 85 | copilot plugin install https://github.com/noah-sheldon/ai-dev-kit |
| 86 | ``` |
| 87 | |
| 88 | ### Qwen Code |
| 89 | |
| 90 | ```bash |
| 91 | qwen extensions install https://github.com/noah-sheldon/ai-dev-kit |
| 92 | ``` |
| 93 | |
| 94 | Or install locally: |
| 95 | |
| 96 | ```bash |
| 97 | qwen extensions install /path/to/ai-dev-kit |
| 98 | ``` |
| 99 | |
| 100 | ### Manual Install (any harness) |
| 101 | |
| 102 | ```bash |
| 103 | ./install.sh |
| 104 | ``` |
| 105 | |
| 106 | --- |
| 107 | |
| 108 | ## What's Inside |
| 109 | |
| 110 | ``` |
| 111 | ai-dev-kit/ |
| 112 | ├── agents/ 33 specialized agents (planner, architect, code-reviewer, debt analyzers, ...) |
| 113 | ├── skills/ 59 skill playbooks (TDD, security, ML, infra, web, data, ...) |
| 114 | ├── commands/ 41 workflow commands and shims |
| 115 | ├── hooks/ lifecycle automation (pre-tool, post-tool, session events) |
| 116 | ├── rules/ language-specific guidance (common, python, typescript, web) |
| 117 | ├── manifests/ install manifests for deterministic setup |
| 118 | ├── schemas/ JSON schemas for validation |
| 119 | ├── docs/ architecture, design decisions, troubleshooting |
| 120 | ├── examples/ reusable templates |
| 121 | ├── scripts/ install, validate, sync, and template helpers |
| 122 | ├── tests/ smoke tests and surface validation |
| 123 | ├── .claude-plugin/ Claude Code plugin manifest + marketplace |
| 124 | ├── .codex-plugin/ Codex plugin manifest |
| 125 | ├── .agents/ Codex marketplace catalog |
| 126 | ├── .gemini/ Gemini CLI extension |
| 127 | └── .opencode/ OpenCode project config + TypeScript plugin |
| 128 | ``` |
| 129 | |
| 130 | --- |
| 131 | |
| 132 | ## Agents (33) |
| 133 | |
| 134 | | Agent | When to Use | |
| 135 | |---|---| |
| 136 | | `planner` | Complex feature work — breaks requirements into phased, mergeable plans | |
| 137 | | `architect` | System design, component boundaries, API contracts | |
| 138 | | `tdd-guide` | Writing tests first — RED/GREEN/REFACTOR loop | |
| 139 | | `code-reviewer` | Reviewing diffs for correctness, regressions, quality | |
| 140 | | `security-reviewer` | Auth, secrets, input validation, OWASP review | |
| 141 | | `ai-judge` | Rubric-based validation of plans and outputs | |
| 142 | | `build-error-resolver` | Fixing TypeScript, Python, and build pipeline errors | |
| 143 | | `e2e-runner` | End-to-end test authoring and execution | |
| 144 | | `refactor-cleaner` | Cleanup, modernization, tech debt paydown | |
| 145 | | `doc-updater` | Syncing docs with code changes | |
| 146 | | `docs-lookup` | Finding and referencing documentation | |
| 147 | | `python-reviewer` | Python-specific code review (Pandas, FastAPI, SQLAlchemy) | |
| 148 | | `database-reviewer` | Schema, migration, and query review | |
| 149 | | `git-agent-coordinator` | Branch coordination, merges, PR orchestration | |
| 150 | | `ml-engineer` | ML/LLMOps: RAG, evals, model training, deployment | |
| 151 | | `chrome-ext-developer` | WXT and Chrome extension development | |
| 152 | | `data-engineer` | ETL, data quality, pipeline architecture | |
| 153 | | `infra-as-code-specialist` | IaC, CI/CD, deployment pipelines | |
| 154 | | `observ |