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,181 @@
1
+ 'use strict';
2
+
3
+ const fs = require('fs');
4
+ const path = require('path');
5
+
6
+ const ROOT = path.resolve(__dirname, '..', '..', '..');
7
+ const COORDINATION_ROOT = path.join(ROOT, '.orchestration');
8
+
9
+ function toPosix(p) {
10
+ return p.split(path.sep).join('/');
11
+ }
12
+
13
+ function relPosix(target) {
14
+ return toPosix(path.relative(ROOT, target));
15
+ }
16
+
17
+ function slugify(value, fallback = 'item') {
18
+ const normalized = String(value || '')
19
+ .trim()
20
+ .toLowerCase()
21
+ .replace(/[^a-z0-9]+/g, '-')
22
+ .replace(/^-+|-+$/g, '');
23
+ return normalized || fallback;
24
+ }
25
+
26
+ function timestamp() {
27
+ return new Date().toISOString().replace(/\.\d+Z$/, 'Z');
28
+ }
29
+
30
+ function sessionDir(sessionName) {
31
+ const slug = slugify(sessionName, 'session');
32
+ return path.join(COORDINATION_ROOT, slug);
33
+ }
34
+
35
+ function workerDir(sessionName, workerName) {
36
+ return path.join(sessionDir(sessionName), slugify(workerName, 'worker'));
37
+ }
38
+
39
+ function workerArtifacts(sessionName, workerName) {
40
+ const dir = workerDir(sessionName, workerName);
41
+ return {
42
+ dir,
43
+ task: path.join(dir, 'task.md'),
44
+ handoff: path.join(dir, 'handoff.md'),
45
+ status: path.join(dir, 'status.md')
46
+ };
47
+ }
48
+
49
+ function ensureDir(dirPath) {
50
+ fs.mkdirSync(dirPath, { recursive: true });
51
+ }
52
+
53
+ function writeFile(filePath, content) {
54
+ ensureDir(path.dirname(filePath));
55
+ fs.writeFileSync(filePath, content.endsWith('\n') ? content : content + '\n', 'utf8');
56
+ }
57
+
58
+ function buildTaskFile({ sessionName, workerName, agent, objective, context = [], deliverables = [] }) {
59
+ const ctx = context.length > 0 ? context.map(line => `- ${line}`).join('\n') : '- _无_';
60
+ const deliv = deliverables.length > 0 ? deliverables.map(line => `- ${line}`).join('\n') : '- 见 handoff.md 模板';
61
+ const artifacts = workerArtifacts(sessionName, workerName);
62
+ return [
63
+ `# Worker Task: ${workerName}`,
64
+ '',
65
+ `- Session: \`${sessionName}\``,
66
+ `- Agent: \`${agent}\``,
67
+ `- Created: ${timestamp()}`,
68
+ `- Handoff: \`${relPosix(artifacts.handoff)}\``,
69
+ `- Status: \`${relPosix(artifacts.status)}\``,
70
+ '',
71
+ '## Objective',
72
+ objective.trim(),
73
+ '',
74
+ '## Context',
75
+ ctx,
76
+ '',
77
+ '## Deliverables',
78
+ deliv,
79
+ '',
80
+ '## Completion Rules',
81
+ '- 不再向下派遣 subagent,结果写进最终响应',
82
+ '- 主会话负责把响应抄写进 `handoff.md`',
83
+ '- 主会话负责更新 `status.md`'
84
+ ].join('\n');
85
+ }
86
+
87
+ function buildHandoffFile({ workerName }) {
88
+ return [
89
+ `# Handoff: ${workerName}`,
90
+ '',
91
+ '## Summary',
92
+ '- Pending',
93
+ '',
94
+ '## Files Changed',
95
+ '- Pending',
96
+ '',
97
+ '## Validation',
98
+ '- Pending',
99
+ '',
100
+ '## Follow-ups',
101
+ '- Pending'
102
+ ].join('\n');
103
+ }
104
+
105
+ function buildStatusFile({ workerName, state = 'not_started', lightweight = false }) {
106
+ const lines = [
107
+ `# Status: ${workerName}`,
108
+ '',
109
+ `- State: ${state}`,
110
+ `- Updated: ${timestamp()}`
111
+ ];
112
+ if (lightweight) lines.push('- Lightweight: true');
113
+ return lines.join('\n');
114
+ }
115
+
116
+ function createWorker(spec) {
117
+ const { sessionName, workerName, lightweight = false } = spec;
118
+ if (!sessionName) throw new Error('sessionName is required');
119
+ if (!workerName) throw new Error('workerName is required');
120
+ if (!spec.agent) throw new Error('agent is required');
121
+ if (!spec.objective) throw new Error('objective is required');
122
+
123
+ const artifacts = workerArtifacts(sessionName, workerName);
124
+ ensureDir(artifacts.dir);
125
+ if (!lightweight) {
126
+ writeFile(artifacts.task, buildTaskFile(spec));
127
+ }
128
+ writeFile(artifacts.handoff, buildHandoffFile({ workerName }));
129
+ writeFile(artifacts.status, buildStatusFile({ workerName, lightweight }));
130
+ return { ...artifacts, lightweight };
131
+ }
132
+
133
+ function isLightweight(statusFile) {
134
+ try {
135
+ const raw = fs.readFileSync(statusFile, 'utf8');
136
+ return /^\s*-\s*Lightweight:\s*true/m.test(raw);
137
+ } catch (_error) {
138
+ return false;
139
+ }
140
+ }
141
+
142
+ function updateStatus(sessionName, workerName, state, details = '') {
143
+ const artifacts = workerArtifacts(sessionName, workerName);
144
+ const lightweight = isLightweight(artifacts.status);
145
+ const body = [
146
+ `# Status: ${workerName}`,
147
+ '',
148
+ `- State: ${state}`,
149
+ `- Updated: ${timestamp()}`
150
+ ];
151
+ if (lightweight) body.push('- Lightweight: true');
152
+ if (details) body.push('', details.trim());
153
+ writeFile(artifacts.status, body.join('\n'));
154
+ return artifacts.status;
155
+ }
156
+
157
+ function appendHandoff(sessionName, workerName, sectionTitle, content) {
158
+ const artifacts = workerArtifacts(sessionName, workerName);
159
+ const existing = fs.existsSync(artifacts.handoff)
160
+ ? fs.readFileSync(artifacts.handoff, 'utf8')
161
+ : buildHandoffFile({ workerName });
162
+ const block = `\n## ${sectionTitle} (${timestamp()})\n${content.trim()}\n`;
163
+ writeFile(artifacts.handoff, existing.replace(/\s+$/, '') + block);
164
+ return artifacts.handoff;
165
+ }
166
+
167
+ module.exports = {
168
+ COORDINATION_ROOT,
169
+ ROOT,
170
+ sessionDir,
171
+ workerDir,
172
+ workerArtifacts,
173
+ createWorker,
174
+ updateStatus,
175
+ appendHandoff,
176
+ isLightweight,
177
+ slugify,
178
+ timestamp,
179
+ relPosix,
180
+ toPosix
181
+ };
@@ -0,0 +1,180 @@
1
+ #!/usr/bin/env node
2
+ 'use strict';
3
+
4
+ const fs = require('fs');
5
+ const path = require('path');
6
+ const {
7
+ COORDINATION_ROOT,
8
+ ROOT,
9
+ sessionDir,
10
+ workerArtifacts,
11
+ createWorker,
12
+ updateStatus,
13
+ appendHandoff,
14
+ slugify,
15
+ relPosix
16
+ } = require('./lib/orchestrator.cjs');
17
+
18
+ const COMMANDS = ['init', 'add-worker', 'status', 'set-status', 'append', 'list', 'help'];
19
+
20
+ function usage() {
21
+ console.log([
22
+ 'Usage:',
23
+ ' node scripts/orchestration/session.js init <session-name>',
24
+ ' node scripts/orchestration/session.cjs add-worker <session> <worker> --agent <name> --objective <text>',
25
+ ' [--context <line>]... [--deliverable <line>]... [--lightweight]',
26
+ ' node scripts/orchestration/session.js set-status <session> <worker> <state> [--details <text>]',
27
+ ' node scripts/orchestration/session.js append <session> <worker> <section> --content <text>',
28
+ ' node scripts/orchestration/session.js status <session>',
29
+ ' node scripts/orchestration/session.js list',
30
+ '',
31
+ 'States: not_started | running | blocked | completed | failed',
32
+ `Coordination root: ${relPosix(COORDINATION_ROOT)}/`
33
+ ].join('\n'));
34
+ }
35
+
36
+ const BOOLEAN_FLAGS = new Set(['lightweight']);
37
+
38
+ function parseFlags(args) {
39
+ const flags = { context: [], deliverable: [] };
40
+ const positional = [];
41
+ for (let i = 0; i < args.length; i += 1) {
42
+ const arg = args[i];
43
+ if (arg.startsWith('--')) {
44
+ const key = arg.slice(2);
45
+ if (BOOLEAN_FLAGS.has(key)) {
46
+ flags[key] = true;
47
+ continue;
48
+ }
49
+ const value = args[i + 1];
50
+ if (key === 'context' || key === 'deliverable') {
51
+ flags[key].push(value);
52
+ } else {
53
+ flags[key] = value;
54
+ }
55
+ i += 1;
56
+ } else {
57
+ positional.push(arg);
58
+ }
59
+ }
60
+ return { flags, positional };
61
+ }
62
+
63
+ function cmdInit(name) {
64
+ if (!name) throw new Error('session-name is required');
65
+ const dir = sessionDir(name);
66
+ fs.mkdirSync(dir, { recursive: true });
67
+ const meta = path.join(dir, 'session.json');
68
+ if (!fs.existsSync(meta)) {
69
+ fs.writeFileSync(meta, JSON.stringify({
70
+ name: slugify(name, 'session'),
71
+ label: name,
72
+ createdAt: new Date().toISOString()
73
+ }, null, 2) + '\n', 'utf8');
74
+ }
75
+ console.log(relPosix(dir));
76
+ }
77
+
78
+ function cmdAddWorker(session, worker, flags) {
79
+ if (!session || !worker) throw new Error('session and worker names are required');
80
+ if (!flags.agent) throw new Error('--agent is required');
81
+ if (!flags.objective) throw new Error('--objective is required');
82
+ const artifacts = createWorker({
83
+ sessionName: session,
84
+ workerName: worker,
85
+ agent: flags.agent,
86
+ objective: flags.objective,
87
+ context: flags.context,
88
+ deliverables: flags.deliverable,
89
+ lightweight: Boolean(flags.lightweight)
90
+ });
91
+ const out = {
92
+ handoff: relPosix(artifacts.handoff),
93
+ status: relPosix(artifacts.status)
94
+ };
95
+ if (!artifacts.lightweight) out.task = relPosix(artifacts.task);
96
+ if (artifacts.lightweight) out.lightweight = true;
97
+ console.log(JSON.stringify(out, null, 2));
98
+ }
99
+
100
+ function cmdSetStatus(session, worker, state, flags) {
101
+ if (!session || !worker || !state) throw new Error('session, worker, state are required');
102
+ const file = updateStatus(session, worker, state, flags.details || '');
103
+ console.log(relPosix(file));
104
+ }
105
+
106
+ function cmdAppend(session, worker, section, flags) {
107
+ if (!session || !worker || !section) throw new Error('session, worker, section are required');
108
+ if (!flags.content) throw new Error('--content is required');
109
+ const file = appendHandoff(session, worker, section, flags.content);
110
+ console.log(relPosix(file));
111
+ }
112
+
113
+ function cmdStatus(session) {
114
+ if (!session) throw new Error('session-name is required');
115
+ const dir = sessionDir(session);
116
+ if (!fs.existsSync(dir)) {
117
+ console.log(`(no such session: ${session})`);
118
+ return;
119
+ }
120
+ const workers = fs.readdirSync(dir, { withFileTypes: true })
121
+ .filter(entry => entry.isDirectory())
122
+ .map(entry => entry.name);
123
+ const out = workers.map(worker => {
124
+ const statusPath = workerArtifacts(session, worker).status;
125
+ const content = fs.existsSync(statusPath) ? fs.readFileSync(statusPath, 'utf8') : '(missing)';
126
+ const stateLine = content.split('\n').find(line => line.startsWith('- State:'));
127
+ return `${worker}\t${stateLine ? stateLine.replace('- State:', '').trim() : '?'}`;
128
+ });
129
+ console.log(out.join('\n') || '(no workers)');
130
+ }
131
+
132
+ function cmdList() {
133
+ if (!fs.existsSync(COORDINATION_ROOT)) {
134
+ console.log('(no sessions)');
135
+ return;
136
+ }
137
+ const sessions = fs.readdirSync(COORDINATION_ROOT, { withFileTypes: true })
138
+ .filter(entry => entry.isDirectory() && !entry.name.startsWith('.'))
139
+ .map(entry => entry.name);
140
+ console.log(sessions.join('\n') || '(no sessions)');
141
+ }
142
+
143
+ function main() {
144
+ const [, , command, ...rest] = process.argv;
145
+ if (!command || command === 'help' || !COMMANDS.includes(command)) {
146
+ usage();
147
+ process.exit(command && command !== 'help' ? 1 : 0);
148
+ }
149
+ const { flags, positional } = parseFlags(rest);
150
+ try {
151
+ switch (command) {
152
+ case 'init':
153
+ cmdInit(positional[0]);
154
+ break;
155
+ case 'add-worker':
156
+ cmdAddWorker(positional[0], positional[1], flags);
157
+ break;
158
+ case 'set-status':
159
+ cmdSetStatus(positional[0], positional[1], positional[2], flags);
160
+ break;
161
+ case 'append':
162
+ cmdAppend(positional[0], positional[1], positional[2], flags);
163
+ break;
164
+ case 'status':
165
+ cmdStatus(positional[0]);
166
+ break;
167
+ case 'list':
168
+ cmdList();
169
+ break;
170
+ default:
171
+ usage();
172
+ process.exit(1);
173
+ }
174
+ } catch (error) {
175
+ console.error(`error: ${error.message}`);
176
+ process.exit(1);
177
+ }
178
+ }
179
+
180
+ main();
@@ -0,0 +1,45 @@
1
+ ---
2
+ name: documentation
3
+ description: 在代码变更落地后更新受影响的文档,确保 docs/ 与代码一致。包含必更新清单、更新原则、文档传感器验证。
4
+ ---
5
+
6
+ # 文档更新
7
+
8
+ 代码变更后的文档同步。**只更新受影响的文档**,不做无关改进。
9
+
10
+ ## 协调
11
+
12
+ 直接修改 `docs/` 下的文档;在 session `README.md`(或回报主会话)留变更笔记。完成后运行 `node scripts/hooks/dispatcher.cjs stop` 验证。
13
+
14
+ ## 必更新清单
15
+
16
+ | 文档 | 触发条件 |
17
+ |------|---------|
18
+ | API 文档 | 接口变更(参数 / 返回值 / 错误码) |
19
+ | README | 安装、使用方式变更 |
20
+ | `docs/ARCHITECTURE.md` | 架构 / 模块边界 / 组件图变更 |
21
+ | 模块 `CLAUDE.md` | 模块行为或入口变更 |
22
+
23
+ ## 按需更新
24
+
25
+ | 文档 | 触发条件 |
26
+ |------|---------|
27
+ | 代码注释 | 复杂逻辑、关键算法、设计决策 |
28
+ | 配置文档 | 配置项变更(新增 / 默认值 / 移除) |
29
+ | 部署文档 | 部署流程或环境要求变更 |
30
+
31
+ ## 原则
32
+
33
+ - 只改受影响的文档,不顺手做无关改进
34
+ - 文档描述以代码实际行为为准
35
+ - 删除已不存在功能的描述
36
+ - 沿用现有文档的格式和语气
37
+
38
+ ## Red Flags
39
+
40
+ | 信号 | 行动 |
41
+ |------|------|
42
+ | 测试未通过就更新文档 | 先完成测试 phase |
43
+ | 文档与代码描述冲突 | 以代码为准修正文档 |
44
+ | dispatcher stop 报错 | 先修 [FAIL] 再 ship |
45
+ | 想跳过文档更新 | 检查是否真的零受影响文档 |
@@ -1,124 +1,115 @@
1
- ---
2
- name: entropy-management
3
- description: 定期维护代码库健康度。扫描架构漂移、过期文档、低质量代码,防止技术债积累。应在完成若干任务后或怀疑代码库退化时触发。
4
- ---
5
-
6
- # 熵管理(Garbage Collection)
7
-
8
- ## 概述
9
-
10
- AI Agent 会复制仓库中已有的模式——包括不好的模式。随着时间推移,这不可避免地导致漂移。
11
- 手动清理不可持续。熵管理将清理系统化,定期执行,像垃圾回收一样防止技术债积累。
12
-
13
- **核心原则**:技术债是高利贷——持续小额偿还远优于积累后大规模清理。
14
-
15
- ## 铁律
16
-
17
- ```
18
- 发现的问题不能只修一次——必须同时编码为约束,防止再次发生。
19
- 每次熵管理运行结束后,必须更新质量评分和技术债追踪。
20
- ```
21
-
22
- ## 触发条件
23
-
24
- - 完成 5 个以上任务后(定期维护)
25
- - Kyle 审查中反复出现同类问题(模式漂移信号)
26
- - 用户主动要求代码库健康检查
27
- - 怀疑文档与代码不一致
28
- - 新成员加入前(确保仓库状态良好)
29
-
30
- ## 执行流程
31
-
32
- ### 第一阶段:自动化传感器扫描
33
-
34
- 运行 Harness 传感器套件收集机器可检测的问题:
35
-
36
- ```bash
37
- bash scripts/harness/run-all.sh
38
- ```
39
-
40
- 记录所有 `[FAIL]` 和 `[WARN]` 项。
41
-
42
- ### 第二阶段:推理型扫描
43
-
44
- 自动化传感器无法覆盖的维度,需要人工/Agent 推理检查:
45
-
46
- #### 2.1 文档-代码一致性
47
-
48
- | 检查项 | 方法 |
49
- |--------|------|
50
- | CLAUDE.md 引用路径是否有效 | 逐条验证文件/目录存在 |
51
- | docs/ 文档描述是否匹配实际行为 | 抽样对比 |
52
- | SKILL.md 中的流程是否被实际遵循 | 回顾近期任务记录 |
53
- | 模板是否与当前实践一致 | 对比模板与近期产出 |
54
-
55
- #### 2.2 架构漂移检测
56
-
57
- | 检查项 | 方法 |
58
- |--------|------|
59
- | 是否有文件放在错误目录 | 检查目录约定是否被遵守 |
60
- | 是否有重复/冗余文件 | 搜索相似文件名和内容 |
61
- | 技能包结构是否一致 | 抽样检查 SKILL.md 格式 |
62
- | 协作产物是否在正确位置 | 检查 .dev-agents/shared/ 结构 |
63
-
64
- #### 2.3 质量回归检测
65
-
66
- | 检查项 | 方法 |
67
- |--------|------|
68
- | 近期审查中的高频问题 | 分析 .dev-agents/shared/reviews/ |
69
- | 是否有被跳过的工作流阶段 | 检查产物完整性 |
70
- | 是否有"沉默的传感器"(从不报错) | 评估传感器有效性 |
71
-
72
- ### 第三阶段:修复与编码
73
-
74
- 对发现的问题分类处理:
75
-
76
- | 问题类型 | 处理方式 |
77
- |---------|---------|
78
- | 可快速修复的具体问题 | 立即修复(文档更新、文件移动等) |
79
- | 需要编码为约束的重复模式 | 触发 [转向循环](../../../../docs/steering-loop.md),添加传感器或更新规则 |
80
- | 需要架构讨论的系统性问题 | 记录到技术债,与用户讨论 |
81
-
82
- ### 第四阶段:更新追踪
83
-
84
- **必须完成以下更新**(不可跳过):
85
-
86
- 1. 更新 `docs/QUALITY_SCORE.md`
87
- - 重新评估各维度评分
88
- - 添加历史趋势记录
89
- - 标注评分变化原因
90
-
91
- 2. 更新 `docs/tech-debt-tracker.md`
92
- - 新发现的技术债添加到"活跃"列表
93
- - 已修复的技术债移至"已偿还"列表
94
-
95
- 3. 更新 `docs/steering-loop.md`
96
- - 如果有新增约束,记录到"改进记录"
97
-
98
- ## 产出清单
99
-
100
- 每次熵管理运行后,应产出:
101
-
102
- ```
103
- ✅ 传感器扫描结果(run-all.sh 输出)
104
- 推理型扫描发现清单
105
- ✅ 修复的问题列表
106
- 新增的约束/传感器(如有)
107
- ✅ 更新后的 QUALITY_SCORE.md
108
- 更新后的 tech-debt-tracker.md
109
- ```
110
-
111
- ## Red Flags — 停下来
112
-
113
- | 信号 | 行动 |
114
- |------|------|
115
- | 传感器全部通过但直觉上代码库有问题 | 传感器覆盖不足,添加新检查项 |
116
- | 修复一个漂移又发现三个 | 可能是架构问题,记录技术债后与用户讨论 |
117
- | 质量评分持续下降 | 需要专项改进,不是熵管理能解决的 |
118
- | 跳过第四阶段"下次再更新" | 不允许,追踪更新是必须步骤 |
119
-
120
- ## 关联技能
121
-
122
- - **steering-loop** — 将重复问题编码为约束
123
- - **verification-before-completion** — 修复后验证
124
- - **systematic-debugging** — 深入调查发现的问题
1
+ ---
2
+ name: entropy-management
3
+ description: 定期维护代码库健康度。扫描架构漂移、过期文档、低质量代码,防止技术债积累。应在完成若干任务后或怀疑代码库退化时触发。
4
+ ---
5
+
6
+ # 熵管理(Garbage Collection)
7
+
8
+ ## 概述
9
+
10
+ AI Agent 会复制仓库中已有的模式——包括不好的模式。随着时间推移,这不可避免地导致漂移。
11
+ 手动清理不可持续。熵管理将清理系统化,定期执行,像垃圾回收一样防止技术债积累。
12
+
13
+ **核心原则**:技术债是高利贷——持续小额偿还远优于积累后大规模清理。
14
+
15
+ ## 铁律
16
+
17
+ ```
18
+ 发现的问题不能只修一次——必须同时编码为约束,防止再次发生。
19
+ 每次熵管理运行结束后,必须更新质量评分和技术债追踪。
20
+ ```
21
+
22
+ ## 触发条件
23
+
24
+ - 完成 5 个以上任务后(定期维护)
25
+ - Kyle 审查中反复出现同类问题(模式漂移信号)
26
+ - 用户主动要求代码库健康检查
27
+ - 怀疑文档与代码不一致
28
+ - 新成员加入前(确保仓库状态良好)
29
+
30
+ ## 执行流程
31
+
32
+ ### 第一阶段:自动化传感器扫描
33
+
34
+ 运行 Harness 传感器套件收集机器可检测的问题:
35
+
36
+ ```bash
37
+ node scripts/hooks/dispatcher.cjs stop
38
+ ```
39
+
40
+ 记录所有 `[FAIL]` 和 `[WARN]` 项。
41
+
42
+ ### 第二阶段:推理型扫描
43
+
44
+ 自动化传感器无法覆盖的维度,需要人工/Agent 推理检查:
45
+
46
+ #### 2.1 文档-代码一致性
47
+
48
+ | 检查项 | 方法 |
49
+ |--------|------|
50
+ | CLAUDE.md 引用路径是否有效 | 逐条验证文件/目录存在 |
51
+ | docs/ 文档描述是否匹配实际行为 | 抽样对比 |
52
+ | SKILL.md 中的流程是否被实际遵循 | 回顾近期任务记录 |
53
+ | 模板是否与当前实践一致 | 对比模板与近期产出 |
54
+
55
+ #### 2.2 架构漂移检测
56
+
57
+ | 检查项 | 方法 |
58
+ |--------|------|
59
+ | 是否有文件放在错误目录 | 检查目录约定是否被遵守 |
60
+ | 是否有重复/冗余文件 | 搜索相似文件名和内容 |
61
+ | 技能包结构是否一致 | 抽样检查 SKILL.md 格式 |
62
+ | 协作产物是否在正确位置 | 检查 .orchestration/<session>/ 结构 |
63
+
64
+ #### 2.3 质量回归检测
65
+
66
+ | 检查项 | 方法 |
67
+ |--------|------|
68
+ | 近期审查中的高频问题 | 分析 .orchestration/<session>/code-reviewer/ |
69
+ | 是否有被跳过的工作流阶段 | 检查产物完整性 |
70
+ | 是否有"沉默的传感器"(从不报错) | 评估传感器有效性 |
71
+
72
+ ### 第三阶段:修复与编码
73
+
74
+ 对发现的问题分类处理:
75
+
76
+ | 问题类型 | 处理方式 |
77
+ |---------|---------|
78
+ | 可快速修复的具体问题 | 立即修复(文档更新、文件移动等) |
79
+ | 需要编码为约束的重复模式 | `scripts/hooks/checks/` 加 check,让违规自动触发 [FAIL] |
80
+ | 需要架构讨论的系统性问题 | 与用户讨论;动手前先达成共识 |
81
+
82
+ ### 第四阶段:沉淀与追踪
83
+
84
+ 把本次发现和处理沉淀到下列位置(按相关性挑,不必每次都全做):
85
+
86
+ - 反复出现的违规模式 → 在 `scripts/hooks/checks/` 加自动化 check
87
+ - 团队级架构决策 / 新约束 → 写进 `docs/PROJECT_CONTEXT.md` 或 `docs/ARCHITECTURE.md`
88
+ - 跨会话需要记得的代码模式 → 写进 `docs/rules/<topic>.md` 或 `docs/red-flags.md`
89
+ - 用户当前活跃状态 / 个人偏好 → 让 Claude 写进原生 memory(`~/.claude/projects/<slug>/memory/`,自动加载)
90
+ - 新增的危险信号 → 加入 `docs/red-flags.md`
91
+ - 新增的强制规则 → 加入 `docs/rules/<topic>.md`
92
+
93
+ ## 产出清单
94
+
95
+ 每次熵管理运行后,应产出:
96
+
97
+ ```
98
+ dispatcher 扫描结果(node scripts/hooks/dispatcher.cjs stop)
99
+ ✅ 推理型扫描发现清单
100
+ ✅ 修复的问题列表
101
+ ✅ 新增的约束 / check / 规则文档(如有)
102
+ ```
103
+
104
+ ## Red Flags — 停下来
105
+
106
+ | 信号 | 行动 |
107
+ |------|------|
108
+ | 传感器全部通过但直觉上代码库有问题 | 传感器覆盖不足,加新 check |
109
+ | 修复一个漂移又发现三个 | 可能是架构问题,先与用户讨论再动 |
110
+ | 反复出现同类问题但没有沉淀为约束 | 必须在 `scripts/hooks/checks/` 加自动检测 |
111
+
112
+ ## 关联技能
113
+
114
+ - **verification-before-completion** — 修复后验证
115
+ - **systematic-debugging** 深入调查发现的问题