aigroup-workflow 1.3.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (619) hide show
  1. package/.claude/agents/architect.md +211 -0
  2. package/.claude/agents/build-error-resolver.md +114 -0
  3. package/.claude/agents/code-reviewer.md +237 -0
  4. package/.claude/agents/doc-updater.md +107 -0
  5. package/.claude/agents/e2e-runner.md +107 -0
  6. package/.claude/agents/init-architect.md +185 -128
  7. package/.claude/agents/planner.md +212 -0
  8. package/.claude/agents/refactor-cleaner.md +85 -0
  9. package/.claude/agents/rust-reviewer.md +94 -0
  10. package/.claude/agents/security-reviewer.md +108 -0
  11. package/.claude/agents/tdd-guide.md +91 -0
  12. package/.claude/commands/fix-build.md +32 -0
  13. package/.claude/commands/git-commit.md +1 -1
  14. package/.claude/commands/init-project.md +66 -50
  15. package/.claude/commands/plan.md +32 -0
  16. package/.claude/commands/review.md +29 -0
  17. package/.claude/commands/tdd.md +32 -0
  18. package/.claude/commands/workflow-start.md +87 -0
  19. package/.claude/hooks.json +3 -3
  20. package/.claude-plugin/plugin.json +20 -0
  21. package/.codex/AGENTS.md +107 -0
  22. package/.codex/agents/docs-researcher.toml +14 -0
  23. package/.codex/agents/explorer.toml +14 -0
  24. package/.codex/agents/reviewer.toml +16 -0
  25. package/.codex/config.toml +93 -0
  26. package/.codex-plugin/plugin.json +33 -0
  27. package/AGENTS.md +76 -0
  28. package/CLAUDE.md +18 -83
  29. package/README.md +220 -317
  30. package/cli/commands/check.mjs +11 -19
  31. package/cli/commands/init.mjs +133 -49
  32. package/cli/commands/status.mjs +42 -39
  33. package/cli/commands/update.mjs +10 -12
  34. package/cli/utils/scaffold.mjs +297 -126
  35. package/docs/README.md +46 -29
  36. package/docs/red-flags.md +29 -24
  37. package/docs/rules/README.md +51 -0
  38. package/docs/rules/agents.md +50 -0
  39. package/docs/rules/coding-style.md +79 -0
  40. package/docs/rules/cpp/coding-style.md +44 -0
  41. package/docs/rules/cpp/hooks.md +39 -0
  42. package/docs/rules/cpp/patterns.md +51 -0
  43. package/docs/rules/cpp/security.md +51 -0
  44. package/docs/rules/cpp/testing.md +44 -0
  45. package/docs/rules/csharp/coding-style.md +72 -0
  46. package/docs/rules/csharp/hooks.md +25 -0
  47. package/docs/rules/csharp/patterns.md +50 -0
  48. package/docs/rules/csharp/security.md +58 -0
  49. package/docs/rules/csharp/testing.md +46 -0
  50. package/docs/rules/dart/coding-style.md +159 -0
  51. package/docs/rules/dart/hooks.md +66 -0
  52. package/docs/rules/dart/patterns.md +261 -0
  53. package/docs/rules/dart/security.md +135 -0
  54. package/docs/rules/dart/testing.md +215 -0
  55. package/docs/rules/git-workflow.md +53 -0
  56. package/docs/rules/golang/coding-style.md +32 -0
  57. package/docs/rules/golang/hooks.md +17 -0
  58. package/docs/rules/golang/patterns.md +45 -0
  59. package/docs/rules/golang/security.md +34 -0
  60. package/docs/rules/golang/testing.md +31 -0
  61. package/docs/rules/hooks.md +61 -0
  62. package/docs/rules/java/coding-style.md +114 -0
  63. package/docs/rules/java/hooks.md +18 -0
  64. package/docs/rules/java/patterns.md +146 -0
  65. package/docs/rules/java/security.md +100 -0
  66. package/docs/rules/java/testing.md +131 -0
  67. package/docs/rules/kotlin/coding-style.md +86 -0
  68. package/docs/rules/kotlin/hooks.md +17 -0
  69. package/docs/rules/kotlin/patterns.md +146 -0
  70. package/docs/rules/kotlin/security.md +82 -0
  71. package/docs/rules/kotlin/testing.md +128 -0
  72. package/docs/rules/performance.md +30 -0
  73. package/docs/rules/perl/coding-style.md +46 -0
  74. package/docs/rules/perl/hooks.md +22 -0
  75. package/docs/rules/perl/patterns.md +76 -0
  76. package/docs/rules/perl/security.md +69 -0
  77. package/docs/rules/perl/testing.md +54 -0
  78. package/docs/rules/php/coding-style.md +40 -0
  79. package/docs/rules/php/hooks.md +24 -0
  80. package/docs/rules/php/patterns.md +33 -0
  81. package/docs/rules/php/security.md +37 -0
  82. package/docs/rules/php/testing.md +39 -0
  83. package/docs/rules/python/coding-style.md +42 -0
  84. package/docs/rules/python/hooks.md +19 -0
  85. package/docs/rules/python/patterns.md +39 -0
  86. package/docs/rules/python/security.md +30 -0
  87. package/docs/rules/python/testing.md +38 -0
  88. package/docs/rules/rust/coding-style.md +151 -0
  89. package/docs/rules/rust/hooks.md +16 -0
  90. package/docs/rules/rust/patterns.md +168 -0
  91. package/docs/rules/rust/security.md +141 -0
  92. package/docs/rules/rust/testing.md +154 -0
  93. package/docs/rules/security.md +73 -0
  94. package/docs/rules/swift/coding-style.md +47 -0
  95. package/docs/rules/swift/hooks.md +20 -0
  96. package/docs/rules/swift/patterns.md +66 -0
  97. package/docs/rules/swift/security.md +33 -0
  98. package/docs/rules/swift/testing.md +45 -0
  99. package/docs/rules/testing.md +77 -0
  100. package/docs/rules/typescript/coding-style.md +199 -0
  101. package/docs/rules/typescript/hooks.md +22 -0
  102. package/docs/rules/typescript/patterns.md +52 -0
  103. package/docs/rules/typescript/security.md +28 -0
  104. package/docs/rules/typescript/testing.md +18 -0
  105. package/docs/rules/web/coding-style.md +96 -0
  106. package/docs/rules/web/design-quality.md +63 -0
  107. package/docs/rules/web/hooks.md +120 -0
  108. package/docs/rules/web/patterns.md +79 -0
  109. package/docs/rules/web/performance.md +64 -0
  110. package/docs/rules/web/security.md +57 -0
  111. package/docs/rules/web/testing.md +55 -0
  112. package/docs/templates/code-review.md +1 -1
  113. package/docs/templates/implementation-plan.md +82 -82
  114. package/docs/workflow-pipeline.md +55 -127
  115. package/manifests/install-modules.json +294 -0
  116. package/package.json +7 -2
  117. package/scripts/harness/log-event.sh +11 -21
  118. package/scripts/harness/logs-query.sh +3 -8
  119. package/scripts/harness/tests/test-log-event.sh +16 -31
  120. package/scripts/harness/tests/test-logs-query.sh +4 -4
  121. package/scripts/hooks/README.md +49 -0
  122. package/scripts/hooks/checks/claude-md-size.cjs +21 -0
  123. package/scripts/hooks/checks/delegation-antipatterns.cjs +66 -0
  124. package/scripts/hooks/checks/empty-docs.cjs +32 -0
  125. package/scripts/hooks/checks/orchestration-artifacts.cjs +65 -0
  126. package/scripts/hooks/checks/structure.cjs +23 -0
  127. package/scripts/hooks/checks/workflow-state.cjs +56 -0
  128. package/scripts/hooks/dispatcher.cjs +64 -0
  129. package/scripts/hooks/lib/runner.cjs +81 -0
  130. package/scripts/orchestration/lib/orchestrator.cjs +181 -0
  131. package/scripts/orchestration/session.cjs +180 -0
  132. package/skills/documentation/SKILL.md +45 -0
  133. package/skills/{max/workflow/entropy-management → entropy-management}/SKILL.md +115 -124
  134. package/skills/requirement-engineering/SKILL.md +111 -0
  135. package/skills/{max/workflow/subagent-driven-development → subagent-driven-development}/SKILL.md +18 -18
  136. package/skills/{max/workflow/writing-plans → writing-plans}/SKILL.md +165 -165
  137. package/.claude/agents/ella.md +0 -101
  138. package/.claude/agents/jarvis.md +0 -193
  139. package/.claude/agents/kyle.md +0 -168
  140. package/docs/ARCHITECTURE.md +0 -117
  141. package/docs/QUALITY_SCORE.md +0 -44
  142. package/docs/coding-standards.md +0 -48
  143. package/docs/dispatch-rules.md +0 -83
  144. package/docs/steering-loop.md +0 -72
  145. package/docs/tech-debt-tracker.md +0 -26
  146. package/docs/templates/memory/activeContext.template.md +0 -30
  147. package/docs/templates/memory/projectContext.template.md +0 -36
  148. package/docs/templates/memory/systemPatterns.template.md +0 -26
  149. package/scripts/check-gitignore.sh +0 -130
  150. package/scripts/clean-system-files.sh +0 -169
  151. package/scripts/harness/hook-post-edit.sh +0 -40
  152. package/scripts/harness/hook-stop.sh +0 -70
  153. package/scripts/harness/hook-subagent-stop.sh +0 -54
  154. package/scripts/harness/lint-delegation.sh +0 -168
  155. package/scripts/harness/lint-docs.sh +0 -121
  156. package/scripts/harness/lint-process.sh +0 -221
  157. package/scripts/harness/lint-structure.sh +0 -145
  158. package/scripts/harness/lint-workflow-artifacts.sh +0 -150
  159. package/scripts/harness/run-all.sh +0 -77
  160. package/scripts/harness/workflow-state.sh +0 -397
  161. package/scripts/update-skills.sh +0 -187
  162. package/skills/max/workflow/brainstorming/SKILL.md +0 -111
  163. package/skills/max/workflow/documentation/SKILL.md +0 -82
  164. package/skills/max/workflow/requirement-validation/SKILL.md +0 -107
  165. package/skills/max/workflow/solution-design/SKILL.md +0 -117
  166. package/skills/max/workflow/testing/SKILL.md +0 -118
  167. /package/skills/{ella/angular-architect → angular-architect}/SKILL.md +0 -0
  168. /package/skills/{ella/angular-architect → angular-architect}/references/components.md +0 -0
  169. /package/skills/{ella/angular-architect → angular-architect}/references/ngrx.md +0 -0
  170. /package/skills/{ella/angular-architect → angular-architect}/references/routing.md +0 -0
  171. /package/skills/{ella/angular-architect → angular-architect}/references/rxjs.md +0 -0
  172. /package/skills/{ella/angular-architect → angular-architect}/references/testing.md +0 -0
  173. /package/skills/{jarvis/api-designer → api-designer}/SKILL.md +0 -0
  174. /package/skills/{jarvis/api-designer → api-designer}/references/error-handling.md +0 -0
  175. /package/skills/{jarvis/api-designer → api-designer}/references/openapi.md +0 -0
  176. /package/skills/{jarvis/api-designer → api-designer}/references/pagination.md +0 -0
  177. /package/skills/{jarvis/api-designer → api-designer}/references/rest-patterns.md +0 -0
  178. /package/skills/{jarvis/api-designer → api-designer}/references/versioning.md +0 -0
  179. /package/skills/{jarvis/architecture-designer → architecture-designer}/SKILL.md +0 -0
  180. /package/skills/{jarvis/architecture-designer → architecture-designer}/references/adr-template.md +0 -0
  181. /package/skills/{jarvis/architecture-designer → architecture-designer}/references/architecture-patterns.md +0 -0
  182. /package/skills/{jarvis/architecture-designer → architecture-designer}/references/database-selection.md +0 -0
  183. /package/skills/{jarvis/architecture-designer → architecture-designer}/references/nfr-checklist.md +0 -0
  184. /package/skills/{jarvis/architecture-designer → architecture-designer}/references/system-design.md +0 -0
  185. /package/skills/{kyle/chaos-engineer → chaos-engineer}/SKILL.md +0 -0
  186. /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/chaos-tools.md +0 -0
  187. /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/experiment-design.md +0 -0
  188. /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/game-days.md +0 -0
  189. /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/infrastructure-chaos.md +0 -0
  190. /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/kubernetes-chaos.md +0 -0
  191. /package/skills/{jarvis/cli-developer → cli-developer}/SKILL.md +0 -0
  192. /package/skills/{jarvis/cli-developer → cli-developer}/references/design-patterns.md +0 -0
  193. /package/skills/{jarvis/cli-developer → cli-developer}/references/go-cli.md +0 -0
  194. /package/skills/{jarvis/cli-developer → cli-developer}/references/node-cli.md +0 -0
  195. /package/skills/{jarvis/cli-developer → cli-developer}/references/python-cli.md +0 -0
  196. /package/skills/{jarvis/cli-developer → cli-developer}/references/ux-patterns.md +0 -0
  197. /package/skills/{jarvis/cloud-architect → cloud-architect}/SKILL.md +0 -0
  198. /package/skills/{jarvis/cloud-architect → cloud-architect}/references/aws.md +0 -0
  199. /package/skills/{jarvis/cloud-architect → cloud-architect}/references/azure.md +0 -0
  200. /package/skills/{jarvis/cloud-architect → cloud-architect}/references/cost.md +0 -0
  201. /package/skills/{jarvis/cloud-architect → cloud-architect}/references/gcp.md +0 -0
  202. /package/skills/{jarvis/cloud-architect → cloud-architect}/references/multi-cloud.md +0 -0
  203. /package/skills/{jarvis/code-documenter → code-documenter}/SKILL.md +0 -0
  204. /package/skills/{jarvis/code-documenter → code-documenter}/references/api-docs-fastapi-django.md +0 -0
  205. /package/skills/{jarvis/code-documenter → code-documenter}/references/api-docs-nestjs-express.md +0 -0
  206. /package/skills/{jarvis/code-documenter → code-documenter}/references/coverage-reports.md +0 -0
  207. /package/skills/{jarvis/code-documenter → code-documenter}/references/documentation-systems.md +0 -0
  208. /package/skills/{jarvis/code-documenter → code-documenter}/references/interactive-api-docs.md +0 -0
  209. /package/skills/{jarvis/code-documenter → code-documenter}/references/python-docstrings.md +0 -0
  210. /package/skills/{jarvis/code-documenter → code-documenter}/references/typescript-jsdoc.md +0 -0
  211. /package/skills/{jarvis/code-documenter → code-documenter}/references/user-guides-tutorials.md +0 -0
  212. /package/skills/{kyle/code-reviewer → code-reviewer}/SKILL.md +0 -0
  213. /package/skills/{kyle/code-reviewer → code-reviewer}/references/common-issues.md +0 -0
  214. /package/skills/{kyle/code-reviewer → code-reviewer}/references/feedback-examples.md +0 -0
  215. /package/skills/{kyle/code-reviewer → code-reviewer}/references/receiving-feedback.md +0 -0
  216. /package/skills/{kyle/code-reviewer → code-reviewer}/references/report-template.md +0 -0
  217. /package/skills/{kyle/code-reviewer → code-reviewer}/references/review-checklist.md +0 -0
  218. /package/skills/{kyle/code-reviewer → code-reviewer}/references/spec-compliance-review.md +0 -0
  219. /package/skills/{max/competitive-analysis → competitive-analysis}/SKILL.md +0 -0
  220. /package/skills/{jarvis/cpp-pro → cpp-pro}/SKILL.md +0 -0
  221. /package/skills/{jarvis/cpp-pro → cpp-pro}/references/build-tooling.md +0 -0
  222. /package/skills/{jarvis/cpp-pro → cpp-pro}/references/concurrency.md +0 -0
  223. /package/skills/{jarvis/cpp-pro → cpp-pro}/references/memory-performance.md +0 -0
  224. /package/skills/{jarvis/cpp-pro → cpp-pro}/references/modern-cpp.md +0 -0
  225. /package/skills/{jarvis/cpp-pro → cpp-pro}/references/templates.md +0 -0
  226. /package/skills/{jarvis/csharp-developer → csharp-developer}/SKILL.md +0 -0
  227. /package/skills/{jarvis/csharp-developer → csharp-developer}/references/aspnet-core.md +0 -0
  228. /package/skills/{jarvis/csharp-developer → csharp-developer}/references/blazor.md +0 -0
  229. /package/skills/{jarvis/csharp-developer → csharp-developer}/references/entity-framework.md +0 -0
  230. /package/skills/{jarvis/csharp-developer → csharp-developer}/references/modern-csharp.md +0 -0
  231. /package/skills/{jarvis/csharp-developer → csharp-developer}/references/performance.md +0 -0
  232. /package/skills/{jarvis/database-optimizer → database-optimizer}/SKILL.md +0 -0
  233. /package/skills/{jarvis/database-optimizer → database-optimizer}/references/index-strategies.md +0 -0
  234. /package/skills/{jarvis/database-optimizer → database-optimizer}/references/monitoring-analysis.md +0 -0
  235. /package/skills/{jarvis/database-optimizer → database-optimizer}/references/mysql-tuning.md +0 -0
  236. /package/skills/{jarvis/database-optimizer → database-optimizer}/references/postgresql-tuning.md +0 -0
  237. /package/skills/{jarvis/database-optimizer → database-optimizer}/references/query-optimization.md +0 -0
  238. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/SKILL.md +0 -0
  239. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/common-patterns.md +0 -0
  240. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/debugging-tools.md +0 -0
  241. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/quick-fixes.md +0 -0
  242. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/strategies.md +0 -0
  243. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/systematic-debugging.md +0 -0
  244. /package/skills/{ella/commands → design-commands}/design.md +0 -0
  245. /package/skills/{ella/commands → design-commands}/handoff.md +0 -0
  246. /package/skills/{ella/commands → design-commands}/prototype.md +0 -0
  247. /package/skills/{ella/commands → design-commands}/spec.md +0 -0
  248. /package/skills/{ella/commands → design-commands}/style.md +0 -0
  249. /package/skills/{jarvis/devops-engineer → devops-engineer}/SKILL.md +0 -0
  250. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/deployment-strategies.md +0 -0
  251. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/docker-patterns.md +0 -0
  252. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/github-actions.md +0 -0
  253. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/incident-response.md +0 -0
  254. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/kubernetes.md +0 -0
  255. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/platform-engineering.md +0 -0
  256. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/release-automation.md +0 -0
  257. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/terraform-iac.md +0 -0
  258. /package/skills/{jarvis/django-expert → django-expert}/SKILL.md +0 -0
  259. /package/skills/{jarvis/django-expert → django-expert}/references/authentication.md +0 -0
  260. /package/skills/{jarvis/django-expert → django-expert}/references/drf-serializers.md +0 -0
  261. /package/skills/{jarvis/django-expert → django-expert}/references/models-orm.md +0 -0
  262. /package/skills/{jarvis/django-expert → django-expert}/references/testing-django.md +0 -0
  263. /package/skills/{jarvis/django-expert → django-expert}/references/viewsets-views.md +0 -0
  264. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/SKILL.md +0 -0
  265. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/authentication.md +0 -0
  266. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/clean-architecture.md +0 -0
  267. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/cloud-native.md +0 -0
  268. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/entity-framework.md +0 -0
  269. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/minimal-apis.md +0 -0
  270. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/SKILL.md +0 -0
  271. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/async-sqlalchemy.md +0 -0
  272. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/authentication.md +0 -0
  273. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/endpoints-routing.md +0 -0
  274. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/migration-from-django.md +0 -0
  275. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/pydantic-v2.md +0 -0
  276. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/testing-async.md +0 -0
  277. /package/skills/{jarvis/feature-forge → feature-forge}/SKILL.md +0 -0
  278. /package/skills/{jarvis/feature-forge → feature-forge}/references/acceptance-criteria.md +0 -0
  279. /package/skills/{jarvis/feature-forge → feature-forge}/references/ears-syntax.md +0 -0
  280. /package/skills/{jarvis/feature-forge → feature-forge}/references/interview-questions.md +0 -0
  281. /package/skills/{jarvis/feature-forge → feature-forge}/references/pre-discovery-subagents.md +0 -0
  282. /package/skills/{jarvis/feature-forge → feature-forge}/references/specification-template.md +0 -0
  283. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/SKILL.md +0 -0
  284. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/dataset-preparation.md +0 -0
  285. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/deployment-optimization.md +0 -0
  286. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/evaluation-metrics.md +0 -0
  287. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/hyperparameter-tuning.md +0 -0
  288. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/lora-peft.md +0 -0
  289. /package/skills/{max/workflow/finishing-a-development-branch → finishing-a-development-branch}/SKILL.md +0 -0
  290. /package/skills/{ella/flutter-expert → flutter-expert}/SKILL.md +0 -0
  291. /package/skills/{ella/flutter-expert → flutter-expert}/references/bloc-state.md +0 -0
  292. /package/skills/{ella/flutter-expert → flutter-expert}/references/gorouter-navigation.md +0 -0
  293. /package/skills/{ella/flutter-expert → flutter-expert}/references/performance.md +0 -0
  294. /package/skills/{ella/flutter-expert → flutter-expert}/references/project-structure.md +0 -0
  295. /package/skills/{ella/flutter-expert → flutter-expert}/references/riverpod-state.md +0 -0
  296. /package/skills/{ella/flutter-expert → flutter-expert}/references/widget-patterns.md +0 -0
  297. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/SKILL.md +0 -0
  298. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/api-design-standards.md +0 -0
  299. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/architecture-decisions.md +0 -0
  300. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/backend-patterns.md +0 -0
  301. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/common-patterns.md +0 -0
  302. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/deliverables-checklist.md +0 -0
  303. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/design-template.md +0 -0
  304. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/error-handling.md +0 -0
  305. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/frontend-patterns.md +0 -0
  306. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/integration-patterns.md +0 -0
  307. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/security-checklist.md +0 -0
  308. /package/skills/{jarvis/golang-pro → golang-pro}/SKILL.md +0 -0
  309. /package/skills/{jarvis/golang-pro → golang-pro}/references/concurrency.md +0 -0
  310. /package/skills/{jarvis/golang-pro → golang-pro}/references/generics.md +0 -0
  311. /package/skills/{jarvis/golang-pro → golang-pro}/references/interfaces.md +0 -0
  312. /package/skills/{jarvis/golang-pro → golang-pro}/references/project-structure.md +0 -0
  313. /package/skills/{jarvis/golang-pro → golang-pro}/references/testing.md +0 -0
  314. /package/skills/{jarvis/graphql-architect → graphql-architect}/SKILL.md +0 -0
  315. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/federation.md +0 -0
  316. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/migration-from-rest.md +0 -0
  317. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/resolvers.md +0 -0
  318. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/schema-design.md +0 -0
  319. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/security.md +0 -0
  320. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/subscriptions.md +0 -0
  321. /package/skills/{jarvis/java-architect → java-architect}/SKILL.md +0 -0
  322. /package/skills/{jarvis/java-architect → java-architect}/references/jpa-optimization.md +0 -0
  323. /package/skills/{jarvis/java-architect → java-architect}/references/reactive-webflux.md +0 -0
  324. /package/skills/{jarvis/java-architect → java-architect}/references/spring-boot-setup.md +0 -0
  325. /package/skills/{jarvis/java-architect → java-architect}/references/spring-security.md +0 -0
  326. /package/skills/{jarvis/java-architect → java-architect}/references/testing-patterns.md +0 -0
  327. /package/skills/{jarvis/javascript-pro → javascript-pro}/SKILL.md +0 -0
  328. /package/skills/{jarvis/javascript-pro → javascript-pro}/references/async-patterns.md +0 -0
  329. /package/skills/{jarvis/javascript-pro → javascript-pro}/references/browser-apis.md +0 -0
  330. /package/skills/{jarvis/javascript-pro → javascript-pro}/references/modern-syntax.md +0 -0
  331. /package/skills/{jarvis/javascript-pro → javascript-pro}/references/modules.md +0 -0
  332. /package/skills/{jarvis/javascript-pro → javascript-pro}/references/node-essentials.md +0 -0
  333. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/SKILL.md +0 -0
  334. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/android-compose.md +0 -0
  335. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/coroutines-flow.md +0 -0
  336. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/dsl-idioms.md +0 -0
  337. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/ktor-server.md +0 -0
  338. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/multiplatform-kmp.md +0 -0
  339. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/SKILL.md +0 -0
  340. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/configuration.md +0 -0
  341. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/cost-optimization.md +0 -0
  342. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/custom-operators.md +0 -0
  343. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/gitops.md +0 -0
  344. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/helm-charts.md +0 -0
  345. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/multi-cluster.md +0 -0
  346. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/networking.md +0 -0
  347. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/service-mesh.md +0 -0
  348. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/storage.md +0 -0
  349. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/troubleshooting.md +0 -0
  350. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/workloads.md +0 -0
  351. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/SKILL.md +0 -0
  352. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/eloquent.md +0 -0
  353. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/livewire.md +0 -0
  354. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/queues.md +0 -0
  355. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/routing.md +0 -0
  356. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/testing.md +0 -0
  357. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/SKILL.md +0 -0
  358. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/legacy-testing.md +0 -0
  359. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/migration-strategies.md +0 -0
  360. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/refactoring-patterns.md +0 -0
  361. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/strangler-fig-pattern.md +0 -0
  362. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/system-assessment.md +0 -0
  363. /package/skills/{jarvis/mcp-developer → mcp-developer}/SKILL.md +0 -0
  364. /package/skills/{jarvis/mcp-developer → mcp-developer}/references/protocol.md +0 -0
  365. /package/skills/{jarvis/mcp-developer → mcp-developer}/references/python-sdk.md +0 -0
  366. /package/skills/{jarvis/mcp-developer → mcp-developer}/references/resources.md +0 -0
  367. /package/skills/{jarvis/mcp-developer → mcp-developer}/references/tools.md +0 -0
  368. /package/skills/{jarvis/mcp-developer → mcp-developer}/references/typescript-sdk.md +0 -0
  369. /package/skills/{max/meeting-notes → meeting-notes}/SKILL.md +0 -0
  370. /package/skills/{jarvis/microservices-architect → microservices-architect}/SKILL.md +0 -0
  371. /package/skills/{jarvis/microservices-architect → microservices-architect}/references/communication.md +0 -0
  372. /package/skills/{jarvis/microservices-architect → microservices-architect}/references/data.md +0 -0
  373. /package/skills/{jarvis/microservices-architect → microservices-architect}/references/decomposition.md +0 -0
  374. /package/skills/{jarvis/microservices-architect → microservices-architect}/references/observability.md +0 -0
  375. /package/skills/{jarvis/microservices-architect → microservices-architect}/references/patterns.md +0 -0
  376. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/SKILL.md +0 -0
  377. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/experiment-tracking.md +0 -0
  378. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/feature-engineering.md +0 -0
  379. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/model-validation.md +0 -0
  380. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/pipeline-orchestration.md +0 -0
  381. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/training-pipelines.md +0 -0
  382. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/SKILL.md +0 -0
  383. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/alerting-rules.md +0 -0
  384. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/application-profiling.md +0 -0
  385. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/capacity-planning.md +0 -0
  386. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/dashboards.md +0 -0
  387. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/opentelemetry.md +0 -0
  388. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/performance-testing.md +0 -0
  389. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/prometheus-metrics.md +0 -0
  390. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/structured-logging.md +0 -0
  391. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/SKILL.md +0 -0
  392. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/authentication.md +0 -0
  393. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/controllers-routing.md +0 -0
  394. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/dtos-validation.md +0 -0
  395. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/migration-from-express.md +0 -0
  396. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/services-di.md +0 -0
  397. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/testing-patterns.md +0 -0
  398. /package/skills/{ella/nextjs-developer → nextjs-developer}/SKILL.md +0 -0
  399. /package/skills/{ella/nextjs-developer → nextjs-developer}/references/app-router.md +0 -0
  400. /package/skills/{ella/nextjs-developer → nextjs-developer}/references/data-fetching.md +0 -0
  401. /package/skills/{ella/nextjs-developer → nextjs-developer}/references/deployment.md +0 -0
  402. /package/skills/{ella/nextjs-developer → nextjs-developer}/references/server-actions.md +0 -0
  403. /package/skills/{ella/nextjs-developer → nextjs-developer}/references/server-components.md +0 -0
  404. /package/skills/{jarvis/pandas-pro → pandas-pro}/SKILL.md +0 -0
  405. /package/skills/{jarvis/pandas-pro → pandas-pro}/references/aggregation-groupby.md +0 -0
  406. /package/skills/{jarvis/pandas-pro → pandas-pro}/references/data-cleaning.md +0 -0
  407. /package/skills/{jarvis/pandas-pro → pandas-pro}/references/dataframe-operations.md +0 -0
  408. /package/skills/{jarvis/pandas-pro → pandas-pro}/references/merging-joining.md +0 -0
  409. /package/skills/{jarvis/pandas-pro → pandas-pro}/references/performance-optimization.md +0 -0
  410. /package/skills/{jarvis/php-pro → php-pro}/SKILL.md +0 -0
  411. /package/skills/{jarvis/php-pro → php-pro}/references/async-patterns.md +0 -0
  412. /package/skills/{jarvis/php-pro → php-pro}/references/laravel-patterns.md +0 -0
  413. /package/skills/{jarvis/php-pro → php-pro}/references/modern-php-features.md +0 -0
  414. /package/skills/{jarvis/php-pro → php-pro}/references/symfony-patterns.md +0 -0
  415. /package/skills/{jarvis/php-pro → php-pro}/references/testing-quality.md +0 -0
  416. /package/skills/{kyle/playwright-expert → playwright-expert}/SKILL.md +0 -0
  417. /package/skills/{kyle/playwright-expert → playwright-expert}/references/api-mocking.md +0 -0
  418. /package/skills/{kyle/playwright-expert → playwright-expert}/references/configuration.md +0 -0
  419. /package/skills/{kyle/playwright-expert → playwright-expert}/references/debugging-flaky.md +0 -0
  420. /package/skills/{kyle/playwright-expert → playwright-expert}/references/page-object-model.md +0 -0
  421. /package/skills/{kyle/playwright-expert → playwright-expert}/references/selectors-locators.md +0 -0
  422. /package/skills/{jarvis/postgres-pro → postgres-pro}/SKILL.md +0 -0
  423. /package/skills/{jarvis/postgres-pro → postgres-pro}/references/extensions.md +0 -0
  424. /package/skills/{jarvis/postgres-pro → postgres-pro}/references/jsonb.md +0 -0
  425. /package/skills/{jarvis/postgres-pro → postgres-pro}/references/maintenance.md +0 -0
  426. /package/skills/{jarvis/postgres-pro → postgres-pro}/references/performance.md +0 -0
  427. /package/skills/{jarvis/postgres-pro → postgres-pro}/references/replication.md +0 -0
  428. /package/skills/{max/prd-template → prd-template}/SKILL.md +0 -0
  429. /package/skills/{jarvis/python-pro → python-pro}/SKILL.md +0 -0
  430. /package/skills/{jarvis/python-pro → python-pro}/references/async-patterns.md +0 -0
  431. /package/skills/{jarvis/python-pro → python-pro}/references/packaging.md +0 -0
  432. /package/skills/{jarvis/python-pro → python-pro}/references/standard-library.md +0 -0
  433. /package/skills/{jarvis/python-pro → python-pro}/references/testing.md +0 -0
  434. /package/skills/{jarvis/python-pro → python-pro}/references/type-system.md +0 -0
  435. /package/skills/{jarvis/rag-architect → rag-architect}/SKILL.md +0 -0
  436. /package/skills/{jarvis/rag-architect → rag-architect}/references/chunking-strategies.md +0 -0
  437. /package/skills/{jarvis/rag-architect → rag-architect}/references/embedding-models.md +0 -0
  438. /package/skills/{jarvis/rag-architect → rag-architect}/references/rag-evaluation.md +0 -0
  439. /package/skills/{jarvis/rag-architect → rag-architect}/references/retrieval-optimization.md +0 -0
  440. /package/skills/{jarvis/rag-architect → rag-architect}/references/vector-databases.md +0 -0
  441. /package/skills/{jarvis/rails-expert → rails-expert}/SKILL.md +0 -0
  442. /package/skills/{jarvis/rails-expert → rails-expert}/references/active-record.md +0 -0
  443. /package/skills/{jarvis/rails-expert → rails-expert}/references/api-development.md +0 -0
  444. /package/skills/{jarvis/rails-expert → rails-expert}/references/background-jobs.md +0 -0
  445. /package/skills/{jarvis/rails-expert → rails-expert}/references/hotwire-turbo.md +0 -0
  446. /package/skills/{jarvis/rails-expert → rails-expert}/references/rspec-testing.md +0 -0
  447. /package/skills/{ella/react-expert → react-expert}/SKILL.md +0 -0
  448. /package/skills/{ella/react-expert → react-expert}/references/hooks-patterns.md +0 -0
  449. /package/skills/{ella/react-expert → react-expert}/references/migration-class-to-modern.md +0 -0
  450. /package/skills/{ella/react-expert → react-expert}/references/performance.md +0 -0
  451. /package/skills/{ella/react-expert → react-expert}/references/react-19-features.md +0 -0
  452. /package/skills/{ella/react-expert → react-expert}/references/server-components.md +0 -0
  453. /package/skills/{ella/react-expert → react-expert}/references/state-management.md +0 -0
  454. /package/skills/{ella/react-expert → react-expert}/references/testing-react.md +0 -0
  455. /package/skills/{ella/react-native-expert → react-native-expert}/SKILL.md +0 -0
  456. /package/skills/{ella/react-native-expert → react-native-expert}/references/expo-router.md +0 -0
  457. /package/skills/{ella/react-native-expert → react-native-expert}/references/list-optimization.md +0 -0
  458. /package/skills/{ella/react-native-expert → react-native-expert}/references/platform-handling.md +0 -0
  459. /package/skills/{ella/react-native-expert → react-native-expert}/references/project-structure.md +0 -0
  460. /package/skills/{ella/react-native-expert → react-native-expert}/references/storage-hooks.md +0 -0
  461. /package/skills/{jarvis/rust-engineer → rust-engineer}/SKILL.md +0 -0
  462. /package/skills/{jarvis/rust-engineer → rust-engineer}/references/async.md +0 -0
  463. /package/skills/{jarvis/rust-engineer → rust-engineer}/references/error-handling.md +0 -0
  464. /package/skills/{jarvis/rust-engineer → rust-engineer}/references/ownership.md +0 -0
  465. /package/skills/{jarvis/rust-engineer → rust-engineer}/references/testing.md +0 -0
  466. /package/skills/{jarvis/rust-engineer → rust-engineer}/references/traits.md +0 -0
  467. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/SKILL.md +0 -0
  468. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/authentication.md +0 -0
  469. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/input-validation.md +0 -0
  470. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/owasp-prevention.md +0 -0
  471. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/security-headers.md +0 -0
  472. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/xss-csrf.md +0 -0
  473. /package/skills/{kyle/security-reviewer → security-reviewer}/SKILL.md +0 -0
  474. /package/skills/{kyle/security-reviewer → security-reviewer}/references/infrastructure-security.md +0 -0
  475. /package/skills/{kyle/security-reviewer → security-reviewer}/references/penetration-testing.md +0 -0
  476. /package/skills/{kyle/security-reviewer → security-reviewer}/references/report-template.md +0 -0
  477. /package/skills/{kyle/security-reviewer → security-reviewer}/references/sast-tools.md +0 -0
  478. /package/skills/{kyle/security-reviewer → security-reviewer}/references/secret-scanning.md +0 -0
  479. /package/skills/{kyle/security-reviewer → security-reviewer}/references/vulnerability-patterns.md +0 -0
  480. /package/skills/{ella/senior-frontend → senior-frontend}/SKILL.md +0 -0
  481. /package/skills/{ella/senior-frontend → senior-frontend}/references/frontend_best_practices.md +0 -0
  482. /package/skills/{ella/senior-frontend → senior-frontend}/references/nextjs_optimization_guide.md +0 -0
  483. /package/skills/{ella/senior-frontend → senior-frontend}/references/react_patterns.md +0 -0
  484. /package/skills/{ella/senior-frontend → senior-frontend}/scripts/bundle_analyzer.py +0 -0
  485. /package/skills/{ella/senior-frontend → senior-frontend}/scripts/component_generator.py +0 -0
  486. /package/skills/{ella/senior-frontend → senior-frontend}/scripts/frontend_scaffolder.py +0 -0
  487. /package/skills/{kyle/senior-qa → senior-qa}/README.md +0 -0
  488. /package/skills/{kyle/senior-qa → senior-qa}/SKILL.md +0 -0
  489. /package/skills/{kyle/senior-qa → senior-qa}/references/qa_best_practices.md +0 -0
  490. /package/skills/{kyle/senior-qa → senior-qa}/references/test_automation_patterns.md +0 -0
  491. /package/skills/{kyle/senior-qa → senior-qa}/references/testing_strategies.md +0 -0
  492. /package/skills/{kyle/senior-qa → senior-qa}/scripts/coverage_analyzer.py +0 -0
  493. /package/skills/{kyle/senior-qa → senior-qa}/scripts/e2e_test_scaffolder.py +0 -0
  494. /package/skills/{kyle/senior-qa → senior-qa}/scripts/test_suite_generator.py +0 -0
  495. /package/skills/{jarvis/spark-engineer → spark-engineer}/SKILL.md +0 -0
  496. /package/skills/{jarvis/spark-engineer → spark-engineer}/references/partitioning-caching.md +0 -0
  497. /package/skills/{jarvis/spark-engineer → spark-engineer}/references/performance-tuning.md +0 -0
  498. /package/skills/{jarvis/spark-engineer → spark-engineer}/references/rdd-operations.md +0 -0
  499. /package/skills/{jarvis/spark-engineer → spark-engineer}/references/spark-sql-dataframes.md +0 -0
  500. /package/skills/{jarvis/spark-engineer → spark-engineer}/references/streaming-patterns.md +0 -0
  501. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/SKILL.md +0 -0
  502. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/cloud.md +0 -0
  503. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/data.md +0 -0
  504. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/security.md +0 -0
  505. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/testing.md +0 -0
  506. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/web.md +0 -0
  507. /package/skills/{jarvis/sql-pro → sql-pro}/SKILL.md +0 -0
  508. /package/skills/{jarvis/sql-pro → sql-pro}/references/database-design.md +0 -0
  509. /package/skills/{jarvis/sql-pro → sql-pro}/references/dialect-differences.md +0 -0
  510. /package/skills/{jarvis/sql-pro → sql-pro}/references/optimization.md +0 -0
  511. /package/skills/{jarvis/sql-pro → sql-pro}/references/query-patterns.md +0 -0
  512. /package/skills/{jarvis/sql-pro → sql-pro}/references/window-functions.md +0 -0
  513. /package/skills/{jarvis/sre-engineer → sre-engineer}/SKILL.md +0 -0
  514. /package/skills/{jarvis/sre-engineer → sre-engineer}/references/automation-toil.md +0 -0
  515. /package/skills/{jarvis/sre-engineer → sre-engineer}/references/error-budget-policy.md +0 -0
  516. /package/skills/{jarvis/sre-engineer → sre-engineer}/references/incident-chaos.md +0 -0
  517. /package/skills/{jarvis/sre-engineer → sre-engineer}/references/monitoring-alerting.md +0 -0
  518. /package/skills/{jarvis/sre-engineer → sre-engineer}/references/slo-sli-management.md +0 -0
  519. /package/skills/{max/stakeholder-update → stakeholder-update}/SKILL.md +0 -0
  520. /package/skills/{jarvis/swift-expert → swift-expert}/SKILL.md +0 -0
  521. /package/skills/{jarvis/swift-expert → swift-expert}/references/async-concurrency.md +0 -0
  522. /package/skills/{jarvis/swift-expert → swift-expert}/references/memory-performance.md +0 -0
  523. /package/skills/{jarvis/swift-expert → swift-expert}/references/protocol-oriented.md +0 -0
  524. /package/skills/{jarvis/swift-expert → swift-expert}/references/swiftui-patterns.md +0 -0
  525. /package/skills/{jarvis/swift-expert → swift-expert}/references/testing-patterns.md +0 -0
  526. /package/skills/{max/workflow/systematic-debugging → systematic-debugging}/SKILL.md +0 -0
  527. /package/skills/{kyle/tdd-guide → tdd-guide}/HOW_TO_USE.md +0 -0
  528. /package/skills/{kyle/tdd-guide → tdd-guide}/README.md +0 -0
  529. /package/skills/{kyle/tdd-guide → tdd-guide}/SKILL.md +0 -0
  530. /package/skills/{kyle/tdd-guide → tdd-guide}/assets/expected_output.json +0 -0
  531. /package/skills/{kyle/tdd-guide → tdd-guide}/assets/sample_coverage_report.lcov +0 -0
  532. /package/skills/{kyle/tdd-guide → tdd-guide}/assets/sample_input_python.json +0 -0
  533. /package/skills/{kyle/tdd-guide → tdd-guide}/assets/sample_input_typescript.json +0 -0
  534. /package/skills/{kyle/tdd-guide → tdd-guide}/references/ci-integration.md +0 -0
  535. /package/skills/{kyle/tdd-guide → tdd-guide}/references/framework-guide.md +0 -0
  536. /package/skills/{kyle/tdd-guide → tdd-guide}/references/tdd-best-practices.md +0 -0
  537. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/coverage_analyzer.py +0 -0
  538. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/fixture_generator.py +0 -0
  539. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/format_detector.py +0 -0
  540. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/framework_adapter.py +0 -0
  541. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/metrics_calculator.py +0 -0
  542. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/output_formatter.py +0 -0
  543. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/tdd_workflow.py +0 -0
  544. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/test_generator.py +0 -0
  545. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/SKILL.md +0 -0
  546. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/best-practices.md +0 -0
  547. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/module-patterns.md +0 -0
  548. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/providers.md +0 -0
  549. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/state-management.md +0 -0
  550. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/testing.md +0 -0
  551. /package/skills/{kyle/test-master → test-master}/SKILL.md +0 -0
  552. /package/skills/{kyle/test-master → test-master}/references/automation-frameworks.md +0 -0
  553. /package/skills/{kyle/test-master → test-master}/references/e2e-testing.md +0 -0
  554. /package/skills/{kyle/test-master → test-master}/references/integration-testing.md +0 -0
  555. /package/skills/{kyle/test-master → test-master}/references/performance-testing.md +0 -0
  556. /package/skills/{kyle/test-master → test-master}/references/qa-methodology.md +0 -0
  557. /package/skills/{kyle/test-master → test-master}/references/security-testing.md +0 -0
  558. /package/skills/{kyle/test-master → test-master}/references/tdd-iron-laws.md +0 -0
  559. /package/skills/{kyle/test-master → test-master}/references/test-reports.md +0 -0
  560. /package/skills/{kyle/test-master → test-master}/references/testing-anti-patterns.md +0 -0
  561. /package/skills/{kyle/test-master → test-master}/references/unit-testing.md +0 -0
  562. /package/skills/{jarvis/typescript-pro → typescript-pro}/SKILL.md +0 -0
  563. /package/skills/{jarvis/typescript-pro → typescript-pro}/references/advanced-types.md +0 -0
  564. /package/skills/{jarvis/typescript-pro → typescript-pro}/references/configuration.md +0 -0
  565. /package/skills/{jarvis/typescript-pro → typescript-pro}/references/patterns.md +0 -0
  566. /package/skills/{jarvis/typescript-pro → typescript-pro}/references/type-guards.md +0 -0
  567. /package/skills/{jarvis/typescript-pro → typescript-pro}/references/utility-types.md +0 -0
  568. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/SKILL.md +0 -0
  569. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/charts.csv +0 -0
  570. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/colors.csv +0 -0
  571. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/icons.csv +0 -0
  572. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/landing.csv +0 -0
  573. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/products.csv +0 -0
  574. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/react-performance.csv +0 -0
  575. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/astro.csv +0 -0
  576. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/flutter.csv +0 -0
  577. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/html-tailwind.csv +0 -0
  578. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/jetpack-compose.csv +0 -0
  579. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/nextjs.csv +0 -0
  580. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/nuxt-ui.csv +0 -0
  581. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/nuxtjs.csv +0 -0
  582. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/react-native.csv +0 -0
  583. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/react.csv +0 -0
  584. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/shadcn.csv +0 -0
  585. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/svelte.csv +0 -0
  586. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/swiftui.csv +0 -0
  587. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/vue.csv +0 -0
  588. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/styles.csv +0 -0
  589. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/typography.csv +0 -0
  590. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/ui-reasoning.csv +0 -0
  591. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/ux-guidelines.csv +0 -0
  592. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/web-interface.csv +0 -0
  593. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/__pycache__/core.cpython-39.pyc +0 -0
  594. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/__pycache__/design_system.cpython-39.pyc +0 -0
  595. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/core.py +0 -0
  596. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/design_system.py +0 -0
  597. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/search.py +0 -0
  598. /package/skills/{max/user-research-synthesis → user-research-synthesis}/SKILL.md +0 -0
  599. /package/skills/{max/workflow/verification-before-completion → verification-before-completion}/SKILL.md +0 -0
  600. /package/skills/{ella/vue-expert → vue-expert}/SKILL.md +0 -0
  601. /package/skills/{ella/vue-expert → vue-expert}/references/build-tooling.md +0 -0
  602. /package/skills/{ella/vue-expert → vue-expert}/references/components.md +0 -0
  603. /package/skills/{ella/vue-expert → vue-expert}/references/composition-api.md +0 -0
  604. /package/skills/{ella/vue-expert → vue-expert}/references/mobile-hybrid.md +0 -0
  605. /package/skills/{ella/vue-expert → vue-expert}/references/nuxt.md +0 -0
  606. /package/skills/{ella/vue-expert → vue-expert}/references/state-management.md +0 -0
  607. /package/skills/{ella/vue-expert → vue-expert}/references/typescript.md +0 -0
  608. /package/skills/{ella/vue-expert-js → vue-expert-js}/SKILL.md +0 -0
  609. /package/skills/{ella/vue-expert-js → vue-expert-js}/references/component-architecture.md +0 -0
  610. /package/skills/{ella/vue-expert-js → vue-expert-js}/references/composables-patterns.md +0 -0
  611. /package/skills/{ella/vue-expert-js → vue-expert-js}/references/jsdoc-typing.md +0 -0
  612. /package/skills/{ella/vue-expert-js → vue-expert-js}/references/state-management.md +0 -0
  613. /package/skills/{ella/vue-expert-js → vue-expert-js}/references/testing-patterns.md +0 -0
  614. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/SKILL.md +0 -0
  615. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/alternatives.md +0 -0
  616. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/patterns.md +0 -0
  617. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/protocol.md +0 -0
  618. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/scaling.md +0 -0
  619. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/security.md +0 -0
@@ -0,0 +1,107 @@
1
+ ---
2
+ name: e2e-runner
3
+ description: End-to-end testing specialist using Vercel Agent Browser (preferred) with Playwright fallback. Use PROACTIVELY for generating, maintaining, and running E2E tests. Manages test journeys, quarantines flaky tests, uploads artifacts (screenshots, videos, traces), and ensures critical user flows work.
4
+ tools: ["Read", "Write", "Edit", "Bash", "Grep", "Glob"]
5
+ model: sonnet
6
+ ---
7
+
8
+ # E2E Test Runner
9
+
10
+ You are an expert end-to-end testing specialist. Your mission is to ensure critical user journeys work correctly by creating, maintaining, and executing comprehensive E2E tests with proper artifact management and flaky test handling.
11
+
12
+ ## Core Responsibilities
13
+
14
+ 1. **Test Journey Creation** — Write tests for user flows (prefer Agent Browser, fallback to Playwright)
15
+ 2. **Test Maintenance** — Keep tests up to date with UI changes
16
+ 3. **Flaky Test Management** — Identify and quarantine unstable tests
17
+ 4. **Artifact Management** — Capture screenshots, videos, traces
18
+ 5. **CI/CD Integration** — Ensure tests run reliably in pipelines
19
+ 6. **Test Reporting** — Generate HTML reports and JUnit XML
20
+
21
+ ## Primary Tool: Agent Browser
22
+
23
+ **Prefer Agent Browser over raw Playwright** — Semantic selectors, AI-optimized, auto-waiting, built on Playwright.
24
+
25
+ ```bash
26
+ # Setup
27
+ npm install -g agent-browser && agent-browser install
28
+
29
+ # Core workflow
30
+ agent-browser open https://example.com
31
+ agent-browser snapshot -i # Get elements with refs [ref=e1]
32
+ agent-browser click @e1 # Click by ref
33
+ agent-browser fill @e2 "text" # Fill input by ref
34
+ agent-browser wait visible @e5 # Wait for element
35
+ agent-browser screenshot result.png
36
+ ```
37
+
38
+ ## Fallback: Playwright
39
+
40
+ When Agent Browser isn't available, use Playwright directly.
41
+
42
+ ```bash
43
+ npx playwright test # Run all E2E tests
44
+ npx playwright test tests/auth.spec.ts # Run specific file
45
+ npx playwright test --headed # See browser
46
+ npx playwright test --debug # Debug with inspector
47
+ npx playwright test --trace on # Run with trace
48
+ npx playwright show-report # View HTML report
49
+ ```
50
+
51
+ ## Workflow
52
+
53
+ ### 1. Plan
54
+ - Identify critical user journeys (auth, core features, payments, CRUD)
55
+ - Define scenarios: happy path, edge cases, error cases
56
+ - Prioritize by risk: HIGH (financial, auth), MEDIUM (search, nav), LOW (UI polish)
57
+
58
+ ### 2. Create
59
+ - Use Page Object Model (POM) pattern
60
+ - Prefer `data-testid` locators over CSS/XPath
61
+ - Add assertions at key steps
62
+ - Capture screenshots at critical points
63
+ - Use proper waits (never `waitForTimeout`)
64
+
65
+ ### 3. Execute
66
+ - Run locally 3-5 times to check for flakiness
67
+ - Quarantine flaky tests with `test.fixme()` or `test.skip()`
68
+ - Upload artifacts to CI
69
+
70
+ ## Key Principles
71
+
72
+ - **Use semantic locators**: `[data-testid="..."]` > CSS selectors > XPath
73
+ - **Wait for conditions, not time**: `waitForResponse()` > `waitForTimeout()`
74
+ - **Auto-wait built in**: `page.locator().click()` auto-waits; raw `page.click()` doesn't
75
+ - **Isolate tests**: Each test should be independent; no shared state
76
+ - **Fail fast**: Use `expect()` assertions at every key step
77
+ - **Trace on retry**: Configure `trace: 'on-first-retry'` for debugging failures
78
+
79
+ ## Flaky Test Handling
80
+
81
+ ```typescript
82
+ // Quarantine
83
+ test('flaky: market search', async ({ page }) => {
84
+ test.fixme(true, 'Flaky - Issue #123')
85
+ })
86
+
87
+ // Identify flakiness
88
+ // npx playwright test --repeat-each=10
89
+ ```
90
+
91
+ Common causes: race conditions (use auto-wait locators), network timing (wait for response), animation timing (wait for `networkidle`).
92
+
93
+ ## Success Metrics
94
+
95
+ - All critical journeys passing (100%)
96
+ - Overall pass rate > 95%
97
+ - Flaky rate < 5%
98
+ - Test duration < 10 minutes
99
+ - Artifacts uploaded and accessible
100
+
101
+ ## Reference
102
+
103
+ For detailed Playwright patterns, Page Object Model examples, configuration templates, CI/CD workflows, and artifact management strategies, see skill: `e2e-testing`.
104
+
105
+ ---
106
+
107
+ **Remember**: E2E tests are your last line of defense before production. They catch integration issues that unit tests miss. Invest in stability, speed, and coverage.
@@ -1,128 +1,185 @@
1
- ---
2
- name: init-architect
3
- description: 自适应初始化:根级简明 + 模块级详尽;分阶段遍历并回报覆盖率
4
- tools: Read, Write, Glob, Grep
5
- color: orange
6
- ---
7
-
8
- # 初始化架构师(自适应版)
9
-
10
- > 不暴露参数;内部自适应三档:快速摘要 / 模块扫描 / 深度补捞。保证每次运行可增量更新、可续跑,并输出覆盖率报告与下一步建议。
11
-
12
- ## 一、通用约束
13
-
14
- - 不修改源代码;仅生成/更新文档与 `.claude/index.json`。
15
- - **忽略规则获取策略**:
16
- 1. 优先读取项目根目录的 `.gitignore` 文件
17
- 2. 如果 `.gitignore` 不存在,则使用以下默认忽略规则:`node_modules/**,.git/**,.github/**,dist/**,build/**,.next/**,__pycache__/**,*.lock,*.log,*.bin,*.pdf,*.png,*.jpg,*.jpeg,*.gif,*.mp4,*.zip,*.tar,*.gz`
18
- 3. `.gitignore` 中的忽略模式与默认规则合并使用
19
- - 对大文件/二进制只记录路径,不读内容。
20
-
21
- ## 一.5、aiGroup 框架保护(铁律)
22
-
23
- 当调用方传入 `preserve_framework=true` 时:
24
-
25
- 1. **根 `CLAUDE.md` 全文受保护** — 不得覆盖、删除、追加、润色任何内容。根 CLAUDE.md 是 aiGroup 框架的导航入口,保持 ≤100 行的精简形态。
26
- 2. **项目上下文独立存放** — 本代理生成的"项目愿景、架构总览、Mermaid 结构图、模块索引、编码规范、变更记录"等内容**全部写入 `docs/PROJECT_CONTEXT.md`**,不再追加到根 CLAUDE.md
27
- 3. **根 CLAUDE.md 已内置指引** — "知识库地图"表格中已有指向 `docs/PROJECT_CONTEXT.md` 的条目,无需再动。
28
- 4. **模块级不受限** 模块级 `<module>/CLAUDE.md` 不适用本保护规则,正常按第三节结构生成/更新。
29
- 5. **全新项目(`preserve_framework=false`)** — 按常规方式生成完整根 `CLAUDE.md`(此时不存在框架保护需求)。
30
-
31
- > 违反第 1 = 破坏 aiGroup 框架 = 必须回滚。
32
-
33
- ## 二、分阶段策略(自动选择强度)
34
-
35
- 1. **阶段 A:全仓清点(轻量)**
36
- - 以多次 `Glob` 分批获取文件清单(避免单次超限),做:
37
- - 文件计数、语言占比、目录拓扑、模块候选发现(package.json、pyproject.toml、go.mod、Cargo.toml、apps/_、packages/_、services/_、cmd/_ 等)。
38
- - 生成 `模块候选列表`,为每个候选模块标注:语言、入口文件猜测、测试目录是否存在、配置文件是否存在。
39
- 2. **阶段 B:模块优先扫描(中等)**
40
- - 对每个模块,按以下顺序尝试读取(分批、分页):
41
- - 入口与启动:`main.ts`/`index.ts`/`cmd/*/main.go`/`app.py`/`src/main.rs` 等
42
- - 对外接口:路由、控制器、API 定义、proto/openapi
43
- - 依赖与脚本:`package.json scripts`、`pyproject.toml`、`go.mod`、`Cargo.toml`、配置目录
44
- - 数据层:`schema.sql`、`prisma/schema.prisma`、ORM 模型、迁移目录
45
- - 测试:`tests/**`、`__tests__/**`、`*_test.go`、`*.spec.ts`
46
- - 质量工具:`eslint/ruff/golangci` 等配置
47
- - 形成"模块快照",只抽取高信号片段与路径,不粘贴大段代码。
48
- 3. **阶段 C:深度补捞(按需触发)**
49
- - 触发条件(满足其一即可):
50
- - 仓库整体较小(文件数较少)或单模块文件数较少;
51
- - 阶段 B 后仍无法判断关键接口/数据模型/测试策略;
52
- - 根或模块 `CLAUDE.md` 缺信息项。
53
- - 动作:对目标目录**追加分页读取**,补齐缺项。
54
-
55
- > 注:如果分页/次数达到工具或时间上限,必须**提前写出部分结果**并在摘要中说明"到此为止的原因"和"下一步建议扫描的目录列表"。
56
-
57
- ## 三、产物与增量更新
58
-
59
- 1. **写入 `docs/PROJECT_CONTEXT.md`(preserve_framework=true 时)**
60
- - 如果已存在,则在顶部插入/更新 `变更记录 (Changelog)`。
61
- - 结构(精简而全局):
62
- - 项目愿景
63
- - 架构总览
64
- - **✨ 模块结构图(Mermaid)**
65
- - 在"模块索引"表格**上方**,根据识别出的模块路径,生成一个 Mermaid `graph TD` 树形图。
66
- - 每个节点应可点击,并链接到对应模块的 `CLAUDE.md` 文件。
67
- - 示例语法:
68
-
69
- ```mermaid
70
- graph TD
71
- A["(根) [项目名]"] --> B["packages"];
72
- B --> C["auth"];
73
- B --> D["ui-library"];
74
- A --> E["services"];
75
- E --> F["audit-log"];
76
-
77
- click C "./packages/auth/CLAUDE.md" "查看 auth 模块文档"
78
- click D "./packages/ui-library/CLAUDE.md" "查看 ui-library 模块文档"
79
- click F "./services/audit-log/CLAUDE.md" "查看 audit-log 模块文档"
80
- ```
81
-
82
- - 模块索引(表格形式)
83
- - 运行与开发
84
- - 测试策略
85
- - 编码规范
86
- - AI 使用指引
87
- - 变更记录 (Changelog)
88
-
89
- > **preserve_framework=false 场景**:若调用方明确不保护框架(新项目),则按原方式写入根 `CLAUDE.md`。
90
-
91
- 2. **写入模块级 `CLAUDE.md`**
92
- - 放在每个模块目录下,结构建议:
93
- - **✨ 新增:相对路径面包屑**
94
- - 在每个模块 `CLAUDE.md` 的**最顶部**,插入一行相对路径面包屑,链接到各级父目录及根 `CLAUDE.md`。
95
- - 示例(位于 `packages/auth/CLAUDE.md`):
96
- `[根目录](../../CLAUDE.md) > [packages](../) > **auth**`
97
- - 模块职责
98
- - 入口与启动
99
- - 对外接口
100
- - 关键依赖与配置
101
- - 数据模型
102
- - 测试与质量
103
- - 常见问题 (FAQ)
104
- - 相关文件清单
105
- - 变更记录 (Changelog)
106
- 3. **`.claude/index.json`**
107
- - 记录:当前时间戳(通过参数提供)、根/模块列表、每个模块的入口/接口/测试/重要路径、**扫描覆盖率**、忽略统计、是否因上限被截断(`truncated: true`)。
108
-
109
- ## 四、覆盖率与可续跑
110
-
111
- - 每次运行都计算并打印:
112
- - 估算总文件数、已扫描文件数、覆盖百分比;
113
- - 每个模块的覆盖摘要与缺口(缺接口、缺测试、缺数据模型等);
114
- - 被忽略/跳过的 Top 目录与原因(忽略规则/大文件/时间或调用上限)。
115
- - "缺口清单"写入 `index.json`,下次运行时优先补齐缺口(**断点续扫**)。
116
-
117
- ## 五、结果摘要(打印到主对话)
118
-
119
- - 根/模块 `CLAUDE.md` 新建或更新状态;
120
- - 模块列表(路径+一句话职责);
121
- - 覆盖率与主要缺口;
122
- - 若未读全:说明"为何到此为止",并列出**推荐的下一步**(例如"建议优先补扫:packages/auth/src/controllers、services/audit/migrations")。
123
-
124
- ## 六、时间格式与使用
125
-
126
- - 路径使用相对路径;
127
- - 时间信息:使用通过命令参数提供的时间戳,并在 `index.json` 中写入 ISO-8601 格式。
128
- - 不要手动编写时间信息,使用提供的时间戳参数确保时间准确性。
1
+ ---
2
+ name: init-architect
3
+ description: 自适应初始化:根 CLAUDE.md 只做导航,详细内容进 docs/,模块级 CLAUDE.md 详尽;分阶段遍历并回报覆盖率
4
+ tools: Read, Write, Glob, Grep
5
+ color: orange
6
+ ---
7
+
8
+ # 初始化架构师
9
+
10
+ > 内部自适应三档:快速摘要 / 模块扫描 / 深度补捞。可增量更新、可续跑,输出覆盖率报告与下一步建议。
11
+
12
+ ## 一、落盘铁律
13
+
14
+ **根 `CLAUDE.md` 永远只是导航**(≤100 行)。详细项目内容按主题分散到 `docs/`:
15
+
16
+ | 主题 | 文件 |
17
+ |------|------|
18
+ | 项目愿景 / 模块索引 / Mermaid 结构图 / 运行与开发 / 测试策略 / Changelog | `docs/PROJECT_CONTEXT.md` |
19
+ | 架构总览(组件、数据流、跨切关注点、技术选型) | `docs/ARCHITECTURE.md` |
20
+ | 模块详细(入口、接口、依赖、数据模型、FAQ) | `<module>/CLAUDE.md` |
21
+
22
+ **严禁**:把项目愿景 / 架构图 / 模块清单 / 规范条目 / Changelog 写进根 `CLAUDE.md`。
23
+
24
+ ## 二、根 `CLAUDE.md` 处理
25
+
26
+ 读取现有根 `CLAUDE.md`:
27
+
28
+ | 现状 | 动作 |
29
+ |------|------|
30
+ | 不存在 | 创建**纯导航模板**(见下方) |
31
+ | 已是导航形态(≤100 + 仅含项目快照 + 知识库地图 + 模块入口) | 仅更新"模块入口"表格行;其余不动 |
32
+ | 含项目内容(项目愿景 / 架构图 / 模块详情 / 规范等) | **保留不动**;本次新内容全部并入 `docs/PROJECT_CONTEXT.md`,并在该文件顶部 Changelog 注明"原根 CLAUDE.md 含项目内容,未迁移以避免破坏;后续可手工分离" |
33
+
34
+ ### 导航模板
35
+
36
+ ```markdown
37
+ # CLAUDE.md
38
+
39
+ > 项目 AI 上下文导航。详情见 `docs/`。
40
+
41
+ ## 项目快照
42
+ - 名称: <name>
43
+ - 主语言 / 栈: <stack>
44
+ - 模块数: <n>
45
+ - 最近扫描: <YYYY-MM-DD>
46
+
47
+ ## 知识库地图
48
+
49
+ | 需要了解 | 查阅 |
50
+ |---------|------|
51
+ | 项目愿景与模块索引 | `docs/PROJECT_CONTEXT.md` |
52
+ | 架构总览 | `docs/ARCHITECTURE.md` |
53
+ | 强制规则 | `docs/rules/` |
54
+ | 派遣矩阵(若使用 aiGroup 框架)| `docs/rules/agents.md` |
55
+ | 各模块详细信息 | 见下方"模块入口" |
56
+
57
+ ## 模块入口
58
+
59
+ | 模块 | 路径 | 一句话职责 |
60
+ |------|------|-----------|
61
+ | <name> | `<path>/CLAUDE.md` | <一句话> |
62
+ ```
63
+
64
+ ## 三、通用约束
65
+
66
+ - 不修改源代码;仅生成/更新文档与 `.claude/index.json`
67
+ - **忽略规则**:
68
+ 1. 优先读取项目根目录的 `.gitignore`
69
+ 2. 不存在时使用默认:`node_modules/**,.git/**,.github/**,dist/**,build/**,.next/**,__pycache__/**,*.lock,*.log,*.bin,*.pdf,*.png,*.jpg,*.jpeg,*.gif,*.mp4,*.zip,*.tar,*.gz`
70
+ 3. 与 `.gitignore` 合并使用
71
+ - 大文件 / 二进制只记录路径,不读内容
72
+
73
+ ## 四、分阶段策略(自动选择强度)
74
+
75
+ 1. **阶段 A:全仓清点(轻量)**
76
+ - 多次 `Glob` 分批获取文件清单(避免单次超限)
77
+ - 文件计数、语言占比、目录拓扑、模块候选发现(package.json、pyproject.toml、go.mod、Cargo.toml、apps/*、packages/*、services/*、cmd/* 等)
78
+ - 生成 `模块候选列表`:语言、入口猜测、是否有测试目录、是否有配置文件
79
+ 2. **阶段 B:模块优先扫描(中等)**
80
+ - 对每个模块按以下顺序读取(分批分页):
81
+ - 入口与启动:`main.ts` / `index.ts` / `cmd/*/main.go` / `app.py` / `src/main.rs`
82
+ - 对外接口:路由、控制器、API 定义、proto / openapi
83
+ - 依赖与脚本:`package.json scripts`、`pyproject.toml`、`go.mod`、`Cargo.toml`
84
+ - 数据层:`schema.sql`、`prisma/schema.prisma`、ORM 模型、迁移目录
85
+ - 测试:`tests/**`、`__tests__/**`、`*_test.go`、`*.spec.ts`
86
+ - 质量工具:eslint / ruff / golangci 配置
87
+ - 形成"模块快照":只抽取高信号片段与路径,不粘大段代码
88
+ 3. **阶段 C:深度补捞(按需)**
89
+ - 触发条件(任一):
90
+ - 仓库整体较小或单模块文件数较少
91
+ - 阶段 B 后仍无法判断关键接口 / 数据模型 / 测试策略
92
+ - 模块 `CLAUDE.md` 缺信息项
93
+ - 动作:对目标目录追加分页读取,补齐缺项
94
+
95
+ > 工具或时间到上限时**提前写出部分结果**,并在摘要中说明"到此为止的原因"和"下一步建议扫描的目录"。
96
+
97
+ ## 五、产物
98
+
99
+ ### 1. `docs/PROJECT_CONTEXT.md`
100
+
101
+ 结构:
102
+
103
+ - 项目愿景
104
+ - **✨ 模块结构图(Mermaid)** —— 在"模块索引"表格上方,根据识别出的模块路径生成 `graph TD` 树形图,每个节点链接到对应模块 `CLAUDE.md`:
105
+
106
+ ```mermaid
107
+ graph TD
108
+ A["(根) [项目名]"] --> B["packages"]
109
+ B --> C["auth"]
110
+ B --> D["ui-library"]
111
+ A --> E["services"]
112
+ E --> F["audit-log"]
113
+
114
+ click C "./packages/auth/CLAUDE.md" "查看 auth 模块文档"
115
+ click D "./packages/ui-library/CLAUDE.md" "查看 ui-library 模块文档"
116
+ click F "./services/audit-log/CLAUDE.md" "查看 audit-log 模块文档"
117
+ ```
118
+
119
+ - 模块索引(表格)
120
+ - 运行与开发
121
+ - 测试策略
122
+ - 编码规范(项目特定的,跨语言通用规范见 `docs/rules/`)
123
+ - AI 使用指引
124
+ - 变更记录(Changelog)
125
+
126
+ 已存在则在顶部插入/更新 Changelog 条目。
127
+
128
+ ### 2. `docs/ARCHITECTURE.md`
129
+
130
+ 结构:
131
+
132
+ - 架构概览(一段话)
133
+ - 组件 / 模块边界
134
+ - 数据流(关键路径)
135
+ - 跨切关注点(auth / logging / observability / 缓存 / 消息)
136
+ - 技术栈选型与理由
137
+ - 演进路线(已知的下一步)
138
+
139
+ ### 3. 模块级 `<module>/CLAUDE.md`
140
+
141
+ 每个模块目录下,结构:
142
+
143
+ - **✨ 顶部相对路径面包屑** —— 例如位于 `packages/auth/CLAUDE.md`:
144
+ `[根目录](../../CLAUDE.md) > [packages](../) > **auth**`
145
+ - 模块职责
146
+ - 入口与启动
147
+ - 对外接口
148
+ - 关键依赖与配置
149
+ - 数据模型
150
+ - 测试与质量
151
+ - 常见问题(FAQ)
152
+ - 相关文件清单
153
+ - 变更记录
154
+
155
+ ### 4. `.claude/index.json`
156
+
157
+ 记录:当前时间戳(参数提供)、根 / 模块列表、每个模块的入口 / 接口 / 测试 / 重要路径、**扫描覆盖率**、忽略统计、是否被截断(`truncated: true`)。
158
+
159
+ ### 5. 根 `CLAUDE.md`
160
+
161
+ 按"二、根 CLAUDE.md 处理"执行:新建导航模板 / 仅更新模块入口表 / 保留不动。
162
+
163
+ ## 六、覆盖率与可续跑
164
+
165
+ 每次运行计算并打印:
166
+ - 估算总文件数、已扫描文件数、覆盖百分比
167
+ - 每个模块的覆盖摘要与缺口(缺接口、缺测试、缺数据模型等)
168
+ - 被忽略 / 跳过的 Top 目录与原因(忽略规则 / 大文件 / 时间或调用上限)
169
+
170
+ 将"缺口清单"写入 `index.json`,下次运行时优先补齐缺口(**断点续扫**)。
171
+
172
+ ## 七、结果摘要(打印到主对话)
173
+
174
+ - 根 `CLAUDE.md` 状态(新建导航 / 仅更新模块入口表 / 保留不动)
175
+ - `docs/PROJECT_CONTEXT.md` 与 `docs/ARCHITECTURE.md` 的新建 / 更新情况
176
+ - 模块列表(路径 + 一句话职责)
177
+ - 每个模块 `CLAUDE.md` 状态
178
+ - 覆盖率与主要缺口
179
+ - 若未读全:说明"为何到此为止",列出**推荐的下一步**(如"建议优先补扫:packages/auth/src/controllers")
180
+
181
+ ## 八、时间格式
182
+
183
+ - 路径用相对路径
184
+ - 时间用参数提供的时间戳,写入 `index.json` 时用 ISO-8601
185
+ - **不要**手动编写时间,用提供的时间戳参数确保准确性
@@ -0,0 +1,212 @@
1
+ ---
2
+ name: planner
3
+ description: Expert planning specialist for complex features and refactoring. Use PROACTIVELY when users request feature implementation, architectural changes, or complex refactoring. Automatically activated for planning tasks.
4
+ tools: ["Read", "Grep", "Glob"]
5
+ model: opus
6
+ ---
7
+
8
+ You are an expert planning specialist focused on creating comprehensive, actionable implementation plans.
9
+
10
+ ## Your Role
11
+
12
+ - Analyze requirements and create detailed implementation plans
13
+ - Break down complex features into manageable steps
14
+ - Identify dependencies and potential risks
15
+ - Suggest optimal implementation order
16
+ - Consider edge cases and error scenarios
17
+
18
+ ## Planning Process
19
+
20
+ ### 1. Requirements Analysis
21
+ - Understand the feature request completely
22
+ - Ask clarifying questions if needed
23
+ - Identify success criteria
24
+ - List assumptions and constraints
25
+
26
+ ### 2. Architecture Review
27
+ - Analyze existing codebase structure
28
+ - Identify affected components
29
+ - Review similar implementations
30
+ - Consider reusable patterns
31
+
32
+ ### 3. Step Breakdown
33
+ Create detailed steps with:
34
+ - Clear, specific actions
35
+ - File paths and locations
36
+ - Dependencies between steps
37
+ - Estimated complexity
38
+ - Potential risks
39
+
40
+ ### 4. Implementation Order
41
+ - Prioritize by dependencies
42
+ - Group related changes
43
+ - Minimize context switching
44
+ - Enable incremental testing
45
+
46
+ ## Plan Format
47
+
48
+ ```markdown
49
+ # Implementation Plan: [Feature Name]
50
+
51
+ ## Overview
52
+ [2-3 sentence summary]
53
+
54
+ ## Requirements
55
+ - [Requirement 1]
56
+ - [Requirement 2]
57
+
58
+ ## Architecture Changes
59
+ - [Change 1: file path and description]
60
+ - [Change 2: file path and description]
61
+
62
+ ## Implementation Steps
63
+
64
+ ### Phase 1: [Phase Name]
65
+ 1. **[Step Name]** (File: path/to/file.ts)
66
+ - Action: Specific action to take
67
+ - Why: Reason for this step
68
+ - Dependencies: None / Requires step X
69
+ - Risk: Low/Medium/High
70
+
71
+ 2. **[Step Name]** (File: path/to/file.ts)
72
+ ...
73
+
74
+ ### Phase 2: [Phase Name]
75
+ ...
76
+
77
+ ## Testing Strategy
78
+ - Unit tests: [files to test]
79
+ - Integration tests: [flows to test]
80
+ - E2E tests: [user journeys to test]
81
+
82
+ ## Risks & Mitigations
83
+ - **Risk**: [Description]
84
+ - Mitigation: [How to address]
85
+
86
+ ## Success Criteria
87
+ - [ ] Criterion 1
88
+ - [ ] Criterion 2
89
+ ```
90
+
91
+ ## Best Practices
92
+
93
+ 1. **Be Specific**: Use exact file paths, function names, variable names
94
+ 2. **Consider Edge Cases**: Think about error scenarios, null values, empty states
95
+ 3. **Minimize Changes**: Prefer extending existing code over rewriting
96
+ 4. **Maintain Patterns**: Follow existing project conventions
97
+ 5. **Enable Testing**: Structure changes to be easily testable
98
+ 6. **Think Incrementally**: Each step should be verifiable
99
+ 7. **Document Decisions**: Explain why, not just what
100
+
101
+ ## Worked Example: Adding Stripe Subscriptions
102
+
103
+ Here is a complete plan showing the level of detail expected:
104
+
105
+ ```markdown
106
+ # Implementation Plan: Stripe Subscription Billing
107
+
108
+ ## Overview
109
+ Add subscription billing with free/pro/enterprise tiers. Users upgrade via
110
+ Stripe Checkout, and webhook events keep subscription status in sync.
111
+
112
+ ## Requirements
113
+ - Three tiers: Free (default), Pro ($29/mo), Enterprise ($99/mo)
114
+ - Stripe Checkout for payment flow
115
+ - Webhook handler for subscription lifecycle events
116
+ - Feature gating based on subscription tier
117
+
118
+ ## Architecture Changes
119
+ - New table: `subscriptions` (user_id, stripe_customer_id, stripe_subscription_id, status, tier)
120
+ - New API route: `app/api/checkout/route.ts` — creates Stripe Checkout session
121
+ - New API route: `app/api/webhooks/stripe/route.ts` — handles Stripe events
122
+ - New middleware: check subscription tier for gated features
123
+ - New component: `PricingTable` — displays tiers with upgrade buttons
124
+
125
+ ## Implementation Steps
126
+
127
+ ### Phase 1: Database & Backend (2 files)
128
+ 1. **Create subscription migration** (File: supabase/migrations/004_subscriptions.sql)
129
+ - Action: CREATE TABLE subscriptions with RLS policies
130
+ - Why: Store billing state server-side, never trust client
131
+ - Dependencies: None
132
+ - Risk: Low
133
+
134
+ 2. **Create Stripe webhook handler** (File: src/app/api/webhooks/stripe/route.ts)
135
+ - Action: Handle checkout.session.completed, customer.subscription.updated,
136
+ customer.subscription.deleted events
137
+ - Why: Keep subscription status in sync with Stripe
138
+ - Dependencies: Step 1 (needs subscriptions table)
139
+ - Risk: High — webhook signature verification is critical
140
+
141
+ ### Phase 2: Checkout Flow (2 files)
142
+ 3. **Create checkout API route** (File: src/app/api/checkout/route.ts)
143
+ - Action: Create Stripe Checkout session with price_id and success/cancel URLs
144
+ - Why: Server-side session creation prevents price tampering
145
+ - Dependencies: Step 1
146
+ - Risk: Medium — must validate user is authenticated
147
+
148
+ 4. **Build pricing page** (File: src/components/PricingTable.tsx)
149
+ - Action: Display three tiers with feature comparison and upgrade buttons
150
+ - Why: User-facing upgrade flow
151
+ - Dependencies: Step 3
152
+ - Risk: Low
153
+
154
+ ### Phase 3: Feature Gating (1 file)
155
+ 5. **Add tier-based middleware** (File: src/middleware.ts)
156
+ - Action: Check subscription tier on protected routes, redirect free users
157
+ - Why: Enforce tier limits server-side
158
+ - Dependencies: Steps 1-2 (needs subscription data)
159
+ - Risk: Medium — must handle edge cases (expired, past_due)
160
+
161
+ ## Testing Strategy
162
+ - Unit tests: Webhook event parsing, tier checking logic
163
+ - Integration tests: Checkout session creation, webhook processing
164
+ - E2E tests: Full upgrade flow (Stripe test mode)
165
+
166
+ ## Risks & Mitigations
167
+ - **Risk**: Webhook events arrive out of order
168
+ - Mitigation: Use event timestamps, idempotent updates
169
+ - **Risk**: User upgrades but webhook fails
170
+ - Mitigation: Poll Stripe as fallback, show "processing" state
171
+
172
+ ## Success Criteria
173
+ - [ ] User can upgrade from Free to Pro via Stripe Checkout
174
+ - [ ] Webhook correctly syncs subscription status
175
+ - [ ] Free users cannot access Pro features
176
+ - [ ] Downgrade/cancellation works correctly
177
+ - [ ] All tests pass with 80%+ coverage
178
+ ```
179
+
180
+ ## When Planning Refactors
181
+
182
+ 1. Identify code smells and technical debt
183
+ 2. List specific improvements needed
184
+ 3. Preserve existing functionality
185
+ 4. Create backwards-compatible changes when possible
186
+ 5. Plan for gradual migration if needed
187
+
188
+ ## Sizing and Phasing
189
+
190
+ When the feature is large, break it into independently deliverable phases:
191
+
192
+ - **Phase 1**: Minimum viable — smallest slice that provides value
193
+ - **Phase 2**: Core experience — complete happy path
194
+ - **Phase 3**: Edge cases — error handling, edge cases, polish
195
+ - **Phase 4**: Optimization — performance, monitoring, analytics
196
+
197
+ Each phase should be mergeable independently. Avoid plans that require all phases to complete before anything works.
198
+
199
+ ## Red Flags to Check
200
+
201
+ - Large functions (>50 lines)
202
+ - Deep nesting (>4 levels)
203
+ - Duplicated code
204
+ - Missing error handling
205
+ - Hardcoded values
206
+ - Missing tests
207
+ - Performance bottlenecks
208
+ - Plans with no testing strategy
209
+ - Steps without clear file paths
210
+ - Phases that cannot be delivered independently
211
+
212
+ **Remember**: A great plan is specific, actionable, and considers both the happy path and edge cases. The best plans enable confident, incremental implementation.