@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,172 @@
1
+ # Accessibility Guidelines
2
+
3
+ Decision table and implementation checklist for inclusive design.
4
+
5
+ ## When to Apply Which Standard
6
+
7
+ | Project Type | Standard | Contrast Ratio | Target |
8
+ | --------------------- | ---------------------- | --------------------- | --------------------- |
9
+ | Personal/Hobby | No minimum | - | - |
10
+ | Commercial website | WCAG 2.1 AA | 4.5:1 text, 3:1 UI | Most users |
11
+ | Government/Public | WCAG 2.1 AA (required) | 4.5:1 text, 3:1 UI | Legal compliance |
12
+ | Enterprise SaaS | WCAG 2.1 AA+ | 4.5:1+ | Employee productivity |
13
+ | Healthcare/Finance | WCAG 2.1 AAA | 7:1 text, 4.5:1 large | Critical info access |
14
+ | Kiosk/Public terminal | WCAG 2.1 AAA | 7:1+ | Diverse environments |
15
+
16
+ ## Color & Contrast
17
+
18
+ ### Minimum Ratios
19
+
20
+ | Element | AA | AAA |
21
+ | ---------------------------- | ----- | ----- |
22
+ | Body text | 4.5:1 | 7:1 |
23
+ | Large text (18pt+/14pt bold) | 3:1 | 4.5:1 |
24
+ | UI components | 3:1 | - |
25
+ | Focus indicators | 3:1 | - |
26
+
27
+ ### Color Independence
28
+
29
+ - ❌ Never use color alone to convey meaning
30
+ - ✅ Add icons, patterns, or text labels
31
+ - Example: Red error + error icon + error text
32
+
33
+ ## Keyboard Navigation
34
+
35
+ ### Focus Management
36
+
37
+ ```css
38
+ /* Visible focus ring */
39
+ :focus-visible {
40
+ outline: 2px solid var(--color-focus);
41
+ outline-offset: 2px;
42
+ }
43
+
44
+ /* Remove default only with replacement */
45
+ :focus {
46
+ outline: none;
47
+ box-shadow: 0 0 0 3px var(--color-focus);
48
+ }
49
+ ```
50
+
51
+ ### Tab Order
52
+
53
+ - Logical, follows visual order
54
+ - No tabindex > 0 (disrupts natural order)
55
+ - Skip links for main content
56
+
57
+ ### Keyboard Patterns
58
+
59
+ | Component | Keys |
60
+ | --------------- | ------------------------------- |
61
+ | Button | Enter, Space |
62
+ | Link | Enter |
63
+ | Checkbox | Space |
64
+ | Radio | Arrows |
65
+ | Select/Dropdown | Arrows, Enter, Esc |
66
+ | Modal | Esc to close, trap focus inside |
67
+ | Tabs | Arrows between, Tab to content |
68
+
69
+ ## Screen Reader Optimization
70
+
71
+ ### Semantic HTML First
72
+
73
+ ```html
74
+ <!-- Bad -->
75
+ <div class="button" onclick="...">Click</div>
76
+
77
+ <!-- Good -->
78
+ <button type="button">Click</button>
79
+ ```
80
+
81
+ ### ARIA When Needed
82
+
83
+ ```html
84
+ <!-- Icon-only button -->
85
+ <button aria-label="Close dialog">
86
+ <svg>...</svg>
87
+ </button>
88
+
89
+ <!-- Live region for updates -->
90
+ <div aria-live="polite" aria-atomic="true">3 items added to cart</div>
91
+
92
+ <!-- Expandable sections -->
93
+ <button aria-expanded="false" aria-controls="panel1">Show details</button>
94
+ <div id="panel1" hidden>...</div>
95
+ ```
96
+
97
+ ### Content Order
98
+
99
+ - Visual order = DOM order
100
+ - Hidden decorative images: `aria-hidden="true"` or `alt=""`
101
+ - Meaningful images: descriptive `alt`
102
+
103
+ ## Motion & Animation
104
+
105
+ ### Reduced Motion
106
+
107
+ ```css
108
+ @media (prefers-reduced-motion: reduce) {
109
+ *,
110
+ *::before,
111
+ *::after {
112
+ animation-duration: 0.01ms !important;
113
+ transition-duration: 0.01ms !important;
114
+ }
115
+ }
116
+ ```
117
+
118
+ ### Safe Animation Types
119
+
120
+ - ✅ Opacity fades
121
+ - ✅ Small scale changes
122
+ - ⚠️ Limit parallax/vestibular motion
123
+ - ❌ Flashing (3+ times/sec)
124
+
125
+ ## Forms
126
+
127
+ ### Required Labels
128
+
129
+ ```html
130
+ <label for="email">Email address</label>
131
+ <input
132
+ id="email"
133
+ type="email"
134
+ name="email"
135
+ autocomplete="email"
136
+ aria-required="true"
137
+ aria-describedby="email-hint email-error"
138
+ />
139
+ <p id="email-hint">We'll never share your email</p>
140
+ <p id="email-error" role="alert">Please enter valid email</p>
141
+ ```
142
+
143
+ ### Error Handling
144
+
145
+ - Announce errors on submit (focus first error)
146
+ - Inline errors near the field
147
+ - Clear error states when corrected
148
+
149
+ ## Testing Checklist
150
+
151
+ ### Automated
152
+
153
+ - [ ] axe DevTools browser extension
154
+ - [ ] Lighthouse accessibility audit
155
+ - [ ] eslint-plugin-jsx-a11y (React)
156
+
157
+ ### Manual
158
+
159
+ - [ ] Tab through entire page
160
+ - [ ] Use screen reader (VoiceOver/NVDA)
161
+ - [ ] Zoom to 200%
162
+ - [ ] Test with high contrast mode
163
+ - [ ] Check without CSS loaded
164
+
165
+ ### Screen Readers to Test
166
+
167
+ | Platform | Reader |
168
+ | -------- | -------------------- |
169
+ | macOS | VoiceOver (built-in) |
170
+ | Windows | NVDA (free), JAWS |
171
+ | iOS | VoiceOver (built-in) |
172
+ | Android | TalkBack |
@@ -0,0 +1,88 @@
1
+ # Branding & Identity Development
2
+
3
+ Expert guidelines for creating distinctive, memorable brand identities.
4
+
5
+ ## Brand Discovery Process
6
+
7
+ ### 1. Brand Essence Questions
8
+
9
+ Before any visual work, answer:
10
+
11
+ - **Purpose**: Why does this brand exist? What problem does it solve?
12
+ - **Personality**: If this brand were a person, how would they speak/act?
13
+ - **Positioning**: What makes this brand different from competitors?
14
+ - **Promise**: What can users always expect from this brand?
15
+
16
+ ### 2. Target Audience Mapping
17
+
18
+ | Dimension | Primary | Secondary |
19
+ | -------------- | ------- | --------- |
20
+ | Demographics | | |
21
+ | Psychographics | | |
22
+ | Pain points | | |
23
+ | Aspirations | | |
24
+
25
+ ## Visual Identity System
26
+
27
+ ### Logo Design Principles
28
+
29
+ 1. **Simplicity**: Must work at 16px favicon and billboard sizes
30
+ 2. **Memorability**: One unique element that sticks
31
+ 3. **Timelessness**: Avoid trendy elements that date quickly
32
+ 4. **Versatility**: Works in mono, color, dark/light backgrounds
33
+ 5. **Appropriateness**: Matches brand personality
34
+
35
+ ### Logo Variations Required
36
+
37
+ - Primary (full logo)
38
+ - Secondary (simplified)
39
+ - Icon/favicon (minimal)
40
+ - Wordmark only
41
+ - Mono versions (black, white)
42
+
43
+ ### Brand Color Strategy
44
+
45
+ | Type | Count | Purpose |
46
+ | --------- | ----- | ----------------------------- |
47
+ | Primary | 1-2 | Main brand recognition |
48
+ | Secondary | 2-3 | Support & variety |
49
+ | Accent | 1 | CTAs & highlights |
50
+ | Neutral | 3-5 | Text, backgrounds |
51
+ | Semantic | 4 | Success, error, warning, info |
52
+
53
+ ## Brand Voice & Tone
54
+
55
+ ### Voice Attributes Matrix
56
+
57
+ | Attribute | We Are | We Are Not |
58
+ | --------- | ------ | ---------- |
59
+ | Tone 1 | | |
60
+ | Tone 2 | | |
61
+ | Tone 3 | | |
62
+
63
+ ### Messaging Hierarchy
64
+
65
+ 1. **Tagline**: 3-7 words, core promise
66
+ 2. **Value propositions**: 3 key benefits
67
+ 3. **Elevator pitch**: 30-second explanation
68
+ 4. **Full story**: Origin, mission, vision
69
+
70
+ ## Brand Consistency Checklist
71
+
72
+ - [ ] Logo usage rules documented
73
+ - [ ] Color palette with hex/RGB/HSL codes
74
+ - [ ] Typography system defined
75
+ - [ ] Photography/illustration style guide
76
+ - [ ] Voice & tone guidelines
77
+ - [ ] Do's and Don'ts examples
78
+ - [ ] Application templates (social, email, etc.)
79
+
80
+ ## Integration with UI
81
+
82
+ When applying brand to UI:
83
+
84
+ 1. **Primary color**: Headers, primary CTAs
85
+ 2. **Secondary colors**: Supporting elements
86
+ 3. **Accent**: Interactive highlights, notifications
87
+ 4. **Typography**: Match brand fonts or select complementary web-safe alternatives
88
+ 5. **Imagery**: Consistent with brand photography style
@@ -0,0 +1,139 @@
1
+ # Color Theory for UI Design
2
+
3
+ Expert guide to color selection, harmony, and application in digital interfaces.
4
+
5
+ ## Color Psychology
6
+
7
+ ### Emotional Associations by Hue
8
+
9
+ | Color | Positive | Negative | Best For |
10
+ | ------ | ------------------------------- | -------------------- | ------------------------------- |
11
+ | Red | Energy, passion, urgency | Danger, aggression | CTAs, sales, alerts |
12
+ | Orange | Creativity, warmth, fun | Caution, cheap | E-commerce, entertainment |
13
+ | Yellow | Optimism, clarity, warmth | Anxiety, cowardice | Highlights, warnings |
14
+ | Green | Growth, health, success | Envy, inexperience | Finance, wellness, confirmation |
15
+ | Blue | Trust, calm, professional | Cold, sadness | Corporate, tech, healthcare |
16
+ | Purple | Luxury, creativity, wisdom | Decadence, moodiness | Beauty, premium brands |
17
+ | Pink | Playful, romantic, feminine | Immature, weak | Fashion, beauty, youth |
18
+ | Black | Elegance, power, sophistication | Death, evil | Luxury, fashion |
19
+ | White | Clean, simple, pure | Sterile, empty | Minimalist, healthcare |
20
+ | Gray | Neutral, balanced, mature | Dull, indecisive | Professional, backgrounds |
21
+
22
+ ### Cultural Considerations
23
+
24
+ | Culture | Red | White | Yellow | Green |
25
+ | ----------- | ---------------- | -------- | --------- | ----------------- |
26
+ | Western | Love, danger | Purity | Happiness | Nature |
27
+ | Eastern | Luck, prosperity | Mourning | Royalty | Infidelity (some) |
28
+ | Middle East | Danger | Purity | Joy | Fertility |
29
+
30
+ ## Color Harmony Schemes
31
+
32
+ ### 1. Monochromatic
33
+
34
+ - **How**: Single hue, vary saturation/lightness
35
+ - **Use**: Elegant, cohesive, easy to implement
36
+ - **Tip**: Add one accent color for contrast
37
+
38
+ ### 2. Analogous
39
+
40
+ - **How**: 3-5 adjacent colors on wheel
41
+ - **Use**: Harmonious, natural feel
42
+ - **Tip**: Pick one dominant, others as support
43
+
44
+ ### 3. Complementary
45
+
46
+ - **How**: Opposite colors on wheel
47
+ - **Use**: High contrast, vibrant
48
+ - **Tip**: Use 70-30 ratio, never 50-50
49
+
50
+ ### 4. Split-Complementary
51
+
52
+ - **How**: Base + two adjacents to its complement
53
+ - **Use**: Contrast with less tension
54
+ - **Tip**: Great for beginners
55
+
56
+ ### 5. Triadic
57
+
58
+ - **How**: Three evenly spaced colors
59
+ - **Use**: Vibrant, balanced
60
+ - **Tip**: Let one dominate, two accent
61
+
62
+ ### 6. Tetradic (Rectangle)
63
+
64
+ - **How**: Two complementary pairs
65
+ - **Use**: Rich, varied palette
66
+ - **Tip**: Most complex, requires careful balance
67
+
68
+ ## Palette Generation Workflow
69
+
70
+ 1. **Start with brand meaning** → Select primary hue
71
+ 2. **Choose harmony type** → Generate base palette
72
+ 3. **Add neutrals** → Gray scale from tinted primary
73
+ 4. **Define semantic colors** → Success, error, warning, info
74
+ 5. **Create shades** → 9-11 steps (50-900) per color
75
+ 6. **Test contrast** → WCAG AA minimum
76
+
77
+ ## Color Scale Generation
78
+
79
+ ```
80
+ color-50: lightest (backgrounds)
81
+ color-100: very light
82
+ color-200: light
83
+ color-300: light-medium
84
+ color-400: medium-light
85
+ color-500: base (primary shade)
86
+ color-600: medium-dark
87
+ color-700: dark
88
+ color-800: very dark
89
+ color-900: darkest (text)
90
+ color-950: near black
91
+ ```
92
+
93
+ ## Contrast Requirements (WCAG)
94
+
95
+ | Level | Normal Text | Large Text | UI Components |
96
+ | ----- | ----------- | ---------- | ------------- |
97
+ | AA | 4.5:1 | 3:1 | 3:1 |
98
+ | AAA | 7:1 | 4.5:1 | Not defined |
99
+
100
+ ### Tools for Checking
101
+
102
+ - WebAIM Contrast Checker
103
+ - Stark (Figma plugin)
104
+ - axe DevTools
105
+
106
+ ## Dark Mode Strategy
107
+
108
+ ### Approach 1: Invert Lightness
109
+
110
+ - Swap 50↔900, 100↔800, etc.
111
+ - Primary hue stays, lightness inverts
112
+
113
+ ### Approach 2: Semantic Tokens
114
+
115
+ ```css
116
+ --color-surface: light → dark --color-on-surface: dark → light
117
+ --color-primary: adjust saturation + 10%;
118
+ ```
119
+
120
+ ### Dark Mode Do's & Don'ts
121
+
122
+ - ✅ Reduce saturation slightly (colors feel brighter on dark)
123
+ - ✅ Use elevation via subtle lightness increase
124
+ - ✅ Test in actual dark environment
125
+ - ❌ Pure black (#000) backgrounds (use #121212+)
126
+ - ❌ Same colors as light mode (adjust for contrast)
127
+
128
+ ## CSS Implementation
129
+
130
+ ```css
131
+ :root {
132
+ color-scheme: light dark;
133
+
134
+ /* Semantic color tokens */
135
+ --color-surface: light-dark(#fff, #1a1a1a);
136
+ --color-on-surface: light-dark(#1a1a1a, #f5f5f5);
137
+ --color-primary: light-dark(#2563eb, #60a5fa);
138
+ }
139
+ ```
@@ -0,0 +1,118 @@
1
+ # UI/UX Creation Guidelines
2
+
3
+ Expert guide for creating distinctive, production-grade interfaces.
4
+
5
+ ## Design Thinking Process
6
+
7
+ ### Phase 1: Discovery
8
+
9
+ Before any visual work:
10
+
11
+ 1. **Purpose**: What problem does this solve?
12
+ 2. **Audience**: Who uses this? What do they expect?
13
+ 3. **Context**: Where is it used? Device, environment, frequency?
14
+ 4. **Competition**: What exists? How to differentiate?
15
+
16
+ ### Phase 2: Aesthetic Direction
17
+
18
+ Choose ONE strong direction:
19
+
20
+ | Direction | Characteristics | Best For |
21
+ | ---------------------- | ---------------------------------------------- | ------------------------ |
22
+ | Brutally Minimal | White space, system fonts, zero decoration | Tools, productivity |
23
+ | Maximalist | Dense info, layered elements, rich color | Dashboards, media |
24
+ | Retro-Futuristic | Neon, scanlines, tech-noir | Gaming, creative |
25
+ | Organic Natural | Earth tones, flowing shapes, textures | Wellness, sustainability |
26
+ | Luxury Refined | Black/gold, thin type, generous space | Premium products |
27
+ | Playful Toy-like | Bright colors, rounded shapes, bouncy motion | Kids, casual apps |
28
+ | Editorial Magazine | Strong grid, bold headlines, photo-driven | Content, portfolios |
29
+ | Brutalist Raw | Mono fonts, harsh contrast, visible structure | Art, experimental |
30
+ | Art Deco Geometric | Gold accents, symmetric patterns, elegant type | Events, luxury |
31
+ | Soft Pastel | Muted tones, gentle gradients, light feel | Lifestyle, baby |
32
+ | Industrial Utilitarian | Gray, exposed grid, functional focus | B2B, enterprise |
33
+
34
+ **Pick one. Commit. Execute with precision.**
35
+
36
+ ### Phase 3: Brainstorming
37
+
38
+ #### Moodboard Elements
39
+
40
+ - 5-10 reference images (from Dribbble, Awwwards, Behance)
41
+ - 3 font candidates
42
+ - Color palette draft
43
+ - Key interaction moments
44
+
45
+ #### "One Thing" Exercise
46
+
47
+ Complete this sentence:
48
+
49
+ > "When users see this, they will remember **\*\***\_\_\_**\*\***"
50
+
51
+ Make that ONE thing unforgettable.
52
+
53
+ ## Implementation Excellence
54
+
55
+ ### Typography Execution
56
+
57
+ ```css
58
+ /* Load reference: @references/typography.md */
59
+ ```
60
+
61
+ - Display font for impact
62
+ - Body font for readability
63
+ - Proper text-wrap, font-features
64
+ - Responsive sizing
65
+
66
+ ### Color Execution
67
+
68
+ ```css
69
+ /* Load reference: @references/color-theory.md */
70
+ ```
71
+
72
+ - Brand-aligned palette
73
+ - Semantic colors defined
74
+ - Dark mode prepared
75
+ - Contrast verified
76
+
77
+ ### Motion Execution
78
+
79
+ ```css
80
+ /* Load reference: @references/motion.md */
81
+ ```
82
+
83
+ - **Define Intent**: Why is this moving? (Orientation/Feedback)
84
+ - **Use Template**: Create a spec using `../templates/design-motion-spec.md`
85
+ - **Spec Output**: Save to `docs/040-Design/Specs/`
86
+ - **No Direct Code**: Leave implementation to `frontend-developer`
87
+
88
+ ### Layout Execution
89
+
90
+ ```css
91
+ /* Load reference: @references/layout.md */
92
+ ```
93
+
94
+ - Grid system applied
95
+ - Spacing consistent (8pt)
96
+ - Responsive breakpoints
97
+ - Safe areas respected
98
+
99
+ ## Quality Checklist
100
+
101
+ Before deliverySure:
102
+
103
+ - [ ] Aesthetic direction is clear and committed
104
+ - [ ] Typography pairs well and is readable
105
+ - [ ] Color palette is harmonious and accessible
106
+ - [ ] Motion is purposeful, not gratuitous
107
+ - [ ] Layout is responsive and consistent
108
+ - [ ] "One thing" is memorable
109
+ - [ ] No generic patterns (default gradients, template cards)
110
+
111
+ ## Handoff to Development
112
+
113
+ When integration with `frontend-developer`:
114
+
115
+ 1. Design tokens documented
116
+ 2. Component variants defined
117
+ 3. Interaction states specified
118
+ 4. Edge cases considered