ai-devx 1.0.0 → 1.0.1

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 (206) hide show
  1. package/package.json +1 -1
  2. package/templates/.agent/.shared/ui-ux-pro-max/data/charts.csv +26 -0
  3. package/templates/.agent/.shared/ui-ux-pro-max/data/colors.csv +97 -0
  4. package/templates/.agent/.shared/ui-ux-pro-max/data/icons.csv +101 -0
  5. package/templates/.agent/.shared/ui-ux-pro-max/data/landing.csv +31 -0
  6. package/templates/.agent/.shared/ui-ux-pro-max/data/products.csv +97 -0
  7. package/templates/.agent/.shared/ui-ux-pro-max/data/prompts.csv +24 -0
  8. package/templates/.agent/.shared/ui-ux-pro-max/data/react-performance.csv +45 -0
  9. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  10. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  11. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  12. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  13. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  14. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  15. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  16. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/react.csv +54 -0
  17. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  18. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  19. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  20. package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  21. package/templates/.agent/.shared/ui-ux-pro-max/data/styles.csv +59 -0
  22. package/templates/.agent/.shared/ui-ux-pro-max/data/typography.csv +58 -0
  23. package/templates/.agent/.shared/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  24. package/templates/.agent/.shared/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  25. package/templates/.agent/.shared/ui-ux-pro-max/data/web-interface.csv +31 -0
  26. package/templates/.agent/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-313.pyc +0 -0
  27. package/templates/.agent/.shared/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-313.pyc +0 -0
  28. package/templates/.agent/.shared/ui-ux-pro-max/scripts/core.py +258 -0
  29. package/templates/.agent/.shared/ui-ux-pro-max/scripts/design_system.py +1067 -0
  30. package/templates/.agent/.shared/ui-ux-pro-max/scripts/search.py +106 -0
  31. package/templates/.agent/ARCHITECTURE.md +288 -0
  32. package/templates/.agent/agents/backend-specialist.md +251 -135
  33. package/templates/.agent/agents/code-archaeologist.md +106 -0
  34. package/templates/.agent/agents/database-architect.md +222 -160
  35. package/templates/.agent/agents/debugger.md +205 -108
  36. package/templates/.agent/agents/devops-engineer.md +226 -169
  37. package/templates/.agent/agents/documentation-writer.md +104 -0
  38. package/templates/.agent/agents/explorer-agent.md +73 -0
  39. package/templates/.agent/agents/frontend-specialist.md +587 -116
  40. package/templates/.agent/agents/game-developer.md +162 -0
  41. package/templates/.agent/agents/mobile-developer.md +377 -0
  42. package/templates/.agent/agents/orchestrator.md +412 -133
  43. package/templates/.agent/agents/penetration-tester.md +188 -0
  44. package/templates/.agent/agents/performance-optimizer.md +187 -0
  45. package/templates/.agent/agents/product-manager.md +112 -0
  46. package/templates/.agent/agents/product-owner.md +95 -0
  47. package/templates/.agent/agents/project-planner.md +390 -111
  48. package/templates/.agent/agents/qa-automation-engineer.md +103 -0
  49. package/templates/.agent/agents/security-auditor.md +158 -110
  50. package/templates/.agent/agents/seo-specialist.md +111 -0
  51. package/templates/.agent/agents/test-engineer.md +136 -154
  52. package/templates/.agent/mcp_config.json +24 -0
  53. package/templates/.agent/rules/GEMINI.md +273 -0
  54. package/templates/.agent/scripts/auto_preview.py +148 -0
  55. package/templates/.agent/scripts/checklist.py +217 -0
  56. package/templates/.agent/scripts/session_manager.py +120 -0
  57. package/templates/.agent/scripts/verify_all.py +327 -0
  58. package/templates/.agent/skills/api-patterns/SKILL.md +77 -232
  59. package/templates/.agent/skills/api-patterns/api-style.md +42 -0
  60. package/templates/.agent/skills/api-patterns/auth.md +24 -0
  61. package/templates/.agent/skills/api-patterns/documentation.md +26 -0
  62. package/templates/.agent/skills/api-patterns/graphql.md +41 -0
  63. package/templates/.agent/skills/api-patterns/rate-limiting.md +31 -0
  64. package/templates/.agent/skills/api-patterns/response.md +37 -0
  65. package/templates/.agent/skills/api-patterns/rest.md +40 -0
  66. package/templates/.agent/skills/api-patterns/scripts/api_validator.py +211 -0
  67. package/templates/.agent/skills/api-patterns/security-testing.md +122 -0
  68. package/templates/.agent/skills/api-patterns/trpc.md +41 -0
  69. package/templates/.agent/skills/api-patterns/versioning.md +22 -0
  70. package/templates/.agent/skills/app-builder/SKILL.md +75 -0
  71. package/templates/.agent/skills/app-builder/agent-coordination.md +71 -0
  72. package/templates/.agent/skills/app-builder/feature-building.md +53 -0
  73. package/templates/.agent/skills/app-builder/project-detection.md +34 -0
  74. package/templates/.agent/skills/app-builder/scaffolding.md +118 -0
  75. package/templates/.agent/skills/app-builder/tech-stack.md +40 -0
  76. package/templates/.agent/skills/app-builder/templates/SKILL.md +39 -0
  77. package/templates/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
  78. package/templates/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
  79. package/templates/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
  80. package/templates/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
  81. package/templates/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
  82. package/templates/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
  83. package/templates/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
  84. package/templates/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +122 -0
  85. package/templates/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +122 -0
  86. package/templates/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +169 -0
  87. package/templates/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +134 -0
  88. package/templates/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
  89. package/templates/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +119 -0
  90. package/templates/.agent/skills/architecture/SKILL.md +55 -0
  91. package/templates/.agent/skills/architecture/context-discovery.md +43 -0
  92. package/templates/.agent/skills/architecture/examples.md +94 -0
  93. package/templates/.agent/skills/architecture/pattern-selection.md +68 -0
  94. package/templates/.agent/skills/architecture/patterns-reference.md +50 -0
  95. package/templates/.agent/skills/architecture/trade-off-analysis.md +77 -0
  96. package/templates/.agent/skills/bash-linux/SKILL.md +199 -0
  97. package/templates/.agent/skills/behavioral-modes/SKILL.md +242 -0
  98. package/templates/.agent/skills/brainstorming/SKILL.md +163 -0
  99. package/templates/.agent/skills/brainstorming/dynamic-questioning.md +350 -0
  100. package/templates/.agent/skills/clean-code/SKILL.md +201 -0
  101. package/templates/.agent/skills/code-review-checklist/SKILL.md +109 -0
  102. package/templates/.agent/skills/database-design/SKILL.md +34 -285
  103. package/templates/.agent/skills/database-design/database-selection.md +43 -0
  104. package/templates/.agent/skills/database-design/indexing.md +39 -0
  105. package/templates/.agent/skills/database-design/migrations.md +48 -0
  106. package/templates/.agent/skills/database-design/optimization.md +36 -0
  107. package/templates/.agent/skills/database-design/orm-selection.md +30 -0
  108. package/templates/.agent/skills/database-design/schema-design.md +56 -0
  109. package/templates/.agent/skills/database-design/scripts/schema_validator.py +172 -0
  110. package/templates/.agent/skills/deployment-procedures/SKILL.md +241 -0
  111. package/templates/.agent/skills/doc.md +177 -0
  112. package/templates/.agent/skills/documentation-templates/SKILL.md +194 -0
  113. package/templates/.agent/skills/frontend-design/SKILL.md +418 -0
  114. package/templates/.agent/skills/frontend-design/animation-guide.md +331 -0
  115. package/templates/.agent/skills/frontend-design/color-system.md +311 -0
  116. package/templates/.agent/skills/frontend-design/decision-trees.md +418 -0
  117. package/templates/.agent/skills/frontend-design/motion-graphics.md +306 -0
  118. package/templates/.agent/skills/frontend-design/scripts/accessibility_checker.py +183 -0
  119. package/templates/.agent/skills/frontend-design/scripts/ux_audit.py +722 -0
  120. package/templates/.agent/skills/frontend-design/typography-system.md +345 -0
  121. package/templates/.agent/skills/frontend-design/ux-psychology.md +1116 -0
  122. package/templates/.agent/skills/frontend-design/visual-effects.md +383 -0
  123. package/templates/.agent/skills/game-development/2d-games/SKILL.md +119 -0
  124. package/templates/.agent/skills/game-development/3d-games/SKILL.md +135 -0
  125. package/templates/.agent/skills/game-development/SKILL.md +167 -0
  126. package/templates/.agent/skills/game-development/game-art/SKILL.md +185 -0
  127. package/templates/.agent/skills/game-development/game-audio/SKILL.md +190 -0
  128. package/templates/.agent/skills/game-development/game-design/SKILL.md +129 -0
  129. package/templates/.agent/skills/game-development/mobile-games/SKILL.md +108 -0
  130. package/templates/.agent/skills/game-development/multiplayer/SKILL.md +132 -0
  131. package/templates/.agent/skills/game-development/pc-games/SKILL.md +144 -0
  132. package/templates/.agent/skills/game-development/vr-ar/SKILL.md +123 -0
  133. package/templates/.agent/skills/game-development/web-games/SKILL.md +150 -0
  134. package/templates/.agent/skills/geo-fundamentals/SKILL.md +156 -0
  135. package/templates/.agent/skills/geo-fundamentals/scripts/geo_checker.py +289 -0
  136. package/templates/.agent/skills/i18n-localization/SKILL.md +154 -0
  137. package/templates/.agent/skills/i18n-localization/scripts/i18n_checker.py +241 -0
  138. package/templates/.agent/skills/intelligent-routing/SKILL.md +335 -0
  139. package/templates/.agent/skills/lint-and-validate/SKILL.md +45 -0
  140. package/templates/.agent/skills/lint-and-validate/scripts/lint_runner.py +184 -0
  141. package/templates/.agent/skills/lint-and-validate/scripts/type_coverage.py +173 -0
  142. package/templates/.agent/skills/mcp-builder/SKILL.md +176 -0
  143. package/templates/.agent/skills/mobile-design/SKILL.md +394 -0
  144. package/templates/.agent/skills/mobile-design/decision-trees.md +516 -0
  145. package/templates/.agent/skills/mobile-design/mobile-backend.md +491 -0
  146. package/templates/.agent/skills/mobile-design/mobile-color-system.md +420 -0
  147. package/templates/.agent/skills/mobile-design/mobile-debugging.md +122 -0
  148. package/templates/.agent/skills/mobile-design/mobile-design-thinking.md +357 -0
  149. package/templates/.agent/skills/mobile-design/mobile-navigation.md +458 -0
  150. package/templates/.agent/skills/mobile-design/mobile-performance.md +767 -0
  151. package/templates/.agent/skills/mobile-design/mobile-testing.md +356 -0
  152. package/templates/.agent/skills/mobile-design/mobile-typography.md +433 -0
  153. package/templates/.agent/skills/mobile-design/platform-android.md +666 -0
  154. package/templates/.agent/skills/mobile-design/platform-ios.md +561 -0
  155. package/templates/.agent/skills/mobile-design/scripts/mobile_audit.py +670 -0
  156. package/templates/.agent/skills/mobile-design/touch-psychology.md +537 -0
  157. package/templates/.agent/skills/nextjs-react-expert/1-async-eliminating-waterfalls.md +312 -0
  158. package/templates/.agent/skills/nextjs-react-expert/2-bundle-bundle-size-optimization.md +240 -0
  159. package/templates/.agent/skills/nextjs-react-expert/3-server-server-side-performance.md +490 -0
  160. package/templates/.agent/skills/nextjs-react-expert/4-client-client-side-data-fetching.md +264 -0
  161. package/templates/.agent/skills/nextjs-react-expert/5-rerender-re-render-optimization.md +581 -0
  162. package/templates/.agent/skills/nextjs-react-expert/6-rendering-rendering-performance.md +432 -0
  163. package/templates/.agent/skills/nextjs-react-expert/7-js-javascript-performance.md +684 -0
  164. package/templates/.agent/skills/nextjs-react-expert/8-advanced-advanced-patterns.md +150 -0
  165. package/templates/.agent/skills/nextjs-react-expert/SKILL.md +286 -0
  166. package/templates/.agent/skills/nextjs-react-expert/scripts/convert_rules.py +222 -0
  167. package/templates/.agent/skills/nextjs-react-expert/scripts/react_performance_checker.py +252 -0
  168. package/templates/.agent/skills/nodejs-best-practices/SKILL.md +333 -0
  169. package/templates/.agent/skills/parallel-agents/SKILL.md +175 -0
  170. package/templates/.agent/skills/performance-profiling/SKILL.md +143 -0
  171. package/templates/.agent/skills/performance-profiling/scripts/lighthouse_audit.py +76 -0
  172. package/templates/.agent/skills/plan-writing/SKILL.md +152 -0
  173. package/templates/.agent/skills/powershell-windows/SKILL.md +167 -0
  174. package/templates/.agent/skills/python-patterns/SKILL.md +441 -0
  175. package/templates/.agent/skills/red-team-tactics/SKILL.md +199 -0
  176. package/templates/.agent/skills/rust-pro/SKILL.md +176 -0
  177. package/templates/.agent/skills/seo-fundamentals/SKILL.md +129 -0
  178. package/templates/.agent/skills/seo-fundamentals/scripts/seo_checker.py +219 -0
  179. package/templates/.agent/skills/server-management/SKILL.md +161 -0
  180. package/templates/.agent/skills/systematic-debugging/SKILL.md +109 -0
  181. package/templates/.agent/skills/tailwind-patterns/SKILL.md +269 -0
  182. package/templates/.agent/skills/tdd-workflow/SKILL.md +149 -0
  183. package/templates/.agent/skills/testing-patterns/SKILL.md +156 -240
  184. package/templates/.agent/skills/testing-patterns/scripts/test_runner.py +219 -0
  185. package/templates/.agent/skills/vulnerability-scanner/SKILL.md +276 -0
  186. package/templates/.agent/skills/vulnerability-scanner/checklists.md +121 -0
  187. package/templates/.agent/skills/vulnerability-scanner/scripts/security_scan.py +458 -0
  188. package/templates/.agent/skills/web-design-guidelines/SKILL.md +57 -0
  189. package/templates/.agent/skills/webapp-testing/SKILL.md +187 -0
  190. package/templates/.agent/skills/webapp-testing/scripts/playwright_runner.py +173 -0
  191. package/templates/.agent/workflows/brainstorm.md +113 -0
  192. package/templates/.agent/workflows/create.md +40 -112
  193. package/templates/.agent/workflows/debug.md +82 -117
  194. package/templates/.agent/workflows/deploy.md +142 -129
  195. package/templates/.agent/workflows/enhance.md +63 -0
  196. package/templates/.agent/workflows/orchestrate.md +237 -0
  197. package/templates/.agent/workflows/plan.md +74 -138
  198. package/templates/.agent/workflows/preview.md +81 -0
  199. package/templates/.agent/workflows/status.md +86 -0
  200. package/templates/.agent/workflows/test.md +109 -130
  201. package/templates/.agent/workflows/ui-ux-pro-max.md +296 -0
  202. package/templates/.agent/scripts/checklist.js +0 -260
  203. package/templates/.agent/scripts/security_scan.js +0 -251
  204. package/templates/.agent/skills/docker-expert/SKILL.md +0 -286
  205. package/templates/.agent/skills/react-best-practices/SKILL.md +0 -246
  206. package/templates/.agent/workflows/security.md +0 -181
@@ -0,0 +1,106 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ """
4
+ UI/UX Pro Max Search - BM25 search engine for UI/UX style guides
5
+ Usage: python search.py "<query>" [--domain <domain>] [--stack <stack>] [--max-results 3]
6
+ python search.py "<query>" --design-system [-p "Project Name"]
7
+ python search.py "<query>" --design-system --persist [-p "Project Name"] [--page "dashboard"]
8
+
9
+ Domains: style, prompt, color, chart, landing, product, ux, typography
10
+ Stacks: html-tailwind, react, nextjs
11
+
12
+ Persistence (Master + Overrides pattern):
13
+ --persist Save design system to design-system/MASTER.md
14
+ --page Also create a page-specific override file in design-system/pages/
15
+ """
16
+
17
+ import argparse
18
+ from core import CSV_CONFIG, AVAILABLE_STACKS, MAX_RESULTS, search, search_stack
19
+ from design_system import generate_design_system, persist_design_system
20
+
21
+
22
+ def format_output(result):
23
+ """Format results for Claude consumption (token-optimized)"""
24
+ if "error" in result:
25
+ return f"Error: {result['error']}"
26
+
27
+ output = []
28
+ if result.get("stack"):
29
+ output.append(f"## UI Pro Max Stack Guidelines")
30
+ output.append(f"**Stack:** {result['stack']} | **Query:** {result['query']}")
31
+ else:
32
+ output.append(f"## UI Pro Max Search Results")
33
+ output.append(f"**Domain:** {result['domain']} | **Query:** {result['query']}")
34
+ output.append(f"**Source:** {result['file']} | **Found:** {result['count']} results\n")
35
+
36
+ for i, row in enumerate(result['results'], 1):
37
+ output.append(f"### Result {i}")
38
+ for key, value in row.items():
39
+ value_str = str(value)
40
+ if len(value_str) > 300:
41
+ value_str = value_str[:300] + "..."
42
+ output.append(f"- **{key}:** {value_str}")
43
+ output.append("")
44
+
45
+ return "\n".join(output)
46
+
47
+
48
+ if __name__ == "__main__":
49
+ parser = argparse.ArgumentParser(description="UI Pro Max Search")
50
+ parser.add_argument("query", help="Search query")
51
+ parser.add_argument("--domain", "-d", choices=list(CSV_CONFIG.keys()), help="Search domain")
52
+ parser.add_argument("--stack", "-s", choices=AVAILABLE_STACKS, help="Stack-specific search (html-tailwind, react, nextjs)")
53
+ parser.add_argument("--max-results", "-n", type=int, default=MAX_RESULTS, help="Max results (default: 3)")
54
+ parser.add_argument("--json", action="store_true", help="Output as JSON")
55
+ # Design system generation
56
+ parser.add_argument("--design-system", "-ds", action="store_true", help="Generate complete design system recommendation")
57
+ parser.add_argument("--project-name", "-p", type=str, default=None, help="Project name for design system output")
58
+ parser.add_argument("--format", "-f", choices=["ascii", "markdown"], default="ascii", help="Output format for design system")
59
+ # Persistence (Master + Overrides pattern)
60
+ parser.add_argument("--persist", action="store_true", help="Save design system to design-system/MASTER.md (creates hierarchical structure)")
61
+ parser.add_argument("--page", type=str, default=None, help="Create page-specific override file in design-system/pages/")
62
+ parser.add_argument("--output-dir", "-o", type=str, default=None, help="Output directory for persisted files (default: current directory)")
63
+
64
+ args = parser.parse_args()
65
+
66
+ # Design system takes priority
67
+ if args.design_system:
68
+ result = generate_design_system(
69
+ args.query,
70
+ args.project_name,
71
+ args.format,
72
+ persist=args.persist,
73
+ page=args.page,
74
+ output_dir=args.output_dir
75
+ )
76
+ print(result)
77
+
78
+ # Print persistence confirmation
79
+ if args.persist:
80
+ project_slug = args.project_name.lower().replace(' ', '-') if args.project_name else "default"
81
+ print("\n" + "=" * 60)
82
+ print(f"✅ Design system persisted to design-system/{project_slug}/")
83
+ print(f" 📄 design-system/{project_slug}/MASTER.md (Global Source of Truth)")
84
+ if args.page:
85
+ page_filename = args.page.lower().replace(' ', '-')
86
+ print(f" 📄 design-system/{project_slug}/pages/{page_filename}.md (Page Overrides)")
87
+ print("")
88
+ print(f"📖 Usage: When building a page, check design-system/{project_slug}/pages/[page].md first.")
89
+ print(f" If exists, its rules override MASTER.md. Otherwise, use MASTER.md.")
90
+ print("=" * 60)
91
+ # Stack search
92
+ elif args.stack:
93
+ result = search_stack(args.query, args.stack, args.max_results)
94
+ if args.json:
95
+ import json
96
+ print(json.dumps(result, indent=2, ensure_ascii=False))
97
+ else:
98
+ print(format_output(result))
99
+ # Domain search
100
+ else:
101
+ result = search(args.query, args.domain, args.max_results)
102
+ if args.json:
103
+ import json
104
+ print(json.dumps(result, indent=2, ensure_ascii=False))
105
+ else:
106
+ print(format_output(result))
@@ -0,0 +1,288 @@
1
+ # Antigravity Kit Architecture
2
+
3
+ > Comprehensive AI Agent Capability Expansion Toolkit
4
+
5
+ ---
6
+
7
+ ## 📋 Overview
8
+
9
+ Antigravity Kit is a modular system consisting of:
10
+
11
+ - **20 Specialist Agents** - Role-based AI personas
12
+ - **36 Skills** - Domain-specific knowledge modules
13
+ - **11 Workflows** - Slash command procedures
14
+
15
+ ---
16
+
17
+ ## 🏗️ Directory Structure
18
+
19
+ ```plaintext
20
+ .agent/
21
+ ├── ARCHITECTURE.md # This file
22
+ ├── agents/ # 20 Specialist Agents
23
+ ├── skills/ # 36 Skills
24
+ ├── workflows/ # 11 Slash Commands
25
+ ├── rules/ # Global Rules
26
+ └── scripts/ # Master Validation Scripts
27
+ ```
28
+
29
+ ---
30
+
31
+ ## 🤖 Agents (20)
32
+
33
+ Specialist AI personas for different domains.
34
+
35
+ | Agent | Focus | Skills Used |
36
+ | ------------------------ | -------------------------- | -------------------------------------------------------- |
37
+ | `orchestrator` | Multi-agent coordination | parallel-agents, behavioral-modes |
38
+ | `project-planner` | Discovery, task planning | brainstorming, plan-writing, architecture |
39
+ | `frontend-specialist` | Web UI/UX | frontend-design, react-best-practices, tailwind-patterns |
40
+ | `backend-specialist` | API, business logic | api-patterns, nodejs-best-practices, database-design |
41
+ | `database-architect` | Schema, SQL | database-design, prisma-expert |
42
+ | `mobile-developer` | iOS, Android, RN | mobile-design |
43
+ | `game-developer` | Game logic, mechanics | game-development |
44
+ | `devops-engineer` | CI/CD, Docker | deployment-procedures, docker-expert |
45
+ | `security-auditor` | Security compliance | vulnerability-scanner, red-team-tactics |
46
+ | `penetration-tester` | Offensive security | red-team-tactics |
47
+ | `test-engineer` | Testing strategies | testing-patterns, tdd-workflow, webapp-testing |
48
+ | `debugger` | Root cause analysis | systematic-debugging |
49
+ | `performance-optimizer` | Speed, Web Vitals | performance-profiling |
50
+ | `seo-specialist` | Ranking, visibility | seo-fundamentals, geo-fundamentals |
51
+ | `documentation-writer` | Manuals, docs | documentation-templates |
52
+ | `product-manager` | Requirements, user stories | plan-writing, brainstorming |
53
+ | `product-owner` | Strategy, backlog, MVP | plan-writing, brainstorming |
54
+ | `qa-automation-engineer` | E2E testing, CI pipelines | webapp-testing, testing-patterns |
55
+ | `code-archaeologist` | Legacy code, refactoring | clean-code, code-review-checklist |
56
+ | `explorer-agent` | Codebase analysis | - |
57
+
58
+ ---
59
+
60
+ ## 🧩 Skills (36)
61
+
62
+ Modular knowledge domains that agents can load on-demand. based on task context.
63
+
64
+ ### Frontend & UI
65
+
66
+ | Skill | Description |
67
+ | ----------------------- | --------------------------------------------------------------------- |
68
+ | `react-best-practices` | React & Next.js performance optimization (Vercel - 57 rules) |
69
+ | `web-design-guidelines` | Web UI audit - 100+ rules for accessibility, UX, performance (Vercel) |
70
+ | `tailwind-patterns` | Tailwind CSS v4 utilities |
71
+ | `frontend-design` | UI/UX patterns, design systems |
72
+ | `ui-ux-pro-max` | 50 styles, 21 palettes, 50 fonts |
73
+
74
+ ### Backend & API
75
+
76
+ | Skill | Description |
77
+ | ----------------------- | ------------------------------ |
78
+ | `api-patterns` | REST, GraphQL, tRPC |
79
+ | `nestjs-expert` | NestJS modules, DI, decorators |
80
+ | `nodejs-best-practices` | Node.js async, modules |
81
+ | `python-patterns` | Python standards, FastAPI |
82
+
83
+ ### Database
84
+
85
+ | Skill | Description |
86
+ | ----------------- | --------------------------- |
87
+ | `database-design` | Schema design, optimization |
88
+ | `prisma-expert` | Prisma ORM, migrations |
89
+
90
+ ### TypeScript/JavaScript
91
+
92
+ | Skill | Description |
93
+ | ------------------- | ----------------------------------- |
94
+ | `typescript-expert` | Type-level programming, performance |
95
+
96
+ ### Cloud & Infrastructure
97
+
98
+ | Skill | Description |
99
+ | ----------------------- | ------------------------- |
100
+ | `docker-expert` | Containerization, Compose |
101
+ | `deployment-procedures` | CI/CD, deploy workflows |
102
+ | `server-management` | Infrastructure management |
103
+
104
+ ### Testing & Quality
105
+
106
+ | Skill | Description |
107
+ | ----------------------- | ------------------------ |
108
+ | `testing-patterns` | Jest, Vitest, strategies |
109
+ | `webapp-testing` | E2E, Playwright |
110
+ | `tdd-workflow` | Test-driven development |
111
+ | `code-review-checklist` | Code review standards |
112
+ | `lint-and-validate` | Linting, validation |
113
+
114
+ ### Security
115
+
116
+ | Skill | Description |
117
+ | ----------------------- | ------------------------ |
118
+ | `vulnerability-scanner` | Security auditing, OWASP |
119
+ | `red-team-tactics` | Offensive security |
120
+
121
+ ### Architecture & Planning
122
+
123
+ | Skill | Description |
124
+ | --------------- | -------------------------- |
125
+ | `app-builder` | Full-stack app scaffolding |
126
+ | `architecture` | System design patterns |
127
+ | `plan-writing` | Task planning, breakdown |
128
+ | `brainstorming` | Socratic questioning |
129
+
130
+ ### Mobile
131
+
132
+ | Skill | Description |
133
+ | --------------- | --------------------- |
134
+ | `mobile-design` | Mobile UI/UX patterns |
135
+
136
+ ### Game Development
137
+
138
+ | Skill | Description |
139
+ | ------------------ | --------------------- |
140
+ | `game-development` | Game logic, mechanics |
141
+
142
+ ### SEO & Growth
143
+
144
+ | Skill | Description |
145
+ | ------------------ | ----------------------------- |
146
+ | `seo-fundamentals` | SEO, E-E-A-T, Core Web Vitals |
147
+ | `geo-fundamentals` | GenAI optimization |
148
+
149
+ ### Shell/CLI
150
+
151
+ | Skill | Description |
152
+ | -------------------- | ------------------------- |
153
+ | `bash-linux` | Linux commands, scripting |
154
+ | `powershell-windows` | Windows PowerShell |
155
+
156
+ ### Other
157
+
158
+ | Skill | Description |
159
+ | ------------------------- | ------------------------- |
160
+ | `clean-code` | Coding standards (Global) |
161
+ | `behavioral-modes` | Agent personas |
162
+ | `parallel-agents` | Multi-agent patterns |
163
+ | `mcp-builder` | Model Context Protocol |
164
+ | `documentation-templates` | Doc formats |
165
+ | `i18n-localization` | Internationalization |
166
+ | `performance-profiling` | Web Vitals, optimization |
167
+ | `systematic-debugging` | Troubleshooting |
168
+
169
+ ---
170
+
171
+ ## 🔄 Workflows (11)
172
+
173
+ Slash command procedures. Invoke with `/command`.
174
+
175
+ | Command | Description |
176
+ | ---------------- | ------------------------ |
177
+ | `/brainstorm` | Socratic discovery |
178
+ | `/create` | Create new features |
179
+ | `/debug` | Debug issues |
180
+ | `/deploy` | Deploy application |
181
+ | `/enhance` | Improve existing code |
182
+ | `/orchestrate` | Multi-agent coordination |
183
+ | `/plan` | Task breakdown |
184
+ | `/preview` | Preview changes |
185
+ | `/status` | Check project status |
186
+ | `/test` | Run tests |
187
+ | `/ui-ux-pro-max` | Design with 50 styles |
188
+
189
+ ---
190
+
191
+ ## 🎯 Skill Loading Protocol
192
+
193
+ ```plaintext
194
+ User Request → Skill Description Match → Load SKILL.md
195
+
196
+ Read references/
197
+
198
+ Read scripts/
199
+ ```
200
+
201
+ ### Skill Structure
202
+
203
+ ```plaintext
204
+ skill-name/
205
+ ├── SKILL.md # (Required) Metadata & instructions
206
+ ├── scripts/ # (Optional) Python/Bash scripts
207
+ ├── references/ # (Optional) Templates, docs
208
+ └── assets/ # (Optional) Images, logos
209
+ ```
210
+
211
+ ### Enhanced Skills (with scripts/references)
212
+
213
+ | Skill | Files | Coverage |
214
+ | ------------------- | ----- | ----------------------------------- |
215
+ | `ui-ux-pro-max` | 27 | 50 styles, 21 palettes, 50 fonts |
216
+ | `app-builder` | 20 | Full-stack scaffolding |
217
+
218
+ ---
219
+
220
+ ## � Scripts (2)
221
+
222
+ Master validation scripts that orchestrate skill-level scripts.
223
+
224
+ ### Master Scripts
225
+
226
+ | Script | Purpose | When to Use |
227
+ | --------------- | --------------------------------------- | ------------------------ |
228
+ | `checklist.py` | Priority-based validation (Core checks) | Development, pre-commit |
229
+ | `verify_all.py` | Comprehensive verification (All checks) | Pre-deployment, releases |
230
+
231
+ ### Usage
232
+
233
+ ```bash
234
+ # Quick validation during development
235
+ python .agent/scripts/checklist.py .
236
+
237
+ # Full verification before deployment
238
+ python .agent/scripts/verify_all.py . --url http://localhost:3000
239
+ ```
240
+
241
+ ### What They Check
242
+
243
+ **checklist.py** (Core checks):
244
+
245
+ - Security (vulnerabilities, secrets)
246
+ - Code Quality (lint, types)
247
+ - Schema Validation
248
+ - Test Suite
249
+ - UX Audit
250
+ - SEO Check
251
+
252
+ **verify_all.py** (Full suite):
253
+
254
+ - Everything in checklist.py PLUS:
255
+ - Lighthouse (Core Web Vitals)
256
+ - Playwright E2E
257
+ - Bundle Analysis
258
+ - Mobile Audit
259
+ - i18n Check
260
+
261
+ For details, see [scripts/README.md](scripts/README.md)
262
+
263
+ ---
264
+
265
+ ## 📊 Statistics
266
+
267
+ | Metric | Value |
268
+ | ------------------- | ----------------------------- |
269
+ | **Total Agents** | 20 |
270
+ | **Total Skills** | 36 |
271
+ | **Total Workflows** | 11 |
272
+ | **Total Scripts** | 2 (master) + 18 (skill-level) |
273
+ | **Coverage** | ~90% web/mobile development |
274
+
275
+ ---
276
+
277
+ ## 🔗 Quick Reference
278
+
279
+ | Need | Agent | Skills |
280
+ | -------- | --------------------- | ------------------------------------- |
281
+ | Web App | `frontend-specialist` | react-best-practices, frontend-design |
282
+ | API | `backend-specialist` | api-patterns, nodejs-best-practices |
283
+ | Mobile | `mobile-developer` | mobile-design |
284
+ | Database | `database-architect` | database-design, prisma-expert |
285
+ | Security | `security-auditor` | vulnerability-scanner |
286
+ | Testing | `test-engineer` | testing-patterns, webapp-testing |
287
+ | Debug | `debugger` | systematic-debugging |
288
+ | Plan | `project-planner` | brainstorming, plan-writing |