@jhm1909/ag-kit 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 (320) hide show
  1. package/.agent/ARCHITECTURE.md +189 -0
  2. package/.agent/known-registries.json +181 -0
  3. package/.agent/mcp_config.json +19 -0
  4. package/.agent/rules/clean-code.md +107 -0
  5. package/.agent/rules/documents.md +177 -0
  6. package/.agent/rules/git-workflow.md +68 -0
  7. package/.agent/rules/nano-banana.md +46 -0
  8. package/.agent/rules/research.md +35 -0
  9. package/.agent/rules/skill-loading.md +100 -0
  10. package/.agent/rules/skill-suggestion.md +47 -0
  11. package/.agent/rules/testing.md +52 -0
  12. package/.agent/rules/workflow-advisor.md +108 -0
  13. package/.agent/rules/workflow-skill-convention.md +127 -0
  14. package/.agent/skills/ai-engineer/SKILL.md +824 -0
  15. package/.agent/skills/ai-engineer/references/agentic-patterns.md +329 -0
  16. package/.agent/skills/ai-engineer/references/evaluation.md +493 -0
  17. package/.agent/skills/ai-engineer/references/llm.md +490 -0
  18. package/.agent/skills/ai-engineer/references/rag-advanced.md +444 -0
  19. package/.agent/skills/ai-engineer/references/serving-optimization.md +531 -0
  20. package/.agent/skills/ai-engineer/vector-db/README.md +137 -0
  21. package/.agent/skills/app-builder/SKILL.md +75 -0
  22. package/.agent/skills/app-builder/agent-coordination.md +71 -0
  23. package/.agent/skills/app-builder/feature-building.md +53 -0
  24. package/.agent/skills/app-builder/project-detection.md +34 -0
  25. package/.agent/skills/app-builder/scaffolding.md +118 -0
  26. package/.agent/skills/app-builder/tech-stack.md +41 -0
  27. package/.agent/skills/app-builder/templates/SKILL.md +39 -0
  28. package/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
  29. package/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
  30. package/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
  31. package/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
  32. package/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
  33. package/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
  34. package/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
  35. package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +122 -0
  36. package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +122 -0
  37. package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +169 -0
  38. package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +134 -0
  39. package/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
  40. package/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +119 -0
  41. package/.agent/skills/backend-developer/SKILL.md +763 -0
  42. package/.agent/skills/backend-developer/references/general-patterns.md +65 -0
  43. package/.agent/skills/backend-developer/references/go-echo.md +68 -0
  44. package/.agent/skills/backend-developer/references/go-gin.md +76 -0
  45. package/.agent/skills/backend-developer/references/java-springboot.md +83 -0
  46. package/.agent/skills/backend-developer/references/node-express.md +64 -0
  47. package/.agent/skills/backend-developer/references/node-nestjs.md +69 -0
  48. package/.agent/skills/backend-developer/references/python-django.md +67 -0
  49. package/.agent/skills/backend-developer/references/python-fastapi.md +80 -0
  50. package/.agent/skills/blockchain-engineer/SKILL.md +975 -0
  51. package/.agent/skills/blockchain-engineer/references/deployment.md +28 -0
  52. package/.agent/skills/blockchain-engineer/references/evm.md +14 -0
  53. package/.agent/skills/blockchain-engineer/references/mechanisms.md +32 -0
  54. package/.agent/skills/blockchain-engineer/references/solidity.md +32 -0
  55. package/.agent/skills/business-analysis/SKILL.md +85 -0
  56. package/.agent/skills/business-analysis/references/best-practices/diagrams.md +141 -0
  57. package/.agent/skills/business-analysis/references/domains/ai-agent.md +94 -0
  58. package/.agent/skills/business-analysis/references/domains/blockchain-dapp.md +86 -0
  59. package/.agent/skills/business-analysis/references/domains/ecommerce.md +77 -0
  60. package/.agent/skills/business-analysis/references/domains/education.md +42 -0
  61. package/.agent/skills/business-analysis/references/domains/fintech.md +44 -0
  62. package/.agent/skills/business-analysis/references/domains/fnb.md +82 -0
  63. package/.agent/skills/business-analysis/references/domains/healthtech.md +44 -0
  64. package/.agent/skills/business-analysis/references/domains/internal-tools.md +38 -0
  65. package/.agent/skills/business-analysis/references/domains/marketplace.md +52 -0
  66. package/.agent/skills/business-analysis/references/domains/saas.md +36 -0
  67. package/.agent/skills/business-analysis/references/workflows/collaboration.md +41 -0
  68. package/.agent/skills/business-analysis/scripts/verify_mermaid.py +86 -0
  69. package/.agent/skills/business-analysis/templates/brd.md +46 -0
  70. package/.agent/skills/business-analysis/templates/change-request.md +41 -0
  71. package/.agent/skills/business-analysis/templates/prd-functional.md +38 -0
  72. package/.agent/skills/business-analysis/templates/use-case.md +40 -0
  73. package/.agent/skills/business-analysis/templates/user-story-detailed.md +36 -0
  74. package/.agent/skills/code-review/SKILL.md +113 -0
  75. package/.agent/skills/code-review/references/code-review-reception.md +209 -0
  76. package/.agent/skills/code-review/references/differential_review.md +59 -0
  77. package/.agent/skills/code-review/references/requesting-code-review.md +105 -0
  78. package/.agent/skills/code-review/references/spec_compliance.md +43 -0
  79. package/.agent/skills/code-review/references/verification-before-completion.md +139 -0
  80. package/.agent/skills/context-engineering/SKILL.md +68 -0
  81. package/.agent/skills/context-engineering/references/context-compression.md +84 -0
  82. package/.agent/skills/context-engineering/references/context-degradation.md +93 -0
  83. package/.agent/skills/context-engineering/references/context-fundamentals.md +75 -0
  84. package/.agent/skills/context-engineering/references/context-optimization.md +82 -0
  85. package/.agent/skills/context-engineering/references/evaluation.md +89 -0
  86. package/.agent/skills/context-engineering/references/memory-systems.md +88 -0
  87. package/.agent/skills/context-engineering/references/multi-agent-patterns.md +90 -0
  88. package/.agent/skills/context-engineering/references/project-development.md +97 -0
  89. package/.agent/skills/context-engineering/references/tool-design.md +86 -0
  90. package/.agent/skills/debugging/SKILL.md +60 -0
  91. package/.agent/skills/debugging/references/defense-in-depth.md +130 -0
  92. package/.agent/skills/debugging/references/root-cause-tracing.md +177 -0
  93. package/.agent/skills/debugging/references/systematic-debugging.md +295 -0
  94. package/.agent/skills/debugging/references/verification-before-completion.md +142 -0
  95. package/.agent/skills/designer/SKILL.md +159 -0
  96. package/.agent/skills/designer/concepts/apple-glass.md +48 -0
  97. package/.agent/skills/designer/concepts/aurora-gradients.md +26 -0
  98. package/.agent/skills/designer/concepts/bento-grids.md +14 -0
  99. package/.agent/skills/designer/concepts/claymorphism.md +27 -0
  100. package/.agent/skills/designer/concepts/neo-brutalism.md +32 -0
  101. package/.agent/skills/designer/data/app-interface.csv +31 -0
  102. package/.agent/skills/designer/data/charts.csv +26 -0
  103. package/.agent/skills/designer/data/colors.csv +162 -0
  104. package/.agent/skills/designer/data/design.csv +1776 -0
  105. package/.agent/skills/designer/data/icons.csv +106 -0
  106. package/.agent/skills/designer/data/landing.csv +35 -0
  107. package/.agent/skills/designer/data/products.csv +162 -0
  108. package/.agent/skills/designer/data/react-performance.csv +45 -0
  109. package/.agent/skills/designer/data/styles.csv +85 -0
  110. package/.agent/skills/designer/data/typography.csv +74 -0
  111. package/.agent/skills/designer/data/ui-reasoning.csv +162 -0
  112. package/.agent/skills/designer/data/ux-guidelines.csv +100 -0
  113. package/.agent/skills/designer/references/accessibility.md +172 -0
  114. package/.agent/skills/designer/references/branding.md +88 -0
  115. package/.agent/skills/designer/references/color-theory.md +139 -0
  116. package/.agent/skills/designer/references/creation.md +118 -0
  117. package/.agent/skills/designer/references/design-systems.md +219 -0
  118. package/.agent/skills/designer/references/frontend_design_aesthetics.md +57 -0
  119. package/.agent/skills/designer/references/layout.md +200 -0
  120. package/.agent/skills/designer/references/motion.md +92 -0
  121. package/.agent/skills/designer/references/review.md +100 -0
  122. package/.agent/skills/designer/references/trends.md +209 -0
  123. package/.agent/skills/designer/references/typography.md +190 -0
  124. package/.agent/skills/designer/scripts/remove_background.py +135 -0
  125. package/.agent/skills/designer/scripts/ui-search/__pycache__/core.cpython-314.pyc +0 -0
  126. package/.agent/skills/designer/scripts/ui-search/__pycache__/design_system.cpython-314.pyc +0 -0
  127. package/.agent/skills/designer/scripts/ui-search/core.py +217 -0
  128. package/.agent/skills/designer/scripts/ui-search/design_system.py +1067 -0
  129. package/.agent/skills/designer/scripts/ui-search/search.py +114 -0
  130. package/.agent/skills/designer/templates/design-motion-spec.md +30 -0
  131. package/.agent/skills/devops-engineer/SKILL.md +90 -0
  132. package/.agent/skills/devops-engineer/docker-compose/README.md +47 -0
  133. package/.agent/skills/devops-engineer/references/ci-cd-pipelines.md +76 -0
  134. package/.agent/skills/devops-engineer/references/cloud-providers.md +57 -0
  135. package/.agent/skills/devops-engineer/references/codebase-normalization.md +104 -0
  136. package/.agent/skills/devops-engineer/references/container-orchestration.md +69 -0
  137. package/.agent/skills/devops-engineer/references/iac-tools.md +63 -0
  138. package/.agent/skills/devops-engineer/references/observability-security.md +45 -0
  139. package/.agent/skills/devops-engineer/references/vercel-supabase.md +17 -0
  140. package/.agent/skills/devops-engineer/templates/release-notes.md +8 -0
  141. package/.agent/skills/frontend-developer/SKILL.md +125 -0
  142. package/.agent/skills/frontend-developer/react-nextjs/README.md +90 -0
  143. package/.agent/skills/frontend-developer/references/angular.md +52 -0
  144. package/.agent/skills/frontend-developer/references/composition_patterns.md +60 -0
  145. package/.agent/skills/frontend-developer/references/core-performance.md +68 -0
  146. package/.agent/skills/frontend-developer/references/modern-signals.md +43 -0
  147. package/.agent/skills/frontend-developer/references/react_performance_rules.md +55 -0
  148. package/.agent/skills/frontend-developer/references/vue-nuxt.md +55 -0
  149. package/.agent/skills/frontend-developer/scripts/validate_compliance.py +65 -0
  150. package/.agent/skills/frontend-developer/threejs/README.md +89 -0
  151. package/.agent/skills/frontend-developer/threejs/animation.md +552 -0
  152. package/.agent/skills/frontend-developer/threejs/fundamentals.md +488 -0
  153. package/.agent/skills/frontend-developer/threejs/geometry.md +548 -0
  154. package/.agent/skills/frontend-developer/threejs/interaction.md +660 -0
  155. package/.agent/skills/frontend-developer/threejs/lighting.md +481 -0
  156. package/.agent/skills/frontend-developer/threejs/loaders.md +623 -0
  157. package/.agent/skills/frontend-developer/threejs/materials.md +520 -0
  158. package/.agent/skills/frontend-developer/threejs/postprocessing.md +602 -0
  159. package/.agent/skills/frontend-developer/threejs/router.json +181 -0
  160. package/.agent/skills/frontend-developer/threejs/shaders.md +642 -0
  161. package/.agent/skills/frontend-developer/threejs/textures.md +628 -0
  162. package/.agent/skills/game-development/2d-games/SKILL.md +119 -0
  163. package/.agent/skills/game-development/3d-games/SKILL.md +135 -0
  164. package/.agent/skills/game-development/SKILL.md +167 -0
  165. package/.agent/skills/game-development/game-art/SKILL.md +185 -0
  166. package/.agent/skills/game-development/game-audio/SKILL.md +190 -0
  167. package/.agent/skills/game-development/game-design/SKILL.md +129 -0
  168. package/.agent/skills/game-development/mobile-games/SKILL.md +108 -0
  169. package/.agent/skills/game-development/multiplayer/SKILL.md +132 -0
  170. package/.agent/skills/game-development/pc-games/SKILL.md +144 -0
  171. package/.agent/skills/game-development/vr-ar/SKILL.md +123 -0
  172. package/.agent/skills/game-development/web-games/SKILL.md +150 -0
  173. package/.agent/skills/lead-architect/SKILL.md +85 -0
  174. package/.agent/skills/lead-architect/references/application-architecture.md +70 -0
  175. package/.agent/skills/lead-architect/references/infrastructure.md +51 -0
  176. package/.agent/skills/lead-architect/references/process.md +42 -0
  177. package/.agent/skills/lead-architect/references/system-architecture.md +62 -0
  178. package/.agent/skills/lead-architect/references/web-fullstack.md +82 -0
  179. package/.agent/skills/lead-architect/templates/adr.md +62 -0
  180. package/.agent/skills/lead-architect/templates/rfc.md +46 -0
  181. package/.agent/skills/lead-architect/templates/sdd.md +62 -0
  182. package/.agent/skills/lead-architect/templates/technical-spec.md +61 -0
  183. package/.agent/skills/marketer/SKILL.md +66 -0
  184. package/.agent/skills/marketer/remotion-best-practices/SKILL.md +58 -0
  185. package/.agent/skills/marketer/remotion-best-practices/rules/3d.md +86 -0
  186. package/.agent/skills/marketer/remotion-best-practices/rules/animations.md +29 -0
  187. package/.agent/skills/marketer/remotion-best-practices/rules/assets/charts-bar-chart.tsx +173 -0
  188. package/.agent/skills/marketer/remotion-best-practices/rules/assets/text-animations-typewriter.tsx +100 -0
  189. package/.agent/skills/marketer/remotion-best-practices/rules/assets/text-animations-word-highlight.tsx +108 -0
  190. package/.agent/skills/marketer/remotion-best-practices/rules/assets.md +78 -0
  191. package/.agent/skills/marketer/remotion-best-practices/rules/audio.md +172 -0
  192. package/.agent/skills/marketer/remotion-best-practices/rules/calculate-metadata.md +104 -0
  193. package/.agent/skills/marketer/remotion-best-practices/rules/can-decode.md +75 -0
  194. package/.agent/skills/marketer/remotion-best-practices/rules/charts.md +58 -0
  195. package/.agent/skills/marketer/remotion-best-practices/rules/compositions.md +146 -0
  196. package/.agent/skills/marketer/remotion-best-practices/rules/display-captions.md +126 -0
  197. package/.agent/skills/marketer/remotion-best-practices/rules/extract-frames.md +229 -0
  198. package/.agent/skills/marketer/remotion-best-practices/rules/fonts.md +152 -0
  199. package/.agent/skills/marketer/remotion-best-practices/rules/get-audio-duration.md +58 -0
  200. package/.agent/skills/marketer/remotion-best-practices/rules/get-video-dimensions.md +68 -0
  201. package/.agent/skills/marketer/remotion-best-practices/rules/get-video-duration.md +58 -0
  202. package/.agent/skills/marketer/remotion-best-practices/rules/gifs.md +138 -0
  203. package/.agent/skills/marketer/remotion-best-practices/rules/images.md +130 -0
  204. package/.agent/skills/marketer/remotion-best-practices/rules/import-srt-captions.md +67 -0
  205. package/.agent/skills/marketer/remotion-best-practices/rules/lottie.md +68 -0
  206. package/.agent/skills/marketer/remotion-best-practices/rules/measuring-dom-nodes.md +35 -0
  207. package/.agent/skills/marketer/remotion-best-practices/rules/measuring-text.md +143 -0
  208. package/.agent/skills/marketer/remotion-best-practices/rules/sequencing.md +106 -0
  209. package/.agent/skills/marketer/remotion-best-practices/rules/tailwind.md +11 -0
  210. package/.agent/skills/marketer/remotion-best-practices/rules/text-animations.md +20 -0
  211. package/.agent/skills/marketer/remotion-best-practices/rules/timing.md +179 -0
  212. package/.agent/skills/marketer/remotion-best-practices/rules/transcribe-captions.md +19 -0
  213. package/.agent/skills/marketer/remotion-best-practices/rules/transitions.md +122 -0
  214. package/.agent/skills/marketer/remotion-best-practices/rules/trimming.md +53 -0
  215. package/.agent/skills/marketer/remotion-best-practices/rules/videos.md +171 -0
  216. package/.agent/skills/mcp-builder/SKILL.md +76 -0
  217. package/.agent/skills/mcp-builder/references/evaluation.md +602 -0
  218. package/.agent/skills/mcp-builder/references/mcp_best_practices.md +249 -0
  219. package/.agent/skills/mcp-builder/references/node_mcp_server.md +970 -0
  220. package/.agent/skills/mcp-builder/references/python_mcp_server.md +719 -0
  221. package/.agent/skills/mobile-developer/SKILL.md +83 -0
  222. package/.agent/skills/mobile-developer/api-routes/SKILL.md +389 -0
  223. package/.agent/skills/mobile-developer/building-ui/SKILL.md +335 -0
  224. package/.agent/skills/mobile-developer/building-ui/references/animations.md +220 -0
  225. package/.agent/skills/mobile-developer/building-ui/references/controls.md +270 -0
  226. package/.agent/skills/mobile-developer/building-ui/references/form-sheet.md +227 -0
  227. package/.agent/skills/mobile-developer/building-ui/references/gradients.md +106 -0
  228. package/.agent/skills/mobile-developer/building-ui/references/icons.md +213 -0
  229. package/.agent/skills/mobile-developer/building-ui/references/media.md +198 -0
  230. package/.agent/skills/mobile-developer/building-ui/references/route-structure.md +229 -0
  231. package/.agent/skills/mobile-developer/building-ui/references/search.md +248 -0
  232. package/.agent/skills/mobile-developer/building-ui/references/storage.md +121 -0
  233. package/.agent/skills/mobile-developer/building-ui/references/tabs.md +368 -0
  234. package/.agent/skills/mobile-developer/building-ui/references/visual-effects.md +197 -0
  235. package/.agent/skills/mobile-developer/building-ui/references/webgpu-three.md +605 -0
  236. package/.agent/skills/mobile-developer/cicd-workflows/SKILL.md +107 -0
  237. package/.agent/skills/mobile-developer/cicd-workflows/scripts/fetch.js +109 -0
  238. package/.agent/skills/mobile-developer/cicd-workflows/scripts/package.json +11 -0
  239. package/.agent/skills/mobile-developer/cicd-workflows/scripts/validate.js +84 -0
  240. package/.agent/skills/mobile-developer/data-fetching/SKILL.md +508 -0
  241. package/.agent/skills/mobile-developer/deployment/SKILL.md +207 -0
  242. package/.agent/skills/mobile-developer/deployment/references/app-store-metadata.md +479 -0
  243. package/.agent/skills/mobile-developer/deployment/references/ios-app-store.md +355 -0
  244. package/.agent/skills/mobile-developer/deployment/references/play-store.md +246 -0
  245. package/.agent/skills/mobile-developer/deployment/references/testflight.md +58 -0
  246. package/.agent/skills/mobile-developer/deployment/references/workflows.md +200 -0
  247. package/.agent/skills/mobile-developer/dev-client/SKILL.md +181 -0
  248. package/.agent/skills/mobile-developer/tailwind-setup/SKILL.md +501 -0
  249. package/.agent/skills/mobile-developer/upgrading-expo/SKILL.md +116 -0
  250. package/.agent/skills/mobile-developer/upgrading-expo/references/new-architecture.md +79 -0
  251. package/.agent/skills/mobile-developer/upgrading-expo/references/react-19.md +79 -0
  252. package/.agent/skills/mobile-developer/upgrading-expo/references/react-compiler.md +59 -0
  253. package/.agent/skills/mobile-developer/use-dom/SKILL.md +434 -0
  254. package/.agent/skills/modern-python/SKILL.md +122 -0
  255. package/.agent/skills/project-manager/SKILL.md +110 -0
  256. package/.agent/skills/project-manager/references/ba-collaboration.md +62 -0
  257. package/.agent/skills/project-manager/references/discovery_process.md +52 -0
  258. package/.agent/skills/project-manager/references/jobs_to_be_done.md +51 -0
  259. package/.agent/skills/project-manager/references/prd_development.md +52 -0
  260. package/.agent/skills/project-manager/references/rules-guide.md +55 -0
  261. package/.agent/skills/project-manager/references/skill-creation.md +98 -0
  262. package/.agent/skills/project-manager/references/strategic-frameworks.md +62 -0
  263. package/.agent/skills/project-manager/references/task-decomposition.md +194 -0
  264. package/.agent/skills/project-manager/references/workflows-guide.md +44 -0
  265. package/.agent/skills/project-manager/router.json +160 -0
  266. package/.agent/skills/project-manager/scripts/compare_skill.py +177 -0
  267. package/.agent/skills/project-manager/scripts/encoding_utils.py +36 -0
  268. package/.agent/skills/project-manager/scripts/init_skill.py +190 -0
  269. package/.agent/skills/project-manager/scripts/quick_validate.py +123 -0
  270. package/.agent/skills/project-manager/templates/pm-strategy-one-pager.md +6 -0
  271. package/.agent/skills/project-manager/templates/prd-strategic.md +38 -0
  272. package/.agent/skills/project-manager/templates/skill-questionnaire.md +118 -0
  273. package/.agent/skills/project-manager/templates/user-story-simple.md +14 -0
  274. package/.agent/skills/prompt-engineer/SKILL.md +319 -0
  275. package/.agent/skills/prompt-engineer/skill-creator/README.md +47 -0
  276. package/.agent/skills/qa-tester/SKILL.md +142 -0
  277. package/.agent/skills/qa-tester/assets/README.md +8 -0
  278. package/.agent/skills/qa-tester/references/accessibility_testing.md +35 -0
  279. package/.agent/skills/qa-tester/references/agent_browser.md +38 -0
  280. package/.agent/skills/qa-tester/references/automation/api_testing.md +23 -0
  281. package/.agent/skills/qa-tester/references/automation/best_practices.md +14 -0
  282. package/.agent/skills/qa-tester/references/automation/jest_vitest.md +26 -0
  283. package/.agent/skills/qa-tester/references/automation/playwright.md +30 -0
  284. package/.agent/skills/qa-tester/references/e2e_testing.md +46 -0
  285. package/.agent/skills/qa-tester/references/integration_testing.md +39 -0
  286. package/.agent/skills/qa-tester/references/performance_testing.md +44 -0
  287. package/.agent/skills/qa-tester/references/property_based_testing.md +44 -0
  288. package/.agent/skills/qa-tester/references/security_audit.md +53 -0
  289. package/.agent/skills/qa-tester/references/security_testing.md +30 -0
  290. package/.agent/skills/qa-tester/references/sharp_edges.md +49 -0
  291. package/.agent/skills/qa-tester/references/static_analysis.md +52 -0
  292. package/.agent/skills/qa-tester/references/supply_chain_audit.md +54 -0
  293. package/.agent/skills/qa-tester/references/test_case_standards.md +96 -0
  294. package/.agent/skills/qa-tester/references/test_report_template.md +32 -0
  295. package/.agent/skills/qa-tester/references/unit_testing.md +50 -0
  296. package/.agent/skills/qa-tester/references/visual_testing.md +32 -0
  297. package/.agent/skills/qa-tester/templates/uat-plan.md +34 -0
  298. package/.agent/skills/research-first/SKILL.md +118 -0
  299. package/.agent/skills-manifest.json +264 -0
  300. package/.agent/workflows/absorb.md +176 -0
  301. package/.agent/workflows/bootstrap.md +91 -0
  302. package/.agent/workflows/brainstorm.md +168 -0
  303. package/.agent/workflows/break-tasks.md +77 -0
  304. package/.agent/workflows/commit.md +349 -0
  305. package/.agent/workflows/custom-behavior.md +64 -0
  306. package/.agent/workflows/debug.md +65 -0
  307. package/.agent/workflows/development.md +49 -0
  308. package/.agent/workflows/documentation.md +221 -0
  309. package/.agent/workflows/gen-tests.md +53 -0
  310. package/.agent/workflows/guide.md +196 -0
  311. package/.agent/workflows/implement-feature.md +182 -0
  312. package/.agent/workflows/install-skill.md +193 -0
  313. package/.agent/workflows/qa.md +54 -0
  314. package/.agent/workflows/ui-ux-design.md +108 -0
  315. package/LICENSE +21 -0
  316. package/README.md +258 -0
  317. package/cli/index.js +345 -0
  318. package/cli/migrate-skills.js +113 -0
  319. package/cli/verify.js +291 -0
  320. package/package.json +49 -0
@@ -0,0 +1,182 @@
1
+ ---
2
+ description: Orchestrates feature implementation from specification to deployment.
3
+ ---
4
+
5
+ # Feature Implementation Workflow
6
+
7
+ ## MCP Usage Guidelines
8
+
9
+ | MCP Tool | When to Use | Example Query |
10
+ | -------------------------------------------- | ------------------------------------------------- | ----------------------------------- |
11
+ | `mcp_sequential-thinking_sequentialthinking` | Complex decisions, debugging, architecture design | Break down feature into tasks |
12
+ | `mcp_context7_resolve-library-id` | Find library ID before querying docs | "react hook form" |
13
+ | `mcp_context7_query-docs` | Research UI libraries (shadcn, radix, tailwind) |
14
+ | `search_web` | Research design trends and UX patterns | "modern SaaS dashboard trends 2026" |
15
+ | `generate_image` | Create low-fi wireframes or conceptual assets |
16
+
17
+ ---
18
+
19
+ ## Step 1: Deep Research
20
+
21
+ // turbo
22
+
23
+ > 💡 **MANDATORY**: Follow `.agent/rules/research.md` to ensure modern implementation.
24
+
25
+ 1. **Invoke `[research]`** to:
26
+ - Find the most efficient/modern patterns for the requested feature.
27
+ - Check for recent updates in libraries used (Next.js, Prisma, etc.).
28
+ - Identify potential scaling or security issues related to the implementation.
29
+ 2. Update/Create research documentation in `docs/050-Research/`.
30
+ 3. **WAIT** for user to review if new critical insights are found.
31
+
32
+ ---
33
+
34
+ ## Step 2: Specification (Choose Depth)
35
+
36
+ **Skip if**: User Stories or specs already exist in `docs/`.
37
+
38
+ > 💡 **MCP**: Use `sequential-thinking` to analyze requirements and assess complexity.
39
+
40
+ **Assess the feature scope, then present options to the user:**
41
+
42
+ ```
43
+ "Feature này cần plan ở mức nào?"
44
+ 📝 Deep Plan — tạo Spec + Design + Story trong docs/ (feature lớn, nhiều component)
45
+ ⚡ Quick Spec — tóm tắt nhanh rồi code luôn (feature vừa/nhỏ)
46
+ ```
47
+
48
+ ### Option A: ⚡ Quick Spec
49
+
50
+ 1. **Invoke `[product-manager]` skill** to clarify requirements
51
+ 2. Create `feature-spec.md` artifact with: Goal, User, Acceptance Criteria
52
+ 3. **WAIT** for user confirmation
53
+
54
+ ### Option B: 📝 Deep Plan (Dewey Docs)
55
+
56
+ > [!IMPORTANT]
57
+ > All files MUST follow `documents.md` conventions: frontmatter, naming, wiki-links.
58
+
59
+ 1. **Invoke `[lead-architect]` + `[business-analysis]`** to create:
60
+ - `docs/030-Specs/Spec-{FeatureName}.md` — Why, Requirements (SHALL/MUST), Scope
61
+ 2. **Invoke `[lead-architect]` + `[research-first]`** to create:
62
+ - `docs/040-Design/Specs/Design-{FeatureName}.md` — Context, Goals/Non-Goals, Decisions, Risks
63
+ 3. **Invoke `[backend-developer]` + `[frontend-developer]`** to create:
64
+ - `docs/022-User-Stories/Backlog/Story-{FeatureName}.md` — User story, acceptance criteria, task checklist
65
+ 4. **WAIT** for user to review all 3 documents before proceeding
66
+
67
+ ---
68
+
69
+ ## Step 3: Locate Existing Artifacts
70
+
71
+ // turbo
72
+
73
+ > 💡 **MCP**: Use `context7` to research unfamiliar tech in existing codebase
74
+
75
+ 1. Search `docs/` for related: User Stories, SDD, Designs
76
+ 2. **Invoke `[lead-architect]` skill** to identify scope and dependencies
77
+ 3. List files to create/modify
78
+ 4. **WAIT** for user to confirm scope
79
+
80
+ ---
81
+
82
+ ## Step 4: Implementation Plan
83
+
84
+ // turbo
85
+
86
+ > 💡 **MCP**: **MUST** use `sequential-thinking` to break down complex features into atomic tasks
87
+
88
+ 1. **Invoke `[lead-architect]` skill** to create task breakdown
89
+ 2. Create `implementation-plan.md` artifact with phased tasks
90
+ 3. Save to `docs/050-Tasks/Task-{FeatureName}.md` after approval
91
+ 4. **WAIT** for user approval
92
+
93
+ ---
94
+
95
+ ## Step 5: Design Review (If UI Feature)
96
+
97
+ // turbo
98
+
99
+ **Skip if**: Feature is purely backend/API.
100
+
101
+ > 💡 **MCP**: Use `context7` with `/radix-ui/*` or `/shadcn/*` for component patterns
102
+
103
+ 1. Check `docs/040-Design/` for existing designs
104
+ 2. **Invoke `[designer]` skill** for new component specifications
105
+ 3. **WAIT** for user confirmation
106
+
107
+ ---
108
+
109
+ ## Step 6: Backend Implementation
110
+
111
+ // turbo
112
+
113
+ > 💡 **MCP**:
114
+ >
115
+ > - Use `context7` with `/supabase/supabase`, `/prisma/prisma` for DB patterns
116
+ > - Use `sequential-thinking` for complex business logic
117
+
118
+ 1. **Invoke `[backend-developer]` skill** for:
119
+ - Data models/migrations
120
+ - API endpoints/server functions
121
+ - Unit tests (TDD approach)
122
+ 2. Run tests and verify
123
+ 3. **WAIT** for user checkpoint
124
+
125
+ ---
126
+
127
+ ## Step 7: Frontend Implementation
128
+
129
+ // turbo
130
+
131
+ > 💡 **MCP**: Use `context7` with `/vercel/next.js`, `/tanstack/react-query`, `/react-hook-form/*` for patterns
132
+
133
+ 1. **Invoke `[frontend-developer]` skill** for:
134
+ - Components following design specs
135
+ - State management
136
+ - Component tests
137
+ 2. **WAIT** for user checkpoint
138
+
139
+ ---
140
+
141
+ ## Step 8: Integration & QA
142
+
143
+ // turbo
144
+
145
+ > 💡 **MCP**:
146
+ >
147
+ > - Use `context7` with `/vitest-dev/vitest`, `/playwright/*` for testing patterns
148
+ > - Use `sequential-thinking` to analyze test failures
149
+
150
+ 1. **Invoke `[qa-tester]` skill** for:
151
+ - E2E test execution
152
+ - Acceptance criteria verification
153
+ - Edge case testing
154
+ 2. Create `qa-report.md` artifact
155
+ 3. **WAIT** for user to confirm ready
156
+
157
+ ---
158
+
159
+ ## Step 9: Finalize
160
+
161
+ // turbo
162
+
163
+ 1. **Invoke `[lead-architect]` skill** to:
164
+ - Update MOC files
165
+ - Move task to `docs/050-Tasks/Completed/`
166
+ - Update API/changelog if applicable
167
+ 2. Present completion summary with next steps
168
+
169
+ ---
170
+
171
+ ## Quick Reference
172
+
173
+ | Step | Skill | Output |
174
+ | ---- | ------------------ | ---------------------- |
175
+ | 1 | research | research-insights.md |
176
+ | 2 | product-manager | feature-spec.md |
177
+ | 3-4 | lead-architect | implementation-plan.md |
178
+ | 5 | designer | Component specs |
179
+ | 6 | backend-developer | API, Models, Tests |
180
+ | 7 | frontend-developer | Components, Tests |
181
+ | 8 | qa-tester | qa-report.md |
182
+ | 9 | lead-architect | Updated docs |
@@ -0,0 +1,193 @@
1
+ ---
2
+ description: Search, preview, and install external agent skills from GitHub repos or registries
3
+ ---
4
+
5
+ # Install Skill — On-Demand Skill Installer
6
+
7
+ > [!IMPORTANT]
8
+ > Philosophy: **Search → Preview → Confirm → Install → Register**
9
+ > Combines ALL search methods: Registry → GitHub → Web → context7
10
+
11
+ ---
12
+
13
+ ## Step 0: Parse Request
14
+
15
+ Determine what user wants:
16
+
17
+ ```
18
+ 📦 Install a skill:
19
+ 1. By name: /install-skill stripe
20
+ 2. By repo: /install-skill github.com/stripe/ai
21
+ 3. By domain: /install-skill "payment processing"
22
+ ```
23
+
24
+ Extract: `<query>` (name, URL, or domain keyword)
25
+
26
+ ---
27
+
28
+ ## Step 1: Multi-Source Search
29
+
30
+ // turbo
31
+
32
+ Run **ALL search methods in parallel**, prioritized by reliability:
33
+
34
+ ### 1.1 Registry Lookup (fastest, most reliable)
35
+ ```
36
+ Read .agent/known-registries.json
37
+ → Match <query> against entries
38
+ → If found: return { repo, skill_path, description }
39
+ ```
40
+
41
+ ### 1.2 GitHub MCP Search
42
+ ```
43
+ mcp_github_search_code: "SKILL.md <query>"
44
+ mcp_github_search_repositories: "<query> agent-skills"
45
+ → Filter: must contain SKILL.md
46
+ → Sort by stars
47
+ ```
48
+
49
+ ### 1.3 Web Search
50
+ ```
51
+ search_web: "<query> agent skill SKILL.md github 2025 2026"
52
+ → Extract GitHub URLs from results
53
+ ```
54
+
55
+ ### 1.4 context7 Docs (fallback — not a skill, but useful)
56
+ ```
57
+ mcp_context7_resolve-library-id: "<query>"
58
+ → If found: offer as alternative to skill install
59
+ → "No skill found, but context7 has live docs for <query>"
60
+ ```
61
+
62
+ ---
63
+
64
+ ## Step 2: Present Results
65
+
66
+ Merge and deduplicate results. Present top matches:
67
+
68
+ ```
69
+ 🔍 Found skills for "<query>":
70
+
71
+ ⭐ Registry Match:
72
+ 1. stripe/stripe-best-practices — Best practices for Stripe integrations
73
+ Source: github.com/stripe/ai (✅ verified registry)
74
+
75
+ 🔎 GitHub Results:
76
+ 2. community/stripe-checkout — Stripe Checkout integration patterns
77
+ Source: github.com/user/repo (⚠️ community, 45⭐)
78
+
79
+ 📚 context7 Docs (alternative):
80
+ 3. Stripe API docs available via context7 (real-time, no install needed)
81
+
82
+ Which to install? (number, or 'skip')
83
+ ```
84
+
85
+ > [!TIP]
86
+ > If **only context7 results** found (no SKILL.md), suggest:
87
+ > "No installable skill found. But I can use context7 to query live docs for `<query>` anytime. Want to proceed without installing?"
88
+
89
+ ---
90
+
91
+ ## Step 3: Preview & Confirm
92
+
93
+ // turbo
94
+
95
+ For the selected skill:
96
+
97
+ 1. **Read SKILL.md** from source (via GitHub MCP or clone)
98
+ ```
99
+ mcp_github_get_file_contents(owner, repo, "skills/<name>/SKILL.md")
100
+ ```
101
+
102
+ 2. **Show preview** to user:
103
+ ```
104
+ 📋 Skill Preview: stripe-best-practices
105
+ ├── Name: Stripe Best Practices
106
+ ├── Source: github.com/stripe/ai
107
+ ├── Size: ~120 lines
108
+ ├── Conflicts: None (new skill)
109
+ └── Dependencies: None
110
+
111
+ Install? (y/n)
112
+ ```
113
+
114
+ 3. **Check conflicts**: Does `.agent/skills/<name>/` already exist?
115
+ - If yes → offer UPGRADE mode (merge) or SKIP
116
+
117
+ ---
118
+
119
+ ## Step 4: Install
120
+
121
+ // turbo
122
+
123
+ ### 4.1 Clone source
124
+ ```bash
125
+ git clone --depth 1 <repo-url> .agent/tmp/<repo-name>
126
+ ```
127
+
128
+ ### 4.2 Copy skill files
129
+ ```bash
130
+ # Copy skill directory to our skills folder
131
+ cp -r .agent/tmp/<repo-name>/skills/<skill-name> .agent/skills/<skill-name>/
132
+ ```
133
+
134
+ ### 4.3 Adapt to our conventions
135
+ For each file in the installed skill:
136
+ - Ensure SKILL.md has valid frontmatter (name, description)
137
+ - Check line count — if > 150 lines, suggest splitting per `skill-loading.md` rule
138
+ - Rename directories to match our naming convention (lowercase-kebab)
139
+
140
+ ### 4.4 Register in manifest
141
+ Update `.agent/skills-manifest.json`:
142
+ ```json
143
+ {
144
+ "name": "<skill-name>",
145
+ "description": "<from SKILL.md>",
146
+ "path": ".agent/skills/<skill-name>",
147
+ "source": "<repo-url>",
148
+ "installed": "<ISO date>",
149
+ "type": "external"
150
+ }
151
+ ```
152
+
153
+ Update `.agent/skills-manifest.json` with triggers and workflow refs.
154
+
155
+ ### 4.5 Cleanup
156
+ ```bash
157
+ rm -rf .agent/tmp/<repo-name>
158
+ ```
159
+
160
+ ---
161
+
162
+ ## Step 5: Confirm & Suggest
163
+
164
+ ```
165
+ ✅ Installed: stripe-best-practices
166
+ Path: .agent/skills/stripe-best-practices/
167
+ Source: github.com/stripe/ai
168
+ Type: external
169
+
170
+ 💡 Tip: Use /commit to save this change.
171
+ ```
172
+
173
+ ---
174
+
175
+ ## Error Handling
176
+
177
+ | Issue | Recovery |
178
+ |-------|----------|
179
+ | No results found | Suggest broadening query or using context7 |
180
+ | SKILL.md missing | Warn: "This repo has no SKILL.md — cannot install as skill" |
181
+ | Already installed | Offer upgrade or skip |
182
+ | Clone fails | Check URL, suggest manual download |
183
+ | Skill > 150 lines | Auto-split per skill-loading.md rule |
184
+
185
+ ---
186
+
187
+ ## Search Priority Order
188
+
189
+ ```
190
+ Registry (instant) → GitHub MCP (seconds) → Web (seconds) → context7 (fallback)
191
+ ↓ found? ↓ found? ↓ found? ↓ found?
192
+ Install Install Install Offer live docs
193
+ ```
@@ -0,0 +1,54 @@
1
+ ---
2
+ description: Create comprehensive test case documents and test plans based on project requirements.
3
+ ---
4
+
5
+ # QA Workflow
6
+
7
+ ## MCP Usage Guidelines
8
+
9
+ | MCP Tool | When to Use |
10
+ | :------------------------------------------- | :----------------------------------------------- |
11
+ | `mcp_sequential-thinking_sequentialthinking` | Analyze complex application logic and edge cases |
12
+ | `mcp_context7_query-docs` | Research testing frameworks or best practices |
13
+
14
+ ---
15
+
16
+ ## Step 1: Requirement Discovery
17
+
18
+ // turbo
19
+
20
+ 1. **Invoke `[qa-tester]` skill** to analyze the `docs/` folder.
21
+ 2. Identify features, constraints, and business logic that require testing.
22
+ 3. Map out:
23
+ - Happy Paths (Golden Flows)
24
+ - Negative Paths (Error handling)
25
+ - Boundary Cases
26
+ - Security/Performance considerations
27
+ 4. **WAIT** for user to confirm the list of scenarios to be documented.
28
+
29
+ ---
30
+
31
+ ## Step 2: Draft Test Documentation
32
+
33
+ // turbo
34
+
35
+ 1. **Invoke `[qa-tester]` skill** to create:
36
+ - **Test Plan**: High-level strategy for the current release/feature (`docs/035-QA/Test-Plans/`).
37
+ - **Test Cases**: Detailed step-by-step cases (`docs/035-QA/Test-Cases/`).
38
+ 2. Follow the standard mapping in `.agent/rules/documents.md`:
39
+ - Test Plan naming: `MTP-{Name}.md`
40
+ - Test Case naming: `TC-{Feature}-{NNN}.md`
41
+ 3. Create a `draft-qa-docs.md` artifact for review.
42
+
43
+ ---
44
+
45
+ ## Step 3: Finalize and Organize
46
+
47
+ // turbo
48
+
49
+ 1. After approval, save all files to their respective folders in `docs/035-QA/`.
50
+ 2. **Mandatory**:
51
+ - Update `docs/035-QA/QA-MOC.md`.
52
+ - Update `docs/000-Index.md` if needed.
53
+ - Ensure all frontmatter (id, type, status, created) is correctly populated according to `.agent/rules/documents.md`.
54
+ 3. Present summary of created tests.
@@ -0,0 +1,108 @@
1
+ ---
2
+ description: Transform requirements into comprehensive UI/UX design deliverables.
3
+ ---
4
+
5
+ # UI/UX Design Workflow
6
+
7
+ ## MCP Usage Guidelines
8
+
9
+ | MCP Tool | When to Use |
10
+ | ------------------------- | ----------------------------------------------- |
11
+ | `mcp_context7_query-docs` | Research UI libraries (shadcn, radix, tailwind) |
12
+ | `search_web` | Research design trends and UX patterns |
13
+ | `generate_image` | Create low-fi wireframes or conceptual assets |
14
+
15
+ ---
16
+
17
+ ## Step 1: Deep Research
18
+
19
+ // turbo
20
+
21
+ > 💡 **MANDATORY**: Follow `.agent/rules/research.md` for visual and UX excellence.
22
+
23
+ 1. **Invoke `[designer]` skill** and `search_web` to:
24
+ - Identify "Design of the Year" level trends for the specific sector.
25
+ - Find innovative UX patterns (micro-interactions, navigation).
26
+ - Gather reference images/styles for the mood board.
27
+ 2. Create `design-research.md` in `docs/050-Research/`.
28
+ 3. **WAIT** for user to approve the creative direction.
29
+
30
+ ---
31
+
32
+ ## Step 2: Discovery & Context
33
+
34
+ // turbo
35
+
36
+ 1. **Invoke `[designer]` skill** to:
37
+ - Check if Design System exists in `docs/`
38
+ - Analyze requirements/PRD
39
+ - Determine design scope (New System vs New Feature)
40
+ 2. **WAIT** for analysis result
41
+
42
+ ---
43
+
44
+ ## Step 3: Design System (If Needed)
45
+
46
+ // turbo
47
+
48
+ **Skip if**: Design system already exists.
49
+
50
+ > 💡 **MCP**: Use `context7` with `/tailwindcss/tailwindcss` or `/shadcn/ui` for config
51
+
52
+ 1. **Invoke `[designer]` skill** to define:
53
+ - Typography, Colors, Spacing scale
54
+ - Component primitives (Buttons, Inputs, Cards)
55
+ - Motion principles
56
+ 2. Create/Update Design System documentation
57
+ 3. **WAIT** for user approval
58
+
59
+ ---
60
+
61
+ ## Step 4: Component & Flow Design
62
+
63
+ // turbo
64
+
65
+ 1. **Invoke `[designer]` skill** to:
66
+ - Map user flows based on User Stories
67
+ - Define necessary components (Reuse vs New)
68
+ - Create component specifications
69
+ 2. Create flow and component documentation
70
+ 3. **WAIT** for user review
71
+
72
+ ---
73
+
74
+ ## Step 5: Prototyping
75
+
76
+ // turbo
77
+
78
+ > 💡 **MCP**: Use `generate_image` for visual concept validation if needed
79
+
80
+ 1. **Invoke `[frontend-developer]` skill** to:
81
+ - Build HTML/CSS prototypes in `prototype/` (keep it simple)
82
+ - Or create interactive mockups
83
+ 2. **Invoke `[designer]` skill** to:
84
+ - Review for accessibility (Contrast, Semantic HTML)
85
+ - Check alignment with Design System
86
+
87
+ ---
88
+
89
+ ## Step 6: Review & Handoff
90
+
91
+ // turbo
92
+
93
+ 1. Present prototypes to user
94
+ 2. Collect and apply feedback
95
+ 3. Update MOC files and finalize docs
96
+ 4. **Handoff**: Trigger `/implement-feature` if approved
97
+
98
+ ---
99
+
100
+ ## Quick Reference
101
+
102
+ | Step | Skill | Output |
103
+ | ---- | ------------------ | ------------------- |
104
+ | 1 | designer | Design Research |
105
+ | 2 | designer | Scope analysis |
106
+ | 3 | designer | Design System docs |
107
+ | 4 | designer | Flow/Component docs |
108
+ | 5 | frontend-developer | HTML Prototypes |
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 jhm1909
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.