@neyugn/agent-kits 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (158) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +514 -0
  3. package/README.vi.md +410 -0
  4. package/README.zh.md +410 -0
  5. package/dist/cli.d.ts +1 -0
  6. package/dist/cli.js +422 -0
  7. package/kits/coder/ARCHITECTURE.md +289 -0
  8. package/kits/coder/agents/ai-engineer.md +344 -0
  9. package/kits/coder/agents/backend-specialist.md +270 -0
  10. package/kits/coder/agents/cloud-architect.md +363 -0
  11. package/kits/coder/agents/code-reviewer.md +284 -0
  12. package/kits/coder/agents/data-engineer.md +401 -0
  13. package/kits/coder/agents/database-specialist.md +251 -0
  14. package/kits/coder/agents/debugger.md +209 -0
  15. package/kits/coder/agents/devops-engineer.md +281 -0
  16. package/kits/coder/agents/documentation-writer.md +296 -0
  17. package/kits/coder/agents/frontend-specialist.md +298 -0
  18. package/kits/coder/agents/i18n-specialist.md +348 -0
  19. package/kits/coder/agents/integration-specialist.md +314 -0
  20. package/kits/coder/agents/mobile-developer.md +271 -0
  21. package/kits/coder/agents/multi-tenant-architect.md +281 -0
  22. package/kits/coder/agents/orchestrator.md +263 -0
  23. package/kits/coder/agents/performance-analyst.md +327 -0
  24. package/kits/coder/agents/project-planner.md +277 -0
  25. package/kits/coder/agents/queue-specialist.md +282 -0
  26. package/kits/coder/agents/realtime-specialist.md +267 -0
  27. package/kits/coder/agents/security-auditor.md +253 -0
  28. package/kits/coder/agents/test-engineer.md +315 -0
  29. package/kits/coder/agents/ux-researcher.md +388 -0
  30. package/kits/coder/rules/.cursorrules +287 -0
  31. package/kits/coder/rules/CLAUDE.md +287 -0
  32. package/kits/coder/rules/CODEX.md +287 -0
  33. package/kits/coder/rules/GEMINI.md +287 -0
  34. package/kits/coder/scripts/checklist.py +318 -0
  35. package/kits/coder/scripts/kit_status.py +292 -0
  36. package/kits/coder/scripts/skills_manager.py +243 -0
  37. package/kits/coder/scripts/verify_all.py +391 -0
  38. package/kits/coder/skills/accessibility-patterns/SKILL.md +372 -0
  39. package/kits/coder/skills/accessibility-patterns/scripts/a11y_checker.py +211 -0
  40. package/kits/coder/skills/ai-rag-patterns/SKILL.md +444 -0
  41. package/kits/coder/skills/api-patterns/SKILL.md +316 -0
  42. package/kits/coder/skills/api-patterns/assets/.gitkeep +1 -0
  43. package/kits/coder/skills/api-patterns/references/deep-dive.md +21 -0
  44. package/kits/coder/skills/api-patterns/scripts/api_validator.py +253 -0
  45. package/kits/coder/skills/api-patterns/scripts/validate.py +56 -0
  46. package/kits/coder/skills/auth-patterns/SKILL.md +267 -0
  47. package/kits/coder/skills/aws-patterns/SKILL.md +576 -0
  48. package/kits/coder/skills/brainstorming/SKILL.md +370 -0
  49. package/kits/coder/skills/brainstorming/assets/.gitkeep +1 -0
  50. package/kits/coder/skills/brainstorming/references/deep-dive.md +21 -0
  51. package/kits/coder/skills/brainstorming/scripts/validate.py +56 -0
  52. package/kits/coder/skills/clean-code/SKILL.md +240 -0
  53. package/kits/coder/skills/clean-code/assets/.gitkeep +1 -0
  54. package/kits/coder/skills/clean-code/references/deep-dive.md +21 -0
  55. package/kits/coder/skills/clean-code/scripts/lint_runner.py +186 -0
  56. package/kits/coder/skills/clean-code/scripts/validate.py +56 -0
  57. package/kits/coder/skills/database-design/SKILL.md +255 -0
  58. package/kits/coder/skills/database-design/assets/.gitkeep +1 -0
  59. package/kits/coder/skills/database-design/references/deep-dive.md +21 -0
  60. package/kits/coder/skills/database-design/scripts/schema_validator.py +272 -0
  61. package/kits/coder/skills/database-design/scripts/validate.py +56 -0
  62. package/kits/coder/skills/docker-patterns/SKILL.md +240 -0
  63. package/kits/coder/skills/documentation-templates/SKILL.md +441 -0
  64. package/kits/coder/skills/e2e-testing/SKILL.md +457 -0
  65. package/kits/coder/skills/flutter-patterns/SKILL.md +330 -0
  66. package/kits/coder/skills/frontend-design/SKILL.md +127 -0
  67. package/kits/coder/skills/github-actions/SKILL.md +349 -0
  68. package/kits/coder/skills/gitlab-ci-patterns/SKILL.md +466 -0
  69. package/kits/coder/skills/graphql-patterns/SKILL.md +558 -0
  70. package/kits/coder/skills/i18n-localization/SKILL.md +345 -0
  71. package/kits/coder/skills/i18n-localization/scripts/i18n_checker.py +267 -0
  72. package/kits/coder/skills/kubernetes-patterns/SKILL.md +357 -0
  73. package/kits/coder/skills/mermaid-diagrams/SKILL.md +351 -0
  74. package/kits/coder/skills/mobile-design/SKILL.md +305 -0
  75. package/kits/coder/skills/monitoring-observability/SKILL.md +458 -0
  76. package/kits/coder/skills/multi-tenancy/SKILL.md +317 -0
  77. package/kits/coder/skills/multi-tenancy/assets/.gitkeep +1 -0
  78. package/kits/coder/skills/multi-tenancy/references/deep-dive.md +21 -0
  79. package/kits/coder/skills/multi-tenancy/scripts/validate.py +56 -0
  80. package/kits/coder/skills/nodejs-best-practices/SKILL.md +220 -0
  81. package/kits/coder/skills/performance-profiling/SKILL.md +333 -0
  82. package/kits/coder/skills/performance-profiling/assets/.gitkeep +1 -0
  83. package/kits/coder/skills/performance-profiling/references/deep-dive.md +21 -0
  84. package/kits/coder/skills/performance-profiling/scripts/validate.py +56 -0
  85. package/kits/coder/skills/plan-writing/SKILL.md +360 -0
  86. package/kits/coder/skills/plan-writing/assets/.gitkeep +1 -0
  87. package/kits/coder/skills/plan-writing/references/deep-dive.md +21 -0
  88. package/kits/coder/skills/plan-writing/scripts/validate.py +56 -0
  89. package/kits/coder/skills/postgres-patterns/SKILL.md +361 -0
  90. package/kits/coder/skills/prompt-engineering/SKILL.md +277 -0
  91. package/kits/coder/skills/queue-patterns/SKILL.md +359 -0
  92. package/kits/coder/skills/queue-patterns/assets/.gitkeep +1 -0
  93. package/kits/coder/skills/queue-patterns/references/deep-dive.md +21 -0
  94. package/kits/coder/skills/queue-patterns/scripts/validate.py +56 -0
  95. package/kits/coder/skills/react-native-patterns/SKILL.md +393 -0
  96. package/kits/coder/skills/react-patterns/SKILL.md +319 -0
  97. package/kits/coder/skills/realtime-patterns/SKILL.md +506 -0
  98. package/kits/coder/skills/realtime-patterns/assets/.gitkeep +1 -0
  99. package/kits/coder/skills/realtime-patterns/references/deep-dive.md +21 -0
  100. package/kits/coder/skills/realtime-patterns/scripts/validate.py +56 -0
  101. package/kits/coder/skills/redis-patterns/SKILL.md +484 -0
  102. package/kits/coder/skills/security-fundamentals/SKILL.md +363 -0
  103. package/kits/coder/skills/security-fundamentals/assets/.gitkeep +1 -0
  104. package/kits/coder/skills/security-fundamentals/references/deep-dive.md +21 -0
  105. package/kits/coder/skills/security-fundamentals/scripts/security_scan.py +326 -0
  106. package/kits/coder/skills/security-fundamentals/scripts/validate.py +56 -0
  107. package/kits/coder/skills/seo-patterns/SKILL.md +262 -0
  108. package/kits/coder/skills/seo-patterns/scripts/seo_checker.py +211 -0
  109. package/kits/coder/skills/systematic-debugging/SKILL.md +478 -0
  110. package/kits/coder/skills/systematic-debugging/assets/.gitkeep +1 -0
  111. package/kits/coder/skills/systematic-debugging/references/deep-dive.md +21 -0
  112. package/kits/coder/skills/systematic-debugging/scripts/validate.py +56 -0
  113. package/kits/coder/skills/tailwind-patterns/SKILL.md +395 -0
  114. package/kits/coder/skills/terraform-patterns/SKILL.md +470 -0
  115. package/kits/coder/skills/testing-patterns/SKILL.md +285 -0
  116. package/kits/coder/skills/testing-patterns/assets/.gitkeep +1 -0
  117. package/kits/coder/skills/testing-patterns/references/deep-dive.md +21 -0
  118. package/kits/coder/skills/testing-patterns/scripts/test_runner.py +219 -0
  119. package/kits/coder/skills/testing-patterns/scripts/validate.py +56 -0
  120. package/kits/coder/skills/typescript-patterns/SKILL.md +417 -0
  121. package/kits/coder/skills/ui-ux-pro-max/SKILL.md +364 -0
  122. package/kits/coder/skills/ui-ux-pro-max/data/charts.csv +26 -0
  123. package/kits/coder/skills/ui-ux-pro-max/data/colors.csv +97 -0
  124. package/kits/coder/skills/ui-ux-pro-max/data/icons.csv +101 -0
  125. package/kits/coder/skills/ui-ux-pro-max/data/landing.csv +31 -0
  126. package/kits/coder/skills/ui-ux-pro-max/data/products.csv +97 -0
  127. package/kits/coder/skills/ui-ux-pro-max/data/prompts.csv +24 -0
  128. package/kits/coder/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  129. package/kits/coder/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  130. package/kits/coder/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  131. package/kits/coder/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  132. package/kits/coder/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  133. package/kits/coder/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  134. package/kits/coder/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  135. package/kits/coder/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  136. package/kits/coder/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  137. package/kits/coder/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  138. package/kits/coder/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  139. package/kits/coder/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  140. package/kits/coder/skills/ui-ux-pro-max/data/styles.csv +59 -0
  141. package/kits/coder/skills/ui-ux-pro-max/data/typography.csv +58 -0
  142. package/kits/coder/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  143. package/kits/coder/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  144. package/kits/coder/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  145. package/kits/coder/skills/ui-ux-pro-max/scripts/__pycache__/core.cpython-314.pyc +0 -0
  146. package/kits/coder/skills/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-314.pyc +0 -0
  147. package/kits/coder/skills/ui-ux-pro-max/scripts/core.py +257 -0
  148. package/kits/coder/skills/ui-ux-pro-max/scripts/design_system.py +488 -0
  149. package/kits/coder/skills/ui-ux-pro-max/scripts/search.py +76 -0
  150. package/kits/coder/workflows/.gitkeep +20 -0
  151. package/kits/coder/workflows/create.md +152 -0
  152. package/kits/coder/workflows/debug.md +223 -0
  153. package/kits/coder/workflows/deploy.md +283 -0
  154. package/kits/coder/workflows/orchestrate.md +243 -0
  155. package/kits/coder/workflows/plan.md +134 -0
  156. package/kits/coder/workflows/test.md +237 -0
  157. package/kits/coder/workflows/ui-ux-pro-max.md +109 -0
  158. package/package.json +49 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Neos
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,514 @@
1
+ <p align="center">
2
+ <img src="./assets/logo.svg" width="200" alt="Agent Kits Logo" />
3
+ </p>
4
+
5
+ <h1 align="center">Agent Kits</h1>
6
+
7
+ <p align="center">
8
+ <b>Universal AI Agent Toolkit</b><br/>
9
+ <sub>Skills, Agents, and Workflows for any AI coding assistant</sub>
10
+ </p>
11
+
12
+ <p align="center">
13
+ <a href="https://www.npmjs.com/package/@neyugn/agent-kits"><img src="https://img.shields.io/npm/v/@neyugn/agent-kits?style=flat-square&color=00ADD8" alt="npm version" /></a>
14
+ <a href="https://www.npmjs.com/package/@neyugn/agent-kits"><img src="https://img.shields.io/npm/dm/@neyugn/agent-kits?style=flat-square&color=00ADD8" alt="npm downloads" /></a>
15
+ <a href="https://github.com/nvdnvd00/agent-kits/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue?style=flat-square" alt="license" /></a>
16
+ </p>
17
+
18
+ <p align="center">
19
+ <a href="#-quick-start">Quick Start</a> •
20
+ <a href="#-features">Features</a> •
21
+ <a href="#-kits">Kits</a> •
22
+ <a href="#-filter-skill">Filter Skill</a> •
23
+ <a href="#-documentation">Documentation</a>
24
+ </p>
25
+
26
+ <p align="center">
27
+ <b>English</b> •
28
+ <a href="./README.vi.md">Tiếng Việt</a> •
29
+ <a href="./README.zh.md">中文</a>
30
+ </p>
31
+
32
+ <br/>
33
+
34
+ ## ✨ What is Agent Kits?
35
+
36
+ **Agent Kits** is a universal toolkit that supercharges your AI coding assistant with:
37
+
38
+ - 🤖 **Specialist Agents** — Pre-defined personas with deep domain expertise
39
+ - 🧩 **Reusable Skills** — Best practices and decision frameworks
40
+ - 📜 **Workflows** — Slash commands for common tasks
41
+ - 🔍 **Smart Filtering** — Auto-detect techstack and optimize loaded skills
42
+
43
+ Works with **any AI tool** — Claude, Gemini, Codex, Cursor, and more.
44
+
45
+ <br/>
46
+
47
+ ## 🚀 Quick Start
48
+
49
+ ```bash
50
+ npx @neyugn/agent-kits
51
+ ```
52
+
53
+ That's it! The interactive installer will guide you through:
54
+
55
+ 1. Selecting your AI tool (Claude, Gemini, Cursor, etc.)
56
+ 2. Choosing installation scope (Global or Workspace)
57
+ 3. Selecting which kits to install
58
+ 4. Confirming the installation path
59
+
60
+ <br/>
61
+
62
+ ## ✨ Features
63
+
64
+ ### 🎯 One Command, Any Tool
65
+
66
+ ```bash
67
+ npx @neyugn/agent-kits
68
+ ```
69
+
70
+ ```
71
+ ╔═══════════════════════════════════════════════════════════════╗
72
+ ║ █████╗ ██████╗ ███████╗███╗ ██╗████████╗ ║
73
+ ║ ██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝ ║
74
+ ║ ███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║ ║
75
+ ║ ██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║ ║
76
+ ║ ██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ║
77
+ ║ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ K I T S ║
78
+ ╚═══════════════════════════════════════════════════════════════╝
79
+
80
+ ◆ Which AI tool are you using?
81
+ │ ○ Claude Code (.claude/)
82
+ │ ● Gemini CLI (.gemini/)
83
+ │ ○ Cursor (.cursor/)
84
+ │ ○ Custom...
85
+
86
+ ◆ Where do you want to install?
87
+ │ ● 📁 Workspace (Current Project)
88
+ │ ○ 🌍 Global (All Projects)
89
+ ```
90
+
91
+ ### 🌍 Global vs Workspace Installation
92
+
93
+ | Mode | Location | Use Case |
94
+ | ------------ | ------------- | ------------------------------ |
95
+ | 📁 Workspace | `./{{tool}}/` | Project-specific configuration |
96
+ | 🌍 Global | `~/{{tool}}/` | Shared across all projects |
97
+
98
+ **Global Paths by Tool:**
99
+
100
+ | Tool | Global Path | Workspace Path |
101
+ | ----------- | ------------ | -------------- |
102
+ | Claude Code | `~/.claude/` | `.claude/` |
103
+ | Gemini CLI | `~/.gemini/` | `.gemini/` |
104
+ | Codex CLI | `~/.codex/` | `.codex/` |
105
+ | Antigravity | `~/.agent/` | `.agent/` |
106
+ | Cursor | `~/.cursor/` | `.cursor/` |
107
+
108
+ > **Note:** On Windows, `~` is replaced with `C:\Users\<username>\`
109
+
110
+ ### 🔄 Existing Installation Detection
111
+
112
+ If the installer detects an existing installation, you'll be prompted:
113
+
114
+ - **🔄 Replace**: Remove existing and install fresh
115
+ - **🔀 Merge**: Keep config files, update skills only
116
+ - **⏭️ Skip**: Keep existing, don't install
117
+ - **❌ Cancel**: Exit installer
118
+
119
+ ### 🔌 Universal Compatibility
120
+
121
+ | Tool | Workspace Path | Global Path | Status |
122
+ | ----------- | ----------------- | ------------ | ------------ |
123
+ | Claude Code | `.claude/skills/` | `~/.claude/` | ✅ Supported |
124
+ | Gemini CLI | `.gemini/skills/` | `~/.gemini/` | ✅ Supported |
125
+ | Codex CLI | `.codex/skills/` | `~/.codex/` | ✅ Supported |
126
+ | Antigravity | `.agent/skills/` | `~/.agent/` | ✅ Supported |
127
+ | Cursor | `.cursor/skills/` | `~/.cursor/` | ✅ Supported |
128
+ | Custom | Configurable | `~/.ai/` | ✅ Supported |
129
+
130
+ ### 💻 Cross-Platform Support
131
+
132
+ Works on **Windows**, **macOS**, and **Linux** with automatic path adaptation:
133
+
134
+ | Platform | Example Global Path |
135
+ | -------- | -------------------------- |
136
+ | Windows | `C:\Users\darien\.claude\` |
137
+ | macOS | `/Users/darien/.claude/` |
138
+ | Linux | `/home/darien/.claude/` |
139
+
140
+ <br/>
141
+
142
+ ## 🔍 Filter Skill
143
+
144
+ The **Filter Skill** solves the "skill overload" problem by automatically detecting your project's techstack and enabling only relevant skills.
145
+
146
+ ### Usage
147
+
148
+ ```bash
149
+ /filter
150
+ ```
151
+
152
+ ### How It Works
153
+
154
+ | Phase | Description |
155
+ | --------------------- | --------------------------------------------------------------------------- |
156
+ | **1. Detection** | Scans for config files (`package.json`, `pubspec.yaml`, `Dockerfile`, etc.) |
157
+ | **2. Recommendation** | Maps detected techstack to required skills |
158
+ | **3. Confirmation** | Presents changes and asks about future techstack plans |
159
+ | **4. Persistence** | Saves profile to `.agent/workspace-profile.json` |
160
+
161
+ ### Example
162
+
163
+ ```markdown
164
+ ## 🔍 Workspace Analysis Complete
165
+
166
+ **Detected Techstack:**
167
+ | Category | Technology |
168
+ | --------- | ----------------------- |
169
+ | Language | TypeScript |
170
+ | Framework | Next.js 14 (App Router) |
171
+ | Styling | Tailwind CSS v4 |
172
+ | Database | PostgreSQL (Prisma) |
173
+
174
+ **Skills to ENABLE:**
175
+ | Skill | Reason |
176
+ | ----------------- | ------------------------ |
177
+ | react-patterns | Next.js detected |
178
+ | tailwind-patterns | tailwind.config.js found |
179
+ | postgres-patterns | Prisma + PostgreSQL |
180
+
181
+ **Skills to DISABLE:**
182
+ | Skill | Reason |
183
+ | ---------------- | ------------------------ |
184
+ | flutter-patterns | No pubspec.yaml found |
185
+ | mobile-design | No mobile setup detected |
186
+
187
+ **Questions:**
188
+
189
+ 1. Do you agree with the changes? (yes/no/customize)
190
+ 2. Are there any techstacks you plan to add in the future?
191
+ ```
192
+
193
+ ### Commands
194
+
195
+ ```bash
196
+ /filter # Analyze and filter skills
197
+ /filter --force-enable ai-rag # Force enable specific skill
198
+ /filter --force-disable mobile # Force disable specific skill
199
+ /filter --reset # Reset to default (enable all)
200
+ ```
201
+
202
+ ### Core Skills (Never Disabled)
203
+
204
+ These skills are always enabled regardless of techstack:
205
+
206
+ | Skill | Description |
207
+ | ----------------------- | ----------------------------- |
208
+ | `clean-code` | Pragmatic coding standards |
209
+ | `brainstorming` | Socratic questioning protocol |
210
+ | `plan-writing` | Task breakdown and WBS |
211
+ | `systematic-debugging` | 4-phase debugging |
212
+ | `testing-patterns` | Testing pyramid patterns |
213
+ | `security-fundamentals` | OWASP 2025 security |
214
+
215
+ <br/>
216
+
217
+ ## 📦 Kits
218
+
219
+ ### 💻 Coder Kit
220
+
221
+ Complete toolkit for software development with **22 specialist agents**, **40 skills**, and **7 workflows**.
222
+
223
+ <details>
224
+ <summary><b>🤖 Agents (22)</b></summary>
225
+
226
+ #### Tier 1: Master Agents
227
+
228
+ | Agent | Description |
229
+ | ----------------- | ------------------------ |
230
+ | `orchestrator` | Multi-agent coordination |
231
+ | `project-planner` | Smart project planning |
232
+ | `debugger` | Systematic debugging |
233
+
234
+ #### Tier 2: Development Specialists
235
+
236
+ | Agent | Description |
237
+ | --------------------- | -------------------------- |
238
+ | `frontend-specialist` | React, Next.js, Vue, UI/UX |
239
+ | `backend-specialist` | APIs, Node.js, Python |
240
+ | `mobile-developer` | React Native, Flutter |
241
+ | `database-specialist` | Schema design, queries |
242
+ | `devops-engineer` | CI/CD, deployment |
243
+
244
+ #### Tier 3: Quality & Security
245
+
246
+ | Agent | Description |
247
+ | --------------------- | --------------------------- |
248
+ | `security-auditor` | OWASP 2025, vulnerabilities |
249
+ | `code-reviewer` | PR reviews, code quality |
250
+ | `test-engineer` | TDD, testing pyramid |
251
+ | `performance-analyst` | Core Web Vitals, profiling |
252
+
253
+ #### Tier 4: Domain Specialists
254
+
255
+ | Agent | Description |
256
+ | ------------------------ | ------------------------------- |
257
+ | `realtime-specialist` | WebSocket, Socket.IO |
258
+ | `multi-tenant-architect` | Tenant isolation, SaaS |
259
+ | `queue-specialist` | Message queues, background jobs |
260
+ | `integration-specialist` | External APIs, webhooks |
261
+ | `ai-engineer` | LLM, RAG, AI/ML systems |
262
+ | `cloud-architect` | AWS, Azure, GCP, Terraform |
263
+ | `data-engineer` | ETL, pipelines, analytics |
264
+
265
+ #### Tier 5: Support Agents
266
+
267
+ | Agent | Description |
268
+ | ---------------------- | ------------------------ |
269
+ | `documentation-writer` | Technical docs, API docs |
270
+ | `i18n-specialist` | Internationalization |
271
+ | `ux-researcher` | UX research, usability |
272
+
273
+ </details>
274
+
275
+ <details>
276
+ <summary><b>🧩 Skills (40)</b></summary>
277
+
278
+ **Core Skills:**
279
+ | Skill | Description |
280
+ | ----------------------- | ----------------------------- |
281
+ | `clean-code` | Pragmatic coding standards |
282
+ | `api-patterns` | REST/GraphQL/tRPC decisions |
283
+ | `database-design` | Schema design, indexing |
284
+ | `testing-patterns` | Unit, integration, E2E |
285
+ | `security-fundamentals` | OWASP 2025, secure coding |
286
+ | `performance-profiling` | Core Web Vitals, optimization |
287
+
288
+ **Process Skills:**
289
+ | Skill | Description |
290
+ | ----------------------- | ----------------------------- |
291
+ | `brainstorming` | Socratic questioning protocol |
292
+ | `plan-writing` | Task breakdown, WBS |
293
+ | `systematic-debugging` | 4-phase debugging |
294
+
295
+ **Domain Skills (31):** `react-patterns`, `typescript-patterns`, `docker-patterns`, `kubernetes-patterns`, `terraform-patterns`, `auth-patterns`, `graphql-patterns`, `redis-patterns`, `realtime-patterns`, `queue-patterns`, `multi-tenancy`, `ai-rag-patterns`, `prompt-engineering`, `monitoring-observability`, `frontend-design`, `mobile-design`, `tailwind-patterns`, `e2e-testing`, `github-actions`, `gitlab-ci-patterns`, `flutter-patterns`, `react-native-patterns`, `seo-patterns`, `accessibility-patterns`, `mermaid-diagrams`, `i18n-localization`, `postgres-patterns`, `nodejs-best-practices`, `documentation-templates`, `ui-ux-pro-max`, `aws-patterns`
296
+
297
+ </details>
298
+
299
+ <details>
300
+ <summary><b>📜 Workflows (7)</b></summary>
301
+
302
+ | Command | Description |
303
+ | ---------------- | ----------------------------- |
304
+ | `/plan` | Create project plan (no code) |
305
+ | `/create` | Build new application |
306
+ | `/debug` | Systematic debugging |
307
+ | `/test` | Generate and run tests |
308
+ | `/deploy` | Production deployment |
309
+ | `/orchestrate` | Multi-agent coordination |
310
+ | `/ui-ux-pro-max` | UI/UX design intelligence |
311
+
312
+ > **Note:** The `/filter` command is part of **Common Skills Layer** (see below) and available in all kits.
313
+
314
+ </details>
315
+
316
+ ### 🔜 Coming Soon
317
+
318
+ | Kit | Description | Status |
319
+ | ----------------- | ----------------------------- | ----------------- |
320
+ | ✍️ **Writer** | Content creation, copywriting | 🚧 In Development |
321
+ | 🔬 **Researcher** | Research, analysis, synthesis | 📋 Planned |
322
+ | 🎨 **Designer** | UI/UX design, branding | 📋 Planned |
323
+
324
+ <br/>
325
+
326
+ ## 🛠️ Usage
327
+
328
+ ### Using Agents
329
+
330
+ Reference agents with `@agent-name`:
331
+
332
+ ```markdown
333
+ @backend-specialist design an API for user management
334
+ @security-auditor review this authentication code
335
+ @test-engineer write tests for the payment service
336
+ ```
337
+
338
+ ### Using Workflows
339
+
340
+ Invoke workflows with slash commands:
341
+
342
+ ```bash
343
+ /plan my new e-commerce site # Create project plan
344
+ /create todo app # Build application
345
+ /debug login not working # Fix bugs
346
+ /test user service # Generate tests
347
+ /filter # Optimize skills for workspace
348
+ ```
349
+
350
+ <br/>
351
+
352
+ ## 📚 Documentation
353
+
354
+ After installation, find documentation in your project:
355
+
356
+ - **Architecture Guide**: `<path>/ARCHITECTURE.md`
357
+ - **Agent Details**: `<path>/agents/*.md`
358
+ - **Skill Guides**: `<path>/skills/*/SKILL.md`
359
+ - **Workflow Docs**: `<path>/workflows/*.md`
360
+ - **Common Skills**: `common/COMMON.md`
361
+
362
+ <br/>
363
+
364
+ ## 🤝 Contributing
365
+
366
+ Contributions are welcome! Please see our [Contributing Guide](CONTRIBUTING.md).
367
+
368
+ ### Creating a New Kit
369
+
370
+ Follow this detailed guide to create a new kit for Agent Kits:
371
+
372
+ #### Step 1: Create Kit Directory Structure
373
+
374
+ ```bash
375
+ mkdir -p kits/my-kit/{agents,skills,workflows}
376
+ ```
377
+
378
+ ```
379
+ kits/my-kit/
380
+ ├── ARCHITECTURE.md # Kit documentation (required)
381
+ ├── GEMINI.md # AI rule file (required)
382
+ ├── agents/ # Agent personas
383
+ │ ├── orchestrator.md
384
+ │ └── specialist.md
385
+ ├── skills/ # Domain skills
386
+ │ └── core-skill/
387
+ │ └── SKILL.md
388
+ └── workflows/ # Slash commands
389
+ └── main.md
390
+ ```
391
+
392
+ #### Step 2: Create ARCHITECTURE.md
393
+
394
+ ```markdown
395
+ # My Kit Architecture
396
+
397
+ ## 🎯 Purpose
398
+
399
+ [Describe what this kit is for]
400
+
401
+ ## 🤖 Agents
402
+
403
+ | Agent | Description |
404
+ | ----- | ----------- |
405
+ | ... | ... |
406
+
407
+ ## 🧩 Skills
408
+
409
+ | Skill | Description |
410
+ | ----- | ----------- |
411
+ | ... | ... |
412
+
413
+ ## 📜 Workflows
414
+
415
+ | Command | Description |
416
+ | ------- | ----------- |
417
+ | ... | ... |
418
+
419
+ ## 🔗 Common Skills
420
+
421
+ This kit inherits from the **Common Skills Layer**. See `common/COMMON.md`.
422
+ ```
423
+
424
+ #### Step 3: Create GEMINI.md (AI Rule File)
425
+
426
+ ```markdown
427
+ ---
428
+ trigger: manual
429
+ ---
430
+
431
+ # GEMINI.md - My Kit
432
+
433
+ > [Kit description]
434
+
435
+ ## 🎯 Purpose
436
+
437
+ [Purpose description]
438
+
439
+ ## 🤖 AGENT ROUTING
440
+
441
+ [Agent selection logic]
442
+
443
+ ## 📜 WORKFLOWS
444
+
445
+ [Available slash commands]
446
+
447
+ ## 🛠️ SKILL LOADING
448
+
449
+ [Skill loading protocol]
450
+ ```
451
+
452
+ #### Step 4: Register Kit in CLI
453
+
454
+ Edit `src/config.ts`:
455
+
456
+ ```typescript
457
+ export const KITS: Kit[] = [
458
+ {
459
+ id: "coder",
460
+ name: "Coder Kit",
461
+ description: "Complete toolkit for software development",
462
+ path: "kits/coder",
463
+ },
464
+ {
465
+ id: "my-kit",
466
+ name: "My Kit",
467
+ description: "Description of my kit",
468
+ path: "kits/my-kit",
469
+ },
470
+ ];
471
+ ```
472
+
473
+ #### Step 5: Test Your Kit
474
+
475
+ ```bash
476
+ # Build CLI
477
+ pnpm build
478
+
479
+ # Test installation
480
+ node dist/cli.js
481
+
482
+ # Select your new kit and verify installation
483
+ ```
484
+
485
+ #### Step 6: Submit Pull Request
486
+
487
+ 1. Fork the repository
488
+ 2. Create feature branch: `git checkout -b feat/my-kit`
489
+ 3. Commit changes: `git commit -m "feat: add my-kit"`
490
+ 4. Push and create PR
491
+
492
+ ### Creating New Skills/Agents
493
+
494
+ Inside a kit:
495
+
496
+ ```bash
497
+ # Add agent
498
+ python3 kits/coder/skills/agent-creator/scripts/init_agent.py my-agent
499
+
500
+ # Add skill
501
+ python3 kits/coder/skills/skill-creator/scripts/init_skill.py my-skill
502
+ ```
503
+
504
+ <br/>
505
+
506
+ ## 📄 License
507
+
508
+ MIT © [Neos](https://github.com/nvdnvd00)
509
+
510
+ ---
511
+
512
+ <p align="center">
513
+ <sub>Built with ❤️ for the AI-assisted development community</sub>
514
+ </p>