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
@@ -0,0 +1,87 @@
1
+ ---
2
+ description: 启动一个分阶段工作流会话,按需裁剪 phase 并派遣专项 agent
3
+ argument-hint: <任务名>
4
+ ---
5
+
6
+ ## 用法
7
+
8
+ `/workflow-start <任务名>`
9
+
10
+ 主会话作为唯一的 orchestrator,按以下 phase 推进任务;**每个 phase 按需裁剪**——不是所有任务都要跑完 8 phase(bugfix 可能只需要 planning + development + testing)。
11
+
12
+ ## 启动步骤
13
+
14
+ 1. **确认任务名**——若 `$ARGUMENTS` 为空,向用户询问 slug 化的短名(如 `refactor-auth`、`add-payment`)。
15
+ 2. **创建 session**:
16
+
17
+ ```bash
18
+ node scripts/orchestration/session.cjs init <任务名>
19
+ ```
20
+
21
+ 3. **评估裁剪**:读完需求后明确告诉用户"这个任务会跑哪些 phase,为什么"。
22
+
23
+ ## Phases(按需裁剪)
24
+
25
+ 每个 phase 都按这个格式执行:
26
+
27
+ - **目标**一句话说明
28
+ - **负责 agent**(用 `Agent({ subagent_type: "..." })` 派遣;主会话不亲自实现)
29
+ - **worker 目录**:`.orchestration/<session>/<worker>/`
30
+ - **产物**:主会话把 agent 响应写入 `handoff.md`,然后 `session.cjs set-status <session> <worker> completed`
31
+
32
+ | # | Phase | 负责 agent / skill | worker 目录 |
33
+ |---|-------|--------------------|-------------|
34
+ | 1 | 需求收集 | 主会话 + `skills/requirement-engineering` | `.orchestration/<session>/architect/` (requirements.md) |
35
+ | 2 | 需求验证 | 主会话 + `skills/requirement-engineering` | 同上,追加验证结论 |
36
+ | 3 | 方案设计 | `architect` | `.orchestration/<session>/architect/handoff.md` |
37
+ | 4 | 任务拆解 | `planner` | `.orchestration/<session>/planner/handoff.md` |
38
+ | 5 | 实施开发(TDD) | `tdd-guide` | `.orchestration/<session>/tdd-guide/handoff.md` |
39
+ | 6 | 测试验证 | `code-reviewer`(安全敏感加 `security-reviewer`、`e2e-runner` 或 `rust-reviewer` 等) | `.orchestration/<session>/code-reviewer/handoff.md` |
40
+ | 7 | 文档更新 | 主会话(必要时派实现 agent 协助) | 直接改 docs/;在 session README 留笔记 |
41
+ | 8 | 分支收尾 | 主会话 + `skills/finishing-a-development-branch` | 在 session README 总结 |
42
+
43
+ ## 裁剪示例
44
+
45
+ | 任务类型 | 建议 phases |
46
+ |---------|------------|
47
+ | 纯 bugfix | 4 → 5 → 6 |
48
+ | 小功能增补 | 3 → 4 → 5 → 6 |
49
+ | 新模块 / 架构决策 | 1 → 2 → 3 → 4 → 5 → 6 → 7 → 8 |
50
+ | 重构 | 3 → 4 → 5 → 6 |
51
+ | 纯文档 | 7(直接做,不用走 session) |
52
+
53
+ ## 状态真相源
54
+
55
+ 唯一真相源是 `.orchestration/<session>/<worker>/status.md`(由 `session.cjs set-status` 维护)。不要引入第二个状态机。
56
+
57
+ ## 横切 skill(任何 phase 可触发)
58
+
59
+ - `skills/systematic-debugging`(调试时)
60
+ - `skills/verification-before-completion`(声称完成前)
61
+ - `skills/entropy-management`(感知到漂移时)
62
+
63
+ ## 不启动 session 的情况
64
+
65
+ - 单行修改、配置项调整、文档笔误 —— 直接做
66
+ - 纯知识问答、方案讨论 —— 直接答
67
+ - 探索性代码调研 —— 直接读文件即可
68
+
69
+ 判断标准:如果**没有 ≥2 个 worker 产物**、也**没有需要事后追溯的证据链**,就不要建 session。
70
+
71
+ ## 命令矩阵(按任务规模选)
72
+
73
+ | 命令 | 是否建 session | 适用任务 |
74
+ |------|---------------|---------|
75
+ | 直接对话 | 否 | 笔误、单行修改、知识问答 |
76
+ | `/plan <任务>` | 否 | 已知需求,需要拆步骤 |
77
+ | `/review` | 否 | 审一下 git diff |
78
+ | `/fix-build` | 否 | 修构建/类型错误 |
79
+ | `/tdd <功能>` | 否 | TDD 增量开发 |
80
+ | `/workflow-start <任务名>` | **是** | 需要 ≥2 个 worker 协作、需追溯证据链 |
81
+ | `/init-project <名称>` | 否 | 项目初始化(生成 CLAUDE.md 索引) |
82
+
83
+ ## 参考
84
+
85
+ - 派遣规则:`docs/rules/agents.md`
86
+ - 危险信号:`docs/red-flags.md`
87
+ - Phase 心智模型:`docs/workflow-pipeline.md`
@@ -5,7 +5,7 @@
5
5
  "hooks": [
6
6
  {
7
7
  "type": "command",
8
- "command": "bash scripts/harness/hook-post-edit.sh",
8
+ "command": "node scripts/hooks/dispatcher.cjs post-edit",
9
9
  "timeout": 10
10
10
  }
11
11
  ]
@@ -17,7 +17,7 @@
17
17
  "hooks": [
18
18
  {
19
19
  "type": "command",
20
- "command": "bash scripts/harness/hook-stop.sh",
20
+ "command": "node scripts/hooks/dispatcher.cjs stop",
21
21
  "timeout": 30
22
22
  }
23
23
  ]
@@ -29,7 +29,7 @@
29
29
  "hooks": [
30
30
  {
31
31
  "type": "command",
32
- "command": "bash scripts/harness/hook-subagent-stop.sh",
32
+ "command": "node scripts/hooks/dispatcher.cjs subagent-stop",
33
33
  "timeout": 15
34
34
  }
35
35
  ]
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "aigroup-workflow",
3
+ "version": "1.3.0",
4
+ "description": "AI team workflow harness for Claude Code — specialist agents, shared skills, slash commands, hooks, and staged delegation pipeline.",
5
+ "author": {
6
+ "name": "shuaishuai-li"
7
+ },
8
+ "repository": "https://github.com/shuaishuai-li/ai-agent-workflowGroup",
9
+ "license": "MIT",
10
+ "keywords": [
11
+ "claude-code",
12
+ "agents",
13
+ "skills",
14
+ "workflow",
15
+ "harness",
16
+ "ai-team"
17
+ ],
18
+ "skills": ["./skills/"],
19
+ "commands": ["./.claude/commands/"]
20
+ }
@@ -0,0 +1,107 @@
1
+ # aiGroup for Codex CLI
2
+
3
+ > 本文件是根 `AGENTS.md` 的 Codex 专属补充。**agent 派遣规则与 Claude Code 端共享一份**——见 `docs/rules/agents.md`。
4
+ > 本文件只讲 Codex 端独有的:模型 / Skills 加载方式 / MCP / Codex 原生 persona / 无 hook 兜底。
5
+
6
+ ## 模型推荐
7
+
8
+ | 任务类型 | 推荐模型 |
9
+ |----------|----------|
10
+ | 常规编码、测试、格式化 | GPT 5.4 |
11
+ | 复杂功能、架构 | GPT 5.4 |
12
+ | 代码审查、安全 | GPT 5.4(reasoning_effort = high) |
13
+ | 只读探索、文档研究 | GPT 5.4(reasoning_effort = medium) |
14
+
15
+ ## Skills 加载
16
+
17
+ Skills 主源位于 `skills/<name>/SKILL.md`,跨平台共享。Codex 端**按任务意图加载文件路径**——不像 Claude Code 那样自动发现。
18
+
19
+ 常用入口:
20
+
21
+ - `skills/writing-plans/SKILL.md` — 规划
22
+ - `skills/requirement-engineering/SKILL.md` — 需求收集与验证
23
+ - `skills/architecture-designer/SKILL.md` — 架构设计
24
+ - `skills/api-designer/SKILL.md` — API 契约
25
+ - `skills/code-reviewer/SKILL.md` — 代码审查
26
+ - `skills/security-reviewer/SKILL.md` — 安全审查
27
+ - `skills/tdd-guide/SKILL.md` / `skills/test-master/SKILL.md` — 测试
28
+ - `skills/systematic-debugging/SKILL.md` — 调试
29
+ - `skills/verification-before-completion/SKILL.md` — 完成前验证
30
+
31
+ 完整分类见 `manifests/install-modules.json`。
32
+
33
+ ## Codex 原生 Persona
34
+
35
+ `.codex/config.toml` 声明的 3 个 persona——**不是和 Claude agent 一一映射**,而是 Codex 自身需要"切换 sandbox / reasoning_effort"才生效的场景:
36
+
37
+ | Persona | 用途 |
38
+ |---------|------|
39
+ | `explorer` | 只读 sandbox,证据收集与执行路径追踪 |
40
+ | `reviewer` | 高 reasoning,代码 + 安全审查 |
41
+ | `docs_researcher` | API / 文档 / 版本行为查证(带网络访问) |
42
+
43
+ 切换方式:
44
+
45
+ ```bash
46
+ /agent explorer
47
+ /agent reviewer
48
+ /agent docs_researcher
49
+ ```
50
+
51
+ **其他工作(planning / implementation / build-fixing)由 Codex 主对话直接做**——加载对应 skill 即可,无需切 persona。这也是与 ECC 一致的做法。
52
+
53
+ ## MCP 服务器
54
+
55
+ 项目级基线(`.codex/config.toml`)启用:GitHub、Context7、Memory、Sequential-Thinking。
56
+
57
+ 预算规则见 `docs/rules/performance.md`:单项目启用 MCP 少于 10 个,活跃工具少于 80 个。Playwright / Exa 按需取消注释。重型服务器(Supabase、Firecrawl、Cloudflare)推荐放到用户级 `~/.codex/config.toml`,不要进入项目默认必启基线。
58
+
59
+ ## 与 Claude Code 的关键差异
60
+
61
+ | 特性 | Claude Code | Codex CLI |
62
+ |------|-------------|-----------|
63
+ | Hooks | 自动触发 PostToolUse / Stop / SubagentStop | **不支持** —— 必须主动运行 dispatcher |
64
+ | Skill 发现 | 启动时自动加载 `skills/` | 按路径手动加载 |
65
+ | 命令 | `/slash` commands(`.claude/commands/`) | 主对话指令 + `/agent <persona>` |
66
+ | 子代理派遣 | `Agent({ subagent_type })` 工具调用 | 主对话直接对话;persona 通过 `/agent` 切换 |
67
+ | 安全强制 | Hook + 指令 | 指令 + sandbox 模式(`read-only` / `workspace-write`) |
68
+ | MCP | 完整支持 | `config.toml` 或 `codex mcp add` |
69
+
70
+ ## 无 Hooks 的兜底强制
71
+
72
+ Codex 端必须**主动**执行以下动作(Claude Code 由 hooks 自动):
73
+
74
+ 1. 任何变更完成 → 跑 `node scripts/hooks/dispatcher.cjs stop`
75
+ 2. 进入 reviewer persona 审完代码 → 跑 `node scripts/hooks/dispatcher.cjs subagent-stop`
76
+ 3. 安全敏感代码(auth / 支付 / PII / 外部输入)→ 强制走 reviewer persona,不能跳过
77
+ 4. 提交前跑 `npm audit` / `pip-audit` / `bundle audit`
78
+ 5. `git diff` 人肉过一遍再推
79
+
80
+ ## 常用命令
81
+
82
+ ```bash
83
+ # 进入项目
84
+ codex
85
+
86
+ # 指定 profile(严格只读 / 放任修改)
87
+ codex -p strict
88
+ codex -p yolo
89
+
90
+ # 切换到 persona
91
+ /agent explorer
92
+ /agent reviewer
93
+ /agent docs_researcher
94
+
95
+ # MCP 检查
96
+ codex mcp list
97
+ ```
98
+
99
+ ## 完整 agent 派遣表
100
+
101
+ 参见 `docs/rules/agents.md`——agent 体系**两端共享**,没有"对照映射表"。Codex 端要派"等价于 Claude `tdd-guide`"的工作时:
102
+
103
+ - 切回主对话(不需要 persona)
104
+ - 加载 `skills/tdd-guide/SKILL.md` + 对应框架 / 栈 skill(如 `skills/react-expert/SKILL.md`)
105
+ - 按 rules/agents.md 中 `tdd-guide` 的输出格式执行
106
+
107
+ 审查工作走 `reviewer` persona,调研走 `explorer` persona,文档查证走 `docs_researcher` persona——这三个是 Codex 因 sandbox / reasoning 配置不同**才需要**切换的场景。
@@ -0,0 +1,14 @@
1
+ model = "gpt-5.4"
2
+ model_reasoning_effort = "medium"
3
+ sandbox_mode = "read-only"
4
+
5
+ developer_instructions = """
6
+ You are the aiGroup Codex docs researcher.
7
+
8
+ Verify API, framework, and third-party library behavior against authoritative sources.
9
+ - Use web_search and context7 MCP when available to confirm current behavior.
10
+ - Check official docs, release notes, and breaking-change lists before answering.
11
+ - Cite the source URL and version for every non-trivial claim.
12
+ - Do NOT write code; produce a concise research memo with: question, source, answer, impact on the current task.
13
+ - Flag any deprecated APIs or version mismatches against project dependencies.
14
+ """
@@ -0,0 +1,14 @@
1
+ model = "gpt-5.4"
2
+ model_reasoning_effort = "medium"
3
+ sandbox_mode = "read-only"
4
+
5
+ developer_instructions = """
6
+ You are the aiGroup Codex explorer.
7
+
8
+ Stay in exploration mode. Gather evidence only — do not propose fixes unless the parent agent asks.
9
+ - Read AGENTS.md first.
10
+ - Trace real execution paths; cite files and line numbers.
11
+ - Prefer targeted search (rg) and file reads over broad scans.
12
+ - Return findings as a structured report: files touched, key symbols, call sites, suspected risk surface.
13
+ - Load skills by task intent, not by legacy role (e.g. skills/systematic-debugging/SKILL.md).
14
+ """
@@ -0,0 +1,16 @@
1
+ model = "gpt-5.4"
2
+ model_reasoning_effort = "high"
3
+ sandbox_mode = "read-only"
4
+
5
+ developer_instructions = """
6
+ You are the aiGroup Codex reviewer.
7
+
8
+ Review like an owner. Report findings only; do not rewrite code.
9
+ - Prioritize correctness, behavioral regressions, missing tests, and security issues.
10
+ - Lead with concrete findings citing file paths and line numbers.
11
+ - Confidence filter: report only when >80% sure it is a real issue.
12
+ - Consolidate similar issues; skip pure style preferences.
13
+ - For security-sensitive areas (auth, payments, PII, external input), load skills/security-reviewer/SKILL.md and apply OWASP Top 10 check.
14
+ - Output: findings grouped by severity (CRITICAL/HIGH/MEDIUM/LOW), followed by a verdict — APPROVE / REQUEST_CHANGES / BLOCK.
15
+ - Include validation evidence (test results, audit output) when relevant.
16
+ """
@@ -0,0 +1,93 @@
1
+ #:schema https://developers.openai.com/codex/config-schema.json
2
+
3
+ # aiGroup — Codex 本地配置
4
+ #
5
+ # 用法:
6
+ # - 拷贝到 ~/.codex/config.toml 作为全局默认
7
+ # - 或保留在项目根 .codex/config.toml 作为项目级配置
8
+ #
9
+ # 文档参考:
10
+ # - https://developers.openai.com/codex/config-reference
11
+ # - https://developers.openai.com/codex/multi-agent
12
+
13
+ # ---------- Runtime ----------
14
+ # model / model_provider 留空,使用 Codex CLI 当前默认,除非明确要固定版本
15
+ approval_policy = "on-request"
16
+ sandbox_mode = "workspace-write"
17
+ web_search = "live"
18
+
19
+ # ---------- Persistent Instructions ----------
20
+ # 持久指令在每次 prompt 后追加(与 model_instructions_file 替换不同)
21
+ persistent_instructions = """
22
+ Follow project AGENTS.md as the source of truth.
23
+ Load skills by task intent, not by role ownership.
24
+ aiGroup has retired the legacy three-role model (ella/jarvis/kyle) — do not delegate by those names.
25
+ Use the multi-agent roles declared below for exploration, planning, implementation, review, build fixing, and docs research.
26
+ """
27
+
28
+ # ---------- MCP Servers ----------
29
+ # aiGroup 项目级精简基线。遵守 docs/rules/performance.md:
30
+ # 单项目启用 MCP < 10,活跃工具 < 80;重型服务器放到用户级配置按需叠加。
31
+ [mcp_servers.github]
32
+ command = "npx"
33
+ args = ["-y", "@modelcontextprotocol/server-github"]
34
+ startup_timeout_sec = 30
35
+
36
+ [mcp_servers.context7]
37
+ command = "npx"
38
+ args = ["-y", "@upstash/context7-mcp@latest"]
39
+ startup_timeout_sec = 30
40
+
41
+ [mcp_servers.memory]
42
+ command = "npx"
43
+ args = ["-y", "@modelcontextprotocol/server-memory"]
44
+ startup_timeout_sec = 30
45
+
46
+ [mcp_servers.sequential-thinking]
47
+ command = "npx"
48
+ args = ["-y", "@modelcontextprotocol/server-sequential-thinking"]
49
+ startup_timeout_sec = 30
50
+
51
+ # 按需取消注释:
52
+ # [mcp_servers.playwright]
53
+ # command = "npx"
54
+ # args = ["-y", "@playwright/mcp@latest", "--extension"]
55
+ # startup_timeout_sec = 30
56
+ #
57
+ # [mcp_servers.exa]
58
+ # url = "https://mcp.exa.ai/mcp"
59
+
60
+ # ---------- Features ----------
61
+ [features]
62
+ multi_agent = true
63
+
64
+ # ---------- Profiles ----------
65
+ # 切换:codex -p <name>
66
+ [profiles.strict]
67
+ approval_policy = "on-request"
68
+ sandbox_mode = "read-only"
69
+ web_search = "cached"
70
+
71
+ [profiles.yolo]
72
+ approval_policy = "never"
73
+ sandbox_mode = "workspace-write"
74
+ web_search = "live"
75
+
76
+ # ---------- Codex 原生 Persona ----------
77
+ # 仅保留 Codex 自身需要"切换 persona"的 3 个场景。
78
+ # 其他工作(planning / implementation / build-fixing)由 Codex 主对话 + 加载对应 skill 完成。
79
+ [agents]
80
+ max_threads = 3
81
+ max_depth = 1
82
+
83
+ [agents.explorer]
84
+ description = "Read-only codebase explorer for gathering evidence before changes are proposed."
85
+ config_file = "agents/explorer.toml"
86
+
87
+ [agents.reviewer]
88
+ description = "Code, security, and test-gap reviewer. Prioritizes correctness and regressions."
89
+ config_file = "agents/reviewer.toml"
90
+
91
+ [agents.docs_researcher]
92
+ description = "API, framework, and release-note verification via documentation sources."
93
+ config_file = "agents/docs-researcher.toml"
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "aigroup-workflow",
3
+ "version": "1.3.0",
4
+ "description": "Codex-ready aiGroup workflows — shared skills, AGENTS.md guidance, Codex personas, and staged delegation for AI team collaboration.",
5
+ "author": {
6
+ "name": "shuaishuai-li"
7
+ },
8
+ "repository": "https://github.com/shuaishuai-li/ai-agent-workflowGroup",
9
+ "license": "MIT",
10
+ "keywords": [
11
+ "codex",
12
+ "agents",
13
+ "skills",
14
+ "workflow",
15
+ "ai-team",
16
+ "multi-agent"
17
+ ],
18
+ "skills": "./skills/",
19
+ "mcpServers": "./.codex/config.toml",
20
+ "interface": {
21
+ "displayName": "aiGroup Workflow",
22
+ "shortDescription": "Shared skills plus Codex/Claude Code adapters for AI team workflows.",
23
+ "longDescription": "aiGroup provides a dual-harness AI collaboration framework. Specialist agents replace the legacy designer/developer/QA role triad; skills live as the canonical cross-platform workflow surface. Codex gets 3 native personas (explorer/reviewer/docs_researcher); Claude Code gets full specialist agents, slash commands, and hook automation.",
24
+ "category": "Productivity",
25
+ "capabilities": ["Read", "Write"],
26
+ "defaultPrompt": [
27
+ "Read AGENTS.md first; the agent dispatch table is shared with Claude Code in docs/rules/agents.md.",
28
+ "Load skills by task intent (skills/<name>/SKILL.md), not by legacy role ownership.",
29
+ "Switch to reviewer persona for correctness, security, and test gaps before completion.",
30
+ "For build/typecheck failures, load skills/systematic-debugging in main chat — no separate persona needed."
31
+ ]
32
+ }
33
+ }
package/AGENTS.md ADDED
@@ -0,0 +1,76 @@
1
+ # AGENTS.md
2
+
3
+ > 平台中立的 agent 协作入口。Codex CLI 与其他 harness 读本文件;Claude Code 读 `CLAUDE.md`。
4
+ > 两端共享主源:`agents/` / `skills/` / `docs/` / `scripts/`。
5
+
6
+ ## Project Overview
7
+
8
+ aiGroup is a **dual-harness AI team collaboration framework**. The main agent decomposes requirements and delegates to specialist agents. It does NOT directly write code, design UI, or run tests.
9
+
10
+ ## Architecture
11
+
12
+ | 目录 | 内容 |
13
+ |------|------|
14
+ | `agents/` | **agent 源池**(52 个,开发态分发位置) |
15
+ | `skills/` | **skill 源池**(扁平 `skills/<name>/SKILL.md`) |
16
+ | `commands/` | 斜杠命令源 |
17
+ | `.claude/agents/` | Claude Code 实际启用的 agent(由 `aigroup init` 按需复制) |
18
+ | `.codex/agents/` | Codex 原生 persona TOML(3 个:explorer / reviewer / docs_researcher) |
19
+ | `.codex/config.toml` | Runtime + MCP + persona 配置 |
20
+ | `docs/` | 知识库主源(架构、规则、流程) |
21
+ | `docs/rules/` | 强制规则集(agents / coding-style / git-workflow / testing / security / performance / hooks) |
22
+ | `manifests/` | 安装清单(agent / skill 分组) |
23
+ | `.orchestration/<session>/` | Agent 协作产物工作区 |
24
+ | `scripts/orchestration/` | 协调 CLI(session.cjs) |
25
+ | `scripts/hooks/` | hook dispatcher + checks(Codex 端需手动调用) |
26
+
27
+ ## Available Agents
28
+
29
+ 源池 `agents/<name>.md` 共 52 个,由 `aigroup init` 按 manifest 模块选择安装:
30
+
31
+ | 模块 | 默认 | 数量 | 说明 |
32
+ |------|------|------|------|
33
+ | `agents-core` | ✅ | 12 | ECC 派遣规则的 10 个 + init-architect / get-current-datetime |
34
+ | `agents-quality` | ⏤ | 9 | 代码质量分析 |
35
+ | `agents-language` | ⏤ | 16 | 各语言 reviewer / build-resolver |
36
+ | `agents-ops` | ⏤ | 8 | 运维与工作流操作 |
37
+ | `agents-domain` | ⏤ | 9 | 特殊领域(a11y / healthcare / opensource / gan-* / seo) |
38
+
39
+ 详细派遣矩阵见 `docs/rules/agents.md`。
40
+
41
+ > **agent 体系两端共享一份**——不存在"Claude 专项 agent vs Codex role adapter"对照表。Codex 端在主对话中加载对应 skill 即可达成同样效果。
42
+
43
+ ## Codex 端独有
44
+
45
+ `.codex/agents/` 下的 3 个 persona TOML 是 **Codex 原生 multi-agent 机制**,仅在需要切换 sandbox / reasoning_effort 时使用:
46
+
47
+ | Persona | 用途 |
48
+ |---------|------|
49
+ | `explorer` | 只读 sandbox,证据收集 |
50
+ | `reviewer` | 高 reasoning,代码 + 安全审查 |
51
+ | `docs_researcher` | 带网络访问,API / 文档查证 |
52
+
53
+ 切换:`/agent <persona>`。完整 Codex 端说明见 `.codex/AGENTS.md`。
54
+
55
+ ## 知识库地图
56
+
57
+ | 需要了解 | 查阅 |
58
+ |---------|------|
59
+ | Agent 派遣矩阵 | `docs/rules/agents.md` |
60
+ | 强制规则(铁律 / 编码 / Git / 测试 / 安全 / 性能 / Hooks) | `docs/rules/` |
61
+ | Codex 端差异(模型 / MCP / persona / 无 hook 兜底) | `.codex/AGENTS.md` |
62
+ | 工作流 phase 心智模型 | `docs/workflow-pipeline.md` |
63
+ | 危险信号 | `docs/red-flags.md` |
64
+ | 项目实例上下文 | `docs/PROJECT_CONTEXT.md` |
65
+
66
+ ## Codex 限制(必须知道)
67
+
68
+ - **No hooks** — Codex 不支持 hook 事件;必须主动运行 `node scripts/hooks/dispatcher.cjs stop`
69
+ - **No slash commands** — 用主对话 + `/agent <persona>`,不识别 `.claude/commands/`
70
+ - **No `Agent({ subagent_type })` 语法** — 派遣 = 主对话加载对应 skill;persona 切换 = `/agent`
71
+
72
+ 详见 `.codex/AGENTS.md`。
73
+
74
+ ## Claude Code 兼容
75
+
76
+ Claude Code 用户使用 `CLAUDE.md` 作为入口,通过 `Agent({ subagent_type })` 派遣安装在 `.claude/agents/` 下的 agent。两端的派遣规则都以 `docs/rules/agents.md` 为唯一事实源。
package/CLAUDE.md CHANGED
@@ -1,86 +1,29 @@
1
- # 角色:麦克斯 (Max) — 项目经理
1
+ # CLAUDE.md
2
2
 
3
- 你是麦克斯 (Max),项目经理兼用户个人助理。不直接写代码、做设计或做测试,价值在于需求分析、任务拆解、驱动工作流、进度跟踪、风险预警、熵管理,以及通过 Agent 工具派遣子代理整合成果。
3
+ This file provides guidance to Claude Code when working in this repository.
4
4
 
5
- ## 全局铁律
5
+ ## Project Overview
6
6
 
7
- ```
8
- 1. 证据优于断言 — 任何完成声明必须附带验证证据
9
- 2. 流程不可跳过 — 工作流管道的每个环节必须走完
10
- 3. 不确定时先问 — 宁可多问一句,不要假设
11
- 4. 门控先行 — 派遣子 Agent 前必须执行状态机门控检查
12
- ```
7
+ aiGroup is a **dual-harness AI team collaboration framework** (Claude Code + Codex). The main session analyzes requirements, decomposes tasks, and **delegates to specialist subagents** — it does NOT directly write code, design UI, or run tests.
13
8
 
14
- ## 行为门控(每次任务必读)
9
+ | 目录 | 内容 |
10
+ |------|------|
11
+ | `agents/` | Agent 源池(开发态分发位置,由 `aigroup init` 选装到 `.claude/agents/`) |
12
+ | `skills/` | Skill 源池(扁平 `skills/<name>/SKILL.md`) |
13
+ | `docs/` | 知识库主源 |
14
+ | `manifests/` | 安装清单(agent / skill 分组定义) |
15
+ | `.orchestration/<session>/` | Agent 协作产物工作区(按 session/worker 三件套) |
16
+ | `scripts/orchestration/session.cjs` | 协调 CLI |
17
+ | `scripts/hooks/dispatcher.cjs` | hook dispatcher(手动调用入口) |
15
18
 
16
- 收到非简单任务时,Max **必须**用状态机驱动 8 阶段流程,不可跳步:
17
-
18
- ```
19
- 简单任务 → workflow-state.sh exempt <原因>
20
- 非简单任务 → workflow-state.sh init <名称> → 按阶段读取 SKILL → 产出产物 → advance
21
- 需求收集 → 需求验证 → 方案设计 → 任务拆解 → 实施开发 → 测试验证 → 文档更新 → 分支收尾
22
- ```
23
-
24
- **禁止**:design 完成前派遣 Jarvis;planning 完成前派遣 Jarvis;development 完成前派遣 Kyle
25
-
26
- 状态机命令 → `scripts/harness/workflow-state.sh`(status/init/advance/gate/reset/exempt)
27
-
28
- 简单任务豁免:纯知识问答、单行修改、配置调整、文档笔误。判断标准:涉及 2+ 文件或设计决策就走完整管道。
29
-
30
- **豁免 ≠ 自己动手**:豁免的是 8 阶段流程,不是派遣规则。涉及代码、设计、测试或验证,无论任务大小,必须派遣对应子 Agent(Jarvis/Ella/Kyle)执行,禁止在当前对话中角色切换。
31
-
32
- ## 知识库地图
19
+ ## 知识库地图(按需查阅)
33
20
 
34
21
  | 需要了解 | 查阅 |
35
22
  |---------|------|
23
+ | Agent 派遣规则(什么时候派谁、并行、多视角) | `docs/rules/agents.md` |
24
+ | 通用强制规则(编码 / Git / 测试 / 安全 / 性能 / Hooks) | `docs/rules/` |
25
+ | 各语言专项规则(cpp / golang / java / python / rust / typescript / web 等) | `docs/rules/<lang>/` |
36
26
  | 项目架构、目录结构 | `docs/ARCHITECTURE.md` |
37
- | 工作流管道详细规则 | `docs/workflow-pipeline.md` |
38
- | 团队成员与派遣规则 | `docs/dispatch-rules.md` |
39
- | Git/代码/注释规范 | `docs/coding-standards.md` |
27
+ | 工作流 phase 心智模型 | `docs/workflow-pipeline.md` |
40
28
  | 危险信号与阻止行动 | `docs/red-flags.md` |
41
- | 质量评分与健康度追踪 | `docs/QUALITY_SCORE.md` |
42
- | 技术债追踪 | `docs/tech-debt-tracker.md` |
43
- | Harness 转向循环 | `docs/steering-loop.md` |
44
-
45
- ## 工作流技能
46
-
47
- | 阶段 | 技能 | 路径 |
48
- |------|------|------|
49
- | 需求收集 | brainstorming | `skills/max/workflow/brainstorming/` |
50
- | 需求验证 | requirement-validation | `skills/max/workflow/requirement-validation/` |
51
- | 方案设计 | solution-design | `skills/max/workflow/solution-design/` |
52
- | 任务拆解 | writing-plans | `skills/max/workflow/writing-plans/` |
53
- | 实施开发 | subagent-driven-development | `skills/max/workflow/subagent-driven-development/` |
54
- | 测试验证 | testing | `skills/max/workflow/testing/` |
55
- | 文档更新 | documentation | `skills/max/workflow/documentation/` |
56
- | 分支收尾 | finishing-a-development-branch | `skills/max/workflow/finishing-a-development-branch/` |
57
-
58
- 横切技能:systematic-debugging、verification-before-completion、entropy-management
59
-
60
- ### PM 辅助技能
61
-
62
- | 场景 | 技能 | 路径 |
63
- |------|------|------|
64
- | 竞品分析 | competitive-analysis | `skills/max/competitive-analysis/` |
65
- | 会议纪要 | meeting-notes | `skills/max/meeting-notes/` |
66
- | PRD 撰写 | prd-template | `skills/max/prd-template/` |
67
- | 干系人汇报 | stakeholder-update | `skills/max/stakeholder-update/` |
68
- | 用户研究综合 | user-research-synthesis | `skills/max/user-research-synthesis/` |
69
-
70
- ## 团队派遣(Agent 工具)
71
-
72
- 三人已注册为 Claude Code 原生子代理(`.claude/agents/{ella,jarvis,kyle}.md`),用 `subagent_type` 派遣:
73
-
74
- | 成员 | 角色 | 派遣方式 |
75
- |------|------|---------|
76
- | 艾拉 (Ella) | UI/UX 设计师 | `Agent({ subagent_type: "ella", description: "...", prompt: "..." })` |
77
- | 贾维斯 (Jarvis) | 全栈开发 | `Agent({ subagent_type: "jarvis", description: "...", prompt: "..." })` |
78
- | 凯尔 (Kyle) | 质量保障(测试+验证) | `Agent({ subagent_type: "kyle", description: "...", prompt: "..." })` |
79
-
80
- 产物工作区:`.dev-agents/shared/`(`designs/ tasks/ reviews/ templates/`)
81
-
82
- ## Harness 自检
83
-
84
- 开发完成后运行 `scripts/harness/run-all.sh`,按 [FAIL] 提示的 [FIX] 修复直至全部通过。
85
-
86
- <!-- aiGroup 框架边界(init-architect 保留区至此,以下由 /init-project 生成) -->
29
+ | 项目实例上下文(/init-project 生成) | `docs/PROJECT_CONTEXT.md` |