@musashishao/agent-kit 1.0.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.

Potentially problematic release.


This version of @musashishao/agent-kit might be problematic. Click here for more details.

Files changed (220) hide show
  1. package/.agent/.shared/ui-ux-pro-max/data/charts.csv +26 -0
  2. package/.agent/.shared/ui-ux-pro-max/data/colors.csv +97 -0
  3. package/.agent/.shared/ui-ux-pro-max/data/icons.csv +101 -0
  4. package/.agent/.shared/ui-ux-pro-max/data/landing.csv +31 -0
  5. package/.agent/.shared/ui-ux-pro-max/data/products.csv +97 -0
  6. package/.agent/.shared/ui-ux-pro-max/data/prompts.csv +24 -0
  7. package/.agent/.shared/ui-ux-pro-max/data/react-performance.csv +45 -0
  8. package/.agent/.shared/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  9. package/.agent/.shared/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  10. package/.agent/.shared/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  11. package/.agent/.shared/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  12. package/.agent/.shared/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  13. package/.agent/.shared/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  14. package/.agent/.shared/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  15. package/.agent/.shared/ui-ux-pro-max/data/stacks/react.csv +54 -0
  16. package/.agent/.shared/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  17. package/.agent/.shared/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  18. package/.agent/.shared/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  19. package/.agent/.shared/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  20. package/.agent/.shared/ui-ux-pro-max/data/styles.csv +59 -0
  21. package/.agent/.shared/ui-ux-pro-max/data/typography.csv +58 -0
  22. package/.agent/.shared/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  23. package/.agent/.shared/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  24. package/.agent/.shared/ui-ux-pro-max/data/web-interface.csv +31 -0
  25. package/.agent/.shared/ui-ux-pro-max/scripts/core.py +258 -0
  26. package/.agent/.shared/ui-ux-pro-max/scripts/design_system.py +487 -0
  27. package/.agent/.shared/ui-ux-pro-max/scripts/search.py +76 -0
  28. package/.agent/ARCHITECTURE.md +225 -0
  29. package/.agent/CONTEXT.md +229 -0
  30. package/.agent/FEATURE_ROADMAP.md +435 -0
  31. package/.agent/PROMPT_TEMPLATES.md +261 -0
  32. package/.agent/agents/backend-specialist.md +263 -0
  33. package/.agent/agents/database-architect.md +226 -0
  34. package/.agent/agents/debugger.md +225 -0
  35. package/.agent/agents/devops-engineer.md +242 -0
  36. package/.agent/agents/documentation-writer.md +104 -0
  37. package/.agent/agents/explorer-agent.md +73 -0
  38. package/.agent/agents/frontend-specialist.md +556 -0
  39. package/.agent/agents/game-developer.md +162 -0
  40. package/.agent/agents/mobile-developer.md +377 -0
  41. package/.agent/agents/orchestrator.md +416 -0
  42. package/.agent/agents/penetration-tester.md +188 -0
  43. package/.agent/agents/performance-optimizer.md +187 -0
  44. package/.agent/agents/project-planner.md +403 -0
  45. package/.agent/agents/security-auditor.md +170 -0
  46. package/.agent/agents/seo-specialist.md +111 -0
  47. package/.agent/agents/test-engineer.md +158 -0
  48. package/.agent/rules/GEMINI.md +251 -0
  49. package/.agent/skills/api-patterns/SKILL.md +81 -0
  50. package/.agent/skills/api-patterns/api-style.md +42 -0
  51. package/.agent/skills/api-patterns/auth.md +24 -0
  52. package/.agent/skills/api-patterns/documentation.md +26 -0
  53. package/.agent/skills/api-patterns/graphql.md +41 -0
  54. package/.agent/skills/api-patterns/rate-limiting.md +31 -0
  55. package/.agent/skills/api-patterns/response.md +37 -0
  56. package/.agent/skills/api-patterns/rest.md +40 -0
  57. package/.agent/skills/api-patterns/scripts/api_validator.py +211 -0
  58. package/.agent/skills/api-patterns/security-testing.md +122 -0
  59. package/.agent/skills/api-patterns/trpc.md +41 -0
  60. package/.agent/skills/api-patterns/versioning.md +22 -0
  61. package/.agent/skills/app-builder/SKILL.md +75 -0
  62. package/.agent/skills/app-builder/agent-coordination.md +71 -0
  63. package/.agent/skills/app-builder/feature-building.md +53 -0
  64. package/.agent/skills/app-builder/project-detection.md +34 -0
  65. package/.agent/skills/app-builder/scaffolding.md +118 -0
  66. package/.agent/skills/app-builder/tech-stack.md +40 -0
  67. package/.agent/skills/app-builder/templates/SKILL.md +39 -0
  68. package/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
  69. package/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
  70. package/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
  71. package/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
  72. package/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
  73. package/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
  74. package/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
  75. package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +82 -0
  76. package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +100 -0
  77. package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +106 -0
  78. package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +101 -0
  79. package/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
  80. package/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +93 -0
  81. package/.agent/skills/architecture/SKILL.md +55 -0
  82. package/.agent/skills/architecture/context-discovery.md +43 -0
  83. package/.agent/skills/architecture/examples.md +94 -0
  84. package/.agent/skills/architecture/pattern-selection.md +68 -0
  85. package/.agent/skills/architecture/patterns-reference.md +50 -0
  86. package/.agent/skills/architecture/trade-off-analysis.md +77 -0
  87. package/.agent/skills/bash-linux/SKILL.md +199 -0
  88. package/.agent/skills/behavioral-modes/SKILL.md +242 -0
  89. package/.agent/skills/brainstorming/SKILL.md +163 -0
  90. package/.agent/skills/brainstorming/dynamic-questioning.md +350 -0
  91. package/.agent/skills/clean-code/SKILL.md +201 -0
  92. package/.agent/skills/code-review-checklist/SKILL.md +109 -0
  93. package/.agent/skills/database-design/SKILL.md +52 -0
  94. package/.agent/skills/database-design/database-selection.md +43 -0
  95. package/.agent/skills/database-design/indexing.md +39 -0
  96. package/.agent/skills/database-design/migrations.md +48 -0
  97. package/.agent/skills/database-design/optimization.md +36 -0
  98. package/.agent/skills/database-design/orm-selection.md +30 -0
  99. package/.agent/skills/database-design/schema-design.md +56 -0
  100. package/.agent/skills/database-design/scripts/schema_validator.py +172 -0
  101. package/.agent/skills/deployment-procedures/SKILL.md +241 -0
  102. package/.agent/skills/doc.md +177 -0
  103. package/.agent/skills/docker-expert/SKILL.md +409 -0
  104. package/.agent/skills/documentation-templates/SKILL.md +194 -0
  105. package/.agent/skills/frontend-design/SKILL.md +396 -0
  106. package/.agent/skills/frontend-design/animation-guide.md +331 -0
  107. package/.agent/skills/frontend-design/color-system.md +311 -0
  108. package/.agent/skills/frontend-design/decision-trees.md +418 -0
  109. package/.agent/skills/frontend-design/motion-graphics.md +306 -0
  110. package/.agent/skills/frontend-design/scripts/accessibility_checker.py +183 -0
  111. package/.agent/skills/frontend-design/scripts/ux_audit.py +722 -0
  112. package/.agent/skills/frontend-design/typography-system.md +345 -0
  113. package/.agent/skills/frontend-design/ux-psychology.md +541 -0
  114. package/.agent/skills/frontend-design/visual-effects.md +383 -0
  115. package/.agent/skills/game-development/2d-games/SKILL.md +119 -0
  116. package/.agent/skills/game-development/3d-games/SKILL.md +135 -0
  117. package/.agent/skills/game-development/SKILL.md +167 -0
  118. package/.agent/skills/game-development/game-art/SKILL.md +185 -0
  119. package/.agent/skills/game-development/game-audio/SKILL.md +190 -0
  120. package/.agent/skills/game-development/game-design/SKILL.md +129 -0
  121. package/.agent/skills/game-development/mobile-games/SKILL.md +108 -0
  122. package/.agent/skills/game-development/multiplayer/SKILL.md +132 -0
  123. package/.agent/skills/game-development/pc-games/SKILL.md +144 -0
  124. package/.agent/skills/game-development/vr-ar/SKILL.md +123 -0
  125. package/.agent/skills/game-development/web-games/SKILL.md +150 -0
  126. package/.agent/skills/geo-fundamentals/SKILL.md +156 -0
  127. package/.agent/skills/geo-fundamentals/scripts/geo_checker.py +289 -0
  128. package/.agent/skills/i18n-localization/SKILL.md +154 -0
  129. package/.agent/skills/i18n-localization/scripts/i18n_checker.py +241 -0
  130. package/.agent/skills/lint-and-validate/SKILL.md +45 -0
  131. package/.agent/skills/lint-and-validate/scripts/lint_runner.py +172 -0
  132. package/.agent/skills/lint-and-validate/scripts/type_coverage.py +173 -0
  133. package/.agent/skills/mcp-builder/SKILL.md +176 -0
  134. package/.agent/skills/mobile-design/SKILL.md +394 -0
  135. package/.agent/skills/mobile-design/decision-trees.md +516 -0
  136. package/.agent/skills/mobile-design/mobile-backend.md +491 -0
  137. package/.agent/skills/mobile-design/mobile-color-system.md +420 -0
  138. package/.agent/skills/mobile-design/mobile-debugging.md +122 -0
  139. package/.agent/skills/mobile-design/mobile-design-thinking.md +357 -0
  140. package/.agent/skills/mobile-design/mobile-navigation.md +458 -0
  141. package/.agent/skills/mobile-design/mobile-performance.md +767 -0
  142. package/.agent/skills/mobile-design/mobile-testing.md +356 -0
  143. package/.agent/skills/mobile-design/mobile-typography.md +433 -0
  144. package/.agent/skills/mobile-design/platform-android.md +666 -0
  145. package/.agent/skills/mobile-design/platform-ios.md +561 -0
  146. package/.agent/skills/mobile-design/scripts/mobile_audit.py +670 -0
  147. package/.agent/skills/mobile-design/touch-psychology.md +537 -0
  148. package/.agent/skills/nestjs-expert/SKILL.md +552 -0
  149. package/.agent/skills/nextjs-best-practices/SKILL.md +203 -0
  150. package/.agent/skills/nodejs-best-practices/SKILL.md +333 -0
  151. package/.agent/skills/parallel-agents/SKILL.md +175 -0
  152. package/.agent/skills/performance-profiling/SKILL.md +143 -0
  153. package/.agent/skills/performance-profiling/scripts/lighthouse_audit.py +76 -0
  154. package/.agent/skills/plan-writing/SKILL.md +152 -0
  155. package/.agent/skills/powershell-windows/SKILL.md +167 -0
  156. package/.agent/skills/prisma-expert/SKILL.md +355 -0
  157. package/.agent/skills/python-patterns/SKILL.md +441 -0
  158. package/.agent/skills/react-patterns/SKILL.md +198 -0
  159. package/.agent/skills/red-team-tactics/SKILL.md +199 -0
  160. package/.agent/skills/seo-fundamentals/SKILL.md +129 -0
  161. package/.agent/skills/seo-fundamentals/scripts/seo_checker.py +219 -0
  162. package/.agent/skills/server-management/SKILL.md +161 -0
  163. package/.agent/skills/systematic-debugging/SKILL.md +109 -0
  164. package/.agent/skills/tailwind-patterns/SKILL.md +269 -0
  165. package/.agent/skills/tdd-workflow/SKILL.md +149 -0
  166. package/.agent/skills/testing-patterns/SKILL.md +178 -0
  167. package/.agent/skills/testing-patterns/scripts/test_runner.py +219 -0
  168. package/.agent/skills/typescript-expert/SKILL.md +429 -0
  169. package/.agent/skills/typescript-expert/references/tsconfig-strict.json +92 -0
  170. package/.agent/skills/typescript-expert/references/typescript-cheatsheet.md +383 -0
  171. package/.agent/skills/typescript-expert/references/utility-types.ts +335 -0
  172. package/.agent/skills/typescript-expert/scripts/ts_diagnostic.py +203 -0
  173. package/.agent/skills/ui-ux-pro-max/SKILL.md +351 -0
  174. package/.agent/skills/ui-ux-pro-max/data/charts.csv +26 -0
  175. package/.agent/skills/ui-ux-pro-max/data/colors.csv +97 -0
  176. package/.agent/skills/ui-ux-pro-max/data/icons.csv +101 -0
  177. package/.agent/skills/ui-ux-pro-max/data/landing.csv +31 -0
  178. package/.agent/skills/ui-ux-pro-max/data/products.csv +97 -0
  179. package/.agent/skills/ui-ux-pro-max/data/prompts.csv +24 -0
  180. package/.agent/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  181. package/.agent/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  182. package/.agent/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  183. package/.agent/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  184. package/.agent/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  185. package/.agent/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  186. package/.agent/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  187. package/.agent/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  188. package/.agent/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  189. package/.agent/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  190. package/.agent/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  191. package/.agent/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  192. package/.agent/skills/ui-ux-pro-max/data/styles.csv +59 -0
  193. package/.agent/skills/ui-ux-pro-max/data/typography.csv +58 -0
  194. package/.agent/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  195. package/.agent/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  196. package/.agent/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  197. package/.agent/skills/ui-ux-pro-max/scripts/core.py +257 -0
  198. package/.agent/skills/ui-ux-pro-max/scripts/design_system.py +487 -0
  199. package/.agent/skills/ui-ux-pro-max/scripts/search.py +76 -0
  200. package/.agent/skills/vulnerability-scanner/SKILL.md +276 -0
  201. package/.agent/skills/vulnerability-scanner/checklists.md +121 -0
  202. package/.agent/skills/vulnerability-scanner/scripts/security_scan.py +458 -0
  203. package/.agent/skills/webapp-testing/SKILL.md +187 -0
  204. package/.agent/skills/webapp-testing/scripts/playwright_runner.py +173 -0
  205. package/.agent/workflows/brainstorm.md +113 -0
  206. package/.agent/workflows/create.md +59 -0
  207. package/.agent/workflows/debug.md +103 -0
  208. package/.agent/workflows/deploy.md +176 -0
  209. package/.agent/workflows/enhance.md +63 -0
  210. package/.agent/workflows/orchestrate.md +237 -0
  211. package/.agent/workflows/plan.md +89 -0
  212. package/.agent/workflows/preview.md +80 -0
  213. package/.agent/workflows/status.md +86 -0
  214. package/.agent/workflows/test.md +144 -0
  215. package/.agent/workflows/ui-ux-pro-max.md +231 -0
  216. package/LICENSE +21 -0
  217. package/README.md +101 -0
  218. package/bin/cli.js +235 -0
  219. package/index.js +1 -0
  220. package/package.json +43 -0
@@ -0,0 +1,435 @@
1
+ # 🚀 Feature Roadmap - Antigravity Kit
2
+
3
+ > Nghiên cứu từ: ClaudeKit, Claude Code, Task Master, Cursor Rules, và các AI Agent frameworks 2025
4
+ > Ngày tạo: 2026-01-21
5
+
6
+ ---
7
+
8
+ ## 📊 So Sánh Với Đối Thủ
9
+
10
+ | Feature | ClaudeKit | Task Master | Claude Code | **Antigravity Kit** |
11
+ |---------|-----------|-------------|-------------|---------------------|
12
+ | Skills/Agents | 50+ skills, 45 agents | Task-focused | Plugins | 40 skills, 16 agents |
13
+ | Marketplace | ✅ Plugin marketplace | ✅ npm package | ✅ Plugins dir | ❌ Manual install |
14
+ | MCP Support | ✅ mcp-builder, mcp-management | ✅ MCP integration | ✅ Built-in | ❌ Missing |
15
+ | CLI Tool | ❌ | ✅ task-master CLI | ✅ claude CLI | ⚠️ Basic (ag-kit) |
16
+ | Task Management | ❌ | ✅ (Core feature) | ⚠️ Basic | ❌ Missing |
17
+ | Web UI/Dashboard | ❌ | ❌ | ❌ | ⚠️ Docs only |
18
+ | Multi-AI Support | ✅ Claude-focused | ✅ Any AI chat | ✅ Claude only | ✅ Gemini + others |
19
+ | Problem-Solving Skills | ✅ 6 frameworks | ❌ | ❌ | ❌ Missing |
20
+ | Marketing Skills | ✅ 28 agents | ❌ | ❌ | ❌ Missing |
21
+
22
+ ---
23
+
24
+ ## 🎯 PRIORITY 1: Critical Missing Features
25
+
26
+ ### 1.1 🔌 MCP (Model Context Protocol) Support
27
+ **Thấy ở:** ClaudeKit, Task Master, Claude Code
28
+
29
+ ```
30
+ Thêm:
31
+ ├── skills/mcp-builder/ # Hướng dẫn build MCP servers
32
+ ├── skills/mcp-management/ # Quản lý MCP tools
33
+ └── agents/mcp-developer/ # Specialized MCP agent
34
+ ```
35
+
36
+ **Tại sao quan trọng:**
37
+ - MCP là chuẩn protocol mới cho AI tools
38
+ - Cho phép AI access external services (GitHub, Slack, databases...)
39
+ - ClaudeKit có "mcp-manager subagent" rất phổ biến
40
+
41
+ **Implementation:**
42
+ ```markdown
43
+ # mcp-builder skill
44
+ - FastMCP (Python) patterns
45
+ - TypeScript MCP patterns
46
+ - Tool design best practices
47
+ - Server deployment guides
48
+ ```
49
+
50
+ ---
51
+
52
+ ### 1.2 📦 Plugin Marketplace System
53
+ **Thấy ở:** ClaudeKit, Claude Code plugins
54
+
55
+ **Hiện tại:** `npx @vudovn/ag-kit init` chỉ install tất cả
56
+
57
+ **Đề xuất:**
58
+ ```bash
59
+ # Selective install
60
+ ag-kit install skill:react-patterns
61
+ ag-kit install agent:frontend-specialist
62
+ ag-kit install workflow:debug
63
+
64
+ # Marketplace commands
65
+ ag-kit search "database"
66
+ ag-kit list --installed
67
+ ag-kit update
68
+
69
+ # Plugin bundles
70
+ ag-kit install bundle:web-dev # React + Next.js + Tailwind
71
+ ag-kit install bundle:backend # API + Database + DevOps
72
+ ag-kit install bundle:mobile # React Native + Flutter
73
+ ```
74
+
75
+ **Lợi ích:**
76
+ - Giảm context bloat (chỉ install những gì cần)
77
+ - User có thể customize
78
+ - Dễ contribute community skills
79
+
80
+ ---
81
+
82
+ ### 1.3 📋 Task Management System
83
+ **Thấy ở:** Task Master (core feature)
84
+
85
+ **Đề xuất thêm skill:**
86
+ ```
87
+ skills/task-management/
88
+ ├── SKILL.md # Task creation, tracking, dependencies
89
+ ├── task-structure.md # Task JSON/YAML format
90
+ ├── scripts/
91
+ │ ├── create-task.py
92
+ │ ├── list-tasks.py
93
+ │ └── update-task.py
94
+ └── templates/
95
+ └── task-template.md
96
+ ```
97
+
98
+ **Task Format:**
99
+ ```json
100
+ {
101
+ "id": "TASK-001",
102
+ "title": "Implement login page",
103
+ "status": "in-progress",
104
+ "priority": "high",
105
+ "subtasks": [...],
106
+ "dependencies": ["TASK-000"],
107
+ "complexity": 5,
108
+ "estimatedTime": "2h"
109
+ }
110
+ ```
111
+
112
+ **Slash commands:**
113
+ ```
114
+ /task create "Feature name"
115
+ /task list
116
+ /task next
117
+ /task done TASK-001
118
+ ```
119
+
120
+ ---
121
+
122
+ ## 🎯 PRIORITY 2: High-Value Additions
123
+
124
+ ### 2.1 🧠 Problem-Solving Frameworks
125
+ **Thấy ở:** ClaudeKit (6 frameworks)
126
+
127
+ **Đề xuất thêm:**
128
+ ```
129
+ skills/problem-solving/
130
+ ├── when-stuck/ # Dispatch to right technique
131
+ ├── collision-zone-thinking/ # Force unrelated concepts together
132
+ ├── inversion-exercise/ # Flip assumptions
133
+ ├── meta-pattern-recognition/ # Spot patterns across domains
134
+ ├── scale-game/ # Test at extremes (1000x/0.001x)
135
+ ├── simplification-cascades/ # Find insights that eliminate complexity
136
+ └── sequential-thinking/ # Step-by-step with revision
137
+ ```
138
+
139
+ **Tại sao cần:**
140
+ - Giúp AI reasoning tốt hơn
141
+ - Đặc biệt hữu ích cho complex problems
142
+ - Differentiator so với competitors
143
+
144
+ ---
145
+
146
+ ### 2.2 🎨 Enhanced UI/Design Skills
147
+ **Thấy ở:** ClaudeKit `aesthetic` skill
148
+
149
+ **Hiện tại:** `ui-ux-pro-max` skill
150
+
151
+ **Đề xuất bổ sung:**
152
+ ```
153
+ skills/aesthetic/
154
+ ├── SKILL.md
155
+ ├── inspiration-workflow.md # Capture + analyze design inspiration
156
+ ├── design-principles.md # BEAUTIFUL → RIGHT → SATISFYING → PEAK
157
+ └── scripts/
158
+ └── design-audit.py
159
+ ```
160
+
161
+ **Workflow:**
162
+ 1. Capture inspiration từ websites
163
+ 2. Analyze với AI (Gemini Vision)
164
+ 3. Generate design iteratively
165
+ 4. Audit against aesthetic standards
166
+
167
+ ---
168
+
169
+ ### 2.3 🤖 AI/ML Skills
170
+ **Thấy ở:** ClaudeKit (ai-multimodal, context-engineering)
171
+
172
+ **Đề xuất:**
173
+ ```
174
+ skills/ai-multimodal/
175
+ ├── SKILL.md
176
+ ├── image-analysis.md # Vision AI patterns
177
+ ├── audio-processing.md # Transcription, summarization
178
+ ├── video-analysis.md # Scene detection, temporal analysis
179
+ └── document-extraction.md # PDF, tables, charts
180
+
181
+ skills/context-engineering/
182
+ ├── SKILL.md
183
+ ├── context-optimization.md # Compaction, masking, caching
184
+ ├── memory-architectures.md # Short-term, long-term memory
185
+ ├── multi-agent-patterns.md # Agent coordination
186
+ └── token-management.md # Reduce token usage
187
+ ```
188
+
189
+ ---
190
+
191
+ ### 2.4 📊 Visualization & Diagramming
192
+ **Thấy ở:** ClaudeKit `mermaidjs-v11`
193
+
194
+ **Đề xuất:**
195
+ ```
196
+ skills/diagramming/
197
+ ├── SKILL.md
198
+ ├── mermaid-v11.md # Flowcharts, sequence, class diagrams
199
+ ├── architecture-diagrams.md
200
+ ├── user-journey.md
201
+ └── templates/
202
+ ├── flowchart.mmd
203
+ ├── sequence.mmd
204
+ └── erd.mmd
205
+ ```
206
+
207
+ ---
208
+
209
+ ## 🎯 PRIORITY 3: Nice-to-Have Features
210
+
211
+ ### 3.1 🌐 Browser Automation Skills
212
+ **Thấy ở:** ClaudeKit (chrome-devtools, web-testing)
213
+
214
+ ```
215
+ skills/browser-automation/
216
+ ├── puppeteer.md # Automation, screenshots
217
+ ├── playwright.md # E2E testing
218
+ └── web-scraping.md # Data extraction
219
+ ```
220
+
221
+ ---
222
+
223
+ ### 3.2 📄 Document Processing
224
+ **Thấy ở:** ClaudeKit
225
+
226
+ ```
227
+ skills/document-processing/
228
+ ├── pdf-extraction.md
229
+ ├── excel-processing.md
230
+ ├── word-automation.md
231
+ └── powerpoint-generation.md
232
+ ```
233
+
234
+ ---
235
+
236
+ ### 3.3 🔍 Research & Documentation Discovery
237
+ **Thấy ở:** ClaudeKit `docs-seeker`
238
+
239
+ ```
240
+ skills/docs-seeker/
241
+ ├── SKILL.md
242
+ ├── llms-txt-standard.md # Use llms.txt for doc discovery
243
+ ├── github-analysis.md # Analyze repos via Repomix
244
+ └── parallel-exploration.md # Multi-agent doc exploration
245
+ ```
246
+
247
+ ---
248
+
249
+ ### 3.4 📈 Marketing Skills (Optional)
250
+ **Thấy ở:** ClaudeKit (28 Marketing agents)
251
+
252
+ ```
253
+ agents/
254
+ ├── seo-specialist/ # Already exists ✅
255
+ ├── content-writer/ # Blog, social posts
256
+ ├── copywriter/ # Ad copy, landing pages
257
+ ├── analytics-expert/ # GA4, metrics
258
+ └── growth-hacker/ # A/B testing, funnels
259
+ ```
260
+
261
+ ---
262
+
263
+ ## 🛠️ CLI Improvements
264
+
265
+ ### Hiện tại:
266
+ ```bash
267
+ ag-kit init
268
+ ag-kit update
269
+ ag-kit status
270
+ ```
271
+
272
+ ### Đề xuất thêm:
273
+ ```bash
274
+ # Skill management
275
+ ag-kit skills list # List all available skills
276
+ ag-kit skills search "api" # Search skills
277
+ ag-kit skills install <name> # Install specific skill
278
+ ag-kit skills remove <name> # Remove skill
279
+ ag-kit skills update # Update installed skills
280
+
281
+ # Agent management
282
+ ag-kit agents list
283
+ ag-kit agents info <name> # Show agent details
284
+
285
+ # Workflow management
286
+ ag-kit workflows list
287
+ ag-kit workflows run <name> # Run workflow programmatically
288
+
289
+ # Project analysis
290
+ ag-kit analyze # Analyze project, suggest skills
291
+ ag-kit doctor # Check configuration issues
292
+ ag-kit stats # Show usage statistics
293
+
294
+ # Export/Share
295
+ ag-kit export skill <name> # Export skill as standalone
296
+ ag-kit share # Share config to team
297
+ ```
298
+
299
+ ---
300
+
301
+ ## 📱 Web Dashboard (New!)
302
+
303
+ ### Đề xuất thêm Interactive Dashboard:
304
+
305
+ ```
306
+ web/src/app/dashboard/
307
+ ├── page.tsx # Main dashboard
308
+ ├── playground/ # Test agents interactively
309
+ ├── skills-browser/ # Browse & preview skills
310
+ ├── agent-visualizer/ # Visualize agent workflows
311
+ └── analytics/ # Usage analytics
312
+ ```
313
+
314
+ **Features:**
315
+ - **Playground:** Test prompts with different agents
316
+ - **Skill Browser:** Interactive skill catalog with filters
317
+ - **Agent Visualizer:** See how agents coordinate
318
+ - **Config Generator:** Generate GEMINI.md interactively
319
+
320
+ ---
321
+
322
+ ## 📋 Documentation Improvements
323
+
324
+ ### Thêm sections mới:
325
+
326
+ ```
327
+ web/src/app/docs/
328
+ ├── tutorials/
329
+ │ ├── getting-started/
330
+ │ ├── first-agent/
331
+ │ ├── custom-skill/
332
+ │ └── workflow-creation/
333
+ ├── examples/
334
+ │ ├── web-app/ # ✅ Already exists
335
+ │ ├── mobile-app/
336
+ │ ├── api-backend/
337
+ │ └── full-stack/
338
+ ├── api-reference/
339
+ │ ├── cli/
340
+ │ ├── skills-format/
341
+ │ └── agents-format/
342
+ └── contributing/
343
+ ├── skill-guidelines/
344
+ └── agent-guidelines/
345
+ ```
346
+
347
+ ---
348
+
349
+ ## 🔧 Technical Improvements
350
+
351
+ ### 3.1 Token/Context Optimization
352
+ **Thấy ở:** Task Master (selective tool loading)
353
+
354
+ ```markdown
355
+ # Trong GEMINI.md hoặc config
356
+ context_mode: "lean" # core | standard | lean | custom
357
+ enabled_skills: # Only load these skills
358
+ - react-patterns
359
+ - api-patterns
360
+ - testing-patterns
361
+ ```
362
+
363
+ **Lợi ích:** Giảm 70% token usage
364
+
365
+ ---
366
+
367
+ ### 3.2 Skill Dependencies
368
+ ```yaml
369
+ # skills/nextjs-best-practices/SKILL.md frontmatter
370
+ ---
371
+ name: nextjs-best-practices
372
+ requires:
373
+ - react-patterns
374
+ - typescript-expert
375
+ optional:
376
+ - tailwind-patterns
377
+ ---
378
+ ```
379
+
380
+ ---
381
+
382
+ ### 3.3 Skill Versioning
383
+ ```yaml
384
+ ---
385
+ name: react-patterns
386
+ version: 2.1.0
387
+ compatible_with:
388
+ - react: ">=18.0.0"
389
+ - next: ">=14.0.0"
390
+ ---
391
+ ```
392
+
393
+ ---
394
+
395
+ ## 📊 Implementation Priority Matrix
396
+
397
+ | Feature | Impact | Effort | Priority |
398
+ |---------|--------|--------|----------|
399
+ | MCP Support | 🔥 High | Medium | P0 |
400
+ | Plugin Marketplace | 🔥 High | High | P1 |
401
+ | Task Management | 🔥 High | Medium | P1 |
402
+ | Problem-Solving Skills | Medium | Low | P2 |
403
+ | Enhanced Aesthetic Skill | Medium | Low | P2 |
404
+ | Context Optimization | High | Medium | P2 |
405
+ | CLI Improvements | Medium | Medium | P2 |
406
+ | Web Dashboard | Medium | High | P3 |
407
+ | Marketing Skills | Low | Low | P3 |
408
+
409
+ ---
410
+
411
+ ## 🎯 Quick Wins (< 1 day each)
412
+
413
+ 1. **Add `mcp-builder` skill** - Port từ ClaudeKit
414
+ 2. **Add problem-solving skills** (6 frameworks)
415
+ 3. **Add `mermaidjs` skill** for diagrams
416
+ 4. **Add `context-engineering` skill**
417
+ 5. **Improve CLI với `ag-kit skills list`**
418
+ 6. **Add `/task` workflow** cho task management
419
+
420
+ ---
421
+
422
+ ## 📝 Next Steps
423
+
424
+ 1. **Phase 1 (Week 1-2):** MCP Support + Problem-Solving Skills
425
+ 2. **Phase 2 (Week 3-4):** CLI Improvements + Task Management
426
+ 3. **Phase 3 (Month 2):** Plugin Marketplace
427
+ 4. **Phase 4 (Month 3):** Web Dashboard + Analytics
428
+
429
+ ---
430
+
431
+ > **Kết luận:** Antigravity Kit có foundation tốt với 40 skills và 16 agents. Để cạnh tranh với ClaudeKit và Task Master, cần tập trung vào:
432
+ > 1. **MCP Support** (must have 2025)
433
+ > 2. **Plugin Marketplace** (selective install)
434
+ > 3. **Task Management** (workflow productivity)
435
+ > 4. **Problem-Solving Frameworks** (AI reasoning)
@@ -0,0 +1,261 @@
1
+ # 🎯 Prompt Templates cho Antigravity Kit
2
+
3
+ > Copy-paste các prompt mẫu bên dưới để sử dụng với AI Agent
4
+
5
+ ---
6
+
7
+ ## 📌 PROMPT 1: Context Khởi Đầu (Dùng mỗi session mới)
8
+
9
+ ```
10
+ Tôi đang phát triển dự án Antigravity Kit - một bộ AI Agent templates.
11
+
12
+ ## Project Info
13
+ - **Repo:** antigravity-kit
14
+ - **Tech:** Next.js 16.1.3, React 19, TypeScript, Tailwind CSS 4
15
+ - **Structure:**
16
+ - `.agent/` = AI Agent templates (16 agents, 40 skills, 11 workflows)
17
+ - `web/` = Documentation website (Next.js App Router)
18
+
19
+ ## Key Files
20
+ - Homepage: `web/src/app/page.tsx`
21
+ - Docs: `web/src/app/docs/`
22
+ - UI Components: `web/src/components/ui/` (51 components)
23
+ - Styles: `web/src/app/globals.css` (CSS variables theming)
24
+ - Agent Rules: `.agent/rules/GEMINI.md`
25
+
26
+ ## Guidelines
27
+ - Use TypeScript strict mode
28
+ - Use Tailwind CSS classes
29
+ - Support dark/light mode via CSS variables
30
+ - All external links need `rel="noopener noreferrer"`
31
+
32
+ Hãy đọc file `.agent/CONTEXT.md` để hiểu đầy đủ context của dự án.
33
+ ```
34
+
35
+ ---
36
+
37
+ ## 📌 PROMPT 2: Thêm Feature Mới
38
+
39
+ ```
40
+ Tôi muốn thêm feature mới vào Antigravity Kit.
41
+
42
+ ## Feature: [TÊN FEATURE]
43
+
44
+ ### Mô tả
45
+ [Mô tả chi tiết feature]
46
+
47
+ ### Yêu cầu
48
+ 1. [Yêu cầu 1]
49
+ 2. [Yêu cầu 2]
50
+ 3. [Yêu cầu 3]
51
+
52
+ ### Files liên quan
53
+ - `web/src/app/...`
54
+ - `web/src/components/...`
55
+
56
+ ### UI/UX
57
+ - Phải responsive
58
+ - Hỗ trợ dark/light mode
59
+ - Sử dụng existing UI components từ `@/components/ui/`
60
+
61
+ Hãy implement theo đúng code style của project (xem `.agent/CONTEXT.md`).
62
+ ```
63
+
64
+ ---
65
+
66
+ ## 📌 PROMPT 3: Fix Bug / Debug
67
+
68
+ ```
69
+ Tôi gặp bug trong Antigravity Kit.
70
+
71
+ ## Bug Description
72
+ [Mô tả bug]
73
+
74
+ ## Steps to Reproduce
75
+ 1. [Bước 1]
76
+ 2. [Bước 2]
77
+ 3. [Bước 3]
78
+
79
+ ## Expected Behavior
80
+ [Behavior mong muốn]
81
+
82
+ ## Actual Behavior
83
+ [Behavior thực tế]
84
+
85
+ ## Relevant Files
86
+ - `web/src/...`
87
+
88
+ ## Environment
89
+ - OS: macOS
90
+ - Node: v20+
91
+ - Browser: Chrome
92
+
93
+ Hãy debug theo skill `.agent/skills/systematic-debugging/SKILL.md`.
94
+ ```
95
+
96
+ ---
97
+
98
+ ## 📌 PROMPT 4: Thêm Docs Page
99
+
100
+ ```
101
+ Tôi muốn thêm trang documentation mới.
102
+
103
+ ## Page Info
104
+ - **Title:** [Tên trang]
105
+ - **Path:** `/docs/[path]`
106
+ - **Category:** [agents/skills/workflows/guide]
107
+
108
+ ## Content Outline
109
+ 1. [Section 1]
110
+ 2. [Section 2]
111
+ 3. [Section 3]
112
+
113
+ ## Related
114
+ - Link đến: [pages liên quan]
115
+
116
+ Hãy tạo page trong `web/src/app/docs/[path]/page.tsx` và update `web/src/lib/docs-config.ts`.
117
+ ```
118
+
119
+ ---
120
+
121
+ ## 📌 PROMPT 5: Thêm UI Component
122
+
123
+ ```
124
+ Tôi muốn tạo component mới.
125
+
126
+ ## Component Info
127
+ - **Name:** [ComponentName]
128
+ - **Location:** `web/src/components/[path]/`
129
+ - **Type:** [UI/Layout/Feature]
130
+
131
+ ## Props Interface
132
+ ```typescript
133
+ interface ComponentNameProps {
134
+ // Define props here
135
+ }
136
+ ```
137
+
138
+ ## Usage Example
139
+ ```tsx
140
+ <ComponentName prop1="value" />
141
+ ```
142
+
143
+ ## Requirements
144
+ - TypeScript strict
145
+ - Tailwind CSS styling
146
+ - Dark mode support
147
+ - Accessible (keyboard, screen reader)
148
+
149
+ Pattern mẫu xem: `web/src/components/ui/button.tsx`
150
+ ```
151
+
152
+ ---
153
+
154
+ ## 📌 PROMPT 6: Thêm Agent/Skill
155
+
156
+ ```
157
+ Tôi muốn thêm [Agent/Skill] mới vào hệ thống.
158
+
159
+ ## Info
160
+ - **Name:** [name]
161
+ - **Type:** [Agent/Skill]
162
+ - **Focus:** [Domain/Focus area]
163
+
164
+ ## For Agent
165
+ - Skills used: [skill1, skill2]
166
+ - Use cases: [use case list]
167
+
168
+ ## For Skill
169
+ - Sections needed: [list sections]
170
+ - Scripts needed: [yes/no]
171
+ - References needed: [yes/no]
172
+
173
+ Template xem: `.agent/agents/` hoặc `.agent/skills/`
174
+ Format xem: `.agent/ARCHITECTURE.md`
175
+ ```
176
+
177
+ ---
178
+
179
+ ## 📌 PROMPT 7: Code Review
180
+
181
+ ```
182
+ Hãy review code của tôi cho Antigravity Kit.
183
+
184
+ ## Files to Review
185
+ - `[file1]`
186
+ - `[file2]`
187
+
188
+ ## Focus Areas
189
+ - [ ] Security
190
+ - [ ] Performance
191
+ - [ ] Code style
192
+ - [ ] TypeScript types
193
+ - [ ] Accessibility
194
+ - [ ] Dark mode
195
+
196
+ Checklist xem: `.agent/skills/code-review-checklist/SKILL.md`
197
+ ```
198
+
199
+ ---
200
+
201
+ ## 📌 PROMPT 8: Deploy/Release
202
+
203
+ ```
204
+ Tôi muốn deploy/release Antigravity Kit.
205
+
206
+ ## Release Type
207
+ - [ ] Patch (bug fixes)
208
+ - [ ] Minor (new features)
209
+ - [ ] Major (breaking changes)
210
+
211
+ ## Checklist
212
+ - [ ] All tests pass
213
+ - [ ] No security vulnerabilities
214
+ - [ ] Documentation updated
215
+ - [ ] CHANGELOG updated
216
+ - [ ] Version bumped
217
+
218
+ ## Deploy Target
219
+ - [ ] Vercel
220
+ - [ ] npm publish
221
+ - [ ] GitHub Release
222
+
223
+ Guidelines xem: `.agent/skills/deployment-procedures/SKILL.md`
224
+ ```
225
+
226
+ ---
227
+
228
+ ## 🔥 QUICK PROMPTS (One-liners)
229
+
230
+ ```
231
+ # Homepage
232
+ Cải thiện homepage của Antigravity Kit, làm nó impressive hơn với animations.
233
+
234
+ # Performance
235
+ Tối ưu performance của documentation site, target Lighthouse 90+.
236
+
237
+ # SEO
238
+ Thêm SEO metadata cho tất cả pages trong `/docs`.
239
+
240
+ # Mobile
241
+ Review và fix responsive issues trên mobile.
242
+
243
+ # Accessibility
244
+ Audit accessibility (a11y) cho toàn bộ components.
245
+
246
+ # Security
247
+ Add security headers vào next.config.ts (CSP, X-Frame-Options).
248
+
249
+ # Testing
250
+ Tạo test suite cho UI components với React Testing Library.
251
+ ```
252
+
253
+ ---
254
+
255
+ ## 💡 Tips Sử Dụng
256
+
257
+ 1. **Luôn bắt đầu với PROMPT 1** trong session mới
258
+ 2. **Refer đến CONTEXT.md** khi cần chi tiết
259
+ 3. **Kết hợp prompts** khi cần (ví dụ: PROMPT 2 + PROMPT 4)
260
+ 4. **Cung cấp file paths cụ thể** để AI hiểu context tốt hơn
261
+ 5. **Đề cập skill files** `.agent/skills/...` khi cần expertise cụ thể