aigroup-workflow 1.2.7 → 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 (630) 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 -141
  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 +64 -63
  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 +19 -76
  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 +298 -127
  35. package/docs/PROJECT_CONTEXT.md +25 -0
  36. package/docs/README.md +46 -24
  37. package/docs/red-flags.md +29 -24
  38. package/docs/rules/README.md +51 -0
  39. package/docs/rules/agents.md +50 -0
  40. package/docs/rules/coding-style.md +79 -0
  41. package/docs/rules/cpp/coding-style.md +44 -0
  42. package/docs/rules/cpp/hooks.md +39 -0
  43. package/docs/rules/cpp/patterns.md +51 -0
  44. package/docs/rules/cpp/security.md +51 -0
  45. package/docs/rules/cpp/testing.md +44 -0
  46. package/docs/rules/csharp/coding-style.md +72 -0
  47. package/docs/rules/csharp/hooks.md +25 -0
  48. package/docs/rules/csharp/patterns.md +50 -0
  49. package/docs/rules/csharp/security.md +58 -0
  50. package/docs/rules/csharp/testing.md +46 -0
  51. package/docs/rules/dart/coding-style.md +159 -0
  52. package/docs/rules/dart/hooks.md +66 -0
  53. package/docs/rules/dart/patterns.md +261 -0
  54. package/docs/rules/dart/security.md +135 -0
  55. package/docs/rules/dart/testing.md +215 -0
  56. package/docs/rules/git-workflow.md +53 -0
  57. package/docs/rules/golang/coding-style.md +32 -0
  58. package/docs/rules/golang/hooks.md +17 -0
  59. package/docs/rules/golang/patterns.md +45 -0
  60. package/docs/rules/golang/security.md +34 -0
  61. package/docs/rules/golang/testing.md +31 -0
  62. package/docs/rules/hooks.md +61 -0
  63. package/docs/rules/java/coding-style.md +114 -0
  64. package/docs/rules/java/hooks.md +18 -0
  65. package/docs/rules/java/patterns.md +146 -0
  66. package/docs/rules/java/security.md +100 -0
  67. package/docs/rules/java/testing.md +131 -0
  68. package/docs/rules/kotlin/coding-style.md +86 -0
  69. package/docs/rules/kotlin/hooks.md +17 -0
  70. package/docs/rules/kotlin/patterns.md +146 -0
  71. package/docs/rules/kotlin/security.md +82 -0
  72. package/docs/rules/kotlin/testing.md +128 -0
  73. package/docs/rules/performance.md +30 -0
  74. package/docs/rules/perl/coding-style.md +46 -0
  75. package/docs/rules/perl/hooks.md +22 -0
  76. package/docs/rules/perl/patterns.md +76 -0
  77. package/docs/rules/perl/security.md +69 -0
  78. package/docs/rules/perl/testing.md +54 -0
  79. package/docs/rules/php/coding-style.md +40 -0
  80. package/docs/rules/php/hooks.md +24 -0
  81. package/docs/rules/php/patterns.md +33 -0
  82. package/docs/rules/php/security.md +37 -0
  83. package/docs/rules/php/testing.md +39 -0
  84. package/docs/rules/python/coding-style.md +42 -0
  85. package/docs/rules/python/hooks.md +19 -0
  86. package/docs/rules/python/patterns.md +39 -0
  87. package/docs/rules/python/security.md +30 -0
  88. package/docs/rules/python/testing.md +38 -0
  89. package/docs/rules/rust/coding-style.md +151 -0
  90. package/docs/rules/rust/hooks.md +16 -0
  91. package/docs/rules/rust/patterns.md +168 -0
  92. package/docs/rules/rust/security.md +141 -0
  93. package/docs/rules/rust/testing.md +154 -0
  94. package/docs/rules/security.md +73 -0
  95. package/docs/rules/swift/coding-style.md +47 -0
  96. package/docs/rules/swift/hooks.md +20 -0
  97. package/docs/rules/swift/patterns.md +66 -0
  98. package/docs/rules/swift/security.md +33 -0
  99. package/docs/rules/swift/testing.md +45 -0
  100. package/docs/rules/testing.md +77 -0
  101. package/docs/rules/typescript/coding-style.md +199 -0
  102. package/docs/rules/typescript/hooks.md +22 -0
  103. package/docs/rules/typescript/patterns.md +52 -0
  104. package/docs/rules/typescript/security.md +28 -0
  105. package/docs/rules/typescript/testing.md +18 -0
  106. package/docs/rules/web/coding-style.md +96 -0
  107. package/docs/rules/web/design-quality.md +63 -0
  108. package/docs/rules/web/hooks.md +120 -0
  109. package/docs/rules/web/patterns.md +79 -0
  110. package/docs/rules/web/performance.md +64 -0
  111. package/docs/rules/web/security.md +57 -0
  112. package/docs/rules/web/testing.md +55 -0
  113. package/{.dev-agents/shared → docs}/templates/code-review.md +1 -1
  114. package/{.dev-agents/shared → docs}/templates/implementation-plan.md +82 -82
  115. package/docs/workflow-pipeline.md +55 -118
  116. package/manifests/install-modules.json +294 -0
  117. package/package.json +7 -3
  118. package/scripts/harness/log-event.sh +110 -0
  119. package/scripts/harness/logs-query.sh +184 -0
  120. package/scripts/harness/tests/test-log-event.sh +71 -0
  121. package/scripts/harness/tests/test-logs-query.sh +77 -0
  122. package/scripts/hooks/README.md +49 -0
  123. package/scripts/hooks/checks/claude-md-size.cjs +21 -0
  124. package/scripts/hooks/checks/delegation-antipatterns.cjs +66 -0
  125. package/scripts/hooks/checks/empty-docs.cjs +32 -0
  126. package/scripts/hooks/checks/orchestration-artifacts.cjs +65 -0
  127. package/scripts/hooks/checks/structure.cjs +23 -0
  128. package/scripts/hooks/checks/workflow-state.cjs +56 -0
  129. package/scripts/hooks/dispatcher.cjs +64 -0
  130. package/scripts/hooks/lib/runner.cjs +81 -0
  131. package/scripts/orchestration/lib/orchestrator.cjs +181 -0
  132. package/scripts/orchestration/session.cjs +180 -0
  133. package/skills/documentation/SKILL.md +45 -0
  134. package/skills/{max/workflow/entropy-management → entropy-management}/SKILL.md +115 -124
  135. package/skills/requirement-engineering/SKILL.md +111 -0
  136. package/skills/{max/workflow/subagent-driven-development → subagent-driven-development}/SKILL.md +18 -18
  137. package/skills/{max/workflow/writing-plans → writing-plans}/SKILL.md +165 -165
  138. package/.claude/agents/ella.md +0 -101
  139. package/.claude/agents/jarvis.md +0 -193
  140. package/.claude/agents/kyle.md +0 -168
  141. package/.dev-agents/shared/.workflow-state +0 -5
  142. package/.dev-agents/shared/designs/.gitkeep +0 -0
  143. package/.dev-agents/shared/reviews/.gitkeep +0 -0
  144. package/.dev-agents/shared/tasks/.gitkeep +0 -0
  145. package/docs/ARCHITECTURE.md +0 -86
  146. package/docs/QUALITY_SCORE.md +0 -43
  147. package/docs/coding-standards.md +0 -48
  148. package/docs/dispatch-rules.md +0 -83
  149. package/docs/steering-loop.md +0 -72
  150. package/docs/tech-debt-tracker.md +0 -26
  151. package/scripts/check-gitignore.sh +0 -130
  152. package/scripts/clean-system-files.sh +0 -169
  153. package/scripts/harness/hook-post-edit.sh +0 -40
  154. package/scripts/harness/hook-stop.sh +0 -70
  155. package/scripts/harness/hook-subagent-stop.sh +0 -54
  156. package/scripts/harness/lint-delegation.sh +0 -164
  157. package/scripts/harness/lint-docs.sh +0 -117
  158. package/scripts/harness/lint-process.sh +0 -217
  159. package/scripts/harness/lint-structure.sh +0 -141
  160. package/scripts/harness/lint-workflow-artifacts.sh +0 -145
  161. package/scripts/harness/run-all.sh +0 -77
  162. package/scripts/harness/workflow-state.sh +0 -357
  163. package/scripts/update-skills.sh +0 -187
  164. package/skills/max/workflow/brainstorming/SKILL.md +0 -111
  165. package/skills/max/workflow/documentation/SKILL.md +0 -82
  166. package/skills/max/workflow/requirement-validation/SKILL.md +0 -107
  167. package/skills/max/workflow/solution-design/SKILL.md +0 -117
  168. package/skills/max/workflow/testing/SKILL.md +0 -118
  169. /package/{.dev-agents/shared → docs}/templates/README.md +0 -0
  170. /package/{.dev-agents/shared → docs}/templates/ai-project-final.md +0 -0
  171. /package/{.dev-agents/shared → docs}/templates/ai-project.md +0 -0
  172. /package/{.dev-agents/shared → docs}/templates/api.md +0 -0
  173. /package/{.dev-agents/shared → docs}/templates/bug.md +0 -0
  174. /package/{.dev-agents/shared → docs}/templates/generic.md +0 -0
  175. /package/{.dev-agents/shared → docs}/templates/meeting.md +0 -0
  176. /package/{.dev-agents/shared → docs}/templates/prd.md +0 -0
  177. /package/{.dev-agents/shared → docs}/templates/ui.md +0 -0
  178. /package/skills/{ella/angular-architect → angular-architect}/SKILL.md +0 -0
  179. /package/skills/{ella/angular-architect → angular-architect}/references/components.md +0 -0
  180. /package/skills/{ella/angular-architect → angular-architect}/references/ngrx.md +0 -0
  181. /package/skills/{ella/angular-architect → angular-architect}/references/routing.md +0 -0
  182. /package/skills/{ella/angular-architect → angular-architect}/references/rxjs.md +0 -0
  183. /package/skills/{ella/angular-architect → angular-architect}/references/testing.md +0 -0
  184. /package/skills/{jarvis/api-designer → api-designer}/SKILL.md +0 -0
  185. /package/skills/{jarvis/api-designer → api-designer}/references/error-handling.md +0 -0
  186. /package/skills/{jarvis/api-designer → api-designer}/references/openapi.md +0 -0
  187. /package/skills/{jarvis/api-designer → api-designer}/references/pagination.md +0 -0
  188. /package/skills/{jarvis/api-designer → api-designer}/references/rest-patterns.md +0 -0
  189. /package/skills/{jarvis/api-designer → api-designer}/references/versioning.md +0 -0
  190. /package/skills/{jarvis/architecture-designer → architecture-designer}/SKILL.md +0 -0
  191. /package/skills/{jarvis/architecture-designer → architecture-designer}/references/adr-template.md +0 -0
  192. /package/skills/{jarvis/architecture-designer → architecture-designer}/references/architecture-patterns.md +0 -0
  193. /package/skills/{jarvis/architecture-designer → architecture-designer}/references/database-selection.md +0 -0
  194. /package/skills/{jarvis/architecture-designer → architecture-designer}/references/nfr-checklist.md +0 -0
  195. /package/skills/{jarvis/architecture-designer → architecture-designer}/references/system-design.md +0 -0
  196. /package/skills/{kyle/chaos-engineer → chaos-engineer}/SKILL.md +0 -0
  197. /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/chaos-tools.md +0 -0
  198. /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/experiment-design.md +0 -0
  199. /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/game-days.md +0 -0
  200. /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/infrastructure-chaos.md +0 -0
  201. /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/kubernetes-chaos.md +0 -0
  202. /package/skills/{jarvis/cli-developer → cli-developer}/SKILL.md +0 -0
  203. /package/skills/{jarvis/cli-developer → cli-developer}/references/design-patterns.md +0 -0
  204. /package/skills/{jarvis/cli-developer → cli-developer}/references/go-cli.md +0 -0
  205. /package/skills/{jarvis/cli-developer → cli-developer}/references/node-cli.md +0 -0
  206. /package/skills/{jarvis/cli-developer → cli-developer}/references/python-cli.md +0 -0
  207. /package/skills/{jarvis/cli-developer → cli-developer}/references/ux-patterns.md +0 -0
  208. /package/skills/{jarvis/cloud-architect → cloud-architect}/SKILL.md +0 -0
  209. /package/skills/{jarvis/cloud-architect → cloud-architect}/references/aws.md +0 -0
  210. /package/skills/{jarvis/cloud-architect → cloud-architect}/references/azure.md +0 -0
  211. /package/skills/{jarvis/cloud-architect → cloud-architect}/references/cost.md +0 -0
  212. /package/skills/{jarvis/cloud-architect → cloud-architect}/references/gcp.md +0 -0
  213. /package/skills/{jarvis/cloud-architect → cloud-architect}/references/multi-cloud.md +0 -0
  214. /package/skills/{jarvis/code-documenter → code-documenter}/SKILL.md +0 -0
  215. /package/skills/{jarvis/code-documenter → code-documenter}/references/api-docs-fastapi-django.md +0 -0
  216. /package/skills/{jarvis/code-documenter → code-documenter}/references/api-docs-nestjs-express.md +0 -0
  217. /package/skills/{jarvis/code-documenter → code-documenter}/references/coverage-reports.md +0 -0
  218. /package/skills/{jarvis/code-documenter → code-documenter}/references/documentation-systems.md +0 -0
  219. /package/skills/{jarvis/code-documenter → code-documenter}/references/interactive-api-docs.md +0 -0
  220. /package/skills/{jarvis/code-documenter → code-documenter}/references/python-docstrings.md +0 -0
  221. /package/skills/{jarvis/code-documenter → code-documenter}/references/typescript-jsdoc.md +0 -0
  222. /package/skills/{jarvis/code-documenter → code-documenter}/references/user-guides-tutorials.md +0 -0
  223. /package/skills/{kyle/code-reviewer → code-reviewer}/SKILL.md +0 -0
  224. /package/skills/{kyle/code-reviewer → code-reviewer}/references/common-issues.md +0 -0
  225. /package/skills/{kyle/code-reviewer → code-reviewer}/references/feedback-examples.md +0 -0
  226. /package/skills/{kyle/code-reviewer → code-reviewer}/references/receiving-feedback.md +0 -0
  227. /package/skills/{kyle/code-reviewer → code-reviewer}/references/report-template.md +0 -0
  228. /package/skills/{kyle/code-reviewer → code-reviewer}/references/review-checklist.md +0 -0
  229. /package/skills/{kyle/code-reviewer → code-reviewer}/references/spec-compliance-review.md +0 -0
  230. /package/skills/{max/competitive-analysis → competitive-analysis}/SKILL.md +0 -0
  231. /package/skills/{jarvis/cpp-pro → cpp-pro}/SKILL.md +0 -0
  232. /package/skills/{jarvis/cpp-pro → cpp-pro}/references/build-tooling.md +0 -0
  233. /package/skills/{jarvis/cpp-pro → cpp-pro}/references/concurrency.md +0 -0
  234. /package/skills/{jarvis/cpp-pro → cpp-pro}/references/memory-performance.md +0 -0
  235. /package/skills/{jarvis/cpp-pro → cpp-pro}/references/modern-cpp.md +0 -0
  236. /package/skills/{jarvis/cpp-pro → cpp-pro}/references/templates.md +0 -0
  237. /package/skills/{jarvis/csharp-developer → csharp-developer}/SKILL.md +0 -0
  238. /package/skills/{jarvis/csharp-developer → csharp-developer}/references/aspnet-core.md +0 -0
  239. /package/skills/{jarvis/csharp-developer → csharp-developer}/references/blazor.md +0 -0
  240. /package/skills/{jarvis/csharp-developer → csharp-developer}/references/entity-framework.md +0 -0
  241. /package/skills/{jarvis/csharp-developer → csharp-developer}/references/modern-csharp.md +0 -0
  242. /package/skills/{jarvis/csharp-developer → csharp-developer}/references/performance.md +0 -0
  243. /package/skills/{jarvis/database-optimizer → database-optimizer}/SKILL.md +0 -0
  244. /package/skills/{jarvis/database-optimizer → database-optimizer}/references/index-strategies.md +0 -0
  245. /package/skills/{jarvis/database-optimizer → database-optimizer}/references/monitoring-analysis.md +0 -0
  246. /package/skills/{jarvis/database-optimizer → database-optimizer}/references/mysql-tuning.md +0 -0
  247. /package/skills/{jarvis/database-optimizer → database-optimizer}/references/postgresql-tuning.md +0 -0
  248. /package/skills/{jarvis/database-optimizer → database-optimizer}/references/query-optimization.md +0 -0
  249. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/SKILL.md +0 -0
  250. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/common-patterns.md +0 -0
  251. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/debugging-tools.md +0 -0
  252. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/quick-fixes.md +0 -0
  253. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/strategies.md +0 -0
  254. /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/systematic-debugging.md +0 -0
  255. /package/skills/{ella/commands → design-commands}/design.md +0 -0
  256. /package/skills/{ella/commands → design-commands}/handoff.md +0 -0
  257. /package/skills/{ella/commands → design-commands}/prototype.md +0 -0
  258. /package/skills/{ella/commands → design-commands}/spec.md +0 -0
  259. /package/skills/{ella/commands → design-commands}/style.md +0 -0
  260. /package/skills/{jarvis/devops-engineer → devops-engineer}/SKILL.md +0 -0
  261. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/deployment-strategies.md +0 -0
  262. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/docker-patterns.md +0 -0
  263. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/github-actions.md +0 -0
  264. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/incident-response.md +0 -0
  265. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/kubernetes.md +0 -0
  266. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/platform-engineering.md +0 -0
  267. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/release-automation.md +0 -0
  268. /package/skills/{jarvis/devops-engineer → devops-engineer}/references/terraform-iac.md +0 -0
  269. /package/skills/{jarvis/django-expert → django-expert}/SKILL.md +0 -0
  270. /package/skills/{jarvis/django-expert → django-expert}/references/authentication.md +0 -0
  271. /package/skills/{jarvis/django-expert → django-expert}/references/drf-serializers.md +0 -0
  272. /package/skills/{jarvis/django-expert → django-expert}/references/models-orm.md +0 -0
  273. /package/skills/{jarvis/django-expert → django-expert}/references/testing-django.md +0 -0
  274. /package/skills/{jarvis/django-expert → django-expert}/references/viewsets-views.md +0 -0
  275. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/SKILL.md +0 -0
  276. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/authentication.md +0 -0
  277. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/clean-architecture.md +0 -0
  278. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/cloud-native.md +0 -0
  279. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/entity-framework.md +0 -0
  280. /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/minimal-apis.md +0 -0
  281. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/SKILL.md +0 -0
  282. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/async-sqlalchemy.md +0 -0
  283. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/authentication.md +0 -0
  284. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/endpoints-routing.md +0 -0
  285. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/migration-from-django.md +0 -0
  286. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/pydantic-v2.md +0 -0
  287. /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/testing-async.md +0 -0
  288. /package/skills/{jarvis/feature-forge → feature-forge}/SKILL.md +0 -0
  289. /package/skills/{jarvis/feature-forge → feature-forge}/references/acceptance-criteria.md +0 -0
  290. /package/skills/{jarvis/feature-forge → feature-forge}/references/ears-syntax.md +0 -0
  291. /package/skills/{jarvis/feature-forge → feature-forge}/references/interview-questions.md +0 -0
  292. /package/skills/{jarvis/feature-forge → feature-forge}/references/pre-discovery-subagents.md +0 -0
  293. /package/skills/{jarvis/feature-forge → feature-forge}/references/specification-template.md +0 -0
  294. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/SKILL.md +0 -0
  295. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/dataset-preparation.md +0 -0
  296. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/deployment-optimization.md +0 -0
  297. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/evaluation-metrics.md +0 -0
  298. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/hyperparameter-tuning.md +0 -0
  299. /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/lora-peft.md +0 -0
  300. /package/skills/{max/workflow/finishing-a-development-branch → finishing-a-development-branch}/SKILL.md +0 -0
  301. /package/skills/{ella/flutter-expert → flutter-expert}/SKILL.md +0 -0
  302. /package/skills/{ella/flutter-expert → flutter-expert}/references/bloc-state.md +0 -0
  303. /package/skills/{ella/flutter-expert → flutter-expert}/references/gorouter-navigation.md +0 -0
  304. /package/skills/{ella/flutter-expert → flutter-expert}/references/performance.md +0 -0
  305. /package/skills/{ella/flutter-expert → flutter-expert}/references/project-structure.md +0 -0
  306. /package/skills/{ella/flutter-expert → flutter-expert}/references/riverpod-state.md +0 -0
  307. /package/skills/{ella/flutter-expert → flutter-expert}/references/widget-patterns.md +0 -0
  308. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/SKILL.md +0 -0
  309. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/api-design-standards.md +0 -0
  310. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/architecture-decisions.md +0 -0
  311. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/backend-patterns.md +0 -0
  312. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/common-patterns.md +0 -0
  313. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/deliverables-checklist.md +0 -0
  314. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/design-template.md +0 -0
  315. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/error-handling.md +0 -0
  316. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/frontend-patterns.md +0 -0
  317. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/integration-patterns.md +0 -0
  318. /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/security-checklist.md +0 -0
  319. /package/skills/{jarvis/golang-pro → golang-pro}/SKILL.md +0 -0
  320. /package/skills/{jarvis/golang-pro → golang-pro}/references/concurrency.md +0 -0
  321. /package/skills/{jarvis/golang-pro → golang-pro}/references/generics.md +0 -0
  322. /package/skills/{jarvis/golang-pro → golang-pro}/references/interfaces.md +0 -0
  323. /package/skills/{jarvis/golang-pro → golang-pro}/references/project-structure.md +0 -0
  324. /package/skills/{jarvis/golang-pro → golang-pro}/references/testing.md +0 -0
  325. /package/skills/{jarvis/graphql-architect → graphql-architect}/SKILL.md +0 -0
  326. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/federation.md +0 -0
  327. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/migration-from-rest.md +0 -0
  328. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/resolvers.md +0 -0
  329. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/schema-design.md +0 -0
  330. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/security.md +0 -0
  331. /package/skills/{jarvis/graphql-architect → graphql-architect}/references/subscriptions.md +0 -0
  332. /package/skills/{jarvis/java-architect → java-architect}/SKILL.md +0 -0
  333. /package/skills/{jarvis/java-architect → java-architect}/references/jpa-optimization.md +0 -0
  334. /package/skills/{jarvis/java-architect → java-architect}/references/reactive-webflux.md +0 -0
  335. /package/skills/{jarvis/java-architect → java-architect}/references/spring-boot-setup.md +0 -0
  336. /package/skills/{jarvis/java-architect → java-architect}/references/spring-security.md +0 -0
  337. /package/skills/{jarvis/java-architect → java-architect}/references/testing-patterns.md +0 -0
  338. /package/skills/{jarvis/javascript-pro → javascript-pro}/SKILL.md +0 -0
  339. /package/skills/{jarvis/javascript-pro → javascript-pro}/references/async-patterns.md +0 -0
  340. /package/skills/{jarvis/javascript-pro → javascript-pro}/references/browser-apis.md +0 -0
  341. /package/skills/{jarvis/javascript-pro → javascript-pro}/references/modern-syntax.md +0 -0
  342. /package/skills/{jarvis/javascript-pro → javascript-pro}/references/modules.md +0 -0
  343. /package/skills/{jarvis/javascript-pro → javascript-pro}/references/node-essentials.md +0 -0
  344. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/SKILL.md +0 -0
  345. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/android-compose.md +0 -0
  346. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/coroutines-flow.md +0 -0
  347. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/dsl-idioms.md +0 -0
  348. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/ktor-server.md +0 -0
  349. /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/multiplatform-kmp.md +0 -0
  350. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/SKILL.md +0 -0
  351. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/configuration.md +0 -0
  352. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/cost-optimization.md +0 -0
  353. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/custom-operators.md +0 -0
  354. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/gitops.md +0 -0
  355. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/helm-charts.md +0 -0
  356. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/multi-cluster.md +0 -0
  357. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/networking.md +0 -0
  358. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/service-mesh.md +0 -0
  359. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/storage.md +0 -0
  360. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/troubleshooting.md +0 -0
  361. /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/workloads.md +0 -0
  362. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/SKILL.md +0 -0
  363. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/eloquent.md +0 -0
  364. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/livewire.md +0 -0
  365. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/queues.md +0 -0
  366. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/routing.md +0 -0
  367. /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/testing.md +0 -0
  368. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/SKILL.md +0 -0
  369. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/legacy-testing.md +0 -0
  370. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/migration-strategies.md +0 -0
  371. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/refactoring-patterns.md +0 -0
  372. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/strangler-fig-pattern.md +0 -0
  373. /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/system-assessment.md +0 -0
  374. /package/skills/{jarvis/mcp-developer → mcp-developer}/SKILL.md +0 -0
  375. /package/skills/{jarvis/mcp-developer → mcp-developer}/references/protocol.md +0 -0
  376. /package/skills/{jarvis/mcp-developer → mcp-developer}/references/python-sdk.md +0 -0
  377. /package/skills/{jarvis/mcp-developer → mcp-developer}/references/resources.md +0 -0
  378. /package/skills/{jarvis/mcp-developer → mcp-developer}/references/tools.md +0 -0
  379. /package/skills/{jarvis/mcp-developer → mcp-developer}/references/typescript-sdk.md +0 -0
  380. /package/skills/{max/meeting-notes → meeting-notes}/SKILL.md +0 -0
  381. /package/skills/{jarvis/microservices-architect → microservices-architect}/SKILL.md +0 -0
  382. /package/skills/{jarvis/microservices-architect → microservices-architect}/references/communication.md +0 -0
  383. /package/skills/{jarvis/microservices-architect → microservices-architect}/references/data.md +0 -0
  384. /package/skills/{jarvis/microservices-architect → microservices-architect}/references/decomposition.md +0 -0
  385. /package/skills/{jarvis/microservices-architect → microservices-architect}/references/observability.md +0 -0
  386. /package/skills/{jarvis/microservices-architect → microservices-architect}/references/patterns.md +0 -0
  387. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/SKILL.md +0 -0
  388. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/experiment-tracking.md +0 -0
  389. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/feature-engineering.md +0 -0
  390. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/model-validation.md +0 -0
  391. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/pipeline-orchestration.md +0 -0
  392. /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/training-pipelines.md +0 -0
  393. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/SKILL.md +0 -0
  394. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/alerting-rules.md +0 -0
  395. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/application-profiling.md +0 -0
  396. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/capacity-planning.md +0 -0
  397. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/dashboards.md +0 -0
  398. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/opentelemetry.md +0 -0
  399. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/performance-testing.md +0 -0
  400. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/prometheus-metrics.md +0 -0
  401. /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/structured-logging.md +0 -0
  402. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/SKILL.md +0 -0
  403. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/authentication.md +0 -0
  404. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/controllers-routing.md +0 -0
  405. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/dtos-validation.md +0 -0
  406. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/migration-from-express.md +0 -0
  407. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/services-di.md +0 -0
  408. /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/testing-patterns.md +0 -0
  409. /package/skills/{ella/nextjs-developer → nextjs-developer}/SKILL.md +0 -0
  410. /package/skills/{ella/nextjs-developer → nextjs-developer}/references/app-router.md +0 -0
  411. /package/skills/{ella/nextjs-developer → nextjs-developer}/references/data-fetching.md +0 -0
  412. /package/skills/{ella/nextjs-developer → nextjs-developer}/references/deployment.md +0 -0
  413. /package/skills/{ella/nextjs-developer → nextjs-developer}/references/server-actions.md +0 -0
  414. /package/skills/{ella/nextjs-developer → nextjs-developer}/references/server-components.md +0 -0
  415. /package/skills/{jarvis/pandas-pro → pandas-pro}/SKILL.md +0 -0
  416. /package/skills/{jarvis/pandas-pro → pandas-pro}/references/aggregation-groupby.md +0 -0
  417. /package/skills/{jarvis/pandas-pro → pandas-pro}/references/data-cleaning.md +0 -0
  418. /package/skills/{jarvis/pandas-pro → pandas-pro}/references/dataframe-operations.md +0 -0
  419. /package/skills/{jarvis/pandas-pro → pandas-pro}/references/merging-joining.md +0 -0
  420. /package/skills/{jarvis/pandas-pro → pandas-pro}/references/performance-optimization.md +0 -0
  421. /package/skills/{jarvis/php-pro → php-pro}/SKILL.md +0 -0
  422. /package/skills/{jarvis/php-pro → php-pro}/references/async-patterns.md +0 -0
  423. /package/skills/{jarvis/php-pro → php-pro}/references/laravel-patterns.md +0 -0
  424. /package/skills/{jarvis/php-pro → php-pro}/references/modern-php-features.md +0 -0
  425. /package/skills/{jarvis/php-pro → php-pro}/references/symfony-patterns.md +0 -0
  426. /package/skills/{jarvis/php-pro → php-pro}/references/testing-quality.md +0 -0
  427. /package/skills/{kyle/playwright-expert → playwright-expert}/SKILL.md +0 -0
  428. /package/skills/{kyle/playwright-expert → playwright-expert}/references/api-mocking.md +0 -0
  429. /package/skills/{kyle/playwright-expert → playwright-expert}/references/configuration.md +0 -0
  430. /package/skills/{kyle/playwright-expert → playwright-expert}/references/debugging-flaky.md +0 -0
  431. /package/skills/{kyle/playwright-expert → playwright-expert}/references/page-object-model.md +0 -0
  432. /package/skills/{kyle/playwright-expert → playwright-expert}/references/selectors-locators.md +0 -0
  433. /package/skills/{jarvis/postgres-pro → postgres-pro}/SKILL.md +0 -0
  434. /package/skills/{jarvis/postgres-pro → postgres-pro}/references/extensions.md +0 -0
  435. /package/skills/{jarvis/postgres-pro → postgres-pro}/references/jsonb.md +0 -0
  436. /package/skills/{jarvis/postgres-pro → postgres-pro}/references/maintenance.md +0 -0
  437. /package/skills/{jarvis/postgres-pro → postgres-pro}/references/performance.md +0 -0
  438. /package/skills/{jarvis/postgres-pro → postgres-pro}/references/replication.md +0 -0
  439. /package/skills/{max/prd-template → prd-template}/SKILL.md +0 -0
  440. /package/skills/{jarvis/python-pro → python-pro}/SKILL.md +0 -0
  441. /package/skills/{jarvis/python-pro → python-pro}/references/async-patterns.md +0 -0
  442. /package/skills/{jarvis/python-pro → python-pro}/references/packaging.md +0 -0
  443. /package/skills/{jarvis/python-pro → python-pro}/references/standard-library.md +0 -0
  444. /package/skills/{jarvis/python-pro → python-pro}/references/testing.md +0 -0
  445. /package/skills/{jarvis/python-pro → python-pro}/references/type-system.md +0 -0
  446. /package/skills/{jarvis/rag-architect → rag-architect}/SKILL.md +0 -0
  447. /package/skills/{jarvis/rag-architect → rag-architect}/references/chunking-strategies.md +0 -0
  448. /package/skills/{jarvis/rag-architect → rag-architect}/references/embedding-models.md +0 -0
  449. /package/skills/{jarvis/rag-architect → rag-architect}/references/rag-evaluation.md +0 -0
  450. /package/skills/{jarvis/rag-architect → rag-architect}/references/retrieval-optimization.md +0 -0
  451. /package/skills/{jarvis/rag-architect → rag-architect}/references/vector-databases.md +0 -0
  452. /package/skills/{jarvis/rails-expert → rails-expert}/SKILL.md +0 -0
  453. /package/skills/{jarvis/rails-expert → rails-expert}/references/active-record.md +0 -0
  454. /package/skills/{jarvis/rails-expert → rails-expert}/references/api-development.md +0 -0
  455. /package/skills/{jarvis/rails-expert → rails-expert}/references/background-jobs.md +0 -0
  456. /package/skills/{jarvis/rails-expert → rails-expert}/references/hotwire-turbo.md +0 -0
  457. /package/skills/{jarvis/rails-expert → rails-expert}/references/rspec-testing.md +0 -0
  458. /package/skills/{ella/react-expert → react-expert}/SKILL.md +0 -0
  459. /package/skills/{ella/react-expert → react-expert}/references/hooks-patterns.md +0 -0
  460. /package/skills/{ella/react-expert → react-expert}/references/migration-class-to-modern.md +0 -0
  461. /package/skills/{ella/react-expert → react-expert}/references/performance.md +0 -0
  462. /package/skills/{ella/react-expert → react-expert}/references/react-19-features.md +0 -0
  463. /package/skills/{ella/react-expert → react-expert}/references/server-components.md +0 -0
  464. /package/skills/{ella/react-expert → react-expert}/references/state-management.md +0 -0
  465. /package/skills/{ella/react-expert → react-expert}/references/testing-react.md +0 -0
  466. /package/skills/{ella/react-native-expert → react-native-expert}/SKILL.md +0 -0
  467. /package/skills/{ella/react-native-expert → react-native-expert}/references/expo-router.md +0 -0
  468. /package/skills/{ella/react-native-expert → react-native-expert}/references/list-optimization.md +0 -0
  469. /package/skills/{ella/react-native-expert → react-native-expert}/references/platform-handling.md +0 -0
  470. /package/skills/{ella/react-native-expert → react-native-expert}/references/project-structure.md +0 -0
  471. /package/skills/{ella/react-native-expert → react-native-expert}/references/storage-hooks.md +0 -0
  472. /package/skills/{jarvis/rust-engineer → rust-engineer}/SKILL.md +0 -0
  473. /package/skills/{jarvis/rust-engineer → rust-engineer}/references/async.md +0 -0
  474. /package/skills/{jarvis/rust-engineer → rust-engineer}/references/error-handling.md +0 -0
  475. /package/skills/{jarvis/rust-engineer → rust-engineer}/references/ownership.md +0 -0
  476. /package/skills/{jarvis/rust-engineer → rust-engineer}/references/testing.md +0 -0
  477. /package/skills/{jarvis/rust-engineer → rust-engineer}/references/traits.md +0 -0
  478. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/SKILL.md +0 -0
  479. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/authentication.md +0 -0
  480. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/input-validation.md +0 -0
  481. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/owasp-prevention.md +0 -0
  482. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/security-headers.md +0 -0
  483. /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/xss-csrf.md +0 -0
  484. /package/skills/{kyle/security-reviewer → security-reviewer}/SKILL.md +0 -0
  485. /package/skills/{kyle/security-reviewer → security-reviewer}/references/infrastructure-security.md +0 -0
  486. /package/skills/{kyle/security-reviewer → security-reviewer}/references/penetration-testing.md +0 -0
  487. /package/skills/{kyle/security-reviewer → security-reviewer}/references/report-template.md +0 -0
  488. /package/skills/{kyle/security-reviewer → security-reviewer}/references/sast-tools.md +0 -0
  489. /package/skills/{kyle/security-reviewer → security-reviewer}/references/secret-scanning.md +0 -0
  490. /package/skills/{kyle/security-reviewer → security-reviewer}/references/vulnerability-patterns.md +0 -0
  491. /package/skills/{ella/senior-frontend → senior-frontend}/SKILL.md +0 -0
  492. /package/skills/{ella/senior-frontend → senior-frontend}/references/frontend_best_practices.md +0 -0
  493. /package/skills/{ella/senior-frontend → senior-frontend}/references/nextjs_optimization_guide.md +0 -0
  494. /package/skills/{ella/senior-frontend → senior-frontend}/references/react_patterns.md +0 -0
  495. /package/skills/{ella/senior-frontend → senior-frontend}/scripts/bundle_analyzer.py +0 -0
  496. /package/skills/{ella/senior-frontend → senior-frontend}/scripts/component_generator.py +0 -0
  497. /package/skills/{ella/senior-frontend → senior-frontend}/scripts/frontend_scaffolder.py +0 -0
  498. /package/skills/{kyle/senior-qa → senior-qa}/README.md +0 -0
  499. /package/skills/{kyle/senior-qa → senior-qa}/SKILL.md +0 -0
  500. /package/skills/{kyle/senior-qa → senior-qa}/references/qa_best_practices.md +0 -0
  501. /package/skills/{kyle/senior-qa → senior-qa}/references/test_automation_patterns.md +0 -0
  502. /package/skills/{kyle/senior-qa → senior-qa}/references/testing_strategies.md +0 -0
  503. /package/skills/{kyle/senior-qa → senior-qa}/scripts/coverage_analyzer.py +0 -0
  504. /package/skills/{kyle/senior-qa → senior-qa}/scripts/e2e_test_scaffolder.py +0 -0
  505. /package/skills/{kyle/senior-qa → senior-qa}/scripts/test_suite_generator.py +0 -0
  506. /package/skills/{jarvis/spark-engineer → spark-engineer}/SKILL.md +0 -0
  507. /package/skills/{jarvis/spark-engineer → spark-engineer}/references/partitioning-caching.md +0 -0
  508. /package/skills/{jarvis/spark-engineer → spark-engineer}/references/performance-tuning.md +0 -0
  509. /package/skills/{jarvis/spark-engineer → spark-engineer}/references/rdd-operations.md +0 -0
  510. /package/skills/{jarvis/spark-engineer → spark-engineer}/references/spark-sql-dataframes.md +0 -0
  511. /package/skills/{jarvis/spark-engineer → spark-engineer}/references/streaming-patterns.md +0 -0
  512. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/SKILL.md +0 -0
  513. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/cloud.md +0 -0
  514. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/data.md +0 -0
  515. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/security.md +0 -0
  516. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/testing.md +0 -0
  517. /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/web.md +0 -0
  518. /package/skills/{jarvis/sql-pro → sql-pro}/SKILL.md +0 -0
  519. /package/skills/{jarvis/sql-pro → sql-pro}/references/database-design.md +0 -0
  520. /package/skills/{jarvis/sql-pro → sql-pro}/references/dialect-differences.md +0 -0
  521. /package/skills/{jarvis/sql-pro → sql-pro}/references/optimization.md +0 -0
  522. /package/skills/{jarvis/sql-pro → sql-pro}/references/query-patterns.md +0 -0
  523. /package/skills/{jarvis/sql-pro → sql-pro}/references/window-functions.md +0 -0
  524. /package/skills/{jarvis/sre-engineer → sre-engineer}/SKILL.md +0 -0
  525. /package/skills/{jarvis/sre-engineer → sre-engineer}/references/automation-toil.md +0 -0
  526. /package/skills/{jarvis/sre-engineer → sre-engineer}/references/error-budget-policy.md +0 -0
  527. /package/skills/{jarvis/sre-engineer → sre-engineer}/references/incident-chaos.md +0 -0
  528. /package/skills/{jarvis/sre-engineer → sre-engineer}/references/monitoring-alerting.md +0 -0
  529. /package/skills/{jarvis/sre-engineer → sre-engineer}/references/slo-sli-management.md +0 -0
  530. /package/skills/{max/stakeholder-update → stakeholder-update}/SKILL.md +0 -0
  531. /package/skills/{jarvis/swift-expert → swift-expert}/SKILL.md +0 -0
  532. /package/skills/{jarvis/swift-expert → swift-expert}/references/async-concurrency.md +0 -0
  533. /package/skills/{jarvis/swift-expert → swift-expert}/references/memory-performance.md +0 -0
  534. /package/skills/{jarvis/swift-expert → swift-expert}/references/protocol-oriented.md +0 -0
  535. /package/skills/{jarvis/swift-expert → swift-expert}/references/swiftui-patterns.md +0 -0
  536. /package/skills/{jarvis/swift-expert → swift-expert}/references/testing-patterns.md +0 -0
  537. /package/skills/{max/workflow/systematic-debugging → systematic-debugging}/SKILL.md +0 -0
  538. /package/skills/{kyle/tdd-guide → tdd-guide}/HOW_TO_USE.md +0 -0
  539. /package/skills/{kyle/tdd-guide → tdd-guide}/README.md +0 -0
  540. /package/skills/{kyle/tdd-guide → tdd-guide}/SKILL.md +0 -0
  541. /package/skills/{kyle/tdd-guide → tdd-guide}/assets/expected_output.json +0 -0
  542. /package/skills/{kyle/tdd-guide → tdd-guide}/assets/sample_coverage_report.lcov +0 -0
  543. /package/skills/{kyle/tdd-guide → tdd-guide}/assets/sample_input_python.json +0 -0
  544. /package/skills/{kyle/tdd-guide → tdd-guide}/assets/sample_input_typescript.json +0 -0
  545. /package/skills/{kyle/tdd-guide → tdd-guide}/references/ci-integration.md +0 -0
  546. /package/skills/{kyle/tdd-guide → tdd-guide}/references/framework-guide.md +0 -0
  547. /package/skills/{kyle/tdd-guide → tdd-guide}/references/tdd-best-practices.md +0 -0
  548. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/coverage_analyzer.py +0 -0
  549. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/fixture_generator.py +0 -0
  550. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/format_detector.py +0 -0
  551. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/framework_adapter.py +0 -0
  552. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/metrics_calculator.py +0 -0
  553. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/output_formatter.py +0 -0
  554. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/tdd_workflow.py +0 -0
  555. /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/test_generator.py +0 -0
  556. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/SKILL.md +0 -0
  557. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/best-practices.md +0 -0
  558. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/module-patterns.md +0 -0
  559. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/providers.md +0 -0
  560. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/state-management.md +0 -0
  561. /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/testing.md +0 -0
  562. /package/skills/{kyle/test-master → test-master}/SKILL.md +0 -0
  563. /package/skills/{kyle/test-master → test-master}/references/automation-frameworks.md +0 -0
  564. /package/skills/{kyle/test-master → test-master}/references/e2e-testing.md +0 -0
  565. /package/skills/{kyle/test-master → test-master}/references/integration-testing.md +0 -0
  566. /package/skills/{kyle/test-master → test-master}/references/performance-testing.md +0 -0
  567. /package/skills/{kyle/test-master → test-master}/references/qa-methodology.md +0 -0
  568. /package/skills/{kyle/test-master → test-master}/references/security-testing.md +0 -0
  569. /package/skills/{kyle/test-master → test-master}/references/tdd-iron-laws.md +0 -0
  570. /package/skills/{kyle/test-master → test-master}/references/test-reports.md +0 -0
  571. /package/skills/{kyle/test-master → test-master}/references/testing-anti-patterns.md +0 -0
  572. /package/skills/{kyle/test-master → test-master}/references/unit-testing.md +0 -0
  573. /package/skills/{jarvis/typescript-pro → typescript-pro}/SKILL.md +0 -0
  574. /package/skills/{jarvis/typescript-pro → typescript-pro}/references/advanced-types.md +0 -0
  575. /package/skills/{jarvis/typescript-pro → typescript-pro}/references/configuration.md +0 -0
  576. /package/skills/{jarvis/typescript-pro → typescript-pro}/references/patterns.md +0 -0
  577. /package/skills/{jarvis/typescript-pro → typescript-pro}/references/type-guards.md +0 -0
  578. /package/skills/{jarvis/typescript-pro → typescript-pro}/references/utility-types.md +0 -0
  579. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/SKILL.md +0 -0
  580. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/charts.csv +0 -0
  581. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/colors.csv +0 -0
  582. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/icons.csv +0 -0
  583. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/landing.csv +0 -0
  584. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/products.csv +0 -0
  585. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/react-performance.csv +0 -0
  586. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/astro.csv +0 -0
  587. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/flutter.csv +0 -0
  588. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/html-tailwind.csv +0 -0
  589. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/jetpack-compose.csv +0 -0
  590. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/nextjs.csv +0 -0
  591. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/nuxt-ui.csv +0 -0
  592. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/nuxtjs.csv +0 -0
  593. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/react-native.csv +0 -0
  594. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/react.csv +0 -0
  595. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/shadcn.csv +0 -0
  596. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/svelte.csv +0 -0
  597. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/swiftui.csv +0 -0
  598. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/vue.csv +0 -0
  599. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/styles.csv +0 -0
  600. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/typography.csv +0 -0
  601. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/ui-reasoning.csv +0 -0
  602. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/ux-guidelines.csv +0 -0
  603. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/web-interface.csv +0 -0
  604. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/__pycache__/core.cpython-39.pyc +0 -0
  605. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/__pycache__/design_system.cpython-39.pyc +0 -0
  606. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/core.py +0 -0
  607. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/design_system.py +0 -0
  608. /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/search.py +0 -0
  609. /package/skills/{max/user-research-synthesis → user-research-synthesis}/SKILL.md +0 -0
  610. /package/skills/{max/workflow/verification-before-completion → verification-before-completion}/SKILL.md +0 -0
  611. /package/skills/{ella/vue-expert → vue-expert}/SKILL.md +0 -0
  612. /package/skills/{ella/vue-expert → vue-expert}/references/build-tooling.md +0 -0
  613. /package/skills/{ella/vue-expert → vue-expert}/references/components.md +0 -0
  614. /package/skills/{ella/vue-expert → vue-expert}/references/composition-api.md +0 -0
  615. /package/skills/{ella/vue-expert → vue-expert}/references/mobile-hybrid.md +0 -0
  616. /package/skills/{ella/vue-expert → vue-expert}/references/nuxt.md +0 -0
  617. /package/skills/{ella/vue-expert → vue-expert}/references/state-management.md +0 -0
  618. /package/skills/{ella/vue-expert → vue-expert}/references/typescript.md +0 -0
  619. /package/skills/{ella/vue-expert-js → vue-expert-js}/SKILL.md +0 -0
  620. /package/skills/{ella/vue-expert-js → vue-expert-js}/references/component-architecture.md +0 -0
  621. /package/skills/{ella/vue-expert-js → vue-expert-js}/references/composables-patterns.md +0 -0
  622. /package/skills/{ella/vue-expert-js → vue-expert-js}/references/jsdoc-typing.md +0 -0
  623. /package/skills/{ella/vue-expert-js → vue-expert-js}/references/state-management.md +0 -0
  624. /package/skills/{ella/vue-expert-js → vue-expert-js}/references/testing-patterns.md +0 -0
  625. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/SKILL.md +0 -0
  626. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/alternatives.md +0 -0
  627. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/patterns.md +0 -0
  628. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/protocol.md +0 -0
  629. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/scaling.md +0 -0
  630. /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/security.md +0 -0
@@ -18,37 +18,29 @@ export async function check(ctx) {
18
18
  return
19
19
  }
20
20
 
21
- const runAllPath = join(PROJECT_ROOT, 'scripts/harness/run-all.sh')
22
- if (!existsSync(runAllPath)) {
23
- log.error('传感器脚本不存在: scripts/harness/run-all.sh')
24
- log.info('请运行 aigroup update 重新安装传感器')
21
+ const dispatcherPath = join(PROJECT_ROOT, 'scripts/hooks/dispatcher.cjs')
22
+ if (!existsSync(dispatcherPath)) {
23
+ log.error('Hook dispatcher 不存在: scripts/hooks/dispatcher.cjs')
24
+ log.info('请运行 aigroup update 重新安装')
25
25
  return
26
26
  }
27
27
 
28
28
  try {
29
29
  const { execSync } = await import('node:child_process')
30
- const output = execSync('bash scripts/harness/run-all.sh', {
30
+ const output = execSync('node scripts/hooks/dispatcher.cjs stop', {
31
31
  cwd: PROJECT_ROOT,
32
32
  encoding: 'utf-8',
33
33
  stdio: 'pipe',
34
+ input: '{}',
34
35
  timeout: 30000,
35
36
  })
36
37
 
37
- // 直接输出传感器结果
38
- console.log(output)
39
-
40
- if (output.includes('全部通过')) {
41
- process.exit(0)
42
- } else {
43
- process.exit(1)
44
- }
38
+ if (output.trim()) console.log(output)
39
+ log.success('Harness 检查通过')
40
+ process.exit(0)
45
41
  } catch (err) {
46
- if (err.stdout) {
47
- console.log(err.stdout)
48
- }
49
- if (err.stderr) {
50
- console.error(err.stderr)
51
- }
42
+ if (err.stdout) console.log(err.stdout)
43
+ if (err.stderr) console.error(err.stderr)
52
44
  log.error('Harness 检查发现问题,请根据 [FIX] 指令修复')
53
45
  process.exit(err.status || 1)
54
46
  }
@@ -1,11 +1,21 @@
1
1
  /**
2
- * init 命令 — 完整初始化,交互式选择角色和技能
2
+ * init 命令 — 完整初始化,交互式选择 skill 模块和目标 harness
3
+ *
4
+ * Phase 4 起不再按三角色选择,改为按 manifest 中的 skill 模块选择。
3
5
  */
4
6
 
5
- import { existsSync } from 'node:fs'
6
- import { join } from 'node:path'
7
- import { confirm, multiSelect, input } from '../utils/prompts.mjs'
8
- import { scaffold, writeConfig, readConfig, isInitialized, AGENT_ASSETS } from '../utils/scaffold.mjs'
7
+ import { confirm, multiSelect } from '../utils/prompts.mjs'
8
+ import {
9
+ scaffold,
10
+ writeConfig,
11
+ readConfig,
12
+ isInitialized,
13
+ getSkillModules,
14
+ getDefaultSkillModuleIds,
15
+ getAgentModules,
16
+ getDefaultAgentModuleIds,
17
+ listAvailableAgents,
18
+ } from '../utils/scaffold.mjs'
9
19
  import * as log from '../utils/logger.mjs'
10
20
 
11
21
  export async function init(ctx) {
@@ -13,7 +23,7 @@ export async function init(ctx) {
13
23
  const skipPrompt = hasFlag('yes')
14
24
 
15
25
  log.banner()
16
- log.step('初始化 aiGroup 框架')
26
+ log.step('初始化 aiGroup 框架(双端:Claude Code + Codex)')
17
27
  log.dim(`目标目录: ${PROJECT_ROOT}`)
18
28
 
19
29
  // ── 1. 检查是否已初始化 ──
@@ -22,7 +32,8 @@ export async function init(ctx) {
22
32
  log.warn('检测到项目已初始化 aiGroup 框架')
23
33
 
24
34
  if (existingConfig) {
25
- log.dim(`已安装角色: ${existingConfig.agents?.join(', ') || '未知'}`)
35
+ log.dim(`已安装模块: ${existingConfig.modules?.join(', ') || existingConfig.agents?.join(', ') || '未知'}`)
36
+ log.dim(`已启用 harness: ${existingConfig.targets?.join(', ') || '未知'}`)
26
37
  log.dim(`安装时间: ${existingConfig.installedAt || '未知'}`)
27
38
  }
28
39
 
@@ -35,37 +46,103 @@ export async function init(ctx) {
35
46
  }
36
47
  }
37
48
 
38
- // ── 2. 选择角色 ──
39
- let selectedAgents
40
-
49
+ // ── 2. 选择 harness ──
50
+ let selectedTargets
41
51
  if (skipPrompt) {
42
- selectedAgents = ['jarvis', 'ella', 'kyle']
43
- log.info('使用默认配置:全部角色')
52
+ selectedTargets = ['claude', 'codex']
53
+ log.info('使用默认配置:Claude Code + Codex 双端')
44
54
  } else {
45
- selectedAgents = await multiSelect('选择要安装的团队成员', [
46
- { name: '贾维斯 (Jarvis)', value: 'jarvis', description: '全栈开发工程师 · 45 Skills', checked: true },
47
- { name: '艾拉 (Ella)', value: 'ella', description: 'UI/UX 设计师 · 10 Skills', checked: true },
48
- { name: '凯尔 (Kyle)', value: 'kyle', description: '质量保证工程师 · 7 Skills', checked: true },
55
+ selectedTargets = await multiSelect('选择要启用的 AI harness', [
56
+ { name: 'Claude Code', value: 'claude', description: '原生 subagent 派遣 + hooks 自动化', checked: true },
57
+ { name: 'Codex CLI', value: 'codex', description: '3 Codex 原生 persona + skill 加载', checked: true },
49
58
  ])
50
59
 
51
- if (selectedAgents.length === 0) {
52
- log.warn('至少需要选择一个角色,已自动选择 Jarvis')
53
- selectedAgents = ['jarvis']
60
+ if (selectedTargets.length === 0) {
61
+ log.warn('至少需要选择一个 harness,已自动选择 Claude Code')
62
+ selectedTargets = ['claude']
54
63
  }
55
64
  }
56
65
 
57
- // ── 3. 确认安装 ──
66
+ // ── 3. 选择 skill 模块 ──
67
+ const allSkillModules = getSkillModules(PKG_ROOT)
68
+ let selectedModules
69
+
70
+ if (skipPrompt) {
71
+ selectedModules = getDefaultSkillModuleIds(PKG_ROOT)
72
+ log.info(`使用默认 skill 模块:${selectedModules.join(', ')}`)
73
+ } else {
74
+ const choices = allSkillModules.map(mod => ({
75
+ name: `${mod.id} — ${mod.description}`,
76
+ value: mod.id,
77
+ description: `路径数: ${mod.paths.length} · 成本: ${mod.cost || 'n/a'}`,
78
+ checked: mod.defaultInstall === true,
79
+ }))
80
+
81
+ selectedModules = await multiSelect('选择要安装的 skill 模块', choices)
82
+
83
+ if (selectedModules.length === 0) {
84
+ log.warn('至少需要选择一个模块,已自动选择默认集')
85
+ selectedModules = getDefaultSkillModuleIds(PKG_ROOT)
86
+ }
87
+ }
88
+
89
+ // ── 3b. 选择 agent 模块(仅 Claude target 启用时) ──
90
+ let selectedAgentModules = []
91
+ if (selectedTargets.includes('claude')) {
92
+ const allAgentModules = getAgentModules(PKG_ROOT)
93
+ const totalAgents = listAvailableAgents(PKG_ROOT).length
94
+
95
+ if (skipPrompt) {
96
+ selectedAgentModules = getDefaultAgentModuleIds(PKG_ROOT)
97
+ log.info(`使用默认 agent 模块:${selectedAgentModules.join(', ')}`)
98
+ } else {
99
+ log.info(`agent 源池共 ${totalAgents} 个,按模块分组按需选`)
100
+ const agentChoices = allAgentModules.map(mod => ({
101
+ name: `${mod.id} — ${mod.description}`,
102
+ value: mod.id,
103
+ description: `agent 数: ${mod.agents.length} · 稳定性: ${mod.stability || 'stable'}`,
104
+ checked: mod.defaultInstall === true,
105
+ }))
106
+
107
+ selectedAgentModules = await multiSelect('选择要安装的 agent 模块', agentChoices)
108
+
109
+ if (selectedAgentModules.length === 0) {
110
+ log.warn('未选 agent,将至少安装 agents-core')
111
+ selectedAgentModules = ['agents-core']
112
+ }
113
+ }
114
+ }
115
+
116
+ // ── 4. 确认安装 ──
58
117
  log.step('安装清单')
59
- log.dim('基础组件:')
60
- log.dim(' • CLAUDE.md(项目入口)')
61
- log.dim(' • docs/(知识库文档 x8)')
62
- log.dim(' • scripts/harness/(传感器 x6)')
63
- log.dim(' • skills/max/workflow/(工作流技能 x11)')
64
- log.dim(' • .claude/hooks.json(自动化 Hook)')
118
+ log.dim('基础组件(必装):')
119
+ log.dim(' • CLAUDE.md + AGENTS.md(双端入口)')
120
+ log.dim(' • docs/(rules/agents(ECC 派遣)+ rules/<lang>(13 语言)+ workflow-pipeline + red-flags)')
121
+ log.dim(' • scripts/hooks/(dispatcher + checks)+ scripts/orchestration/(session.cjs)')
122
+ log.dim(' • manifests/install-modules.json(跨端清单)')
123
+ log.dim(' • .orchestration/<session>/(产物工作区)')
65
124
  log.dim('')
66
- log.dim('团队成员:')
67
- for (const agentId of selectedAgents) {
68
- log.dim(` • ${AGENT_ASSETS[agentId].label}`)
125
+ log.dim('启用的 harness:')
126
+ for (const t of selectedTargets) {
127
+ const label = t === 'claude'
128
+ ? 'Claude Code(commands + hooks + 已选 agent 模块)'
129
+ : 'Codex CLI(3 persona + config.toml + plugin)'
130
+ log.dim(` • ${label}`)
131
+ }
132
+ log.dim('')
133
+ if (selectedAgentModules.length > 0) {
134
+ const allAgentModules = getAgentModules(PKG_ROOT)
135
+ log.dim('Agent 模块:')
136
+ for (const modId of selectedAgentModules) {
137
+ const mod = allAgentModules.find(m => m.id === modId)
138
+ if (mod) log.dim(` • ${modId}(${mod.agents.length} 个 agent)— ${mod.description}`)
139
+ }
140
+ log.dim('')
141
+ }
142
+ log.dim('Skill 模块:')
143
+ for (const modId of selectedModules) {
144
+ const mod = allSkillModules.find(m => m.id === modId)
145
+ if (mod) log.dim(` • ${modId}(${mod.paths.length} 个 skill)— ${mod.description}`)
69
146
  }
70
147
 
71
148
  if (!skipPrompt) {
@@ -76,11 +153,13 @@ export async function init(ctx) {
76
153
  }
77
154
  }
78
155
 
79
- // ── 4. 执行安装 ──
156
+ // ── 5. 执行安装 ──
80
157
  log.step('正在安装...')
81
158
 
82
159
  const result = scaffold(PKG_ROOT, PROJECT_ROOT, {
83
- agents: selectedAgents,
160
+ modules: selectedModules,
161
+ agentModules: selectedAgentModules,
162
+ targets: selectedTargets,
84
163
  overwrite: skipPrompt || isInitialized(PROJECT_ROOT),
85
164
  })
86
165
 
@@ -92,51 +171,56 @@ export async function init(ctx) {
92
171
  }
93
172
  }
94
173
 
95
- // ── 5. 写入配置 ──
174
+ // ── 6. 写入配置 ──
96
175
  writeConfig(PROJECT_ROOT, {
97
- version: '1.0.0',
98
- agents: selectedAgents,
176
+ version: '2.0.0',
177
+ targets: selectedTargets,
178
+ modules: selectedModules,
179
+ agentModules: selectedAgentModules,
99
180
  installedAt: new Date().toISOString().split('T')[0],
100
181
  updatedAt: new Date().toISOString().split('T')[0],
101
182
  })
102
183
  log.success('配置已保存到 .aigroup.json')
103
184
 
104
- // ── 6. 运行健康检查 ──
185
+ // ── 7. 运行健康检查 ──
105
186
  log.step('运行 Harness 健康检查...')
106
187
 
107
188
  try {
108
189
  const { execSync } = await import('node:child_process')
109
- const output = execSync('bash scripts/harness/run-all.sh', {
190
+ execSync('node scripts/hooks/dispatcher.cjs stop', {
110
191
  cwd: PROJECT_ROOT,
111
192
  encoding: 'utf-8',
193
+ input: '{}',
112
194
  timeout: 30000,
113
195
  })
114
-
115
- if (output.includes('全部通过')) {
116
- log.success('Harness 健康检查通过')
117
- } else {
118
- log.warn('Harness 检查发现问题,请查看上方输出')
119
- }
196
+ log.success('Harness 健康检查通过')
120
197
  } catch (err) {
121
- log.warn('Harness 检查未能运行(可能缺少 bash 环境)')
122
- log.dim('手动运行: bash scripts/harness/run-all.sh')
198
+ if (err.stderr) console.error(err.stderr.toString())
199
+ log.warn('Harness 检查发现问题,请根据 [FIX] 指令修复')
200
+ log.dim('手动运行: node scripts/hooks/dispatcher.cjs stop')
123
201
  }
124
202
 
125
- // ── 7. 完成 ──
203
+ // ── 8. 完成 ──
126
204
  console.log('')
127
205
  log.step('安装完成!')
128
206
  console.log(`
129
207
  ${result.totalCopied} 个文件已安装到项目中。
130
208
 
131
209
  下一步:
132
- 1. 阅读 CLAUDE.md 了解框架入口
133
- 2. 使用工作流管道开始开发:
134
- bash scripts/harness/workflow-state.sh init <任务名>
210
+ 1. 阅读 ${selectedTargets.includes('claude') ? 'CLAUDE.md' : 'AGENTS.md'} 了解入口
211
+ 2. 开始一个任务 session:
212
+ node scripts/orchestration/session.cjs init <任务名>
213
+ 或在 Claude Code 中用 /workflow-start <任务名>
135
214
  3. 定期运行健康检查:
136
215
  aigroup check
137
216
 
138
- 工作流管道(8 阶段):
217
+ Phase 心智模型(按需裁剪):
139
218
  需求收集 → 需求验证 → 方案设计 → 任务拆解
140
219
  → 实施开发 → 测试验证 → 文档更新 → 分支收尾
220
+
221
+ 派遣规则主源: docs/rules/agents.md
222
+ Phase 裁剪示例: docs/workflow-pipeline.md
223
+ 危险信号: docs/red-flags.md
224
+ Codex 端差异: .codex/AGENTS.md
141
225
  `)
142
226
  }
@@ -1,8 +1,8 @@
1
1
  /**
2
- * status 命令 — 查看工作流状态和项目概况
2
+ * status 命令 — 查看工作流 session 状态和项目概况
3
3
  */
4
4
 
5
- import { existsSync, readFileSync, readdirSync } from 'node:fs'
5
+ import { existsSync, readFileSync, readdirSync, statSync } from 'node:fs'
6
6
  import { join } from 'node:path'
7
7
  import { readConfig, isInitialized } from '../utils/scaffold.mjs'
8
8
  import * as log from '../utils/logger.mjs'
@@ -27,45 +27,57 @@ export async function status(ctx) {
27
27
  log.dim(`更新: ${config.updatedAt || '未知'}`)
28
28
  }
29
29
 
30
- // ── 工作流状态 ──
31
- log.step('工作流状态')
30
+ // ── 协调 session 列表 ──
31
+ log.step('活跃 session')
32
32
 
33
- const statePath = join(PROJECT_ROOT, '.dev-agents/shared/.workflow-state')
34
- if (existsSync(statePath)) {
35
- try {
36
- const { execSync } = await import('node:child_process')
37
- const output = execSync('bash scripts/harness/workflow-state.sh status', {
38
- cwd: PROJECT_ROOT,
39
- encoding: 'utf-8',
40
- timeout: 5000,
41
- })
42
- console.log(output)
43
- } catch {
44
- const content = readFileSync(statePath, 'utf-8')
45
- console.log(` ${content}`)
46
- }
33
+ const coordRoot = join(PROJECT_ROOT, '.orchestration')
34
+ const sessions = existsSync(coordRoot)
35
+ ? readdirSync(coordRoot, { withFileTypes: true })
36
+ .filter(d => d.isDirectory() && !d.name.startsWith('.'))
37
+ .map(d => d.name)
38
+ : []
39
+
40
+ if (sessions.length === 0) {
41
+ log.dim('当前无活跃 session(.orchestration/ 下无 session 目录)')
47
42
  } else {
48
- log.dim('当前无活跃工作流')
43
+ for (const session of sessions) {
44
+ log.dim(` ▸ ${session}`)
45
+ const sessionDir = join(coordRoot, session)
46
+ const workers = readdirSync(sessionDir, { withFileTypes: true })
47
+ .filter(d => d.isDirectory())
48
+ for (const worker of workers) {
49
+ const statusFile = join(sessionDir, worker.name, 'status.md')
50
+ if (!existsSync(statusFile)) continue
51
+ const raw = readFileSync(statusFile, 'utf-8')
52
+ const match = raw.match(/^\s*-\s*State:\s*(\S+)/m)
53
+ log.dim(` ${worker.name}: ${match ? match[1] : '?'}`)
54
+ }
55
+ }
49
56
  }
50
57
 
51
58
  // ── 产物统计 ──
52
- log.step('产物统计')
59
+ log.step('协调产物统计')
53
60
 
54
- const sharedDir = join(PROJECT_ROOT, '.dev-agents/shared')
55
- const counts = {
56
- designs: countFiles(join(sharedDir, 'designs'), '.md'),
57
- tasks: countFiles(join(sharedDir, 'tasks'), '.md'),
58
- reviews: countFiles(join(sharedDir, 'reviews'), '.md'),
61
+ let handoffs = 0
62
+ let tasks = 0
63
+ for (const session of sessions) {
64
+ const sessionDir = join(coordRoot, session)
65
+ const workers = readdirSync(sessionDir, { withFileTypes: true })
66
+ .filter(d => d.isDirectory())
67
+ for (const worker of workers) {
68
+ const wd = join(sessionDir, worker.name)
69
+ if (existsSync(join(wd, 'handoff.md'))) handoffs += 1
70
+ if (existsSync(join(wd, 'task.md'))) tasks += 1
71
+ }
59
72
  }
60
-
61
- log.dim(`设计文档: ${counts.designs} 个`)
62
- log.dim(`实现计划: ${counts.tasks} 个`)
63
- log.dim(`审查报告: ${counts.reviews} 个`)
73
+ log.dim(`session 数: ${sessions.length}`)
74
+ log.dim(`task.md 数: ${tasks}`)
75
+ log.dim(`handoff.md 数: ${handoffs}`)
64
76
 
65
77
  // ── 技能清单 ──
66
78
  log.step('已安装技能')
67
79
 
68
- const workflowDir = join(PROJECT_ROOT, 'skills/max/workflow')
80
+ const workflowDir = join(PROJECT_ROOT, 'skills/workflow')
69
81
  if (existsSync(workflowDir)) {
70
82
  const skills = readdirSync(workflowDir).filter(d => {
71
83
  return existsSync(join(workflowDir, d, 'SKILL.md'))
@@ -78,12 +90,3 @@ export async function status(ctx) {
78
90
 
79
91
  console.log('')
80
92
  }
81
-
82
- function countFiles(dir, ext) {
83
- if (!existsSync(dir)) return 0
84
- try {
85
- return readdirSync(dir).filter(f => f.endsWith(ext)).length
86
- } catch {
87
- return 0
88
- }
89
- }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * update 命令 — 增量更新技能和传感器,不覆盖用户自定义
2
+ * update 命令 — 增量更新 skill 模块、适配层和传感器,不覆盖用户自定义
3
3
  */
4
4
 
5
5
  import { scaffoldUpdate, readConfig, writeConfig, isInitialized } from '../utils/scaffold.mjs'
@@ -13,7 +13,6 @@ export async function update(ctx) {
13
13
  log.banner()
14
14
  log.step('增量更新')
15
15
 
16
- // 检查是否已初始化
17
16
  if (!isInitialized(PROJECT_ROOT)) {
18
17
  log.error('项目尚未初始化 aiGroup 框架')
19
18
  log.info('请先运行: aigroup init')
@@ -22,22 +21,23 @@ export async function update(ctx) {
22
21
 
23
22
  const config = readConfig(PROJECT_ROOT)
24
23
  if (config) {
25
- log.dim(`已安装角色: ${config.agents?.join(', ')}`)
24
+ const modules = config.modules || config.agents /* 兼容旧配置 */ || []
25
+ const targets = config.targets || ['claude']
26
+ log.dim(`已启用 harness: ${targets.join(', ')}`)
27
+ log.dim(`已安装模块: ${modules.join(', ') || '无'}`)
26
28
  log.dim(`上次更新: ${config.updatedAt || config.installedAt || '未知'}`)
27
29
  }
28
30
 
29
- // 说明更新范围
30
31
  log.step('更新范围')
31
32
  log.dim('将覆盖更新:')
32
33
  log.dim(' • scripts/harness/*(传感器脚本)')
33
- log.dim(' • skills/max/workflow/*(工作流技能)')
34
- log.dim(' • .claude/commands/*(通用命令)')
35
- log.dim(' • .claude/agents/*(原生子代理定义)')
34
+ log.dim(' • 已启用 harness 的适配层(.claude/ 或 .codex/)')
35
+ log.dim(' • 已选模块下的 skill 目录')
36
+ log.dim(' • docs/(主源文档)+ manifests/')
36
37
  log.dim('')
37
38
  log.dim('不会触碰:')
38
- log.dim(' • CLAUDE.md(项目入口)')
39
- log.dim(' • docs/*(知识库文档)')
40
- log.dim(' • .dev-agents/shared/*(工作产物)')
39
+ log.dim(' • .orchestration/<session>/*(工作产物)')
40
+ log.dim(' • .aigroup.json(配置文件仅更新时间戳)')
41
41
 
42
42
  if (!skipPrompt) {
43
43
  const proceed = await confirm('确认更新?', true)
@@ -47,7 +47,6 @@ export async function update(ctx) {
47
47
  }
48
48
  }
49
49
 
50
- // 执行更新
51
50
  log.step('正在更新...')
52
51
 
53
52
  const result = scaffoldUpdate(PKG_ROOT, PROJECT_ROOT)
@@ -58,7 +57,6 @@ export async function update(ctx) {
58
57
  }
59
58
  }
60
59
 
61
- // 更新配置时间戳
62
60
  if (config) {
63
61
  config.updatedAt = new Date().toISOString().split('T')[0]
64
62
  writeConfig(PROJECT_ROOT, config)