aiox-core 5.0.5 → 5.0.7

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 (2196) hide show
  1. package/.aiox-core/install-manifest.yaml +2 -2
  2. package/bin/utils/validate-publish.js +5 -4
  3. package/package.json +1 -1
  4. package/packages/installer/src/wizard/pro-setup.js +2 -1
  5. package/pro/README.md +66 -0
  6. package/pro/feature-registry.yaml +225 -0
  7. package/pro/license/degradation.js +220 -0
  8. package/pro/license/errors.js +450 -0
  9. package/pro/license/feature-gate.js +354 -0
  10. package/pro/license/index.js +181 -0
  11. package/pro/license/license-api.js +679 -0
  12. package/pro/license/license-cache.js +523 -0
  13. package/pro/license/license-crypto.js +303 -0
  14. package/pro/package.json +52 -0
  15. package/pro/pro-config.yaml +63 -0
  16. package/pro/squads/README.md +42 -0
  17. package/pro/squads/aiox-sop/ARCHITECTURE.md +86 -0
  18. package/pro/squads/aiox-sop/CHANGELOG.md +27 -0
  19. package/pro/squads/aiox-sop/HEADLINE.md +3 -0
  20. package/pro/squads/aiox-sop/README.md +77 -0
  21. package/pro/squads/aiox-sop/agents/sop-analyst.md +363 -0
  22. package/pro/squads/aiox-sop/agents/sop-auditor.md +294 -0
  23. package/pro/squads/aiox-sop/agents/sop-chief.md +279 -0
  24. package/pro/squads/aiox-sop/agents/sop-creator.md +322 -0
  25. package/pro/squads/aiox-sop/agents/sop-extractor.md +246 -0
  26. package/pro/squads/aiox-sop/agents/sop-ml-architect.md +310 -0
  27. package/pro/squads/aiox-sop/checklists/14-point-crosby-checklist.md +84 -0
  28. package/pro/squads/aiox-sop/checklists/extraction-completeness-checklist.md +78 -0
  29. package/pro/squads/aiox-sop/checklists/sop-completeness-checklist.md +283 -0
  30. package/pro/squads/aiox-sop/checklists/sop-ml-validation-checklist.md +157 -0
  31. package/pro/squads/aiox-sop/checklists/sop-quality-checklist.md +138 -0
  32. package/pro/squads/aiox-sop/checklists/stranger-test-checklist.md +108 -0
  33. package/pro/squads/aiox-sop/config.yaml +460 -0
  34. package/pro/squads/aiox-sop/data/category-map.yaml +647 -0
  35. package/pro/squads/aiox-sop/data/confidence-levels.yaml +133 -0
  36. package/pro/squads/aiox-sop/data/infrastructure-connections.yaml +730 -0
  37. package/pro/squads/aiox-sop/data/market-categories.yaml +65 -0
  38. package/pro/squads/aiox-sop/data/risk-register.yaml +90 -0
  39. package/pro/squads/aiox-sop/data/sop-ml-schema-examples.yaml +420 -0
  40. package/pro/squads/aiox-sop/data/sop-ml-schema.yaml +780 -0
  41. package/pro/squads/aiox-sop/data/sop-registry.yaml +42 -0
  42. package/pro/squads/aiox-sop/data/sop-scoring-rubric.yaml +601 -0
  43. package/pro/squads/aiox-sop/data/sop-standards-reference.yaml +475 -0
  44. package/pro/squads/aiox-sop/data/task-definitions.yaml +1602 -0
  45. package/pro/squads/aiox-sop/data/token-assignments.yaml +304 -0
  46. package/pro/squads/aiox-sop/data/verdict-thresholds.yaml +117 -0
  47. package/pro/squads/aiox-sop/data/workflow-quality-rubric.yaml +579 -0
  48. package/pro/squads/aiox-sop/docs/README.md +10 -0
  49. package/pro/squads/aiox-sop/docs/optimization-doc-drift-2026-03-18.json +20 -0
  50. package/pro/squads/aiox-sop/docs/optimization-economy-2026-03-18.md +40 -0
  51. package/pro/squads/aiox-sop/docs/optimization-environment-2026-03-18.json +24 -0
  52. package/pro/squads/aiox-sop/docs/optimization-material-inventory-2026-03-18.yaml +73 -0
  53. package/pro/squads/aiox-sop/docs/optimization-repo-baseline-2026-03-18.json +38 -0
  54. package/pro/squads/aiox-sop/docs/optimization-runtime-smoke-2026-03-18.json +57 -0
  55. package/pro/squads/aiox-sop/docs/optimization-split-verdict-2026-03-18.json +21 -0
  56. package/pro/squads/aiox-sop/docs/optimization-validation-2026-03-18.json +53 -0
  57. package/pro/squads/aiox-sop/docs/optimization-validation-fallback-2026-03-18.json +6 -0
  58. package/pro/squads/aiox-sop/docs/optimization-workflow-contracts-2026-03-18.json +81 -0
  59. package/pro/squads/aiox-sop/docs/optimization-yolo-plan-2026-03-18.md +177 -0
  60. package/pro/squads/aiox-sop/docs/optimization-yolo-report-2026-03-18.md +181 -0
  61. package/pro/squads/aiox-sop/docs/scaling-strategy.md +129 -0
  62. package/pro/squads/aiox-sop/examples/README.md +14 -0
  63. package/pro/squads/aiox-sop/examples/sample-human-sop.md +11 -0
  64. package/pro/squads/aiox-sop/examples/sample-ml-sop.yaml +14 -0
  65. package/pro/squads/aiox-sop/outputs/README.md +20 -0
  66. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-001.md +864 -0
  67. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-001.yaml +1225 -0
  68. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-002.md +904 -0
  69. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-002.yaml +431 -0
  70. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-003.md +964 -0
  71. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-003.yaml +392 -0
  72. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-004.md +975 -0
  73. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-004.yaml +786 -0
  74. package/pro/squads/aiox-sop/protocols/sop-workflow-integration.md +209 -0
  75. package/pro/squads/aiox-sop/scripts/convert-sop-format-worker.py +299 -0
  76. package/pro/squads/aiox-sop/scripts/load-workspace-context.cjs +296 -0
  77. package/pro/squads/aiox-sop/scripts/normalize-thiagoroas-vsl-extractions.cjs +1448 -0
  78. package/pro/squads/aiox-sop/scripts/refresh-sop-registry.cjs +331 -0
  79. package/pro/squads/aiox-sop/scripts/resolve-environment-contract.cjs +107 -0
  80. package/pro/squads/aiox-sop/scripts/test-load-workspace-context.cjs +100 -0
  81. package/pro/squads/aiox-sop/scripts/test-resolve-environment-contract.cjs +159 -0
  82. package/pro/squads/aiox-sop/tasks/analyze-sop.md +464 -0
  83. package/pro/squads/aiox-sop/tasks/analyze-squad.md +317 -0
  84. package/pro/squads/aiox-sop/tasks/analyze-workflow.md +343 -0
  85. package/pro/squads/aiox-sop/tasks/audit-batch.md +354 -0
  86. package/pro/squads/aiox-sop/tasks/audit-sop.md +528 -0
  87. package/pro/squads/aiox-sop/tasks/benchmark-sop.md +408 -0
  88. package/pro/squads/aiox-sop/tasks/certify-sop.md +193 -0
  89. package/pro/squads/aiox-sop/tasks/check-environment.md +47 -0
  90. package/pro/squads/aiox-sop/tasks/compliance-check.md +84 -0
  91. package/pro/squads/aiox-sop/tasks/convert-sop-format.md +413 -0
  92. package/pro/squads/aiox-sop/tasks/create-checklist.md +267 -0
  93. package/pro/squads/aiox-sop/tasks/create-sop-human.md +306 -0
  94. package/pro/squads/aiox-sop/tasks/create-sop-ml.md +313 -0
  95. package/pro/squads/aiox-sop/tasks/create-sop-operations-suite.md +177 -0
  96. package/pro/squads/aiox-sop/tasks/delete-aiox-sop.md +38 -0
  97. package/pro/squads/aiox-sop/tasks/extract-from-video.md +354 -0
  98. package/pro/squads/aiox-sop/tasks/extract-sop.md +389 -0
  99. package/pro/squads/aiox-sop/tasks/load-workspace-context.md +112 -0
  100. package/pro/squads/aiox-sop/tasks/map-core-sop-backlog.md +651 -0
  101. package/pro/squads/aiox-sop/tasks/re-audit.md +97 -0
  102. package/pro/squads/aiox-sop/tasks/structured-interview.md +243 -0
  103. package/pro/squads/aiox-sop/tasks/update-aiox-sop.md +39 -0
  104. package/pro/squads/aiox-sop/templates/audit-report-template.md +119 -0
  105. package/pro/squads/aiox-sop/templates/certification-template.md +31 -0
  106. package/pro/squads/aiox-sop/templates/checklist-from-sop-tmpl.md +142 -0
  107. package/pro/squads/aiox-sop/templates/decision-tree-template.yaml +209 -0
  108. package/pro/squads/aiox-sop/templates/extraction-output-template.md +150 -0
  109. package/pro/squads/aiox-sop/templates/handoff-tmpl.yaml +85 -0
  110. package/pro/squads/aiox-sop/templates/ml-sop-json-template.json +208 -0
  111. package/pro/squads/aiox-sop/templates/ml-sop-yaml-template.yaml +204 -0
  112. package/pro/squads/aiox-sop/templates/nonconformity-register-template.md +85 -0
  113. package/pro/squads/aiox-sop/templates/sop-analysis-report-tmpl.md +378 -0
  114. package/pro/squads/aiox-sop/templates/sop-human-tmpl.md +385 -0
  115. package/pro/squads/aiox-sop/templates/sop-ml-tmpl.md +352 -0
  116. package/pro/squads/aiox-sop/templates/sop-scorecard-tmpl.md +123 -0
  117. package/pro/squads/aiox-sop/templates/state-machine-template.yaml +232 -0
  118. package/pro/squads/aiox-sop/templates/tool-binding-template.yaml +255 -0
  119. package/pro/squads/aiox-sop/templates/workflow-gap-report-tmpl.yaml +227 -0
  120. package/pro/squads/aiox-sop/workflows/wf-sop-audit-pipeline.yaml +381 -0
  121. package/pro/squads/aiox-sop/workflows/wf-sop-audit-pipeline.yaml.bak +332 -0
  122. package/pro/squads/aiox-sop/workflows/wf-sop-creation-pipeline.yaml +200 -0
  123. package/pro/squads/aiox-sop/workflows/wf-sop-creation-pipeline.yaml.bak +147 -0
  124. package/pro/squads/aiox-sop/workflows/wf-sop-extraction-pipeline.yaml +476 -0
  125. package/pro/squads/aiox-sop/workflows/wf-sop-extraction-pipeline.yaml.bak +441 -0
  126. package/pro/squads/aiox-sop/workflows/wf-sop-pipeline-definition.yaml +813 -0
  127. package/pro/squads/aiox-sop/workflows/wf-sop-quality-gates.yaml +473 -0
  128. package/pro/squads/brand/ARCHITECTURE.md +79 -0
  129. package/pro/squads/brand/CHANGELOG.md +38 -0
  130. package/pro/squads/brand/README.md +213 -0
  131. package/pro/squads/brand/agents/aaker-brand-identity.md +475 -0
  132. package/pro/squads/brand/agents/archetype-consultant.md +424 -0
  133. package/pro/squads/brand/agents/brand-chief.md +502 -0
  134. package/pro/squads/brand/agents/brand-strategist.md +661 -0
  135. package/pro/squads/brand/agents/domain-scout.md +412 -0
  136. package/pro/squads/brand/agents/heyward-dtc-brand.md +399 -0
  137. package/pro/squads/brand/agents/keller-brand-equity.md +390 -0
  138. package/pro/squads/brand/agents/miller-sticky-brand.md +510 -0
  139. package/pro/squads/brand/agents/naming-strategist.md +638 -0
  140. package/pro/squads/brand/agents/nano-banana-generator.md +38 -0
  141. package/pro/squads/brand/agents/neumeier-differentiation.md +390 -0
  142. package/pro/squads/brand/agents/ries-positioning.md +413 -0
  143. package/pro/squads/brand/agents/sharp-brand-science.md +444 -0
  144. package/pro/squads/brand/agents/storybrand-narrator.md +442 -0
  145. package/pro/squads/brand/agents/wheeler-brand-design.md +700 -0
  146. package/pro/squads/brand/agents/yohn-brand-culture.md +391 -0
  147. package/pro/squads/brand/checklists/brand-naming-checklist.md +46 -0
  148. package/pro/squads/brand/checklists/brand-quality-gate.md +58 -0
  149. package/pro/squads/brand/config/veto-conditions.yaml +54 -0
  150. package/pro/squads/brand/config.yaml +634 -0
  151. package/pro/squads/brand/data/brand-mappings.yaml +140 -0
  152. package/pro/squads/brand/data/logo-scds-templates.yaml +224 -0
  153. package/pro/squads/brand/data/logo-style-library.yaml +226 -0
  154. package/pro/squads/brand/data/swipe-file.yaml +282 -0
  155. package/pro/squads/brand/docs/optimization-economy-2026-03-10.md +25 -0
  156. package/pro/squads/brand/docs/optimization-material-inventory-2026-03-10.yaml +40 -0
  157. package/pro/squads/brand/docs/optimization-validation-2026-03-10.json +26 -0
  158. package/pro/squads/brand/docs/optimization-yolo-plan-2026-03-10.md +80 -0
  159. package/pro/squads/brand/docs/optimization-yolo-report-2026-03-10.md +158 -0
  160. package/pro/squads/brand/scripts/bootstrap-brand-workspace.sh +47 -0
  161. package/pro/squads/brand/scripts/validate-brand-essentials.sh +289 -0
  162. package/pro/squads/brand/tasks/brand-activation.md +86 -0
  163. package/pro/squads/brand/tasks/brand-book.md +224 -0
  164. package/pro/squads/brand/tasks/brand-consulting.md +189 -0
  165. package/pro/squads/brand/tasks/brand-diagnosis.md +81 -0
  166. package/pro/squads/brand/tasks/brand-identity.md +255 -0
  167. package/pro/squads/brand/tasks/brand-messaging.md +226 -0
  168. package/pro/squads/brand/tasks/brand-quality-gate.md +213 -0
  169. package/pro/squads/brand/tasks/create-brand-epic.md +129 -0
  170. package/pro/squads/brand/tasks/create-brand-story.md +155 -0
  171. package/pro/squads/brand/tasks/delete-brand.md +56 -0
  172. package/pro/squads/brand/tasks/domain-check.md +120 -0
  173. package/pro/squads/brand/tasks/load-workspace-context.md +112 -0
  174. package/pro/squads/brand/tasks/logo-curate.md +180 -0
  175. package/pro/squads/brand/tasks/logo-deliverable.md +210 -0
  176. package/pro/squads/brand/tasks/logo-generate.md +143 -0
  177. package/pro/squads/brand/tasks/logo-intake.md +151 -0
  178. package/pro/squads/brand/tasks/logo-prompt-engineering.md +151 -0
  179. package/pro/squads/brand/tasks/logo-refine.md +156 -0
  180. package/pro/squads/brand/tasks/logo-strategic-direction.md +160 -0
  181. package/pro/squads/brand/tasks/naming-generation.md +118 -0
  182. package/pro/squads/brand/tasks/positioning-narrative.md +93 -0
  183. package/pro/squads/brand/tasks/update-brand.md +52 -0
  184. package/pro/squads/brand/templates/brand-epic-tmpl.md +124 -0
  185. package/pro/squads/brand/templates/brand-story-tmpl.md +133 -0
  186. package/pro/squads/brand/templates/brandbook-tmpl.yaml +38 -0
  187. package/pro/squads/brand/templates/naming-report-tmpl.md +36 -0
  188. package/pro/squads/brand/workflows/wf-brand-activation-system.yaml +148 -0
  189. package/pro/squads/brand/workflows/wf-brand-all-hands.yaml +368 -0
  190. package/pro/squads/brand/workflows/wf-brand-complete.yaml +223 -0
  191. package/pro/squads/brand/workflows/wf-brand-consulting.yaml +301 -0
  192. package/pro/squads/brand/workflows/wf-brand-foundations.yaml +129 -0
  193. package/pro/squads/brand/workflows/wf-brand-mockup-generation.yaml +247 -0
  194. package/pro/squads/brand/workflows/wf-brand-positioning-narrative.yaml +146 -0
  195. package/pro/squads/brand/workflows/wf-logo-brainstorm.yaml +297 -0
  196. package/pro/squads/brand/workflows/wf-naming-to-domain.yaml +152 -0
  197. package/pro/squads/claude-code-mastery/ARCHITECTURE.md +224 -0
  198. package/pro/squads/claude-code-mastery/CHANGELOG.md +41 -0
  199. package/pro/squads/claude-code-mastery/README.md +146 -0
  200. package/pro/squads/claude-code-mastery/agents/claude-mastery-chief.md +542 -0
  201. package/pro/squads/claude-code-mastery/agents/config-engineer.md +1051 -0
  202. package/pro/squads/claude-code-mastery/agents/hooks-architect.md +1088 -0
  203. package/pro/squads/claude-code-mastery/agents/mcp-integrator.md +790 -0
  204. package/pro/squads/claude-code-mastery/agents/project-integrator.md +1184 -0
  205. package/pro/squads/claude-code-mastery/agents/roadmap-sentinel.md +922 -0
  206. package/pro/squads/claude-code-mastery/agents/skill-craftsman.md +1302 -0
  207. package/pro/squads/claude-code-mastery/agents/swarm-orchestrator.md +1072 -0
  208. package/pro/squads/claude-code-mastery/checklists/agent-team-readiness-checklist.md +88 -0
  209. package/pro/squads/claude-code-mastery/checklists/brownfield-readiness-checklist.md +91 -0
  210. package/pro/squads/claude-code-mastery/checklists/change-checklist.md +75 -0
  211. package/pro/squads/claude-code-mastery/checklists/context-rot-checklist.md +116 -0
  212. package/pro/squads/claude-code-mastery/checklists/integration-audit-checklist.md +104 -0
  213. package/pro/squads/claude-code-mastery/checklists/multi-agent-review-checklist.md +77 -0
  214. package/pro/squads/claude-code-mastery/checklists/pre-push-checklist.md +79 -0
  215. package/pro/squads/claude-code-mastery/config.yaml +351 -0
  216. package/pro/squads/claude-code-mastery/data/cc-architecture-map.yaml +217 -0
  217. package/pro/squads/claude-code-mastery/data/cc-permission-rules.yaml +281 -0
  218. package/pro/squads/claude-code-mastery/data/ci-cd-patterns.yaml +412 -0
  219. package/pro/squads/claude-code-mastery/data/claude-code-quick-ref.yaml +436 -0
  220. package/pro/squads/claude-code-mastery/data/frontmatter-schemas.yaml +395 -0
  221. package/pro/squads/claude-code-mastery/data/hook-patterns.yaml +799 -0
  222. package/pro/squads/claude-code-mastery/data/infrastructure-map.yaml +53 -0
  223. package/pro/squads/claude-code-mastery/data/journey-log-events.yaml +115 -0
  224. package/pro/squads/claude-code-mastery/data/mcp-integration-catalog.yaml +323 -0
  225. package/pro/squads/claude-code-mastery/data/project-type-signatures.yaml +335 -0
  226. package/pro/squads/claude-code-mastery/data/quality-gates.yaml +43 -0
  227. package/pro/squads/claude-code-mastery/data/swarm-agent-schema.yaml +35 -0
  228. package/pro/squads/claude-code-mastery/data/token-registry.yaml +213 -0
  229. package/pro/squads/claude-code-mastery/docs/.gitkeep +0 -0
  230. package/pro/squads/claude-code-mastery/scripts/README-Permission-Sync.md +38 -0
  231. package/pro/squads/claude-code-mastery/scripts/generate-tool-allowlists.js +232 -0
  232. package/pro/squads/claude-code-mastery/scripts/inject-accountability-tokens.js +91 -0
  233. package/pro/squads/claude-code-mastery/scripts/inject-output-schemas.js +131 -0
  234. package/pro/squads/claude-code-mastery/scripts/inject-swarm-fields.js +92 -0
  235. package/pro/squads/claude-code-mastery/scripts/prepare-claude-runtime.sh +26 -0
  236. package/pro/squads/claude-code-mastery/scripts/publish-mastery-report.sh +17 -0
  237. package/pro/squads/claude-code-mastery/scripts/session-usage-report.py +982 -0
  238. package/pro/squads/claude-code-mastery/scripts/session_usage_report_cache.py +163 -0
  239. package/pro/squads/claude-code-mastery/scripts/session_usage_report_claude_adapter.py +375 -0
  240. package/pro/squads/claude-code-mastery/scripts/session_usage_report_facets.py +1128 -0
  241. package/pro/squads/claude-code-mastery/scripts/session_usage_report_html.py +989 -0
  242. package/pro/squads/claude-code-mastery/scripts/session_usage_report_inventory.py +66 -0
  243. package/pro/squads/claude-code-mastery/scripts/session_usage_report_markdown.py +506 -0
  244. package/pro/squads/claude-code-mastery/scripts/session_usage_report_mock_insights_adapter.py +277 -0
  245. package/pro/squads/claude-code-mastery/scripts/session_usage_report_pipeline.py +519 -0
  246. package/pro/squads/claude-code-mastery/scripts/session_usage_report_recommendations.py +317 -0
  247. package/pro/squads/claude-code-mastery/scripts/session_usage_report_usage.py +235 -0
  248. package/pro/squads/claude-code-mastery/scripts/test_session_usage_report.py +1910 -0
  249. package/pro/squads/claude-code-mastery/scripts/validate-setup.js +597 -0
  250. package/pro/squads/claude-code-mastery/squad-io.yaml +151 -0
  251. package/pro/squads/claude-code-mastery/tasks/align-memory-context.md +212 -0
  252. package/pro/squads/claude-code-mastery/tasks/audit-integration.md +252 -0
  253. package/pro/squads/claude-code-mastery/tasks/audit-settings.md +239 -0
  254. package/pro/squads/claude-code-mastery/tasks/audit-setup.md +258 -0
  255. package/pro/squads/claude-code-mastery/tasks/brownfield-setup.md +355 -0
  256. package/pro/squads/claude-code-mastery/tasks/ci-cd-setup.md +368 -0
  257. package/pro/squads/claude-code-mastery/tasks/claude-md-engineer.md +367 -0
  258. package/pro/squads/claude-code-mastery/tasks/configure-claude-code.md +248 -0
  259. package/pro/squads/claude-code-mastery/tasks/context-rot-audit.md +363 -0
  260. package/pro/squads/claude-code-mastery/tasks/create-agent-definition.md +311 -0
  261. package/pro/squads/claude-code-mastery/tasks/create-rules.md +239 -0
  262. package/pro/squads/claude-code-mastery/tasks/create-team-topology.md +291 -0
  263. package/pro/squads/claude-code-mastery/tasks/delete-claude-code-mastery.md +224 -0
  264. package/pro/squads/claude-code-mastery/tasks/diagnose.md +199 -0
  265. package/pro/squads/claude-code-mastery/tasks/enterprise-config.md +379 -0
  266. package/pro/squads/claude-code-mastery/tasks/hook-designer.md +315 -0
  267. package/pro/squads/claude-code-mastery/tasks/integrate-project.md +337 -0
  268. package/pro/squads/claude-code-mastery/tasks/mcp-integration-plan.md +284 -0
  269. package/pro/squads/claude-code-mastery/tasks/mcp-workflow.md +330 -0
  270. package/pro/squads/claude-code-mastery/tasks/multi-project-setup.md +261 -0
  271. package/pro/squads/claude-code-mastery/tasks/optimize-context.md +250 -0
  272. package/pro/squads/claude-code-mastery/tasks/optimize-workflow.md +270 -0
  273. package/pro/squads/claude-code-mastery/tasks/parallel-decomposition.md +326 -0
  274. package/pro/squads/claude-code-mastery/tasks/permission-strategy.md +315 -0
  275. package/pro/squads/claude-code-mastery/tasks/rebuild-runtime-validator.md +234 -0
  276. package/pro/squads/claude-code-mastery/tasks/refresh-runtime-contract.md +235 -0
  277. package/pro/squads/claude-code-mastery/tasks/sandbox-setup.md +312 -0
  278. package/pro/squads/claude-code-mastery/tasks/setup-repository.md +263 -0
  279. package/pro/squads/claude-code-mastery/tasks/setup-wizard.md +269 -0
  280. package/pro/squads/claude-code-mastery/tasks/update-claude-code-mastery.md +227 -0
  281. package/pro/squads/claude-code-mastery/tasks/worktree-strategy.md +353 -0
  282. package/pro/squads/claude-code-mastery/templates/baseline-kpis-tmpl.yaml +0 -0
  283. package/pro/squads/claude-code-mastery/templates/claude-md-fullstack.md +147 -0
  284. package/pro/squads/claude-code-mastery/templates/claude-md-library.md +175 -0
  285. package/pro/squads/claude-code-mastery/templates/claude-md-microservices.md +186 -0
  286. package/pro/squads/claude-code-mastery/templates/claude-md-mobile.md +198 -0
  287. package/pro/squads/claude-code-mastery/templates/claude-md-monorepo.md +139 -0
  288. package/pro/squads/claude-code-mastery/templates/concept-mapping-tmpl.yaml +0 -0
  289. package/pro/squads/claude-code-mastery/templates/cross-domain-handoff-tmpl.yaml +15 -0
  290. package/pro/squads/claude-code-mastery/templates/github-actions-claude-ci.yml +348 -0
  291. package/pro/squads/claude-code-mastery/templates/github-actions-claude-review.yml +179 -0
  292. package/pro/squads/claude-code-mastery/templates/hook-implementation-tmpl.md +24 -0
  293. package/pro/squads/claude-code-mastery/templates/mcp-config-tmpl.yaml +18 -0
  294. package/pro/squads/claude-code-mastery/templates/session-usage-report-page.css +591 -0
  295. package/pro/squads/claude-code-mastery/templates/session-usage-report-page.html +32 -0
  296. package/pro/squads/claude-code-mastery/templates/session-usage-report-tmpl.yaml +224 -0
  297. package/pro/squads/claude-code-mastery/templates/skill-definition-tmpl.md +67 -0
  298. package/pro/squads/claude-code-mastery/templates/violations-log-tmpl.jsonl +0 -0
  299. package/pro/squads/claude-code-mastery/workflows/wf-audit-complete.yaml +178 -0
  300. package/pro/squads/claude-code-mastery/workflows/wf-knowledge-update.yaml +447 -0
  301. package/pro/squads/claude-code-mastery/workflows/wf-project-setup.yaml +236 -0
  302. package/pro/squads/data/HEADLINE.md +3 -0
  303. package/pro/squads/data/README.md +292 -0
  304. package/pro/squads/data/agents/avinash-kaushik.md +1117 -0
  305. package/pro/squads/data/agents/data-chief.md +1035 -0
  306. package/pro/squads/data/agents/david-spinks.md +1896 -0
  307. package/pro/squads/data/agents/nick-mehta.md +1338 -0
  308. package/pro/squads/data/agents/peter-fader.md +1815 -0
  309. package/pro/squads/data/agents/sean-ellis.md +2460 -0
  310. package/pro/squads/data/agents/wes-kao.md +2124 -0
  311. package/pro/squads/data/checklists/cbc-readiness-checklist.md +155 -0
  312. package/pro/squads/data/checklists/community-health-checklist.md +131 -0
  313. package/pro/squads/data/checklists/customer-360-checklist.md +997 -0
  314. package/pro/squads/data/checklists/customer-centricity-checklist.md +105 -0
  315. package/pro/squads/data/checklists/health-score-checklist.md +984 -0
  316. package/pro/squads/data/checklists/pre-implementation-checklist.md +291 -0
  317. package/pro/squads/data/checklists/so-what-checklist.md +326 -0
  318. package/pro/squads/data/config.yaml +705 -0
  319. package/pro/squads/data/data/.gitkeep +0 -0
  320. package/pro/squads/data/data/README.md +84 -0
  321. package/pro/squads/data/data/framework/01_arquitetura_geral.md +134 -0
  322. package/pro/squads/data/data/framework/02_tier0_fundacao.md +198 -0
  323. package/pro/squads/data/data/framework/03_tier0_fundamentadores.md +297 -0
  324. package/pro/squads/data/data/framework/04_tier1_operacionalizadores.md +447 -0
  325. package/pro/squads/data/data/framework/05_tier2_comunicadores.md +297 -0
  326. package/pro/squads/data/data/framework/06_matriz_decisao.md +328 -0
  327. package/pro/squads/data/data/framework/07_workflows.md +552 -0
  328. package/pro/squads/data/data/framework/08_cheatsheet.md +216 -0
  329. package/pro/squads/data/examples/cohorts-diagnostic-sample-output.yaml +10 -0
  330. package/pro/squads/data/outputs/workspace-hardening-summary.md +12 -0
  331. package/pro/squads/data/projects/data-v1-setup/prd.json +440 -0
  332. package/pro/squads/data/projects/data-v1-setup/prompt.md +184 -0
  333. package/pro/squads/data/scripts/bootstrap-data-workspace.sh +186 -0
  334. package/pro/squads/data/scripts/validate-data-essentials.sh +237 -0
  335. package/pro/squads/data/tasks/analyze-cohort.md +1777 -0
  336. package/pro/squads/data/tasks/build-attribution.md +1695 -0
  337. package/pro/squads/data/tasks/calculate-clv.md +1660 -0
  338. package/pro/squads/data/tasks/create-dashboard.md +2305 -0
  339. package/pro/squads/data/tasks/define-north-star.md +1779 -0
  340. package/pro/squads/data/tasks/design-health-score.md +1952 -0
  341. package/pro/squads/data/tasks/design-learning-outcomes.md +2122 -0
  342. package/pro/squads/data/tasks/load-workspace-context.md +115 -0
  343. package/pro/squads/data/tasks/measure-community.md +1376 -0
  344. package/pro/squads/data/tasks/predict-churn.md +1979 -0
  345. package/pro/squads/data/tasks/run-growth-experiment.md +1863 -0
  346. package/pro/squads/data/tasks/run-pmf-test.md +1514 -0
  347. package/pro/squads/data/tasks/segment-rfm.md +2070 -0
  348. package/pro/squads/data/templates/attribution-report-tmpl.yaml +94 -0
  349. package/pro/squads/data/templates/churn-alert-tmpl.yaml +529 -0
  350. package/pro/squads/data/templates/clv-report-tmpl.yaml +818 -0
  351. package/pro/squads/data/templates/cohort-analysis-tmpl.yaml +72 -0
  352. package/pro/squads/data/templates/cohorts/community-health-cohort-tmpl.yaml +60 -0
  353. package/pro/squads/data/templates/cohorts/executive-summary-tmpl.yaml +54 -0
  354. package/pro/squads/data/templates/cohorts/icp-deep-analysis-tmpl.yaml +49 -0
  355. package/pro/squads/data/templates/cohorts/learning-journey-tmpl.yaml +52 -0
  356. package/pro/squads/data/templates/cohorts/segmentation-rfm-tmpl.yaml +48 -0
  357. package/pro/squads/data/templates/cohorts/student-health-score-tmpl.yaml +50 -0
  358. package/pro/squads/data/templates/community-health-tmpl.yaml +106 -0
  359. package/pro/squads/data/templates/customer-360-tmpl.yaml +80 -0
  360. package/pro/squads/data/templates/dmmm-tmpl.yaml +134 -0
  361. package/pro/squads/data/templates/executive-report-tmpl.yaml +432 -0
  362. package/pro/squads/data/templates/health-score-report-tmpl.yaml +644 -0
  363. package/pro/squads/data/templates/learning-outcomes-tmpl.yaml +112 -0
  364. package/pro/squads/data/workflows/cohort-analysis-workflow.md +356 -0
  365. package/pro/squads/data/workflows/cohorts-diagnostic.md +96 -0
  366. package/pro/squads/data/workflows/create-churn-system.md +354 -0
  367. package/pro/squads/data/workflows/fix-completion-rate.md +436 -0
  368. package/pro/squads/data/workflows/implement-attribution.md +371 -0
  369. package/pro/squads/data/workflows/implement-customer-360.md +297 -0
  370. package/pro/squads/data/workflows/optimize-community-workflow.md +463 -0
  371. package/pro/squads/data/workspace-hardening-state.json +6 -0
  372. package/pro/squads/db-sage/README.md +331 -0
  373. package/pro/squads/db-sage/agents/db-sage.md +317 -0
  374. package/pro/squads/db-sage/checklists/database-design-checklist.md +79 -0
  375. package/pro/squads/db-sage/checklists/database-migration-documentation-checklist.md +348 -0
  376. package/pro/squads/db-sage/checklists/db-kiss-validation-checklist.md +246 -0
  377. package/pro/squads/db-sage/checklists/dba-predeploy-checklist.md +276 -0
  378. package/pro/squads/db-sage/checklists/dba-rollback-checklist.md +65 -0
  379. package/pro/squads/db-sage/checklists/migration-validation-checklist.md +195 -0
  380. package/pro/squads/db-sage/checklists/supabase-best-practices-audit.md +256 -0
  381. package/pro/squads/db-sage/config.yaml +165 -0
  382. package/pro/squads/db-sage/data/database-best-practices.md +42 -0
  383. package/pro/squads/db-sage/data/migration-safety-guide.md +64 -0
  384. package/pro/squads/db-sage/data/postgres-tuning-guide.md +39 -0
  385. package/pro/squads/db-sage/data/rls-security-patterns.md +46 -0
  386. package/pro/squads/db-sage/data/supabase-agent-skills.md +970 -0
  387. package/pro/squads/db-sage/data/supabase-patterns.md +482 -0
  388. package/pro/squads/db-sage/docs/.gitkeep +0 -0
  389. package/pro/squads/db-sage/scripts/database-adapters/detect-database.sh +113 -0
  390. package/pro/squads/db-sage/scripts/database-adapters/postgresql-schema-loader.sh +334 -0
  391. package/pro/squads/db-sage/scripts/database-adapters/unified-db-loader.sh +176 -0
  392. package/pro/squads/db-sage/scripts/database-operations/README.md +638 -0
  393. package/pro/squads/db-sage/scripts/database-operations/backup-manager.sh +341 -0
  394. package/pro/squads/db-sage/scripts/database-operations/connection-monitor.sh +433 -0
  395. package/pro/squads/db-sage/scripts/database-operations/constraint-validator.sh +588 -0
  396. package/pro/squads/db-sage/scripts/database-operations/data-anonymizer.sh +446 -0
  397. package/pro/squads/db-sage/scripts/database-operations/data-loader.sh +346 -0
  398. package/pro/squads/db-sage/scripts/database-operations/explain-analyzer.sh +285 -0
  399. package/pro/squads/db-sage/scripts/database-operations/health-checker.sh +512 -0
  400. package/pro/squads/db-sage/scripts/database-operations/index-manager.sh +380 -0
  401. package/pro/squads/db-sage/scripts/database-operations/migration-generator.sh +490 -0
  402. package/pro/squads/db-sage/scripts/database-operations/migration-safe-runner.sh +228 -0
  403. package/pro/squads/db-sage/scripts/database-operations/permission-auditor.sh +513 -0
  404. package/pro/squads/db-sage/scripts/database-operations/query-killer.sh +306 -0
  405. package/pro/squads/db-sage/scripts/database-operations/replication-monitor.sh +366 -0
  406. package/pro/squads/db-sage/scripts/database-operations/rls-policy-installer.sh +480 -0
  407. package/pro/squads/db-sage/scripts/database-operations/rls-test-suite.sh +172 -0
  408. package/pro/squads/db-sage/scripts/database-operations/schema-differ.sh +265 -0
  409. package/pro/squads/db-sage/scripts/database-operations/security-scanner.sh +683 -0
  410. package/pro/squads/db-sage/scripts/database-operations/setup-pgpass.sh +185 -0
  411. package/pro/squads/db-sage/scripts/database-operations/vacuum-optimizer.sh +448 -0
  412. package/pro/squads/db-sage/scripts/db-ops/backup-manager.sh +321 -0
  413. package/pro/squads/db-sage/scripts/db-ops/best-practices-auditor.sh +534 -0
  414. package/pro/squads/db-sage/scripts/db-ops/bootstrap-runner.sh +255 -0
  415. package/pro/squads/db-sage/scripts/db-ops/data-loader.sh +616 -0
  416. package/pro/squads/db-sage/scripts/db-ops/detect-database.sh +25 -0
  417. package/pro/squads/db-sage/scripts/db-ops/explain-analyzer.sh +90 -0
  418. package/pro/squads/db-sage/scripts/db-ops/health-checker.sh +323 -0
  419. package/pro/squads/db-sage/scripts/db-ops/migration-runner.sh +308 -0
  420. package/pro/squads/db-sage/scripts/db-ops/query-runner.sh +171 -0
  421. package/pro/squads/db-sage/scripts/db-ops/rls-policy-installer.sh +46 -0
  422. package/pro/squads/db-sage/scripts/db-ops/rls-test-suite.sh +38 -0
  423. package/pro/squads/db-sage/scripts/db-ops/schema-context-loader.sh +25 -0
  424. package/pro/squads/db-sage/scripts/db-ops/squad-integration-preflight.sh +155 -0
  425. package/pro/squads/db-sage/tasks/create-doc.md +107 -0
  426. package/pro/squads/db-sage/tasks/db-analyze-hotpaths.md +406 -0
  427. package/pro/squads/db-sage/tasks/db-apply-migration.md +206 -0
  428. package/pro/squads/db-sage/tasks/db-best-practices-audit.md +523 -0
  429. package/pro/squads/db-sage/tasks/db-bootstrap.md +464 -0
  430. package/pro/squads/db-sage/tasks/db-dry-run.md +122 -0
  431. package/pro/squads/db-sage/tasks/db-env-check.md +94 -0
  432. package/pro/squads/db-sage/tasks/db-explain.md +461 -0
  433. package/pro/squads/db-sage/tasks/db-impersonate.md +326 -0
  434. package/pro/squads/db-sage/tasks/db-load-csv.md +433 -0
  435. package/pro/squads/db-sage/tasks/db-policy-apply.md +464 -0
  436. package/pro/squads/db-sage/tasks/db-rls-audit.md +241 -0
  437. package/pro/squads/db-sage/tasks/db-rollback.md +573 -0
  438. package/pro/squads/db-sage/tasks/db-run-sql.md +453 -0
  439. package/pro/squads/db-sage/tasks/db-seed.md +230 -0
  440. package/pro/squads/db-sage/tasks/db-smoke-test.md +181 -0
  441. package/pro/squads/db-sage/tasks/db-snapshot.md +403 -0
  442. package/pro/squads/db-sage/tasks/db-squad-integration.md +487 -0
  443. package/pro/squads/db-sage/tasks/db-verify-order.md +344 -0
  444. package/pro/squads/db-sage/tasks/domain-modeling.md +517 -0
  445. package/pro/squads/db-sage/tasks/execute-checklist.md +99 -0
  446. package/pro/squads/db-sage/tasks/kiss.md +129 -0
  447. package/pro/squads/db-sage/tasks/query-optimization.md +599 -0
  448. package/pro/squads/db-sage/tasks/schema-audit.md +833 -0
  449. package/pro/squads/db-sage/tasks/supabase-setup.md +536 -0
  450. package/pro/squads/db-sage/templates/backup-metadata.json.tmpl +7 -0
  451. package/pro/squads/db-sage/templates/db-analysis-template.yaml +291 -0
  452. package/pro/squads/db-sage/templates/index-strategy-tmpl.yaml +53 -0
  453. package/pro/squads/db-sage/templates/migration-plan-tmpl.yaml +1022 -0
  454. package/pro/squads/db-sage/templates/migration.sql.tmpl +9 -0
  455. package/pro/squads/db-sage/templates/rls-policies-tmpl.yaml +1201 -0
  456. package/pro/squads/db-sage/templates/rollback.sql.tmpl +9 -0
  457. package/pro/squads/db-sage/templates/schema-design-tmpl.yaml +426 -0
  458. package/pro/squads/db-sage/workflows/analyze-data-workflow.yaml +407 -0
  459. package/pro/squads/db-sage/workflows/backup-restore-workflow.yaml +121 -0
  460. package/pro/squads/db-sage/workflows/kiss-gate-workflow.yaml +143 -0
  461. package/pro/squads/db-sage/workflows/modify-schema-workflow.yaml +440 -0
  462. package/pro/squads/db-sage/workflows/performance-tuning-workflow.yaml +104 -0
  463. package/pro/squads/db-sage/workflows/query-database-workflow.yaml +394 -0
  464. package/pro/squads/db-sage/workflows/setup-database-workflow.yaml +428 -0
  465. package/pro/squads/design/HEADLINE.md +3 -0
  466. package/pro/squads/design/README.md +109 -0
  467. package/pro/squads/design/agents/brad-frost.md +1097 -0
  468. package/pro/squads/design/agents/dan-mall.md +857 -0
  469. package/pro/squads/design/agents/dave-malouf.md +2272 -0
  470. package/pro/squads/design/agents/design-chief.md +114 -0
  471. package/pro/squads/design/agents/ds-foundations-lead.md +194 -0
  472. package/pro/squads/design/agents/ds-token-architect.md +361 -0
  473. package/pro/squads/design/agents/nano-banana-generator.md +162 -0
  474. package/pro/squads/design/agents/storybook-expert.md +809 -0
  475. package/pro/squads/design/checklists/atomic-refactor-checklist.md +299 -0
  476. package/pro/squads/design/checklists/component-adaptation-checklist.md +81 -0
  477. package/pro/squads/design/checklists/design-fidelity-checklist.md +283 -0
  478. package/pro/squads/design/checklists/design-handoff-checklist.md +55 -0
  479. package/pro/squads/design/checklists/design-team-health-checklist.md +454 -0
  480. package/pro/squads/design/checklists/designops-maturity-checklist.md +518 -0
  481. package/pro/squads/design/checklists/ds-a11y-release-gate-checklist.md +45 -0
  482. package/pro/squads/design/checklists/ds-accessibility-wcag-checklist.md +147 -0
  483. package/pro/squads/design/checklists/ds-component-quality-checklist.md +150 -0
  484. package/pro/squads/design/checklists/ds-critical-eye-review-checklist.md +147 -0
  485. package/pro/squads/design/checklists/ds-migration-readiness-checklist.md +99 -0
  486. package/pro/squads/design/checklists/ds-pattern-audit-checklist.md +164 -0
  487. package/pro/squads/design/checklists/reading-accessibility-checklist.md +275 -0
  488. package/pro/squads/design/checklists/token-mapping-checklist.md +107 -0
  489. package/pro/squads/design/config/coding-standards.md +286 -0
  490. package/pro/squads/design/config/source-tree.md +59 -0
  491. package/pro/squads/design/config/tech-stack.md +48 -0
  492. package/pro/squads/design/config.yaml +207 -0
  493. package/pro/squads/design/data/agentic-design-systems-guide.md +46 -0
  494. package/pro/squads/design/data/agentic-ds-principles.md +100 -0
  495. package/pro/squads/design/data/atomic-design-principles.md +108 -0
  496. package/pro/squads/design/data/atomic-refactor-rules.md +582 -0
  497. package/pro/squads/design/data/base-component-specs.md +972 -0
  498. package/pro/squads/design/data/brad-frost-analysis-extract-implicit.yaml +270 -0
  499. package/pro/squads/design/data/brad-frost-analysis-find-0.8.yaml +176 -0
  500. package/pro/squads/design/data/brad-frost-analysis-qa-report.yaml +168 -0
  501. package/pro/squads/design/data/brad-frost-dna.yaml +713 -0
  502. package/pro/squads/design/data/capability-tools.yaml +124 -0
  503. package/pro/squads/design/data/component-adaptation-changelog.md +318 -0
  504. package/pro/squads/design/data/consolidation-algorithms.md +168 -0
  505. package/pro/squads/design/data/critical-eye-scoring-rules.yaml +240 -0
  506. package/pro/squads/design/data/design-token-best-practices.md +107 -0
  507. package/pro/squads/design/data/design-tokens-spec.yaml +418 -0
  508. package/pro/squads/design/data/ds-reference-architectures.md +93 -0
  509. package/pro/squads/design/data/f2-qa-report.md +168 -0
  510. package/pro/squads/design/data/f3-derived-components-changelog.md +100 -0
  511. package/pro/squads/design/data/f3-qa-report.md +208 -0
  512. package/pro/squads/design/data/figma-base-components-raw.md +102 -0
  513. package/pro/squads/design/data/figma-tokens-raw.md +1549 -0
  514. package/pro/squads/design/data/fluent2-design-principles.md +114 -0
  515. package/pro/squads/design/data/high-retention-reading-guide.md +349 -0
  516. package/pro/squads/design/data/integration-patterns.md +207 -0
  517. package/pro/squads/design/data/internal-quality-chain.yaml +48 -0
  518. package/pro/squads/design/data/motion-tokens-guide.md +202 -0
  519. package/pro/squads/design/data/roi-calculation-guide.md +142 -0
  520. package/pro/squads/design/data/token-mapping-reference.md +213 -0
  521. package/pro/squads/design/data/w3c-dtcg-spec-reference.md +149 -0
  522. package/pro/squads/design/data/wcag-compliance-guide.md +267 -0
  523. package/pro/squads/design/docs/AUDIT_REPORT.md +97 -0
  524. package/pro/squads/design/docs/DS-CURATION-PIPELINE-PROPOSAL.md +577 -0
  525. package/pro/squads/design/docs/UPGRADE_PLAN.md +618 -0
  526. package/pro/squads/design/docs/brad-frost-research-validation.md +372 -0
  527. package/pro/squads/design/docs/dave-malouf-research-validation.md +391 -0
  528. package/pro/squads/design/docs/tool-discovery-report.md +87 -0
  529. package/pro/squads/design/docs/tool-integration-plan.md +44 -0
  530. package/pro/squads/design/protocols/ai-first-governance.md +56 -0
  531. package/pro/squads/design/protocols/governance-execution-boundary.md +59 -0
  532. package/pro/squads/design/protocols/handoff.md +60 -0
  533. package/pro/squads/design/rules/.claude-rules.md +88 -0
  534. package/pro/squads/design/scripts/design-system/curate_colors.cjs +447 -0
  535. package/pro/squads/design/scripts/design-system/curate_components.cjs +217 -0
  536. package/pro/squads/design/scripts/design-system/curate_radius.cjs +190 -0
  537. package/pro/squads/design/scripts/design-system/curate_shadows.cjs +208 -0
  538. package/pro/squads/design/scripts/design-system/curate_spacing.cjs +243 -0
  539. package/pro/squads/design/scripts/design-system/curate_typography.cjs +404 -0
  540. package/pro/squads/design/scripts/design-system/design-system-metadata.test.js +49 -0
  541. package/pro/squads/design/scripts/design-system/design_manifest_lib.cjs +142 -0
  542. package/pro/squads/design/scripts/design-system/fetch_page_images.cjs +195 -0
  543. package/pro/squads/design/scripts/design-system/generate_components_metadata.cjs +114 -0
  544. package/pro/squads/design/scripts/design-system/generate_curation_report.cjs +258 -0
  545. package/pro/squads/design/scripts/design-system/generate_tokens.cjs +342 -0
  546. package/pro/squads/design/scripts/design-system/sync_design_manifest.cjs +27 -0
  547. package/pro/squads/design/scripts/design-system/test_mcp_tools.cjs +232 -0
  548. package/pro/squads/design/scripts/design-system/validate_components_metadata.cjs +96 -0
  549. package/pro/squads/design/scripts/design-system/validate_curation.cjs +226 -0
  550. package/pro/squads/design/scripts/design-system/validate_design_manifest_drift.cjs +72 -0
  551. package/pro/squads/design/scripts/design-system/validate_mcp_skeleton.cjs +38 -0
  552. package/pro/squads/design/scripts/design-system/validate_registry.cjs +186 -0
  553. package/pro/squads/design/scripts/design-system/validate_task_checklist_bindings.cjs +78 -0
  554. package/pro/squads/design/scripts/dissect-artifact.cjs +806 -0
  555. package/pro/squads/design/scripts/validate-a11y-integration.cjs +40 -0
  556. package/pro/squads/design/scripts/validate-design-squad.py +411 -0
  557. package/pro/squads/design/squad.yaml +714 -0
  558. package/pro/squads/design/tasks/a11y-audit.md +340 -0
  559. package/pro/squads/design/tasks/aria-audit.md +525 -0
  560. package/pro/squads/design/tasks/atomic-refactor-execute.md +391 -0
  561. package/pro/squads/design/tasks/atomic-refactor-plan.md +262 -0
  562. package/pro/squads/design/tasks/audit-reading-experience.md +350 -0
  563. package/pro/squads/design/tasks/audit-tailwind-config.md +101 -0
  564. package/pro/squads/design/tasks/bootstrap-shadcn-library.md +96 -0
  565. package/pro/squads/design/tasks/bundle-audit.md +245 -0
  566. package/pro/squads/design/tasks/contrast-matrix.md +373 -0
  567. package/pro/squads/design/tasks/create-doc.md +135 -0
  568. package/pro/squads/design/tasks/dead-code-detection.md +329 -0
  569. package/pro/squads/design/tasks/design-compare.md +414 -0
  570. package/pro/squads/design/tasks/design-process-optimization.md +407 -0
  571. package/pro/squads/design/tasks/design-review-orchestration.md +99 -0
  572. package/pro/squads/design/tasks/design-team-scaling.md +407 -0
  573. package/pro/squads/design/tasks/design-tooling-audit.md +404 -0
  574. package/pro/squads/design/tasks/design-triage.md +89 -0
  575. package/pro/squads/design/tasks/designops-maturity-assessment.md +364 -0
  576. package/pro/squads/design/tasks/designops-metrics-setup.md +465 -0
  577. package/pro/squads/design/tasks/ds-agentic-audit.md +100 -0
  578. package/pro/squads/design/tasks/ds-agentic-setup.md +103 -0
  579. package/pro/squads/design/tasks/ds-audit-codebase.md +273 -0
  580. package/pro/squads/design/tasks/ds-build-component.md +349 -0
  581. package/pro/squads/design/tasks/ds-build-mcp-server.md +84 -0
  582. package/pro/squads/design/tasks/ds-calculate-roi.md +282 -0
  583. package/pro/squads/design/tasks/ds-compose-molecule.md +106 -0
  584. package/pro/squads/design/tasks/ds-consolidate-patterns.md +253 -0
  585. package/pro/squads/design/tasks/ds-context-contract.md +194 -0
  586. package/pro/squads/design/tasks/ds-critical-eye-compare.md +130 -0
  587. package/pro/squads/design/tasks/ds-critical-eye-decide.md +139 -0
  588. package/pro/squads/design/tasks/ds-critical-eye-inventory.md +111 -0
  589. package/pro/squads/design/tasks/ds-critical-eye-report.md +101 -0
  590. package/pro/squads/design/tasks/ds-critical-eye-score.md +109 -0
  591. package/pro/squads/design/tasks/ds-designops.md +99 -0
  592. package/pro/squads/design/tasks/ds-extend-pattern.md +91 -0
  593. package/pro/squads/design/tasks/ds-extract-tokens.md +312 -0
  594. package/pro/squads/design/tasks/ds-figma-pipeline.md +95 -0
  595. package/pro/squads/design/tasks/ds-fluent-audit.md +105 -0
  596. package/pro/squads/design/tasks/ds-fluent-build.md +110 -0
  597. package/pro/squads/design/tasks/ds-generate-ai-metadata.md +81 -0
  598. package/pro/squads/design/tasks/ds-generate-cursor-rules.md +74 -0
  599. package/pro/squads/design/tasks/ds-generate-documentation.md +101 -0
  600. package/pro/squads/design/tasks/ds-generate-migration-strategy.md +331 -0
  601. package/pro/squads/design/tasks/ds-generate-shock-report.md +323 -0
  602. package/pro/squads/design/tasks/ds-govern-a11y-compliance.md +93 -0
  603. package/pro/squads/design/tasks/ds-governance.md +187 -0
  604. package/pro/squads/design/tasks/ds-health-metrics.md +278 -0
  605. package/pro/squads/design/tasks/ds-integrate-squad.md +130 -0
  606. package/pro/squads/design/tasks/ds-integrate-workspace.md +100 -0
  607. package/pro/squads/design/tasks/ds-legacy-modernization.md +302 -0
  608. package/pro/squads/design/tasks/ds-mcp-status.md +65 -0
  609. package/pro/squads/design/tasks/ds-motion-audit.md +118 -0
  610. package/pro/squads/design/tasks/ds-multi-framework.md +96 -0
  611. package/pro/squads/design/tasks/ds-parallelization-gate.md +246 -0
  612. package/pro/squads/design/tasks/ds-query.md +90 -0
  613. package/pro/squads/design/tasks/ds-rebuild-artifact.md +369 -0
  614. package/pro/squads/design/tasks/ds-reverse-engineer.md +194 -0
  615. package/pro/squads/design/tasks/ds-scan-artifact.md +131 -0
  616. package/pro/squads/design/tasks/ds-setup-design-system.md +297 -0
  617. package/pro/squads/design/tasks/ds-sync-registry.md +287 -0
  618. package/pro/squads/design/tasks/ds-theme-multi-brand.md +90 -0
  619. package/pro/squads/design/tasks/ds-token-modes.md +108 -0
  620. package/pro/squads/design/tasks/ds-token-w3c-extract.md +105 -0
  621. package/pro/squads/design/tasks/ds-validate-ai-readiness.md +69 -0
  622. package/pro/squads/design/tasks/ds-visual-regression.md +130 -0
  623. package/pro/squads/design/tasks/execute-checklist.md +141 -0
  624. package/pro/squads/design/tasks/export-design-tokens-dtcg.md +97 -0
  625. package/pro/squads/design/tasks/f1-apply-foundations.md +154 -0
  626. package/pro/squads/design/tasks/f1-ingest-figma-tokens.md +130 -0
  627. package/pro/squads/design/tasks/f1-map-tokens-to-shadcn.md +145 -0
  628. package/pro/squads/design/tasks/f1-qa-foundations.md +95 -0
  629. package/pro/squads/design/tasks/f2-adapt-shadcn-components.md +155 -0
  630. package/pro/squads/design/tasks/f2-ingest-base-components.md +148 -0
  631. package/pro/squads/design/tasks/f2-qa-base-components.md +98 -0
  632. package/pro/squads/design/tasks/f3-derive-components.md +145 -0
  633. package/pro/squads/design/tasks/f3-qa-derived-components.md +101 -0
  634. package/pro/squads/design/tasks/focus-order-audit.md +450 -0
  635. package/pro/squads/design/tasks/sb-brownfield-migrate.md +367 -0
  636. package/pro/squads/design/tasks/sb-brownfield-scan.md +318 -0
  637. package/pro/squads/design/tasks/sb-configure.md +230 -0
  638. package/pro/squads/design/tasks/sb-expand-shadcn.md +213 -0
  639. package/pro/squads/design/tasks/sb-generate-all-stories.md +288 -0
  640. package/pro/squads/design/tasks/sb-install.md +152 -0
  641. package/pro/squads/design/tasks/sb-sync-workspace.md +239 -0
  642. package/pro/squads/design/tasks/sb-verify.md +203 -0
  643. package/pro/squads/design/tasks/tailwind-upgrade.md +117 -0
  644. package/pro/squads/design/tasks/token-usage-analytics.md +262 -0
  645. package/pro/squads/design/tasks/ux-rewrite-sixth-grade.md +82 -0
  646. package/pro/squads/design/tasks/validate-design-fidelity.md +222 -0
  647. package/pro/squads/design/templates/agent-template.yaml +46 -0
  648. package/pro/squads/design/templates/clone-mind-template.md +352 -0
  649. package/pro/squads/design/templates/component-prompt-injection-tmpl.md +236 -0
  650. package/pro/squads/design/templates/component-visual-spec-tmpl.md +378 -0
  651. package/pro/squads/design/templates/critical-eye-cycle-report-tmpl.md +165 -0
  652. package/pro/squads/design/templates/design-fidelity-report-tmpl.md +155 -0
  653. package/pro/squads/design/templates/ds-ai-component-metadata-schema-tmpl.json +138 -0
  654. package/pro/squads/design/templates/ds-artifact-analysis.md +70 -0
  655. package/pro/squads/design/templates/ds-health-report-tmpl.md +236 -0
  656. package/pro/squads/design/templates/ds-migration-strategy-tmpl.md +524 -0
  657. package/pro/squads/design/templates/ds-state-persistence-tmpl.yaml +194 -0
  658. package/pro/squads/design/templates/ds-tokens-schema-tmpl.yaml +139 -0
  659. package/pro/squads/design/templates/migration-strategy-tmpl.md +524 -0
  660. package/pro/squads/design/templates/reading-design-tokens.css +26 -0
  661. package/pro/squads/design/templates/state-persistence-tmpl.yaml +219 -0
  662. package/pro/squads/design/templates/tokens-schema-tmpl.yaml +305 -0
  663. package/pro/squads/design/workflows/agentic-readiness.yaml +83 -0
  664. package/pro/squads/design/workflows/audit-only.yaml +198 -0
  665. package/pro/squads/design/workflows/brownfield-complete.yaml +257 -0
  666. package/pro/squads/design/workflows/critical-eye.yaml +184 -0
  667. package/pro/squads/design/workflows/dtcg-tokens-governance.yaml +64 -0
  668. package/pro/squads/design/workflows/foundations-pipeline.yaml +192 -0
  669. package/pro/squads/design/workflows/greenfield-new.yaml +192 -0
  670. package/pro/squads/design/workflows/motion-quality.yaml +65 -0
  671. package/pro/squads/design/workflows/self-healing-workflow.yaml +237 -0
  672. package/pro/squads/design/workflows/storybook-brownfield-migration.yaml +400 -0
  673. package/pro/squads/design/workflows/storybook-full-setup.yaml +280 -0
  674. package/pro/squads/etl-ops/HEADLINE.md +3 -0
  675. package/pro/squads/etl-ops/README.md +121 -0
  676. package/pro/squads/etl-ops/agents/etl-chief.md +440 -0
  677. package/pro/squads/etl-ops/agents/etl-extractor.md +352 -0
  678. package/pro/squads/etl-ops/agents/etl-transformer.md +409 -0
  679. package/pro/squads/etl-ops/checklists/.gitkeep +0 -0
  680. package/pro/squads/etl-ops/checklists/README.md +1 -0
  681. package/pro/squads/etl-ops/config.yaml +405 -0
  682. package/pro/squads/etl-ops/data/checkpoints.yaml +92 -0
  683. package/pro/squads/etl-ops/data/enriched-transcript.schema.json +107 -0
  684. package/pro/squads/etl-ops/data/infrastructure-map.yaml +27 -0
  685. package/pro/squads/etl-ops/data/output-contract.yaml +85 -0
  686. package/pro/squads/etl-ops/data/process.schema.json +293 -0
  687. package/pro/squads/etl-ops/data/quality-gates.yaml +40 -0
  688. package/pro/squads/etl-ops/data/routing-profiles.yaml +239 -0
  689. package/pro/squads/etl-ops/data/service-catalog.yaml +13 -0
  690. package/pro/squads/etl-ops/data/token-registry.yaml +58 -0
  691. package/pro/squads/etl-ops/docs/.gitkeep +0 -0
  692. package/pro/squads/etl-ops/scripts/bootstrap-etl-workspace.sh +42 -0
  693. package/pro/squads/etl-ops/scripts/etl-env-bootstrap.sh +876 -0
  694. package/pro/squads/etl-ops/scripts/validate-etl-essentials.sh +164 -0
  695. package/pro/squads/etl-ops/squad-io.yaml +61 -0
  696. package/pro/squads/etl-ops/tasks/compile.md +191 -0
  697. package/pro/squads/etl-ops/tasks/enrich.md +236 -0
  698. package/pro/squads/etl-ops/tasks/etl-env-bootstrap.md +140 -0
  699. package/pro/squads/etl-ops/tasks/extract-keyframes.md +318 -0
  700. package/pro/squads/etl-ops/tasks/extract-podcast.md +146 -0
  701. package/pro/squads/etl-ops/tasks/load-workspace-context.md +140 -0
  702. package/pro/squads/etl-ops/tasks/process.md +185 -0
  703. package/pro/squads/etl-ops/tasks/summarize-book.md +121 -0
  704. package/pro/squads/etl-ops/templates/cross-domain-handoff-tmpl.yaml +9 -0
  705. package/pro/squads/etl-ops/workflows/etl-pipeline.yaml +25 -0
  706. package/pro/squads/etl-ops/workflows/etl-thresholds.yaml +15 -0
  707. package/pro/squads/hormozi/HEADLINE.md +3 -0
  708. package/pro/squads/hormozi/README.md +313 -0
  709. package/pro/squads/hormozi/agents/hormozi-ads.md +1863 -0
  710. package/pro/squads/hormozi/agents/hormozi-advisor.md +1866 -0
  711. package/pro/squads/hormozi/agents/hormozi-audit.md +2301 -0
  712. package/pro/squads/hormozi/agents/hormozi-chief.md +1671 -0
  713. package/pro/squads/hormozi/agents/hormozi-closer.md +2631 -0
  714. package/pro/squads/hormozi/agents/hormozi-content.md +2148 -0
  715. package/pro/squads/hormozi/agents/hormozi-copy.md +2000 -0
  716. package/pro/squads/hormozi/agents/hormozi-hooks.md +1790 -0
  717. package/pro/squads/hormozi/agents/hormozi-launch.md +1734 -0
  718. package/pro/squads/hormozi/agents/hormozi-leads.md +1022 -0
  719. package/pro/squads/hormozi/agents/hormozi-models.md +1429 -0
  720. package/pro/squads/hormozi/agents/hormozi-offers.md +2228 -0
  721. package/pro/squads/hormozi/agents/hormozi-pricing.md +1784 -0
  722. package/pro/squads/hormozi/agents/hormozi-retention.md +1467 -0
  723. package/pro/squads/hormozi/agents/hormozi-scale.md +2312 -0
  724. package/pro/squads/hormozi/agents/hormozi-workshop.md +2715 -0
  725. package/pro/squads/hormozi/checklists/5-horsemen-checklist.md +188 -0
  726. package/pro/squads/hormozi/checklists/activation-point-checklist.md +156 -0
  727. package/pro/squads/hormozi/checklists/ad-angles-checklist.md +395 -0
  728. package/pro/squads/hormozi/checklists/affiliates-referrals-checklist.md +411 -0
  729. package/pro/squads/hormozi/checklists/antipattern-screening.md +319 -0
  730. package/pro/squads/hormozi/checklists/bonuses-checklist.md +282 -0
  731. package/pro/squads/hormozi/checklists/branding-checklist.md +547 -0
  732. package/pro/squads/hormozi/checklists/churn-diagnosis-checklist.md +148 -0
  733. package/pro/squads/hormozi/checklists/content-creation-checklist.md +598 -0
  734. package/pro/squads/hormozi/checklists/core-four-checklist.md +543 -0
  735. package/pro/squads/hormozi/checklists/customer-journey-checklist.md +207 -0
  736. package/pro/squads/hormozi/checklists/downsell-strategy-checklist.md +306 -0
  737. package/pro/squads/hormozi/checklists/email-campaign-checklist.md +484 -0
  738. package/pro/squads/hormozi/checklists/engagement-scoring-checklist.md +227 -0
  739. package/pro/squads/hormozi/checklists/exit-interview-checklist.md +206 -0
  740. package/pro/squads/hormozi/checklists/fast-cash-checklist.md +434 -0
  741. package/pro/squads/hormozi/checklists/goated-ads-checklist.md +558 -0
  742. package/pro/squads/hormozi/checklists/golden-ratios-veto.md +340 -0
  743. package/pro/squads/hormozi/checklists/guarantees-checklist.md +312 -0
  744. package/pro/squads/hormozi/checklists/hooks-checklist.md +621 -0
  745. package/pro/squads/hormozi/checklists/landing-page-checklist.md +514 -0
  746. package/pro/squads/hormozi/checklists/launch-checklist.md +1033 -0
  747. package/pro/squads/hormozi/checklists/lead-magnet-checklist.md +421 -0
  748. package/pro/squads/hormozi/checklists/lead-nurture-checklist.md +730 -0
  749. package/pro/squads/hormozi/checklists/ltv-checklist.md +953 -0
  750. package/pro/squads/hormozi/checklists/market-validation-veto.md +248 -0
  751. package/pro/squads/hormozi/checklists/marketing-machine-checklist.md +570 -0
  752. package/pro/squads/hormozi/checklists/money-model-checklist.md +226 -0
  753. package/pro/squads/hormozi/checklists/naming-framework-checklist.md +325 -0
  754. package/pro/squads/hormozi/checklists/offer-architecture-checklist.md +542 -0
  755. package/pro/squads/hormozi/checklists/onboarding-30-day-checklist.md +223 -0
  756. package/pro/squads/hormozi/checklists/price-raise-checklist.md +399 -0
  757. package/pro/squads/hormozi/checklists/pricing-checklist.md +228 -0
  758. package/pro/squads/hormozi/checklists/pricing-framework-checklist.md +627 -0
  759. package/pro/squads/hormozi/checklists/registration-page-checklist.md +429 -0
  760. package/pro/squads/hormozi/checklists/retention-checklist.md +977 -0
  761. package/pro/squads/hormozi/checklists/sales-page-checklist.md +682 -0
  762. package/pro/squads/hormozi/checklists/scarcity-urgency-checklist.md +423 -0
  763. package/pro/squads/hormozi/checklists/subscription-model-checklist.md +342 -0
  764. package/pro/squads/hormozi/checklists/upsell-page-checklist.md +374 -0
  765. package/pro/squads/hormozi/checklists/upsell-sequence-checklist.md +217 -0
  766. package/pro/squads/hormozi/checklists/upsell-strategy-checklist.md +424 -0
  767. package/pro/squads/hormozi/checklists/value-equation-checklist.md +387 -0
  768. package/pro/squads/hormozi/checklists/vsl-script-checklist.md +464 -0
  769. package/pro/squads/hormozi/checklists/workshop-launch-checklist.md +585 -0
  770. package/pro/squads/hormozi/config/veto-conditions.yaml +324 -0
  771. package/pro/squads/hormozi/config.yaml +617 -0
  772. package/pro/squads/hormozi/data/antipatterns-database.yaml +402 -0
  773. package/pro/squads/hormozi/data/hormozi-case-library.yaml +469 -0
  774. package/pro/squads/hormozi/data/hormozi-infrastructure-map.yaml +16 -0
  775. package/pro/squads/hormozi/data/hormozi-service-catalog.yaml +14 -0
  776. package/pro/squads/hormozi/data/minds/hormozi-ads_dna.yaml +75 -0
  777. package/pro/squads/hormozi/data/minds/hormozi-advisor_dna.yaml +112 -0
  778. package/pro/squads/hormozi/data/minds/hormozi-audit_dna.yaml +124 -0
  779. package/pro/squads/hormozi/data/minds/hormozi-closer_dna.yaml +109 -0
  780. package/pro/squads/hormozi/data/minds/hormozi-content_dna.yaml +112 -0
  781. package/pro/squads/hormozi/data/minds/hormozi-copy_dna.yaml +115 -0
  782. package/pro/squads/hormozi/data/minds/hormozi-hooks_dna.yaml +134 -0
  783. package/pro/squads/hormozi/data/minds/hormozi-launch_dna.yaml +122 -0
  784. package/pro/squads/hormozi/data/minds/hormozi-leads_dna.yaml +64 -0
  785. package/pro/squads/hormozi/data/minds/hormozi-models_dna.yaml +111 -0
  786. package/pro/squads/hormozi/data/minds/hormozi-offers_dna.yaml +100 -0
  787. package/pro/squads/hormozi/data/minds/hormozi-pricing_dna.yaml +129 -0
  788. package/pro/squads/hormozi/data/minds/hormozi-retention_dna.yaml +120 -0
  789. package/pro/squads/hormozi/data/minds/hormozi-scale_dna.yaml +112 -0
  790. package/pro/squads/hormozi/data/minds/hormozi-thinking-dna.yaml +421 -0
  791. package/pro/squads/hormozi/data/minds/hormozi-voice-dna.yaml +548 -0
  792. package/pro/squads/hormozi/data/minds/hormozi-workshop_dna.yaml +109 -0
  793. package/pro/squads/hormozi/data/quality-gates.yaml +76 -0
  794. package/pro/squads/hormozi/data/scaling-by-business-type.yaml +166 -0
  795. package/pro/squads/hormozi/data/source-index.yaml +215 -0
  796. package/pro/squads/hormozi/data/swipefiles/ads-swipefile.yaml +378 -0
  797. package/pro/squads/hormozi/data/swipefiles/blueprint-swipefile.yaml +1223 -0
  798. package/pro/squads/hormozi/data/swipefiles/branding-swipefile.yaml +142 -0
  799. package/pro/squads/hormozi/data/swipefiles/closing-swipefile.yaml +716 -0
  800. package/pro/squads/hormozi/data/swipefiles/content-swipefile.yaml +579 -0
  801. package/pro/squads/hormozi/data/swipefiles/copy-sales-swipefile.yaml +1085 -0
  802. package/pro/squads/hormozi/data/swipefiles/fast-cash-swipefile.yaml +190 -0
  803. package/pro/squads/hormozi/data/swipefiles/goated-ads-swipefile.yaml +770 -0
  804. package/pro/squads/hormozi/data/swipefiles/hooks-swipefile.yaml +1982 -0
  805. package/pro/squads/hormozi/data/swipefiles/lead-nurture-swipefile.yaml +191 -0
  806. package/pro/squads/hormozi/data/swipefiles/ltv-swipefile.yaml +216 -0
  807. package/pro/squads/hormozi/data/swipefiles/marketing-machine-swipefile.yaml +191 -0
  808. package/pro/squads/hormozi/data/swipefiles/naming-swipefile-brasil.yaml +596 -0
  809. package/pro/squads/hormozi/data/swipefiles/naming-swipefile-global.yaml +543 -0
  810. package/pro/squads/hormozi/data/swipefiles/price-raise-swipefile.yaml +213 -0
  811. package/pro/squads/hormozi/data/swipefiles/pricing-swipefile.yaml +203 -0
  812. package/pro/squads/hormozi/data/swipefiles/proof-swipefile.yaml +443 -0
  813. package/pro/squads/hormozi/data/swipefiles/retention-swipefile.yaml +245 -0
  814. package/pro/squads/hormozi/data/swipefiles/scaling-roadmap-swipefile.yaml +529 -0
  815. package/pro/squads/hormozi/data/swipefiles/workshop-launch-swipefile.yaml +912 -0
  816. package/pro/squads/hormozi/data/token-registry.yaml +89 -0
  817. package/pro/squads/hormozi/docs/MIGRATION-PLAN-AGENT-CONFORMITY.md +326 -0
  818. package/pro/squads/hormozi/docs/frameworks/100m-offers-framework.md +363 -0
  819. package/pro/squads/hormozi/docs/frameworks/attraction-offers-framework.md +720 -0
  820. package/pro/squads/hormozi/docs/frameworks/bonuses-framework.md +501 -0
  821. package/pro/squads/hormozi/docs/frameworks/core-four-framework.md +685 -0
  822. package/pro/squads/hormozi/docs/frameworks/goated-ads-framework.md +916 -0
  823. package/pro/squads/hormozi/docs/frameworks/guarantees-framework.md +709 -0
  824. package/pro/squads/hormozi/docs/frameworks/hooks-framework.md +1007 -0
  825. package/pro/squads/hormozi/docs/frameworks/lead-magnet-framework.md +485 -0
  826. package/pro/squads/hormozi/docs/frameworks/money-models-framework.md +891 -0
  827. package/pro/squads/hormozi/docs/frameworks/scarcity-framework.md +793 -0
  828. package/pro/squads/hormozi/docs/frameworks/urgency-framework.md +533 -0
  829. package/pro/squads/hormozi/docs/frameworks/value-equation-framework.md +428 -0
  830. package/pro/squads/hormozi/docs/frameworks/workshop-framework.md +289 -0
  831. package/pro/squads/hormozi/docs/sops/.parallel-execution-plan-batch2.md +344 -0
  832. package/pro/squads/hormozi/docs/sops/.parallel-execution-plan-batch3.md +331 -0
  833. package/pro/squads/hormozi/docs/sops/.parallel-execution-plan.md +558 -0
  834. package/pro/squads/hormozi/docs/sops/ad-angles-sop.md +1247 -0
  835. package/pro/squads/hormozi/docs/sops/ad-angles-squad-blueprint.yaml +739 -0
  836. package/pro/squads/hormozi/docs/sops/affiliates-referrals-sop.md +1105 -0
  837. package/pro/squads/hormozi/docs/sops/affiliates-referrals-squad-blueprint.yaml +1131 -0
  838. package/pro/squads/hormozi/docs/sops/bonuses-sop.md +1014 -0
  839. package/pro/squads/hormozi/docs/sops/bonuses-squad-blueprint.yaml +994 -0
  840. package/pro/squads/hormozi/docs/sops/branding-sop.md +870 -0
  841. package/pro/squads/hormozi/docs/sops/branding-squad-blueprint.yaml +1107 -0
  842. package/pro/squads/hormozi/docs/sops/content-creation-sop.md +877 -0
  843. package/pro/squads/hormozi/docs/sops/content-creation-squad-blueprint.yaml +1362 -0
  844. package/pro/squads/hormozi/docs/sops/core-four-sop.md +1231 -0
  845. package/pro/squads/hormozi/docs/sops/core-four-squad-blueprint.yaml +1205 -0
  846. package/pro/squads/hormozi/docs/sops/downsell-strategy-sop.md +832 -0
  847. package/pro/squads/hormozi/docs/sops/downsell-strategy-squad-blueprint.yaml +1230 -0
  848. package/pro/squads/hormozi/docs/sops/email-campaign-sop.md +1547 -0
  849. package/pro/squads/hormozi/docs/sops/email-campaign-squad-blueprint.yaml +1150 -0
  850. package/pro/squads/hormozi/docs/sops/fast-cash-sop.md +1224 -0
  851. package/pro/squads/hormozi/docs/sops/fast-cash-squad-blueprint.yaml +1128 -0
  852. package/pro/squads/hormozi/docs/sops/goated-ads-sop.md +671 -0
  853. package/pro/squads/hormozi/docs/sops/goated-ads-squad-blueprint.yaml +627 -0
  854. package/pro/squads/hormozi/docs/sops/guarantees-sop.md +1017 -0
  855. package/pro/squads/hormozi/docs/sops/guarantees-squad-blueprint.yaml +1252 -0
  856. package/pro/squads/hormozi/docs/sops/hooks-sop.md +958 -0
  857. package/pro/squads/hormozi/docs/sops/hooks-squad-blueprint.yaml +740 -0
  858. package/pro/squads/hormozi/docs/sops/landing-page-sop.md +1079 -0
  859. package/pro/squads/hormozi/docs/sops/landing-page-squad-blueprint.yaml +1373 -0
  860. package/pro/squads/hormozi/docs/sops/launch-sop.md +1055 -0
  861. package/pro/squads/hormozi/docs/sops/launch-squad-blueprint.yaml +1276 -0
  862. package/pro/squads/hormozi/docs/sops/lead-magnet-sop.md +807 -0
  863. package/pro/squads/hormozi/docs/sops/lead-magnet-squad-blueprint.yaml +1144 -0
  864. package/pro/squads/hormozi/docs/sops/lead-nurture-sop.md +867 -0
  865. package/pro/squads/hormozi/docs/sops/lead-nurture-squad-blueprint.yaml +1168 -0
  866. package/pro/squads/hormozi/docs/sops/ltv-sop.md +897 -0
  867. package/pro/squads/hormozi/docs/sops/ltv-squad-blueprint.yaml +1286 -0
  868. package/pro/squads/hormozi/docs/sops/marketing-machine-sop.md +1257 -0
  869. package/pro/squads/hormozi/docs/sops/marketing-machine-squad-blueprint.yaml +1433 -0
  870. package/pro/squads/hormozi/docs/sops/naming-framework-sop.md +1006 -0
  871. package/pro/squads/hormozi/docs/sops/naming-framework-squad-blueprint.yaml +543 -0
  872. package/pro/squads/hormozi/docs/sops/offer-architecture-sop.md +843 -0
  873. package/pro/squads/hormozi/docs/sops/offer-architecture-squad-blueprint.yaml +794 -0
  874. package/pro/squads/hormozi/docs/sops/price-raise-sop.md +983 -0
  875. package/pro/squads/hormozi/docs/sops/price-raise-squad-blueprint.yaml +919 -0
  876. package/pro/squads/hormozi/docs/sops/pricing-framework-sop.md +459 -0
  877. package/pro/squads/hormozi/docs/sops/pricing-squad-blueprint.yaml +517 -0
  878. package/pro/squads/hormozi/docs/sops/registration-page-sop.md +1111 -0
  879. package/pro/squads/hormozi/docs/sops/registration-page-squad-blueprint.yaml +762 -0
  880. package/pro/squads/hormozi/docs/sops/retention-sop.md +1065 -0
  881. package/pro/squads/hormozi/docs/sops/retention-squad-blueprint.yaml +1356 -0
  882. package/pro/squads/hormozi/docs/sops/sales-page-sop.md +924 -0
  883. package/pro/squads/hormozi/docs/sops/sales-page-squad-blueprint.yaml +1096 -0
  884. package/pro/squads/hormozi/docs/sops/scarcity-urgency-sop.md +1092 -0
  885. package/pro/squads/hormozi/docs/sops/scarcity-urgency-squad-blueprint.yaml +1206 -0
  886. package/pro/squads/hormozi/docs/sops/subscription-model-sop.md +1077 -0
  887. package/pro/squads/hormozi/docs/sops/subscription-model-squad-blueprint.yaml +1007 -0
  888. package/pro/squads/hormozi/docs/sops/upsell-page-sop.md +886 -0
  889. package/pro/squads/hormozi/docs/sops/upsell-page-squad-blueprint.yaml +1100 -0
  890. package/pro/squads/hormozi/docs/sops/upsell-strategy-sop.md +1265 -0
  891. package/pro/squads/hormozi/docs/sops/upsell-strategy-squad-blueprint.yaml +1245 -0
  892. package/pro/squads/hormozi/docs/sops/value-equation-sop.md +793 -0
  893. package/pro/squads/hormozi/docs/sops/value-equation-squad-blueprint.yaml +777 -0
  894. package/pro/squads/hormozi/docs/sops/vsl-script-sop.md +1145 -0
  895. package/pro/squads/hormozi/docs/sops/vsl-script-squad-blueprint.yaml +777 -0
  896. package/pro/squads/hormozi/docs/sops/workshop-launch-sop.md +1273 -0
  897. package/pro/squads/hormozi/docs/sops/workshop-launch-squad-blueprint.yaml +1292 -0
  898. package/pro/squads/hormozi/docs/validation-report-2026-02-10.md +79 -0
  899. package/pro/squads/hormozi/scripts/generate-hormozi-greeting.cjs +132 -0
  900. package/pro/squads/hormozi/scripts/load-context.cjs +139 -0
  901. package/pro/squads/hormozi/scripts/resolve-readiness.cjs +45 -0
  902. package/pro/squads/hormozi/scripts/runtime-paths.cjs +44 -0
  903. package/pro/squads/hormozi/scripts/set-active-context.cjs +104 -0
  904. package/pro/squads/hormozi/scripts/show-context.cjs +22 -0
  905. package/pro/squads/hormozi/scripts/validate-antipattern.py +287 -0
  906. package/pro/squads/hormozi/scripts/validate-handoff.py +166 -0
  907. package/pro/squads/hormozi/scripts/validate-mvn.py +198 -0
  908. package/pro/squads/hormozi/sops/pricing-squad-blueprint.yaml +1445 -0
  909. package/pro/squads/hormozi/squad-io.yaml +917 -0
  910. package/pro/squads/hormozi/tasks/architect-offer-stack.md +228 -0
  911. package/pro/squads/hormozi/tasks/build-marketing-machine.md +205 -0
  912. package/pro/squads/hormozi/tasks/build-scaling-team.md +271 -0
  913. package/pro/squads/hormozi/tasks/calculate-30-day-profit.md +418 -0
  914. package/pro/squads/hormozi/tasks/calculate-ppd.md +200 -0
  915. package/pro/squads/hormozi/tasks/create-ad-angles.md +182 -0
  916. package/pro/squads/hormozi/tasks/create-ad-campaign.md +399 -0
  917. package/pro/squads/hormozi/tasks/create-bonus-stack.md +287 -0
  918. package/pro/squads/hormozi/tasks/create-closer-script.md +240 -0
  919. package/pro/squads/hormozi/tasks/create-content-unit.md +176 -0
  920. package/pro/squads/hormozi/tasks/create-contingency-plan.md +426 -0
  921. package/pro/squads/hormozi/tasks/create-downsell-sequence.md +427 -0
  922. package/pro/squads/hormozi/tasks/create-email-sequence.md +196 -0
  923. package/pro/squads/hormozi/tasks/create-engagement-scoring.md +484 -0
  924. package/pro/squads/hormozi/tasks/create-exit-interview-system.md +382 -0
  925. package/pro/squads/hormozi/tasks/create-grand-slam-offer.md +499 -0
  926. package/pro/squads/hormozi/tasks/create-guarantee-stack.md +246 -0
  927. package/pro/squads/hormozi/tasks/create-hook-set.md +368 -0
  928. package/pro/squads/hormozi/tasks/create-landing-page.md +130 -0
  929. package/pro/squads/hormozi/tasks/create-launch-narrative.md +406 -0
  930. package/pro/squads/hormozi/tasks/create-launch-timeline.md +473 -0
  931. package/pro/squads/hormozi/tasks/create-lead-magnet.md +479 -0
  932. package/pro/squads/hormozi/tasks/create-nurture-sequence.md +207 -0
  933. package/pro/squads/hormozi/tasks/create-offer-name.md +165 -0
  934. package/pro/squads/hormozi/tasks/create-pricing-strategy.md +177 -0
  935. package/pro/squads/hormozi/tasks/create-registration-page.md +190 -0
  936. package/pro/squads/hormozi/tasks/create-sales-page.md +157 -0
  937. package/pro/squads/hormozi/tasks/create-upsell-page.md +138 -0
  938. package/pro/squads/hormozi/tasks/create-upsell-sequence.md +449 -0
  939. package/pro/squads/hormozi/tasks/create-vsl-script.md +175 -0
  940. package/pro/squads/hormozi/tasks/design-brand-identity.md +186 -0
  941. package/pro/squads/hormozi/tasks/design-continuity-offer.md +462 -0
  942. package/pro/squads/hormozi/tasks/design-core-four-strategy.md +733 -0
  943. package/pro/squads/hormozi/tasks/design-customer-journey.md +426 -0
  944. package/pro/squads/hormozi/tasks/design-launch-value-stack.md +379 -0
  945. package/pro/squads/hormozi/tasks/design-money-model.md +391 -0
  946. package/pro/squads/hormozi/tasks/design-onboarding-sequence.md +380 -0
  947. package/pro/squads/hormozi/tasks/design-scarcity-urgency.md +216 -0
  948. package/pro/squads/hormozi/tasks/design-subscription-model.md +162 -0
  949. package/pro/squads/hormozi/tasks/design-systems-automation.md +234 -0
  950. package/pro/squads/hormozi/tasks/design-workshop.md +167 -0
  951. package/pro/squads/hormozi/tasks/diagnose-business-stage.md +323 -0
  952. package/pro/squads/hormozi/tasks/diagnose-cfa-level.md +198 -0
  953. package/pro/squads/hormozi/tasks/diagnose-churn-rate.md +265 -0
  954. package/pro/squads/hormozi/tasks/diagnose-scaling-constraint.md +257 -0
  955. package/pro/squads/hormozi/tasks/diagnose-value-equation.md +431 -0
  956. package/pro/squads/hormozi/tasks/discover-activation-points.md +329 -0
  957. package/pro/squads/hormozi/tasks/execute-price-raise.md +221 -0
  958. package/pro/squads/hormozi/tasks/execute-rule-of-100.md +423 -0
  959. package/pro/squads/hormozi/tasks/generate-fast-cash.md +217 -0
  960. package/pro/squads/hormozi/tasks/implement-5-horsemen.md +430 -0
  961. package/pro/squads/hormozi/tasks/optimize-ltv-cac-ratio.md +505 -0
  962. package/pro/squads/hormozi/tasks/plan-launch-evento.md +395 -0
  963. package/pro/squads/hormozi/tasks/run-launch-post-mortem.md +461 -0
  964. package/pro/squads/hormozi/tasks/setup-affiliate-program.md +406 -0
  965. package/pro/squads/hormozi/tasks/setup-war-room.md +407 -0
  966. package/pro/squads/hormozi/tasks/validate-market-selection.md +331 -0
  967. package/pro/squads/hormozi/templates/capacity-planning-worksheet.yaml +151 -0
  968. package/pro/squads/hormozi/templates/grand-slam-offer-output.yaml +462 -0
  969. package/pro/squads/hormozi/templates/grand-slam-offer-tmpl.md +34 -0
  970. package/pro/squads/hormozi/templates/handoff-context-tmpl.yaml +215 -0
  971. package/pro/squads/hormozi/templates/money-model-tmpl.md +29 -0
  972. package/pro/squads/hormozi/templates/offer-analysis-tmpl.md +33 -0
  973. package/pro/squads/hormozi/templates/value-equation-scorecard.md +267 -0
  974. package/pro/squads/hormozi/workflows/wf-context-diagnosis.yaml +569 -0
  975. package/pro/squads/hormozi/workflows/wf-full-launch-sequence.yaml +995 -0
  976. package/pro/squads/hormozi/workflows/wf-grand-slam-offer.yaml +1138 -0
  977. package/pro/squads/hormozi/workflows/wf-growth-decision.yaml +135 -0
  978. package/pro/squads/hormozi/workflows/wf-lead-magnet-pipeline.yaml +1147 -0
  979. package/pro/squads/hormozi/workflows/wf-money-model-design.yaml +1168 -0
  980. package/pro/squads/hormozi/workflows/wf-opportunity-screening.yaml +511 -0
  981. package/pro/squads/hormozi/workflows/wf-paid-ads-campaign.yaml +1204 -0
  982. package/pro/squads/hormozi/workflows/wf-scaling-diagnostic.yaml +636 -0
  983. package/pro/squads/index.js +145 -0
  984. package/pro/squads/spy/HEADLINE.md +3 -0
  985. package/pro/squads/spy/README.md +115 -0
  986. package/pro/squads/spy/agents/bench-analyst.md +654 -0
  987. package/pro/squads/spy/agents/research-head.md +673 -0
  988. package/pro/squads/spy/agents/spy.md +498 -0
  989. package/pro/squads/spy/checklists/bench-quality-checklist.md +119 -0
  990. package/pro/squads/spy/checklists/content-creation-checklist.md +136 -0
  991. package/pro/squads/spy/config.yaml +587 -0
  992. package/pro/squads/spy/data/bench-data-sources.yaml +46 -0
  993. package/pro/squads/spy/data/bench-dimension-packs.yaml +182 -0
  994. package/pro/squads/spy/data/bench-output-formats.yaml +44 -0
  995. package/pro/squads/spy/data/bench-skeleton.md +184 -0
  996. package/pro/squads/spy/data/capability-tools.yaml +109 -0
  997. package/pro/squads/spy/data/knowledge-base.md +337 -0
  998. package/pro/squads/spy/data/quality-gates.yaml +48 -0
  999. package/pro/squads/spy/data/spy-infrastructure-map.yaml +27 -0
  1000. package/pro/squads/spy/data/spy-service-catalog.yaml +13 -0
  1001. package/pro/squads/spy/data/token-registry.yaml +57 -0
  1002. package/pro/squads/spy/data/viral-content-framework.md +304 -0
  1003. package/pro/squads/spy/docs/tool-discovery-report.md +110 -0
  1004. package/pro/squads/spy/docs/tool-integration-plan.md +47 -0
  1005. package/pro/squads/spy/scripts/prepare-benchmark-workspace.sh +14 -0
  1006. package/pro/squads/spy/scripts/publish-benchmark-report.sh +16 -0
  1007. package/pro/squads/spy/squad-io.yaml +24 -0
  1008. package/pro/squads/spy/tasks/bench-absorb.md +266 -0
  1009. package/pro/squads/spy/tasks/bench-battle-card.md +398 -0
  1010. package/pro/squads/spy/tasks/bench-codebase-recon.md +339 -0
  1011. package/pro/squads/spy/tasks/bench-company-intel.md +360 -0
  1012. package/pro/squads/spy/tasks/bench-deep-compare.md +573 -0
  1013. package/pro/squads/spy/tasks/bench-detect.md +349 -0
  1014. package/pro/squads/spy/tasks/bench-framework.md +105 -0
  1015. package/pro/squads/spy/tasks/bench-gap-analysis.md +168 -0
  1016. package/pro/squads/spy/tasks/bench-gap-company.md +48 -0
  1017. package/pro/squads/spy/tasks/bench-gap-llm.md +48 -0
  1018. package/pro/squads/spy/tasks/bench-gap-product.md +48 -0
  1019. package/pro/squads/spy/tasks/bench-gap-technology.md +48 -0
  1020. package/pro/squads/spy/tasks/bench-gap.md +78 -0
  1021. package/pro/squads/spy/tasks/bench-hooks.md +209 -0
  1022. package/pro/squads/spy/tasks/bench-inventory.md +98 -0
  1023. package/pro/squads/spy/tasks/bench-llm-eval.md +359 -0
  1024. package/pro/squads/spy/tasks/bench-matrix-codebase.md +50 -0
  1025. package/pro/squads/spy/tasks/bench-matrix-company.md +50 -0
  1026. package/pro/squads/spy/tasks/bench-matrix-llm.md +50 -0
  1027. package/pro/squads/spy/tasks/bench-matrix-product.md +50 -0
  1028. package/pro/squads/spy/tasks/bench-matrix-technology.md +50 -0
  1029. package/pro/squads/spy/tasks/bench-matrix.md +78 -0
  1030. package/pro/squads/spy/tasks/bench-migrate.md +207 -0
  1031. package/pro/squads/spy/tasks/bench-product-research.md +370 -0
  1032. package/pro/squads/spy/tasks/bench-quick-compare.md +287 -0
  1033. package/pro/squads/spy/tasks/bench-report-load-evidence.md +49 -0
  1034. package/pro/squads/spy/tasks/bench-report-publish.md +49 -0
  1035. package/pro/squads/spy/tasks/bench-report-synthesize-findings.md +48 -0
  1036. package/pro/squads/spy/tasks/bench-report.md +70 -0
  1037. package/pro/squads/spy/tasks/bench-score.md +406 -0
  1038. package/pro/squads/spy/tasks/bench-synergy.md +248 -0
  1039. package/pro/squads/spy/tasks/bench-tech-eval.md +417 -0
  1040. package/pro/squads/spy/tasks/bench-traceability.md +225 -0
  1041. package/pro/squads/spy/tasks/deep-research-collect.md +50 -0
  1042. package/pro/squads/spy/tasks/deep-research-comments.md +48 -0
  1043. package/pro/squads/spy/tasks/deep-research-patterns.md +49 -0
  1044. package/pro/squads/spy/tasks/deep-research-publish.md +49 -0
  1045. package/pro/squads/spy/tasks/deep-research-select.md +48 -0
  1046. package/pro/squads/spy/tasks/deep-research-synthesis.md +49 -0
  1047. package/pro/squads/spy/tasks/deep-research-transcribe.md +48 -0
  1048. package/pro/squads/spy/tasks/deep-research.md +116 -0
  1049. package/pro/squads/spy/tasks/quick-analysis.md +130 -0
  1050. package/pro/squads/spy/templates/bench-battle-card-tmpl.md +52 -0
  1051. package/pro/squads/spy/templates/bench-codebase-comparativo-tmpl.md +84 -0
  1052. package/pro/squads/spy/templates/bench-codebase-scores-tmpl.md +41 -0
  1053. package/pro/squads/spy/templates/bench-comparativo-tmpl.md +86 -0
  1054. package/pro/squads/spy/templates/bench-deep-compare-tmpl.md +117 -0
  1055. package/pro/squads/spy/templates/bench-gap-tmpl.md +194 -0
  1056. package/pro/squads/spy/templates/bench-matrix-tmpl.md +130 -0
  1057. package/pro/squads/spy/templates/bench-migration-tmpl.md +127 -0
  1058. package/pro/squads/spy/templates/bench-quadrant-tmpl.md +227 -0
  1059. package/pro/squads/spy/templates/bench-report-tmpl.md +167 -0
  1060. package/pro/squads/spy/templates/bench-scorecard-tmpl.md +113 -0
  1061. package/pro/squads/spy/templates/bench-scores-tmpl.md +43 -0
  1062. package/pro/squads/spy/templates/bench-synergy-tmpl.md +381 -0
  1063. package/pro/squads/spy/templates/cross-domain-handoff-tmpl.yaml +9 -0
  1064. package/pro/squads/spy/templates/player-analysis-tmpl.md +145 -0
  1065. package/pro/squads/spy/workflows/bench-comparison-pipeline.yaml +1193 -0
  1066. package/pro/squads/squad-creator/CHANGELOG.md +162 -0
  1067. package/pro/squads/squad-creator/HEADLINE.md +3 -0
  1068. package/pro/squads/squad-creator/README.md +1176 -0
  1069. package/pro/squads/squad-creator/agents/squad-chief.md +1449 -0
  1070. package/pro/squads/squad-creator/checklists/agent-quality-gate.md +433 -0
  1071. package/pro/squads/squad-creator/checklists/analysis-quality-checklist.md +70 -0
  1072. package/pro/squads/squad-creator/checklists/create-agent-checklist.md +239 -0
  1073. package/pro/squads/squad-creator/checklists/create-squad-checklist.md +326 -0
  1074. package/pro/squads/squad-creator/checklists/create-task-checklist.md +225 -0
  1075. package/pro/squads/squad-creator/checklists/create-workflow-checklist.md +243 -0
  1076. package/pro/squads/squad-creator/checklists/greeting-script-checklist.md +110 -0
  1077. package/pro/squads/squad-creator/checklists/install-skills-checklist.md +197 -0
  1078. package/pro/squads/squad-creator/checklists/pipeline-runner-checklist.md +135 -0
  1079. package/pro/squads/squad-creator/checklists/report-quality-checklist.md +49 -0
  1080. package/pro/squads/squad-creator/checklists/smoke-test-agent.md +313 -0
  1081. package/pro/squads/squad-creator/checklists/squad-checklist.md +1000 -0
  1082. package/pro/squads/squad-creator/checklists/squad-consistency-patterns.md +134 -0
  1083. package/pro/squads/squad-creator/checklists/squad-overview-checklist.md +381 -0
  1084. package/pro/squads/squad-creator/checklists/squad-structural-completeness.md +394 -0
  1085. package/pro/squads/squad-creator/checklists/task-anatomy-checklist.md +687 -0
  1086. package/pro/squads/squad-creator/checklists/upgrade-squad-checklist.md +222 -0
  1087. package/pro/squads/squad-creator/config/squad-config.yaml +202 -0
  1088. package/pro/squads/squad-creator/config/workflow-yaml-schema.yaml +323 -0
  1089. package/pro/squads/squad-creator/config.yaml +429 -0
  1090. package/pro/squads/squad-creator/data/base-core-contract.yaml +22 -0
  1091. package/pro/squads/squad-creator/data/baselines/ecosystem-baseline.yaml +88 -0
  1092. package/pro/squads/squad-creator/data/baselines/initial-radar.yaml +89 -0
  1093. package/pro/squads/squad-creator/data/best-practices.md +986 -0
  1094. package/pro/squads/squad-creator/data/cc-agent-schema-ref.yaml +405 -0
  1095. package/pro/squads/squad-creator/data/core-heuristics.md +510 -0
  1096. package/pro/squads/squad-creator/data/decision-heuristics-framework.md +695 -0
  1097. package/pro/squads/squad-creator/data/design-heuristics-diagnostic-systems.md +140 -0
  1098. package/pro/squads/squad-creator/data/executor-decision-tree.md +774 -0
  1099. package/pro/squads/squad-creator/data/executor-matrix-framework.md +441 -0
  1100. package/pro/squads/squad-creator/data/hybridops-patterns.md +1351 -0
  1101. package/pro/squads/squad-creator/data/journey-log-events.yaml +72 -0
  1102. package/pro/squads/squad-creator/data/kaizen-legacy/kaizen-infrastructure-map.yaml +16 -0
  1103. package/pro/squads/squad-creator/data/kpi-baseline.yaml +72 -0
  1104. package/pro/squads/squad-creator/data/pipeline-patterns.md +352 -0
  1105. package/pro/squads/squad-creator/data/process-token-map.yaml +225 -0
  1106. package/pro/squads/squad-creator/data/quality-dimensions-framework.md +405 -0
  1107. package/pro/squads/squad-creator/data/quality-gates.yaml +135 -0
  1108. package/pro/squads/squad-creator/data/radar/initial-radar.yaml +76 -0
  1109. package/pro/squads/squad-creator/data/recommendation-tracker.yaml +53 -0
  1110. package/pro/squads/squad-creator/data/reports/self-improve-2026-02-15.md +111 -0
  1111. package/pro/squads/squad-creator/data/reports/week-07-2026-02-15.md +210 -0
  1112. package/pro/squads/squad-creator/data/reports/week-09-2026-02-28.md +295 -0
  1113. package/pro/squads/squad-creator/data/reports/week-14-2026-04-04.md +234 -0
  1114. package/pro/squads/squad-creator/data/squad-analytics-guide.md +252 -0
  1115. package/pro/squads/squad-creator/data/squad-creator-infrastructure-map.yaml +36 -0
  1116. package/pro/squads/squad-creator/data/squad-creator-service-catalog.yaml +17 -0
  1117. package/pro/squads/squad-creator/data/squad-kb.md +987 -0
  1118. package/pro/squads/squad-creator/data/squad-registry.yaml +14 -0
  1119. package/pro/squads/squad-creator/data/squad-type-definitions.yaml +578 -0
  1120. package/pro/squads/squad-creator/data/tier-system-framework.md +475 -0
  1121. package/pro/squads/squad-creator/data/tool-discovery-sources.yaml +68 -0
  1122. package/pro/squads/squad-creator/docs/ADR-001-model-tier-qualification.md +344 -0
  1123. package/pro/squads/squad-creator/docs/AGENT-COLLABORATION.md +820 -0
  1124. package/pro/squads/squad-creator/docs/COMMANDS.md +895 -0
  1125. package/pro/squads/squad-creator/docs/CONCEPTS.md +979 -0
  1126. package/pro/squads/squad-creator/docs/FAQ.md +773 -0
  1127. package/pro/squads/squad-creator/docs/HITL-FLOW.md +406 -0
  1128. package/pro/squads/squad-creator/docs/MODEL-TIER-QUALIFICATION.md +337 -0
  1129. package/pro/squads/squad-creator/docs/PATTERN-LIBRARY.md +620 -0
  1130. package/pro/squads/squad-creator/docs/PEDRO-VALERIO-ARCHITECTURE.md +456 -0
  1131. package/pro/squads/squad-creator/docs/POR-ONDE-COMECAR.md +211 -0
  1132. package/pro/squads/squad-creator/docs/QUICK-START.md +205 -0
  1133. package/pro/squads/squad-creator/docs/TROUBLESHOOTING.md +412 -0
  1134. package/pro/squads/squad-creator/docs/TUTORIAL-COMPLETO.md +458 -0
  1135. package/pro/squads/squad-creator/docs/sop-extraction-process.md +675 -0
  1136. package/pro/squads/squad-creator/docs/squad-free-vs-open.md +596 -0
  1137. package/pro/squads/squad-creator/docs/task-optimization-framework.md +229 -0
  1138. package/pro/squads/squad-creator/package-lock.json +38 -0
  1139. package/pro/squads/squad-creator/package.json +27 -0
  1140. package/pro/squads/squad-creator/protocols/ai-first-governance.md +63 -0
  1141. package/pro/squads/squad-creator/requirements.txt +1 -0
  1142. package/pro/squads/squad-creator/rules/agent-naming-convention.md +58 -0
  1143. package/pro/squads/squad-creator/rules/recommendation-defensibility.md +161 -0
  1144. package/pro/squads/squad-creator/schemas/agent-persona.schema.json +64 -0
  1145. package/pro/squads/squad-creator/schemas/squad-config.schema.json +92 -0
  1146. package/pro/squads/squad-creator/schemas/validation-report.schema.json +158 -0
  1147. package/pro/squads/squad-creator/scripts/README.md +262 -0
  1148. package/pro/squads/squad-creator/scripts/checklist_validator.py +451 -0
  1149. package/pro/squads/squad-creator/scripts/coherence-validator.py +62 -0
  1150. package/pro/squads/squad-creator/scripts/dependency_check.py +341 -0
  1151. package/pro/squads/squad-creator/scripts/detect-environment-contract.cjs +583 -0
  1152. package/pro/squads/squad-creator/scripts/export-antigravity-workflows.cjs +199 -0
  1153. package/pro/squads/squad-creator/scripts/generate-squad-greeting.js +1150 -0
  1154. package/pro/squads/squad-creator/scripts/generate-squad-guide.js +596 -0
  1155. package/pro/squads/squad-creator/scripts/inventory.py +286 -0
  1156. package/pro/squads/squad-creator/scripts/kaizen/kaizen-trigger.sh +126 -0
  1157. package/pro/squads/squad-creator/scripts/lib/config-loader.js +151 -0
  1158. package/pro/squads/squad-creator/scripts/lib/doom-loop-detector.js +120 -0
  1159. package/pro/squads/squad-creator/scripts/lib/squad-runtime-paths.cjs +187 -0
  1160. package/pro/squads/squad-creator/scripts/lib/validate-runtime-state.cjs +271 -0
  1161. package/pro/squads/squad-creator/scripts/naming_validator.py +303 -0
  1162. package/pro/squads/squad-creator/scripts/on-specialist-complete.py +98 -0
  1163. package/pro/squads/squad-creator/scripts/refresh-registry.py +933 -0
  1164. package/pro/squads/squad-creator/scripts/rename-squad.sh +395 -0
  1165. package/pro/squads/squad-creator/scripts/scaffold-squad.cjs +317 -0
  1166. package/pro/squads/squad-creator/scripts/scoring.py +65 -0
  1167. package/pro/squads/squad-creator/scripts/security_scanner.py +378 -0
  1168. package/pro/squads/squad-creator/scripts/squad-analytics.py +810 -0
  1169. package/pro/squads/squad-creator/scripts/squad_utils.py +267 -0
  1170. package/pro/squads/squad-creator/scripts/sync-chief-codex-skill.js +242 -0
  1171. package/pro/squads/squad-creator/scripts/sync-ide-skills.py +705 -0
  1172. package/pro/squads/squad-creator/scripts/tests/__init__.py +1 -0
  1173. package/pro/squads/squad-creator/scripts/tests/test_adapters.py +73 -0
  1174. package/pro/squads/squad-creator/scripts/tests/test_assess_sources.sh +216 -0
  1175. package/pro/squads/squad-creator/scripts/tests/test_clone_review.sh +239 -0
  1176. package/pro/squads/squad-creator/scripts/tests/test_fidelity_score.sh +298 -0
  1177. package/pro/squads/squad-creator/scripts/tests/test_refresh_registry_contract.py +110 -0
  1178. package/pro/squads/squad-creator/scripts/tests/test_squad_analytics.py +332 -0
  1179. package/pro/squads/squad-creator/scripts/tests/test_validate_squad_contextual_lifecycle.py +111 -0
  1180. package/pro/squads/squad-creator/scripts/tests/test_validate_squad_tested_inference.py +102 -0
  1181. package/pro/squads/squad-creator/scripts/tests/test_validate_squad_yolo_warning.py +108 -0
  1182. package/pro/squads/squad-creator/scripts/update-aiox-sync-config.py +144 -0
  1183. package/pro/squads/squad-creator/scripts/update-claude-command-registry.py +171 -0
  1184. package/pro/squads/squad-creator/scripts/validate-all.sh +49 -0
  1185. package/pro/squads/squad-creator/scripts/validate-report.sh +98 -0
  1186. package/pro/squads/squad-creator/scripts/validate-squad-deep.sh +318 -0
  1187. package/pro/squads/squad-creator/scripts/validate-squad-quality.py +514 -0
  1188. package/pro/squads/squad-creator/scripts/validate-squad-structure.py +881 -0
  1189. package/pro/squads/squad-creator/scripts/validate-squad.sh +4340 -0
  1190. package/pro/squads/squad-creator/scripts/validate-tokens.sh +178 -0
  1191. package/pro/squads/squad-creator/scripts/verify-squad-completeness.sh +294 -0
  1192. package/pro/squads/squad-creator/scripts/yaml_validator.py +528 -0
  1193. package/pro/squads/squad-creator/squad-io.yaml +71 -0
  1194. package/pro/squads/squad-creator/tasks/audit-output-quality.md +135 -0
  1195. package/pro/squads/squad-creator/tasks/auto-heal-close.md +134 -0
  1196. package/pro/squads/squad-creator/tasks/auto-heal-resolve.md +128 -0
  1197. package/pro/squads/squad-creator/tasks/auto-heal.md +86 -0
  1198. package/pro/squads/squad-creator/tasks/auto-healing-gate.md +166 -0
  1199. package/pro/squads/squad-creator/tasks/cost-analysis.md +117 -0
  1200. package/pro/squads/squad-creator/tasks/create-agent-commands.md +197 -0
  1201. package/pro/squads/squad-creator/tasks/create-agent-generate.md +224 -0
  1202. package/pro/squads/squad-creator/tasks/create-agent-persona.md +207 -0
  1203. package/pro/squads/squad-creator/tasks/create-agent-publish.md +136 -0
  1204. package/pro/squads/squad-creator/tasks/create-agent-research.md +201 -0
  1205. package/pro/squads/squad-creator/tasks/create-agent-validate.md +213 -0
  1206. package/pro/squads/squad-creator/tasks/create-agent.md +145 -0
  1207. package/pro/squads/squad-creator/tasks/create-documentation.md +284 -0
  1208. package/pro/squads/squad-creator/tasks/create-greeting-script-discovery.md +59 -0
  1209. package/pro/squads/squad-creator/tasks/create-greeting-script-gap-map.md +59 -0
  1210. package/pro/squads/squad-creator/tasks/create-greeting-script-generate.md +60 -0
  1211. package/pro/squads/squad-creator/tasks/create-greeting-script-integrate.md +59 -0
  1212. package/pro/squads/squad-creator/tasks/create-greeting-script-validate.md +59 -0
  1213. package/pro/squads/squad-creator/tasks/create-greeting-script.md +130 -0
  1214. package/pro/squads/squad-creator/tasks/create-pipeline-design.md +143 -0
  1215. package/pro/squads/squad-creator/tasks/create-pipeline-persist.md +100 -0
  1216. package/pro/squads/squad-creator/tasks/create-pipeline-qualify.md +103 -0
  1217. package/pro/squads/squad-creator/tasks/create-pipeline-render.md +296 -0
  1218. package/pro/squads/squad-creator/tasks/create-pipeline-validate.md +121 -0
  1219. package/pro/squads/squad-creator/tasks/create-pipeline.md +171 -0
  1220. package/pro/squads/squad-creator/tasks/create-squad-build.md +383 -0
  1221. package/pro/squads/squad-creator/tasks/create-squad-design.md +349 -0
  1222. package/pro/squads/squad-creator/tasks/create-squad-discover.md +392 -0
  1223. package/pro/squads/squad-creator/tasks/create-squad-publish.md +225 -0
  1224. package/pro/squads/squad-creator/tasks/create-squad-validate.md +327 -0
  1225. package/pro/squads/squad-creator/tasks/create-squad.md +113 -0
  1226. package/pro/squads/squad-creator/tasks/create-task-anatomy.md +273 -0
  1227. package/pro/squads/squad-creator/tasks/create-task-classify.md +222 -0
  1228. package/pro/squads/squad-creator/tasks/create-task-executor.md +205 -0
  1229. package/pro/squads/squad-creator/tasks/create-task-generate.md +224 -0
  1230. package/pro/squads/squad-creator/tasks/create-task-register.md +192 -0
  1231. package/pro/squads/squad-creator/tasks/create-task-validate.md +232 -0
  1232. package/pro/squads/squad-creator/tasks/create-task.md +113 -0
  1233. package/pro/squads/squad-creator/tasks/create-template-elicitation.md +59 -0
  1234. package/pro/squads/squad-creator/tasks/create-template-identity.md +59 -0
  1235. package/pro/squads/squad-creator/tasks/create-template-register.md +58 -0
  1236. package/pro/squads/squad-creator/tasks/create-template-structure.md +59 -0
  1237. package/pro/squads/squad-creator/tasks/create-template-validate.md +59 -0
  1238. package/pro/squads/squad-creator/tasks/create-template.md +95 -0
  1239. package/pro/squads/squad-creator/tasks/create-workflow-classify.md +213 -0
  1240. package/pro/squads/squad-creator/tasks/create-workflow-design.md +494 -0
  1241. package/pro/squads/squad-creator/tasks/create-workflow-from-sop.md +301 -0
  1242. package/pro/squads/squad-creator/tasks/create-workflow-generate.md +262 -0
  1243. package/pro/squads/squad-creator/tasks/create-workflow.md +108 -0
  1244. package/pro/squads/squad-creator/tasks/detect-gaps.md +116 -0
  1245. package/pro/squads/squad-creator/tasks/detect-operational-mode-classify.md +112 -0
  1246. package/pro/squads/squad-creator/tasks/detect-operational-mode-infrastructure.md +104 -0
  1247. package/pro/squads/squad-creator/tasks/detect-operational-mode-outputs.md +94 -0
  1248. package/pro/squads/squad-creator/tasks/detect-operational-mode-systems.md +91 -0
  1249. package/pro/squads/squad-creator/tasks/detect-operational-mode-verbs.md +94 -0
  1250. package/pro/squads/squad-creator/tasks/detect-operational-mode.md +115 -0
  1251. package/pro/squads/squad-creator/tasks/detect-squad-context.md +120 -0
  1252. package/pro/squads/squad-creator/tasks/discover-tools-classify.md +191 -0
  1253. package/pro/squads/squad-creator/tasks/discover-tools-evaluate.md +173 -0
  1254. package/pro/squads/squad-creator/tasks/discover-tools-recommend.md +180 -0
  1255. package/pro/squads/squad-creator/tasks/discover-tools-report.md +184 -0
  1256. package/pro/squads/squad-creator/tasks/discover-tools-scan.md +188 -0
  1257. package/pro/squads/squad-creator/tasks/discover-tools.md +139 -0
  1258. package/pro/squads/squad-creator/tasks/generate-recommendations.md +162 -0
  1259. package/pro/squads/squad-creator/tasks/improve-workflow-from-report.md +127 -0
  1260. package/pro/squads/squad-creator/tasks/improve-workflow-report-apply-p1.md +59 -0
  1261. package/pro/squads/squad-creator/tasks/improve-workflow-report-apply-secondary.md +59 -0
  1262. package/pro/squads/squad-creator/tasks/improve-workflow-report-backup.md +59 -0
  1263. package/pro/squads/squad-creator/tasks/improve-workflow-report-ingest.md +59 -0
  1264. package/pro/squads/squad-creator/tasks/improve-workflow-report-target.md +59 -0
  1265. package/pro/squads/squad-creator/tasks/improve-workflow-report-validate-report.md +59 -0
  1266. package/pro/squads/squad-creator/tasks/install-skills-finalize.md +415 -0
  1267. package/pro/squads/squad-creator/tasks/install-skills-prepare.md +353 -0
  1268. package/pro/squads/squad-creator/tasks/install-skills-write.md +395 -0
  1269. package/pro/squads/squad-creator/tasks/install-skills.md +282 -0
  1270. package/pro/squads/squad-creator/tasks/next-squad-ranking.md +58 -0
  1271. package/pro/squads/squad-creator/tasks/next-squad-registry.md +58 -0
  1272. package/pro/squads/squad-creator/tasks/next-squad-report.md +59 -0
  1273. package/pro/squads/squad-creator/tasks/next-squad-scoring.md +59 -0
  1274. package/pro/squads/squad-creator/tasks/next-squad-signals.md +58 -0
  1275. package/pro/squads/squad-creator/tasks/next-squad.md +98 -0
  1276. package/pro/squads/squad-creator/tasks/operational-test-baseline.md +69 -0
  1277. package/pro/squads/squad-creator/tasks/operational-test-preflight.md +70 -0
  1278. package/pro/squads/squad-creator/tasks/operational-test-report.md +71 -0
  1279. package/pro/squads/squad-creator/tasks/operational-test-smoke.md +72 -0
  1280. package/pro/squads/squad-creator/tasks/operational-test-target.md +71 -0
  1281. package/pro/squads/squad-creator/tasks/operational-test.md +102 -0
  1282. package/pro/squads/squad-creator/tasks/performance-dashboard.md +118 -0
  1283. package/pro/squads/squad-creator/tasks/qa-after-creation.md +129 -0
  1284. package/pro/squads/squad-creator/tasks/qa-check-compatibility.md +191 -0
  1285. package/pro/squads/squad-creator/tasks/qa-check-completeness.md +218 -0
  1286. package/pro/squads/squad-creator/tasks/qa-check-references.md +172 -0
  1287. package/pro/squads/squad-creator/tasks/qa-check-schema.md +190 -0
  1288. package/pro/squads/squad-creator/tasks/qa-check-structure.md +176 -0
  1289. package/pro/squads/squad-creator/tasks/qa-generate-report.md +240 -0
  1290. package/pro/squads/squad-creator/tasks/qualify-provider-baseline.md +122 -0
  1291. package/pro/squads/squad-creator/tasks/qualify-provider-compare.md +159 -0
  1292. package/pro/squads/squad-creator/tasks/qualify-provider-preflight.md +143 -0
  1293. package/pro/squads/squad-creator/tasks/qualify-provider-ptbr.md +166 -0
  1294. package/pro/squads/squad-creator/tasks/qualify-provider-reliability.md +140 -0
  1295. package/pro/squads/squad-creator/tasks/qualify-provider-report.md +178 -0
  1296. package/pro/squads/squad-creator/tasks/reexecute-squad-phase.md +97 -0
  1297. package/pro/squads/squad-creator/tasks/refresh-registry.md +299 -0
  1298. package/pro/squads/squad-creator/tasks/rename-squad-map.md +59 -0
  1299. package/pro/squads/squad-creator/tasks/rename-squad-propagate.md +59 -0
  1300. package/pro/squads/squad-creator/tasks/rename-squad-structural.md +59 -0
  1301. package/pro/squads/squad-creator/tasks/rename-squad-validate.md +59 -0
  1302. package/pro/squads/squad-creator/tasks/rename-squad.md +118 -0
  1303. package/pro/squads/squad-creator/tasks/self-improve.md +107 -0
  1304. package/pro/squads/squad-creator/tasks/setup-runtime-handoff.md +74 -0
  1305. package/pro/squads/squad-creator/tasks/setup-runtime-persist.md +81 -0
  1306. package/pro/squads/squad-creator/tasks/setup-runtime-requirements.md +84 -0
  1307. package/pro/squads/squad-creator/tasks/setup-runtime-validate.md +82 -0
  1308. package/pro/squads/squad-creator/tasks/setup-runtime-wizard.md +84 -0
  1309. package/pro/squads/squad-creator/tasks/setup-runtime.md +103 -0
  1310. package/pro/squads/squad-creator/tasks/squad-analytics.md +276 -0
  1311. package/pro/squads/squad-creator/tasks/squad-overview-agents.md +110 -0
  1312. package/pro/squads/squad-creator/tasks/squad-overview-generate.md +102 -0
  1313. package/pro/squads/squad-creator/tasks/squad-overview-metadata.md +121 -0
  1314. package/pro/squads/squad-creator/tasks/squad-overview-minds.md +100 -0
  1315. package/pro/squads/squad-creator/tasks/squad-overview-structure.md +106 -0
  1316. package/pro/squads/squad-creator/tasks/squad-overview-write.md +103 -0
  1317. package/pro/squads/squad-creator/tasks/squad-overview.md +117 -0
  1318. package/pro/squads/squad-creator/tasks/sync-chief-codex-skill.md +73 -0
  1319. package/pro/squads/squad-creator/tasks/sync-ide-skills.md +240 -0
  1320. package/pro/squads/squad-creator/tasks/update-radar.md +151 -0
  1321. package/pro/squads/squad-creator/tasks/upgrade-squad-apply.md +187 -0
  1322. package/pro/squads/squad-creator/tasks/upgrade-squad-gap.md +203 -0
  1323. package/pro/squads/squad-creator/tasks/upgrade-squad-inventory.md +186 -0
  1324. package/pro/squads/squad-creator/tasks/upgrade-squad-plan.md +163 -0
  1325. package/pro/squads/squad-creator/tasks/upgrade-squad-verify.md +178 -0
  1326. package/pro/squads/squad-creator/tasks/upgrade-squad.md +138 -0
  1327. package/pro/squads/squad-creator/tasks/validate-final-artifacts.md +104 -0
  1328. package/pro/squads/squad-creator/tasks/validate-squad-classify.md +335 -0
  1329. package/pro/squads/squad-creator/tasks/validate-squad-deep-review.md +226 -0
  1330. package/pro/squads/squad-creator/tasks/validate-squad-preflight.md +189 -0
  1331. package/pro/squads/squad-creator/tasks/validate-squad-verdict.md +442 -0
  1332. package/pro/squads/squad-creator/tasks/validate-squad.md +117 -0
  1333. package/pro/squads/squad-creator/templates/agent-flow-doc-tmpl.md +512 -0
  1334. package/pro/squads/squad-creator/templates/agent-tmpl.md +703 -0
  1335. package/pro/squads/squad-creator/templates/auto-heal-task-tmpl.md +417 -0
  1336. package/pro/squads/squad-creator/templates/capability-map-tmpl.md +95 -0
  1337. package/pro/squads/squad-creator/templates/config-tmpl.yaml +534 -0
  1338. package/pro/squads/squad-creator/templates/cross-domain-handoff-tmpl.yaml +18 -0
  1339. package/pro/squads/squad-creator/templates/ecosystem-health-tmpl.md +19 -0
  1340. package/pro/squads/squad-creator/templates/gap-analysis-tmpl.md +13 -0
  1341. package/pro/squads/squad-creator/templates/greeting-script-tmpl.cjs +169 -0
  1342. package/pro/squads/squad-creator/templates/handoff-insumos-tmpl.yaml +112 -0
  1343. package/pro/squads/squad-creator/templates/journey-log-tmpl.yaml +93 -0
  1344. package/pro/squads/squad-creator/templates/operational-test-task-tmpl.md +514 -0
  1345. package/pro/squads/squad-creator/templates/orchestrator-tmpl.md +74 -0
  1346. package/pro/squads/squad-creator/templates/performance-dashboard-tmpl.md +77 -0
  1347. package/pro/squads/squad-creator/templates/pipeline-progress-tmpl.py +373 -0
  1348. package/pro/squads/squad-creator/templates/pipeline-prompt-tmpl.md +94 -0
  1349. package/pro/squads/squad-creator/templates/pipeline-runner-tmpl.py +444 -0
  1350. package/pro/squads/squad-creator/templates/pipeline-state-tmpl.py +413 -0
  1351. package/pro/squads/squad-creator/templates/pop-extractor-prompt.md +549 -0
  1352. package/pro/squads/squad-creator/templates/quality-dashboard-tmpl.md +286 -0
  1353. package/pro/squads/squad-creator/templates/quality-gate-tmpl.yaml +589 -0
  1354. package/pro/squads/squad-creator/templates/readme-tmpl.md +254 -0
  1355. package/pro/squads/squad-creator/templates/research-output-tmpl.md +625 -0
  1356. package/pro/squads/squad-creator/templates/research-prompt-tmpl.md +479 -0
  1357. package/pro/squads/squad-creator/templates/setup-runtime-task-tmpl.md +627 -0
  1358. package/pro/squads/squad-creator/templates/squad-mappings-tmpl.yaml +71 -0
  1359. package/pro/squads/squad-creator/templates/squad-prd-tmpl.md +488 -0
  1360. package/pro/squads/squad-creator/templates/squad-readme-tmpl.md +170 -0
  1361. package/pro/squads/squad-creator/templates/story-create-agent-tmpl.md +284 -0
  1362. package/pro/squads/squad-creator/templates/task-tmpl.md +533 -0
  1363. package/pro/squads/squad-creator/templates/tech-radar-tmpl.md +73 -0
  1364. package/pro/squads/squad-creator/templates/template-tmpl.yaml +227 -0
  1365. package/pro/squads/squad-creator/templates/weekly-digest-tmpl.md +11 -0
  1366. package/pro/squads/squad-creator/templates/weekly-report-tmpl.md +155 -0
  1367. package/pro/squads/squad-creator/templates/workflow-doc-tmpl.md +860 -0
  1368. package/pro/squads/squad-creator/templates/workflow-tmpl.yaml +486 -0
  1369. package/pro/squads/squad-creator/test-cases/an-assess-sources/TEST-REPORT-v2.1.md +351 -0
  1370. package/pro/squads/squad-creator/test-cases/an-assess-sources/formal-qualification-report.yaml +389 -0
  1371. package/pro/squads/squad-creator/test-cases/an-clone-review/opus-baseline.yaml +566 -0
  1372. package/pro/squads/squad-creator/test-cases/pv-axioma-assessment/opus-baseline.yaml +96 -0
  1373. package/pro/squads/squad-creator/test-cases/pv-modernization-score/opus-baseline.yaml +488 -0
  1374. package/pro/squads/squad-creator/test-cases/smoke-test-model-routing/test-case.yaml +100 -0
  1375. package/pro/squads/squad-creator/workflows/wf-auto-heal.yaml +33 -0
  1376. package/pro/squads/squad-creator/workflows/wf-create-agent.yaml +252 -0
  1377. package/pro/squads/squad-creator/workflows/wf-create-greeting-script.yaml +60 -0
  1378. package/pro/squads/squad-creator/workflows/wf-create-pipeline.yaml +60 -0
  1379. package/pro/squads/squad-creator/workflows/wf-create-squad.yaml +1916 -0
  1380. package/pro/squads/squad-creator/workflows/wf-create-task.yaml +172 -0
  1381. package/pro/squads/squad-creator/workflows/wf-create-template.yaml +60 -0
  1382. package/pro/squads/squad-creator/workflows/wf-create-workflow.yaml +138 -0
  1383. package/pro/squads/squad-creator/workflows/wf-cross-provider-qualification.yaml +769 -0
  1384. package/pro/squads/squad-creator/workflows/wf-detect-operational-mode.yaml +112 -0
  1385. package/pro/squads/squad-creator/workflows/wf-discover-tools.yaml +1695 -0
  1386. package/pro/squads/squad-creator/workflows/wf-ecosystem-analysis.yaml +338 -0
  1387. package/pro/squads/squad-creator/workflows/wf-improve-workflow-from-report.yaml +69 -0
  1388. package/pro/squads/squad-creator/workflows/wf-install-skills.yaml +52 -0
  1389. package/pro/squads/squad-creator/workflows/wf-next-squad.yaml +60 -0
  1390. package/pro/squads/squad-creator/workflows/wf-operational-test.yaml +86 -0
  1391. package/pro/squads/squad-creator/workflows/wf-qa-after-creation.yaml +339 -0
  1392. package/pro/squads/squad-creator/workflows/wf-rename-squad.yaml +51 -0
  1393. package/pro/squads/squad-creator/workflows/wf-self-improve.yaml +206 -0
  1394. package/pro/squads/squad-creator/workflows/wf-setup-runtime.yaml +86 -0
  1395. package/pro/squads/squad-creator/workflows/wf-squad-overview.yaml +100 -0
  1396. package/pro/squads/squad-creator/workflows/wf-sync-ide-skills.yaml +24 -0
  1397. package/pro/squads/squad-creator/workflows/wf-upgrade-squad.yaml +236 -0
  1398. package/pro/squads/squad-creator/workflows/wf-weekly-report.yaml +139 -0
  1399. package/pro/squads/squad-creator-pro/.state.json +32 -0
  1400. package/pro/squads/squad-creator-pro/ARCHITECTURE.md +37 -0
  1401. package/pro/squads/squad-creator-pro/CHANGELOG.md +275 -0
  1402. package/pro/squads/squad-creator-pro/README.md +1061 -0
  1403. package/pro/squads/squad-creator-pro/agents/ecosystem-analyst.md +989 -0
  1404. package/pro/squads/squad-creator-pro/agents/heuristic-ops.md +369 -0
  1405. package/pro/squads/squad-creator-pro/agents/oalanicolas.md +998 -0
  1406. package/pro/squads/squad-creator-pro/agents/pedro-valerio.md +1291 -0
  1407. package/pro/squads/squad-creator-pro/agents/squad-chief.md +1819 -0
  1408. package/pro/squads/squad-creator-pro/agents/thiago_finch.md +986 -0
  1409. package/pro/squads/squad-creator-pro/benchmarks/golden/hormozi-golden.yaml +382 -0
  1410. package/pro/squads/squad-creator-pro/benchmarks/scripts/run-benchmark.sh +363 -0
  1411. package/pro/squads/squad-creator-pro/checklists/.gitkeep +1 -0
  1412. package/pro/squads/squad-creator-pro/checklists/agent-depth-checklist.md +244 -0
  1413. package/pro/squads/squad-creator-pro/checklists/agent-quality-gate.md +434 -0
  1414. package/pro/squads/squad-creator-pro/checklists/create-squad-checklist.md +291 -0
  1415. package/pro/squads/squad-creator-pro/checklists/deep-research-quality.md +505 -0
  1416. package/pro/squads/squad-creator-pro/checklists/executor-matrix-checklist.md +260 -0
  1417. package/pro/squads/squad-creator-pro/checklists/mental-model-integration-checklist.md +95 -0
  1418. package/pro/squads/squad-creator-pro/checklists/mind-validation.md +373 -0
  1419. package/pro/squads/squad-creator-pro/checklists/pipeline-quality-checklist.md +84 -0
  1420. package/pro/squads/squad-creator-pro/checklists/quality-gate-checklist.md +385 -0
  1421. package/pro/squads/squad-creator-pro/checklists/session-heuristics-extraction.md +65 -0
  1422. package/pro/squads/squad-creator-pro/checklists/sop-validation.md +250 -0
  1423. package/pro/squads/squad-creator-pro/checklists/squad-checklist.md +1014 -0
  1424. package/pro/squads/squad-creator-pro/checklists/task-anatomy-checklist.md +626 -0
  1425. package/pro/squads/squad-creator-pro/config/.gitkeep +1 -0
  1426. package/pro/squads/squad-creator-pro/config/axioma-validator.yaml +371 -0
  1427. package/pro/squads/squad-creator-pro/config/heuristic-watcher-rubric.yaml +300 -0
  1428. package/pro/squads/squad-creator-pro/config/heuristics.yaml +937 -0
  1429. package/pro/squads/squad-creator-pro/config/model-routing.yaml +693 -0
  1430. package/pro/squads/squad-creator-pro/config/quality-gates.yaml +415 -0
  1431. package/pro/squads/squad-creator-pro/config/scoring-rubric.yaml +199 -0
  1432. package/pro/squads/squad-creator-pro/config/squad-config.yaml +165 -0
  1433. package/pro/squads/squad-creator-pro/config/task-anatomy.yaml +263 -0
  1434. package/pro/squads/squad-creator-pro/config/veto-conditions.yaml +455 -0
  1435. package/pro/squads/squad-creator-pro/config.yaml +455 -0
  1436. package/pro/squads/squad-creator-pro/data/.gitkeep +1 -0
  1437. package/pro/squads/squad-creator-pro/data/an-anchor-words.yaml +78 -0
  1438. package/pro/squads/squad-creator-pro/data/an-clone-anti-patterns.yaml +148 -0
  1439. package/pro/squads/squad-creator-pro/data/an-clone-validation.yaml +190 -0
  1440. package/pro/squads/squad-creator-pro/data/an-diagnostic-framework.yaml +164 -0
  1441. package/pro/squads/squad-creator-pro/data/an-output-examples.yaml +102 -0
  1442. package/pro/squads/squad-creator-pro/data/an-source-signals.yaml +98 -0
  1443. package/pro/squads/squad-creator-pro/data/an-source-tiers.yaml +119 -0
  1444. package/pro/squads/squad-creator-pro/data/best-practices.md +986 -0
  1445. package/pro/squads/squad-creator-pro/data/core-heuristics.md +510 -0
  1446. package/pro/squads/squad-creator-pro/data/decision-heuristics-framework.md +620 -0
  1447. package/pro/squads/squad-creator-pro/data/executor-matrix-framework.md +441 -0
  1448. package/pro/squads/squad-creator-pro/data/extraction-mentoria-processos-dec19.yaml +337 -0
  1449. package/pro/squads/squad-creator-pro/data/fusion-decision-points-analysis.md +397 -0
  1450. package/pro/squads/squad-creator-pro/data/fusion-dry-runs/traffic-masters-absorve-_traffic-2026-03-09.md +135 -0
  1451. package/pro/squads/squad-creator-pro/data/fusion-executor-analysis.md +677 -0
  1452. package/pro/squads/squad-creator-pro/data/hybridops-patterns.md +1351 -0
  1453. package/pro/squads/squad-creator-pro/data/internal-infrastructure-library.yaml +103 -0
  1454. package/pro/squads/squad-creator-pro/data/mental-model-task-matrix.yaml +692 -0
  1455. package/pro/squads/squad-creator-pro/data/pm-best-practices.md +504 -0
  1456. package/pro/squads/squad-creator-pro/data/pv-anchor-words.yaml +64 -0
  1457. package/pro/squads/squad-creator-pro/data/pv-authenticity-markers.yaml +200 -0
  1458. package/pro/squads/squad-creator-pro/data/pv-meta-axiomas.yaml +162 -0
  1459. package/pro/squads/squad-creator-pro/data/pv-output-examples.yaml +342 -0
  1460. package/pro/squads/squad-creator-pro/data/pv-workflow-validation.yaml +318 -0
  1461. package/pro/squads/squad-creator-pro/data/quality-dimensions-framework.md +405 -0
  1462. package/pro/squads/squad-creator-pro/data/quality-gate-coverage.yaml +169 -0
  1463. package/pro/squads/squad-creator-pro/data/squad-analytics-guide.md +252 -0
  1464. package/pro/squads/squad-creator-pro/data/squad-kb.md +987 -0
  1465. package/pro/squads/squad-creator-pro/data/squad-kpis.yaml +60 -0
  1466. package/pro/squads/squad-creator-pro/data/squad-registry.yaml +4900 -0
  1467. package/pro/squads/squad-creator-pro/data/tier-system-framework.md +475 -0
  1468. package/pro/squads/squad-creator-pro/data/token-registry.yaml +386 -0
  1469. package/pro/squads/squad-creator-pro/data/tool-evaluation-framework.md +847 -0
  1470. package/pro/squads/squad-creator-pro/data/tool-registry.yaml +816 -0
  1471. package/pro/squads/squad-creator-pro/docs/ARCHITECTURE-DIAGRAMS.md +1466 -0
  1472. package/pro/squads/squad-creator-pro/docs/COMMANDS.md +544 -0
  1473. package/pro/squads/squad-creator-pro/docs/CONCEPTS.md +584 -0
  1474. package/pro/squads/squad-creator-pro/docs/FAQ.md +731 -0
  1475. package/pro/squads/squad-creator-pro/docs/HITL-FLOW.md +255 -0
  1476. package/pro/squads/squad-creator-pro/docs/PATTERN-LIBRARY.md +341 -0
  1477. package/pro/squads/squad-creator-pro/docs/PEDRO-VALERIO-ARCHITECTURE.md +456 -0
  1478. package/pro/squads/squad-creator-pro/docs/POR-ONDE-COMECAR.md +210 -0
  1479. package/pro/squads/squad-creator-pro/docs/QUICK-START.md +205 -0
  1480. package/pro/squads/squad-creator-pro/docs/TOOL-RECOMMENDATIONS.md +381 -0
  1481. package/pro/squads/squad-creator-pro/docs/TUTORIAL-COMPLETO.md +458 -0
  1482. package/pro/squads/squad-creator-pro/docs/sop-extraction-process.md +674 -0
  1483. package/pro/squads/squad-creator-pro/docs/squad-chief-agent-flow.md +981 -0
  1484. package/pro/squads/squad-creator-pro/docs/squad-creation-pipeline-workflow.md +937 -0
  1485. package/pro/squads/squad-creator-pro/minds/oalanicolas/artifacts/HANDOFF_PROTOCOL.md +269 -0
  1486. package/pro/squads/squad-creator-pro/minds/oalanicolas/artifacts/SOURCE_CLASSIFICATION.md +258 -0
  1487. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_001.md +117 -0
  1488. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_002.md +115 -0
  1489. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_003.md +110 -0
  1490. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_004.md +109 -0
  1491. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_005.md +116 -0
  1492. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_006.md +183 -0
  1493. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_007.md +273 -0
  1494. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_008.md +204 -0
  1495. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_009.md +246 -0
  1496. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_010.md +265 -0
  1497. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_011.md +72 -0
  1498. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_012.md +59 -0
  1499. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_013.md +69 -0
  1500. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_014.md +69 -0
  1501. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_015.md +83 -0
  1502. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_016.md +67 -0
  1503. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_017.md +64 -0
  1504. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_018.md +79 -0
  1505. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_019.md +69 -0
  1506. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_020.md +67 -0
  1507. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_021.md +114 -0
  1508. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_022.md +75 -0
  1509. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_023.md +60 -0
  1510. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_024.md +66 -0
  1511. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_025.md +81 -0
  1512. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_026.md +82 -0
  1513. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_027.md +85 -0
  1514. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_028.md +74 -0
  1515. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_029.md +73 -0
  1516. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_030.md +80 -0
  1517. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_031.md +78 -0
  1518. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_032.md +81 -0
  1519. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_033.md +69 -0
  1520. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_034.md +119 -0
  1521. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_035.md +120 -0
  1522. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_036.md +134 -0
  1523. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_037.md +123 -0
  1524. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_038.md +85 -0
  1525. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_039.md +74 -0
  1526. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_040.md +130 -0
  1527. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_041.md +87 -0
  1528. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_042.md +89 -0
  1529. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_043.md +78 -0
  1530. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_044.md +97 -0
  1531. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_045.md +82 -0
  1532. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_046.md +83 -0
  1533. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_047.md +77 -0
  1534. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_048.md +83 -0
  1535. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_049.md +102 -0
  1536. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_050.md +85 -0
  1537. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_051.md +90 -0
  1538. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_052.md +84 -0
  1539. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_053.md +83 -0
  1540. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_054.md +96 -0
  1541. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_055.md +137 -0
  1542. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_056.md +114 -0
  1543. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_057.md +82 -0
  1544. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_058.md +79 -0
  1545. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_059.md +88 -0
  1546. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_060.md +78 -0
  1547. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_061.md +79 -0
  1548. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_062.md +99 -0
  1549. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_063.md +73 -0
  1550. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_064.md +106 -0
  1551. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_065.md +87 -0
  1552. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_066.md +66 -0
  1553. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_067.md +65 -0
  1554. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_068.md +70 -0
  1555. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_069.md +69 -0
  1556. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_070.md +67 -0
  1557. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_071.md +87 -0
  1558. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_072.md +84 -0
  1559. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_073.md +89 -0
  1560. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_074.md +60 -0
  1561. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_075.md +87 -0
  1562. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_076.md +107 -0
  1563. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_077.md +98 -0
  1564. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_078.md +66 -0
  1565. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_079.md +91 -0
  1566. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_080.md +59 -0
  1567. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_081.md +64 -0
  1568. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_082.md +71 -0
  1569. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_083.md +62 -0
  1570. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_084.md +66 -0
  1571. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_085.md +62 -0
  1572. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_086.md +69 -0
  1573. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_087.md +74 -0
  1574. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_088.md +89 -0
  1575. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_089.md +88 -0
  1576. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_090.md +74 -0
  1577. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_091.md +76 -0
  1578. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_092.md +61 -0
  1579. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_093.md +69 -0
  1580. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_094.md +58 -0
  1581. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_095.md +58 -0
  1582. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_096.md +65 -0
  1583. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_097.md +63 -0
  1584. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_098.md +98 -0
  1585. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_099.md +97 -0
  1586. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_100.md +100 -0
  1587. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_101.md +62 -0
  1588. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_102.md +65 -0
  1589. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_103.md +60 -0
  1590. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_104.md +60 -0
  1591. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_105.md +67 -0
  1592. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_106.md +64 -0
  1593. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_107.md +63 -0
  1594. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_108.md +60 -0
  1595. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_109.md +62 -0
  1596. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_110.md +58 -0
  1597. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_111.md +88 -0
  1598. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_112.md +60 -0
  1599. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_113.md +74 -0
  1600. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_114.md +55 -0
  1601. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_115.md +126 -0
  1602. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_116.md +76 -0
  1603. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_117.md +65 -0
  1604. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_118.md +72 -0
  1605. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_119.md +58 -0
  1606. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_120.md +77 -0
  1607. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_121.md +65 -0
  1608. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_122.md +57 -0
  1609. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_123.md +63 -0
  1610. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_124.md +69 -0
  1611. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_125.md +73 -0
  1612. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_126.md +81 -0
  1613. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_127.md +77 -0
  1614. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_128.md +76 -0
  1615. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_129.md +81 -0
  1616. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_130.md +88 -0
  1617. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_131.md +85 -0
  1618. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_132.md +81 -0
  1619. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_133.md +86 -0
  1620. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/decision-cards.yaml +1010 -0
  1621. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/heuristic-analytics.md +24 -0
  1622. package/pro/squads/squad-creator-pro/minds/pedro_valerio/artifacts/Assinatura_Linguistica.md +355 -0
  1623. package/pro/squads/squad-creator-pro/minds/pedro_valerio/artifacts/META_AXIOMAS.md +277 -0
  1624. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_BS_001.md +151 -0
  1625. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_041.md +80 -0
  1626. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_042.md +79 -0
  1627. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_043.md +81 -0
  1628. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_044.md +83 -0
  1629. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_045.md +82 -0
  1630. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_046.md +82 -0
  1631. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_047.md +81 -0
  1632. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_048.md +77 -0
  1633. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_049.md +81 -0
  1634. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_050.md +79 -0
  1635. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_051.md +81 -0
  1636. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_052.md +81 -0
  1637. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_053.md +79 -0
  1638. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_054.md +74 -0
  1639. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_055.md +78 -0
  1640. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_056.md +78 -0
  1641. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_057.md +78 -0
  1642. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_058.md +81 -0
  1643. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_059.md +81 -0
  1644. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_060.md +82 -0
  1645. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_061.md +74 -0
  1646. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_062.md +75 -0
  1647. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_063.md +80 -0
  1648. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_064.md +75 -0
  1649. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_065.md +74 -0
  1650. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_066.md +76 -0
  1651. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_067.md +75 -0
  1652. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_068.md +78 -0
  1653. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_069.md +78 -0
  1654. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_070.md +75 -0
  1655. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_071.md +77 -0
  1656. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_072.md +76 -0
  1657. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_073.md +82 -0
  1658. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_074.md +80 -0
  1659. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_075.md +85 -0
  1660. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_076.md +81 -0
  1661. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_077.md +77 -0
  1662. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_078.md +81 -0
  1663. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_079.md +77 -0
  1664. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_080.md +81 -0
  1665. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_081.md +76 -0
  1666. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_082.md +84 -0
  1667. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_083.md +78 -0
  1668. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_084.md +76 -0
  1669. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_085.md +83 -0
  1670. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_086.md +74 -0
  1671. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_087.md +87 -0
  1672. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_088.md +75 -0
  1673. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_089.md +79 -0
  1674. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_090.md +75 -0
  1675. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_091.md +77 -0
  1676. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_092.md +81 -0
  1677. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_093.md +74 -0
  1678. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_094.md +73 -0
  1679. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_095.md +84 -0
  1680. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_096.md +78 -0
  1681. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_097.md +79 -0
  1682. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_098.md +85 -0
  1683. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_099.md +82 -0
  1684. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_100.md +81 -0
  1685. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_101.md +61 -0
  1686. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_001.md +197 -0
  1687. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_002.md +165 -0
  1688. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_003.md +164 -0
  1689. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_004.md +163 -0
  1690. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_005.md +161 -0
  1691. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_006.md +164 -0
  1692. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_007.md +162 -0
  1693. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_008.md +156 -0
  1694. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_009.md +157 -0
  1695. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_010.md +166 -0
  1696. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_011.md +161 -0
  1697. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_012.md +80 -0
  1698. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_013.md +66 -0
  1699. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_014.md +64 -0
  1700. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_015.md +61 -0
  1701. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_016.md +60 -0
  1702. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_017.md +66 -0
  1703. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_018.md +56 -0
  1704. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_019.md +63 -0
  1705. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_020.md +64 -0
  1706. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_021.md +71 -0
  1707. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_022.md +69 -0
  1708. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_023.md +56 -0
  1709. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_024.md +61 -0
  1710. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_025.md +60 -0
  1711. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_026.md +71 -0
  1712. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_027.md +65 -0
  1713. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_028.md +61 -0
  1714. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_029.md +62 -0
  1715. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_030.md +62 -0
  1716. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_031.md +62 -0
  1717. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_032.md +59 -0
  1718. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_033.md +64 -0
  1719. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_034.md +65 -0
  1720. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_035.md +62 -0
  1721. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_036.md +63 -0
  1722. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_037.md +60 -0
  1723. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_038.md +78 -0
  1724. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_039.md +58 -0
  1725. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_040.md +62 -0
  1726. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_041.md +61 -0
  1727. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PM_001.md +198 -0
  1728. package/pro/squads/squad-creator-pro/package-lock.json +38 -0
  1729. package/pro/squads/squad-creator-pro/package.json +30 -0
  1730. package/pro/squads/squad-creator-pro/requirements.txt +1 -0
  1731. package/pro/squads/squad-creator-pro/schemas/agent-persona.schema.json +78 -0
  1732. package/pro/squads/squad-creator-pro/schemas/squad-config.schema.json +146 -0
  1733. package/pro/squads/squad-creator-pro/scripts/README.md +166 -0
  1734. package/pro/squads/squad-creator-pro/scripts/WAVE-LOOP.md +157 -0
  1735. package/pro/squads/squad-creator-pro/scripts/assess-sources.sh +443 -0
  1736. package/pro/squads/squad-creator-pro/scripts/checklist_validator.py +59 -0
  1737. package/pro/squads/squad-creator-pro/scripts/clone-review.sh +394 -0
  1738. package/pro/squads/squad-creator-pro/scripts/coherence-validator.py +836 -0
  1739. package/pro/squads/squad-creator-pro/scripts/create-agent-preflight.py +243 -0
  1740. package/pro/squads/squad-creator-pro/scripts/cross-mind-linker.py +143 -0
  1741. package/pro/squads/squad-creator-pro/scripts/cross-provider/compare-results.js +281 -0
  1742. package/pro/squads/squad-creator-pro/scripts/cross-provider/cross-provider-runner.js +462 -0
  1743. package/pro/squads/squad-creator-pro/scripts/cross_map.json +338 -0
  1744. package/pro/squads/squad-creator-pro/scripts/dependency_check.py +337 -0
  1745. package/pro/squads/squad-creator-pro/scripts/detect-environment-contract.cjs +37 -0
  1746. package/pro/squads/squad-creator-pro/scripts/export-antigravity-workflows.cjs +12 -0
  1747. package/pro/squads/squad-creator-pro/scripts/fidelity-score.sh +519 -0
  1748. package/pro/squads/squad-creator-pro/scripts/generate-heuristic-registry.py +83 -0
  1749. package/pro/squads/squad-creator-pro/scripts/generate-squad-greeting.js +426 -0
  1750. package/pro/squads/squad-creator-pro/scripts/generate-squad-guide.js +38 -0
  1751. package/pro/squads/squad-creator-pro/scripts/inventory.py +59 -0
  1752. package/pro/squads/squad-creator-pro/scripts/lib/config-loader.js +12 -0
  1753. package/pro/squads/squad-creator-pro/scripts/lib/squad-runtime-paths.cjs +14 -0
  1754. package/pro/squads/squad-creator-pro/scripts/lib/validate-runtime-state.cjs +14 -0
  1755. package/pro/squads/squad-creator-pro/scripts/load-business-sops.cjs +460 -0
  1756. package/pro/squads/squad-creator-pro/scripts/model-tier-validator.cjs +369 -0
  1757. package/pro/squads/squad-creator-pro/scripts/model-usage-logger.cjs +245 -0
  1758. package/pro/squads/squad-creator-pro/scripts/modernization-score.sh +308 -0
  1759. package/pro/squads/squad-creator-pro/scripts/naming_validator.py +59 -0
  1760. package/pro/squads/squad-creator-pro/scripts/on-specialist-complete.py +152 -0
  1761. package/pro/squads/squad-creator-pro/scripts/quality_gate.py +413 -0
  1762. package/pro/squads/squad-creator-pro/scripts/refresh-registry.py +425 -0
  1763. package/pro/squads/squad-creator-pro/scripts/rename-squad.sh +8 -0
  1764. package/pro/squads/squad-creator-pro/scripts/save-session-metrics.py +189 -0
  1765. package/pro/squads/squad-creator-pro/scripts/scaffold-squad.cjs +12 -0
  1766. package/pro/squads/squad-creator-pro/scripts/scoring.py +395 -0
  1767. package/pro/squads/squad-creator-pro/scripts/security_scanner.py +59 -0
  1768. package/pro/squads/squad-creator-pro/scripts/squad-analytics.py +59 -0
  1769. package/pro/squads/squad-creator-pro/scripts/squad-context-loader.cjs +232 -0
  1770. package/pro/squads/squad-creator-pro/scripts/squad-state-manager.cjs +707 -0
  1771. package/pro/squads/squad-creator-pro/scripts/squad-workflow-runner.cjs +884 -0
  1772. package/pro/squads/squad-creator-pro/scripts/squad_utils.py +59 -0
  1773. package/pro/squads/squad-creator-pro/scripts/sync-chief-codex-skill.js +242 -0
  1774. package/pro/squads/squad-creator-pro/scripts/sync-ide-skills.py +59 -0
  1775. package/pro/squads/squad-creator-pro/scripts/tests/__init__.py +1 -0
  1776. package/pro/squads/squad-creator-pro/scripts/tests/conftest.py +309 -0
  1777. package/pro/squads/squad-creator-pro/scripts/tests/run_bash_tests.sh +29 -0
  1778. package/pro/squads/squad-creator-pro/scripts/tests/test_assess_sources.sh +216 -0
  1779. package/pro/squads/squad-creator-pro/scripts/tests/test_checklist_validator.py +396 -0
  1780. package/pro/squads/squad-creator-pro/scripts/tests/test_clone_review.sh +239 -0
  1781. package/pro/squads/squad-creator-pro/scripts/tests/test_coherence_validator.py +212 -0
  1782. package/pro/squads/squad-creator-pro/scripts/tests/test_dependency_check.py +361 -0
  1783. package/pro/squads/squad-creator-pro/scripts/tests/test_fidelity_score.sh +298 -0
  1784. package/pro/squads/squad-creator-pro/scripts/tests/test_inventory.py +307 -0
  1785. package/pro/squads/squad-creator-pro/scripts/tests/test_load_business_sops.cjs +158 -0
  1786. package/pro/squads/squad-creator-pro/scripts/tests/test_modernization_score.sh +211 -0
  1787. package/pro/squads/squad-creator-pro/scripts/tests/test_naming_validator.py +373 -0
  1788. package/pro/squads/squad-creator-pro/scripts/tests/test_quality_gate.py +280 -0
  1789. package/pro/squads/squad-creator-pro/scripts/tests/test_refresh_registry.py +328 -0
  1790. package/pro/squads/squad-creator-pro/scripts/tests/test_scoring.py +366 -0
  1791. package/pro/squads/squad-creator-pro/scripts/tests/test_security_scanner.py +354 -0
  1792. package/pro/squads/squad-creator-pro/scripts/tests/test_squad_analytics.py +309 -0
  1793. package/pro/squads/squad-creator-pro/scripts/tests/test_squad_runtime_pipeline_e2e.cjs +267 -0
  1794. package/pro/squads/squad-creator-pro/scripts/tests/test_validate_clone.sh +252 -0
  1795. package/pro/squads/squad-creator-pro/scripts/tests/test_validate_squad_runtime_state_e2e.cjs +99 -0
  1796. package/pro/squads/squad-creator-pro/scripts/tests/test_wave_loop_runtime_e2e.cjs +216 -0
  1797. package/pro/squads/squad-creator-pro/scripts/tests/test_wave_loop_runtime_unit.cjs +336 -0
  1798. package/pro/squads/squad-creator-pro/scripts/tests/test_yaml_validator.py +412 -0
  1799. package/pro/squads/squad-creator-pro/scripts/validate-agent-output.py +115 -0
  1800. package/pro/squads/squad-creator-pro/scripts/validate-all.sh +49 -0
  1801. package/pro/squads/squad-creator-pro/scripts/validate-clone.sh +345 -0
  1802. package/pro/squads/squad-creator-pro/scripts/validate-squad-structure.py +59 -0
  1803. package/pro/squads/squad-creator-pro/scripts/validate-squad.sh +12 -0
  1804. package/pro/squads/squad-creator-pro/scripts/validate-workspace-contract.py +204 -0
  1805. package/pro/squads/squad-creator-pro/scripts/verify-squad-completeness.sh +8 -0
  1806. package/pro/squads/squad-creator-pro/scripts/wave-loop.cjs +911 -0
  1807. package/pro/squads/squad-creator-pro/scripts/wave-loop.sh +5 -0
  1808. package/pro/squads/squad-creator-pro/scripts/yaml_validator.py +59 -0
  1809. package/pro/squads/squad-creator-pro/skills/fidelity-score.md +245 -0
  1810. package/pro/squads/squad-creator-pro/skills/squad.md +294 -0
  1811. package/pro/squads/squad-creator-pro/squad-io.yaml +49 -0
  1812. package/pro/squads/squad-creator-pro/tasks/CHANGELOG.md +118 -0
  1813. package/pro/squads/squad-creator-pro/tasks/an-assess-sources-collect.md +197 -0
  1814. package/pro/squads/squad-creator-pro/tasks/an-assess-sources-score.md +471 -0
  1815. package/pro/squads/squad-creator-pro/tasks/an-assess-sources.md +177 -0
  1816. package/pro/squads/squad-creator-pro/tasks/an-clone-review-report.md +171 -0
  1817. package/pro/squads/squad-creator-pro/tasks/an-clone-review-source-trinity.md +227 -0
  1818. package/pro/squads/squad-creator-pro/tasks/an-clone-review-stages-fidelity.md +158 -0
  1819. package/pro/squads/squad-creator-pro/tasks/an-clone-review.md +173 -0
  1820. package/pro/squads/squad-creator-pro/tasks/an-compare-outputs-score.md +340 -0
  1821. package/pro/squads/squad-creator-pro/tasks/an-compare-outputs.md +154 -0
  1822. package/pro/squads/squad-creator-pro/tasks/an-design-clone-blueprint.md +51 -0
  1823. package/pro/squads/squad-creator-pro/tasks/an-design-clone-contexts.md +48 -0
  1824. package/pro/squads/squad-creator-pro/tasks/an-design-clone-memory.md +49 -0
  1825. package/pro/squads/squad-creator-pro/tasks/an-design-clone-stages.md +48 -0
  1826. package/pro/squads/squad-creator-pro/tasks/an-design-clone-trinity.md +49 -0
  1827. package/pro/squads/squad-creator-pro/tasks/an-design-clone.md +106 -0
  1828. package/pro/squads/squad-creator-pro/tasks/an-diagnose-clone-prescribe.md +147 -0
  1829. package/pro/squads/squad-creator-pro/tasks/an-diagnose-clone-symptoms.md +147 -0
  1830. package/pro/squads/squad-creator-pro/tasks/an-diagnose-clone-verify-trinity.md +200 -0
  1831. package/pro/squads/squad-creator-pro/tasks/an-diagnose-clone.md +132 -0
  1832. package/pro/squads/squad-creator-pro/tasks/an-extract-dna-layer-extraction.md +54 -0
  1833. package/pro/squads/squad-creator-pro/tasks/an-extract-dna-report.md +55 -0
  1834. package/pro/squads/squad-creator-pro/tasks/an-extract-dna-source-assessment.md +54 -0
  1835. package/pro/squads/squad-creator-pro/tasks/an-extract-dna-thinking-dna.md +54 -0
  1836. package/pro/squads/squad-creator-pro/tasks/an-extract-dna-voice-dna.md +54 -0
  1837. package/pro/squads/squad-creator-pro/tasks/an-extract-dna.md +106 -0
  1838. package/pro/squads/squad-creator-pro/tasks/an-extract-framework-analyze.md +178 -0
  1839. package/pro/squads/squad-creator-pro/tasks/an-extract-framework-integrate.md +239 -0
  1840. package/pro/squads/squad-creator-pro/tasks/an-extract-framework-trinity.md +206 -0
  1841. package/pro/squads/squad-creator-pro/tasks/an-extract-framework.md +144 -0
  1842. package/pro/squads/squad-creator-pro/tasks/an-extract-heuristics.md +560 -0
  1843. package/pro/squads/squad-creator-pro/tasks/an-extract-session-heuristics.md +633 -0
  1844. package/pro/squads/squad-creator-pro/tasks/an-fidelity-score-calculate.md +317 -0
  1845. package/pro/squads/squad-creator-pro/tasks/an-fidelity-score.md +132 -0
  1846. package/pro/squads/squad-creator-pro/tasks/an-validate-clone-hackability.md +346 -0
  1847. package/pro/squads/squad-creator-pro/tasks/an-validate-clone.md +107 -0
  1848. package/pro/squads/squad-creator-pro/tasks/auto-acquire-sources-consolidate.md +186 -0
  1849. package/pro/squads/squad-creator-pro/tasks/auto-acquire-sources-expand.md +173 -0
  1850. package/pro/squads/squad-creator-pro/tasks/auto-acquire-sources-search.md +200 -0
  1851. package/pro/squads/squad-creator-pro/tasks/auto-acquire-sources.md +167 -0
  1852. package/pro/squads/squad-creator-pro/tasks/batch-closeout.md +96 -0
  1853. package/pro/squads/squad-creator-pro/tasks/clone-mind-quality-dashboard.md +142 -0
  1854. package/pro/squads/squad-creator-pro/tasks/clone-mind-smoke-test.md +137 -0
  1855. package/pro/squads/squad-creator-pro/tasks/clone-mind-synthesis.md +147 -0
  1856. package/pro/squads/squad-creator-pro/tasks/collect-sources-classify.md +209 -0
  1857. package/pro/squads/squad-creator-pro/tasks/collect-sources-discover.md +244 -0
  1858. package/pro/squads/squad-creator-pro/tasks/collect-sources-gap-analysis.md +201 -0
  1859. package/pro/squads/squad-creator-pro/tasks/collect-sources-quality-gate.md +227 -0
  1860. package/pro/squads/squad-creator-pro/tasks/collect-sources-validate.md +234 -0
  1861. package/pro/squads/squad-creator-pro/tasks/collect-sources.md +178 -0
  1862. package/pro/squads/squad-creator-pro/tasks/create-agent.md +122 -0
  1863. package/pro/squads/squad-creator-pro/tasks/create-documentation.md +202 -0
  1864. package/pro/squads/squad-creator-pro/tasks/create-from-sop-brief.md +139 -0
  1865. package/pro/squads/squad-creator-pro/tasks/create-from-sop-load-classify.md +173 -0
  1866. package/pro/squads/squad-creator-pro/tasks/create-from-sop-map-workflow.md +172 -0
  1867. package/pro/squads/squad-creator-pro/tasks/create-from-sop.md +130 -0
  1868. package/pro/squads/squad-creator-pro/tasks/create-greeting-script.md +148 -0
  1869. package/pro/squads/squad-creator-pro/tasks/create-pipeline.md +107 -0
  1870. package/pro/squads/squad-creator-pro/tasks/create-squad.md +141 -0
  1871. package/pro/squads/squad-creator-pro/tasks/create-task.md +125 -0
  1872. package/pro/squads/squad-creator-pro/tasks/create-template.md +105 -0
  1873. package/pro/squads/squad-creator-pro/tasks/create-workflow.md +130 -0
  1874. package/pro/squads/squad-creator-pro/tasks/deconstruct-extract.md +221 -0
  1875. package/pro/squads/squad-creator-pro/tasks/deconstruct-synthesize.md +154 -0
  1876. package/pro/squads/squad-creator-pro/tasks/deconstruct.md +123 -0
  1877. package/pro/squads/squad-creator-pro/tasks/deep-research-check-local-knowledge.md +164 -0
  1878. package/pro/squads/squad-creator-pro/tasks/deep-research-execute.md +200 -0
  1879. package/pro/squads/squad-creator-pro/tasks/deep-research-generate-prompt.md +245 -0
  1880. package/pro/squads/squad-creator-pro/tasks/deep-research-pre-agent.md +168 -0
  1881. package/pro/squads/squad-creator-pro/tasks/deep-research-validate.md +192 -0
  1882. package/pro/squads/squad-creator-pro/tasks/delete-squad.md +104 -0
  1883. package/pro/squads/squad-creator-pro/tasks/discover-tools-execute.md +293 -0
  1884. package/pro/squads/squad-creator-pro/tasks/discover-tools.md +201 -0
  1885. package/pro/squads/squad-creator-pro/tasks/etd-assemble-output.md +183 -0
  1886. package/pro/squads/squad-creator-pro/tasks/etd-discovery.md +216 -0
  1887. package/pro/squads/squad-creator-pro/tasks/etd-extract-and-classify.md +250 -0
  1888. package/pro/squads/squad-creator-pro/tasks/etd-extract-heuristics.md +173 -0
  1889. package/pro/squads/squad-creator-pro/tasks/etd-handoff-triggers.md +166 -0
  1890. package/pro/squads/squad-creator-pro/tasks/etd-l4-card-generation.md +224 -0
  1891. package/pro/squads/squad-creator-pro/tasks/etd-objection-handling.md +167 -0
  1892. package/pro/squads/squad-creator-pro/tasks/etd-resolve-and-consolidate.md +158 -0
  1893. package/pro/squads/squad-creator-pro/tasks/evd-assemble-voice-dna.md +218 -0
  1894. package/pro/squads/squad-creator-pro/tasks/evd-collect-sources.md +176 -0
  1895. package/pro/squads/squad-creator-pro/tasks/evd-extract-dimensions.md +667 -0
  1896. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold-context-load.md +180 -0
  1897. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold-enrichment.md +181 -0
  1898. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold-filter.md +192 -0
  1899. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold-multi-lense.md +158 -0
  1900. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold-validation.md +167 -0
  1901. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold.md +185 -0
  1902. package/pro/squads/squad-creator-pro/tasks/extract-implicit-analyze.md +192 -0
  1903. package/pro/squads/squad-creator-pro/tasks/extract-implicit-prioritize.md +212 -0
  1904. package/pro/squads/squad-creator-pro/tasks/extract-implicit-scan.md +231 -0
  1905. package/pro/squads/squad-creator-pro/tasks/extract-implicit-synthesize.md +176 -0
  1906. package/pro/squads/squad-creator-pro/tasks/extract-implicit-validate.md +234 -0
  1907. package/pro/squads/squad-creator-pro/tasks/extract-implicit.md +172 -0
  1908. package/pro/squads/squad-creator-pro/tasks/extract-knowledge-checklist.md +220 -0
  1909. package/pro/squads/squad-creator-pro/tasks/extract-knowledge-framework.md +244 -0
  1910. package/pro/squads/squad-creator-pro/tasks/extract-knowledge-sop.md +244 -0
  1911. package/pro/squads/squad-creator-pro/tasks/extract-knowledge-source-validation.md +191 -0
  1912. package/pro/squads/squad-creator-pro/tasks/extract-knowledge-validation.md +224 -0
  1913. package/pro/squads/squad-creator-pro/tasks/extract-knowledge.md +193 -0
  1914. package/pro/squads/squad-creator-pro/tasks/extract-sop-analyze.md +180 -0
  1915. package/pro/squads/squad-creator-pro/tasks/extract-sop-assemble.md +184 -0
  1916. package/pro/squads/squad-creator-pro/tasks/extract-sop-extract.md +178 -0
  1917. package/pro/squads/squad-creator-pro/tasks/extract-sop-prepare.md +189 -0
  1918. package/pro/squads/squad-creator-pro/tasks/extract-sop.md +182 -0
  1919. package/pro/squads/squad-creator-pro/tasks/extract-thinking-dna.md +160 -0
  1920. package/pro/squads/squad-creator-pro/tasks/extract-voice-dna.md +170 -0
  1921. package/pro/squads/squad-creator-pro/tasks/find-0-8-classify.md +203 -0
  1922. package/pro/squads/squad-creator-pro/tasks/find-0-8-recommend.md +166 -0
  1923. package/pro/squads/squad-creator-pro/tasks/find-0-8.md +136 -0
  1924. package/pro/squads/squad-creator-pro/tasks/ics-audit.md +211 -0
  1925. package/pro/squads/squad-creator-pro/tasks/ics-domain-mapping.md +172 -0
  1926. package/pro/squads/squad-creator-pro/tasks/ics-generate-scripts.md +241 -0
  1927. package/pro/squads/squad-creator-pro/tasks/ics-integration.md +182 -0
  1928. package/pro/squads/squad-creator-pro/tasks/ics-validation.md +181 -0
  1929. package/pro/squads/squad-creator-pro/tasks/install-context-stack.md +228 -0
  1930. package/pro/squads/squad-creator-pro/tasks/install-skills.md +180 -0
  1931. package/pro/squads/squad-creator-pro/tasks/lookup-model.md +139 -0
  1932. package/pro/squads/squad-creator-pro/tasks/migrate-workflows-analyze.md +154 -0
  1933. package/pro/squads/squad-creator-pro/tasks/migrate-workflows-archive.md +162 -0
  1934. package/pro/squads/squad-creator-pro/tasks/migrate-workflows-convert.md +167 -0
  1935. package/pro/squads/squad-creator-pro/tasks/migrate-workflows-to-yaml.md +97 -0
  1936. package/pro/squads/squad-creator-pro/tasks/modernize-squad.md +338 -0
  1937. package/pro/squads/squad-creator-pro/tasks/next-action-discovery.md +191 -0
  1938. package/pro/squads/squad-creator-pro/tasks/next-action-gap-map.md +220 -0
  1939. package/pro/squads/squad-creator-pro/tasks/next-action-implement.md +183 -0
  1940. package/pro/squads/squad-creator-pro/tasks/next-action.md +149 -0
  1941. package/pro/squads/squad-creator-pro/tasks/optimize-binary-checkpoints.md +114 -0
  1942. package/pro/squads/squad-creator-pro/tasks/optimize-determinism-analysis.md +164 -0
  1943. package/pro/squads/squad-creator-pro/tasks/optimize-empirical-validation.md +138 -0
  1944. package/pro/squads/squad-creator-pro/tasks/optimize-gap-zero.md +111 -0
  1945. package/pro/squads/squad-creator-pro/tasks/optimize-gatekeeper-detection.md +113 -0
  1946. package/pro/squads/squad-creator-pro/tasks/optimize-hybrid-executor.md +117 -0
  1947. package/pro/squads/squad-creator-pro/tasks/optimize-post-economy.md +158 -0
  1948. package/pro/squads/squad-creator-pro/tasks/optimize-scope-clarification.md +110 -0
  1949. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-apply.md +142 -0
  1950. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-checkpoints.md +108 -0
  1951. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-executor-distribution.md +107 -0
  1952. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-gap-zero.md +113 -0
  1953. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-parallelization.md +107 -0
  1954. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-phase-necessity.md +139 -0
  1955. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-report.md +146 -0
  1956. package/pro/squads/squad-creator-pro/tasks/optimize-workflow.md +139 -0
  1957. package/pro/squads/squad-creator-pro/tasks/optimize.md +172 -0
  1958. package/pro/squads/squad-creator-pro/tasks/parallel-discovery.md +111 -0
  1959. package/pro/squads/squad-creator-pro/tasks/plan-squad-architecture.md +34 -0
  1960. package/pro/squads/squad-creator-pro/tasks/plan-squad-challenge-reorder.md +34 -0
  1961. package/pro/squads/squad-creator-pro/tasks/plan-squad-contract.md +38 -0
  1962. package/pro/squads/squad-creator-pro/tasks/plan-squad-depth-calibration.md +34 -0
  1963. package/pro/squads/squad-creator-pro/tasks/plan-squad-domain-mapping.md +32 -0
  1964. package/pro/squads/squad-creator-pro/tasks/plan-squad-prd-assembly.md +37 -0
  1965. package/pro/squads/squad-creator-pro/tasks/plan-squad-roadmap.md +32 -0
  1966. package/pro/squads/squad-creator-pro/tasks/plan-squad.md +90 -0
  1967. package/pro/squads/squad-creator-pro/tasks/pv-audit-deep-dive.md +157 -0
  1968. package/pro/squads/squad-creator-pro/tasks/pv-audit-overview.md +157 -0
  1969. package/pro/squads/squad-creator-pro/tasks/pv-audit-sample.md +188 -0
  1970. package/pro/squads/squad-creator-pro/tasks/pv-audit.md +171 -0
  1971. package/pro/squads/squad-creator-pro/tasks/pv-axioma-assessment.md +172 -0
  1972. package/pro/squads/squad-creator-pro/tasks/pv-modernization-score.md +162 -0
  1973. package/pro/squads/squad-creator-pro/tasks/qa-after-creation.md +114 -0
  1974. package/pro/squads/squad-creator-pro/tasks/qualify-task.md +117 -0
  1975. package/pro/squads/squad-creator-pro/tasks/refresh-registry-enrich.md +171 -0
  1976. package/pro/squads/squad-creator-pro/tasks/refresh-registry-scan.md +173 -0
  1977. package/pro/squads/squad-creator-pro/tasks/refresh-registry-write.md +192 -0
  1978. package/pro/squads/squad-creator-pro/tasks/refresh-registry.md +163 -0
  1979. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing-comparison.md +49 -0
  1980. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing-execution.md +49 -0
  1981. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing-lookup.md +49 -0
  1982. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing-preflight.md +48 -0
  1983. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing-report.md +51 -0
  1984. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing.md +105 -0
  1985. package/pro/squads/squad-creator-pro/tasks/squad-analytics.md +192 -0
  1986. package/pro/squads/squad-creator-pro/tasks/squad-fusion-cleanup.md +93 -0
  1987. package/pro/squads/squad-creator-pro/tasks/squad-fusion-command-sync.md +97 -0
  1988. package/pro/squads/squad-creator-pro/tasks/squad-fusion-deduplication.md +234 -0
  1989. package/pro/squads/squad-creator-pro/tasks/squad-fusion-discovery.md +98 -0
  1990. package/pro/squads/squad-creator-pro/tasks/squad-fusion-execution.md +246 -0
  1991. package/pro/squads/squad-creator-pro/tasks/squad-fusion-initialize.md +247 -0
  1992. package/pro/squads/squad-creator-pro/tasks/squad-fusion-integration.md +95 -0
  1993. package/pro/squads/squad-creator-pro/tasks/squad-fusion-resolution.md +205 -0
  1994. package/pro/squads/squad-creator-pro/tasks/squad-fusion-scope.md +95 -0
  1995. package/pro/squads/squad-creator-pro/tasks/squad-fusion-structure.md +128 -0
  1996. package/pro/squads/squad-creator-pro/tasks/squad-fusion-validation.md +96 -0
  1997. package/pro/squads/squad-creator-pro/tasks/squad-fusion.md +148 -0
  1998. package/pro/squads/squad-creator-pro/tasks/sync-chief-codex-skill.md +107 -0
  1999. package/pro/squads/squad-creator-pro/tasks/sync-ide-skills.md +192 -0
  2000. package/pro/squads/squad-creator-pro/tasks/update-mind-apply.md +207 -0
  2001. package/pro/squads/squad-creator-pro/tasks/update-mind-extract-merge.md +257 -0
  2002. package/pro/squads/squad-creator-pro/tasks/update-mind-extract.md +201 -0
  2003. package/pro/squads/squad-creator-pro/tasks/update-mind-load-snapshot.md +177 -0
  2004. package/pro/squads/squad-creator-pro/tasks/update-mind-load.md +173 -0
  2005. package/pro/squads/squad-creator-pro/tasks/update-mind-merge.md +193 -0
  2006. package/pro/squads/squad-creator-pro/tasks/update-mind.md +177 -0
  2007. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-apply.md +104 -0
  2008. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-gap.md +110 -0
  2009. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-inventory.md +110 -0
  2010. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-plan.md +107 -0
  2011. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-qualitative.md +104 -0
  2012. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-verify.md +106 -0
  2013. package/pro/squads/squad-creator-pro/tasks/upgrade-squad.md +155 -0
  2014. package/pro/squads/squad-creator-pro/tasks/validate-extraction-adversarial.md +182 -0
  2015. package/pro/squads/squad-creator-pro/tasks/validate-extraction-checklist.md +155 -0
  2016. package/pro/squads/squad-creator-pro/tasks/validate-extraction-gate.md +175 -0
  2017. package/pro/squads/squad-creator-pro/tasks/validate-extraction.md +151 -0
  2018. package/pro/squads/squad-creator-pro/tasks/validate-squad-contextual.md +120 -0
  2019. package/pro/squads/squad-creator-pro/tasks/validate-squad-cross-references.md +122 -0
  2020. package/pro/squads/squad-creator-pro/tasks/validate-squad-deterministic.md +261 -0
  2021. package/pro/squads/squad-creator-pro/tasks/validate-squad-quality.md +138 -0
  2022. package/pro/squads/squad-creator-pro/tasks/validate-squad-verdict.md +183 -0
  2023. package/pro/squads/squad-creator-pro/tasks/validate-squad.md +135 -0
  2024. package/pro/squads/squad-creator-pro/tasks/workspace-integration-hardening.md +187 -0
  2025. package/pro/squads/squad-creator-pro/templates/.gitkeep +1 -0
  2026. package/pro/squads/squad-creator-pro/templates/agent-flow-doc-tmpl.md +512 -0
  2027. package/pro/squads/squad-creator-pro/templates/agent-tmpl.md +697 -0
  2028. package/pro/squads/squad-creator-pro/templates/config-tmpl.yaml +434 -0
  2029. package/pro/squads/squad-creator-pro/templates/cross-domain-handoff-tmpl.yaml +17 -0
  2030. package/pro/squads/squad-creator-pro/templates/journey-log-tmpl.yaml +75 -0
  2031. package/pro/squads/squad-creator-pro/templates/pop-extractor-prompt.md +549 -0
  2032. package/pro/squads/squad-creator-pro/templates/quality-gate-tmpl.yaml +589 -0
  2033. package/pro/squads/squad-creator-pro/templates/readme-tmpl.md +231 -0
  2034. package/pro/squads/squad-creator-pro/templates/report-tmpl.yaml +14 -0
  2035. package/pro/squads/squad-creator-pro/templates/research-output-tmpl.md +625 -0
  2036. package/pro/squads/squad-creator-pro/templates/research-prompt-tmpl.md +479 -0
  2037. package/pro/squads/squad-creator-pro/templates/session-heuristic-tmpl.md +100 -0
  2038. package/pro/squads/squad-creator-pro/templates/squad-prd-deep-tmpl.md +434 -0
  2039. package/pro/squads/squad-creator-pro/templates/squad-prd-tmpl.md +464 -0
  2040. package/pro/squads/squad-creator-pro/templates/story-create-agent-tmpl.md +284 -0
  2041. package/pro/squads/squad-creator-pro/templates/task-tmpl.md +461 -0
  2042. package/pro/squads/squad-creator-pro/templates/template-tmpl.yaml +227 -0
  2043. package/pro/squads/squad-creator-pro/templates/workflow-doc-tmpl.md +860 -0
  2044. package/pro/squads/squad-creator-pro/templates/workflow-tmpl.yaml +394 -0
  2045. package/pro/squads/squad-creator-pro/test-cases/BATCH-PROGRESS.md +268 -0
  2046. package/pro/squads/squad-creator-pro/test-cases/QUALIFICATION-DASHBOARD.yaml +13 -0
  2047. package/pro/squads/squad-creator-pro/test-cases/_template.yaml +147 -0
  2048. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/ASSESSMENT-SUMMARY.md +275 -0
  2049. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/ASSESSMENT_SUMMARY.md +140 -0
  2050. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/CHECKPOINT_MATRIX.md +202 -0
  2051. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/EXECUTION-REPORT.md +413 -0
  2052. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/EXECUTION_NOTES.md +358 -0
  2053. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/README-v2.2.2.md +299 -0
  2054. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/README.md +320 -0
  2055. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/TEST-REPORT-v2.1.md +351 -0
  2056. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/VERIFICATION-CHECKLIST.txt +247 -0
  2057. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/formal-qualification-report.yaml +389 -0
  2058. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/opus-baseline.yaml +517 -0
  2059. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/qualification-report.yaml +213 -0
  2060. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/test-case.yaml +69 -0
  2061. package/pro/squads/squad-creator-pro/test-cases/an-clone-review/opus-baseline.yaml +566 -0
  2062. package/pro/squads/squad-creator-pro/test-cases/an-clone-review/qualification-report.yaml +82 -0
  2063. package/pro/squads/squad-creator-pro/test-cases/an-design-clone/test-case.yaml +102 -0
  2064. package/pro/squads/squad-creator-pro/test-cases/an-extract-dna/test-case.yaml +105 -0
  2065. package/pro/squads/squad-creator-pro/test-cases/an-fidelity-score/opus-baseline.yaml +266 -0
  2066. package/pro/squads/squad-creator-pro/test-cases/an-fidelity-score/qualification-report.yaml +94 -0
  2067. package/pro/squads/squad-creator-pro/test-cases/an-validate-clone/opus-baseline.yaml +470 -0
  2068. package/pro/squads/squad-creator-pro/test-cases/an-validate-clone/qualification-report.yaml +106 -0
  2069. package/pro/squads/squad-creator-pro/test-cases/collect-sources/test-case.yaml +105 -0
  2070. package/pro/squads/squad-creator-pro/test-cases/create-task/test-case.yaml +104 -0
  2071. package/pro/squads/squad-creator-pro/test-cases/cross-provider/DASHBOARD.yaml +11 -0
  2072. package/pro/squads/squad-creator-pro/test-cases/pv-audit/test-case.yaml +106 -0
  2073. package/pro/squads/squad-creator-pro/test-cases/pv-axioma-assessment/opus-baseline.yaml +96 -0
  2074. package/pro/squads/squad-creator-pro/test-cases/pv-axioma-assessment/sonnet-output.yaml +30 -0
  2075. package/pro/squads/squad-creator-pro/test-cases/pv-axioma-assessment/test-case.yaml +129 -0
  2076. package/pro/squads/squad-creator-pro/test-cases/pv-modernization-score/comparison-round-1.yaml +242 -0
  2077. package/pro/squads/squad-creator-pro/test-cases/pv-modernization-score/opus-baseline.yaml +488 -0
  2078. package/pro/squads/squad-creator-pro/test-cases/pv-modernization-score/qualification-report.yaml +74 -0
  2079. package/pro/squads/squad-creator-pro/test-cases/qa-after-creation/opus-baseline.yaml +603 -0
  2080. package/pro/squads/squad-creator-pro/test-cases/qa-after-creation/qualification-report.yaml +97 -0
  2081. package/pro/squads/squad-creator-pro/test-cases/smoke-test-model-routing/test-case.yaml +100 -0
  2082. package/pro/squads/squad-creator-pro/test-cases/upgrade-squad/test-case.yaml +106 -0
  2083. package/pro/squads/squad-creator-pro/test-cases/validate-squad/comparison-round-1.yaml +223 -0
  2084. package/pro/squads/squad-creator-pro/test-cases/validate-squad/opus-baseline.yaml +529 -0
  2085. package/pro/squads/squad-creator-pro/test-cases/validate-squad/opus-round-3-v4-task.yaml +132 -0
  2086. package/pro/squads/squad-creator-pro/test-cases/validate-squad/qualification-report.yaml +104 -0
  2087. package/pro/squads/squad-creator-pro/test-cases/wf-clone-mind/opus-baseline.yaml +112 -0
  2088. package/pro/squads/squad-creator-pro/utils/.gitkeep +1 -0
  2089. package/pro/squads/squad-creator-pro/workflows/.gitkeep +1 -0
  2090. package/pro/squads/squad-creator-pro/workflows/create-squad.yaml +300 -0
  2091. package/pro/squads/squad-creator-pro/workflows/modules/module-discovery.yaml +16 -0
  2092. package/pro/squads/squad-creator-pro/workflows/modules/module-integration.yaml +34 -0
  2093. package/pro/squads/squad-creator-pro/workflows/modules/module-quality-gates.yaml +20 -0
  2094. package/pro/squads/squad-creator-pro/workflows/validate-squad.yaml +552 -0
  2095. package/pro/squads/squad-creator-pro/workflows/wf-assess-sources.yaml +62 -0
  2096. package/pro/squads/squad-creator-pro/workflows/wf-auto-acquire-sources.yaml +520 -0
  2097. package/pro/squads/squad-creator-pro/workflows/wf-brownfield-upgrade-squad.yaml +142 -0
  2098. package/pro/squads/squad-creator-pro/workflows/wf-clone-mind.yaml +607 -0
  2099. package/pro/squads/squad-creator-pro/workflows/wf-clone-review.yaml +111 -0
  2100. package/pro/squads/squad-creator-pro/workflows/wf-collect-sources.yaml +104 -0
  2101. package/pro/squads/squad-creator-pro/workflows/wf-compare-outputs.yaml +77 -0
  2102. package/pro/squads/squad-creator-pro/workflows/wf-context-aware-create-squad.yaml +177 -0
  2103. package/pro/squads/squad-creator-pro/workflows/wf-create-from-sop.yaml +117 -0
  2104. package/pro/squads/squad-creator-pro/workflows/wf-create-pipeline.yaml +19 -0
  2105. package/pro/squads/squad-creator-pro/workflows/wf-create-squad.yaml +1763 -0
  2106. package/pro/squads/squad-creator-pro/workflows/wf-create-task.yaml +22 -0
  2107. package/pro/squads/squad-creator-pro/workflows/wf-create-template.yaml +17 -0
  2108. package/pro/squads/squad-creator-pro/workflows/wf-create-workflow.yaml +22 -0
  2109. package/pro/squads/squad-creator-pro/workflows/wf-cross-provider-qualification.yaml +660 -0
  2110. package/pro/squads/squad-creator-pro/workflows/wf-deconstruct.yaml +92 -0
  2111. package/pro/squads/squad-creator-pro/workflows/wf-deep-research.yaml +148 -0
  2112. package/pro/squads/squad-creator-pro/workflows/wf-design-clone.yaml +103 -0
  2113. package/pro/squads/squad-creator-pro/workflows/wf-diagnose-clone.yaml +115 -0
  2114. package/pro/squads/squad-creator-pro/workflows/wf-discover-tools.yaml +1711 -0
  2115. package/pro/squads/squad-creator-pro/workflows/wf-extract-dna.yaml +103 -0
  2116. package/pro/squads/squad-creator-pro/workflows/wf-extract-expert-gold.yaml +101 -0
  2117. package/pro/squads/squad-creator-pro/workflows/wf-extract-framework.yaml +108 -0
  2118. package/pro/squads/squad-creator-pro/workflows/wf-extract-implicit.yaml +101 -0
  2119. package/pro/squads/squad-creator-pro/workflows/wf-extract-knowledge.yaml +162 -0
  2120. package/pro/squads/squad-creator-pro/workflows/wf-extract-sop.yaml +143 -0
  2121. package/pro/squads/squad-creator-pro/workflows/wf-extract-thinking-dna.yaml +210 -0
  2122. package/pro/squads/squad-creator-pro/workflows/wf-extract-voice-dna.yaml +76 -0
  2123. package/pro/squads/squad-creator-pro/workflows/wf-extraction-pipeline.yaml +475 -0
  2124. package/pro/squads/squad-creator-pro/workflows/wf-fidelity-score.yaml +88 -0
  2125. package/pro/squads/squad-creator-pro/workflows/wf-find-08.yaml +71 -0
  2126. package/pro/squads/squad-creator-pro/workflows/wf-install-context-stack.yaml +88 -0
  2127. package/pro/squads/squad-creator-pro/workflows/wf-install-workspace-context.yaml +764 -0
  2128. package/pro/squads/squad-creator-pro/workflows/wf-migrate-workflows.yaml +103 -0
  2129. package/pro/squads/squad-creator-pro/workflows/wf-mind-research-loop.yaml +671 -0
  2130. package/pro/squads/squad-creator-pro/workflows/wf-model-tier-qualification.yaml +737 -0
  2131. package/pro/squads/squad-creator-pro/workflows/wf-modernize-squad.yaml +178 -0
  2132. package/pro/squads/squad-creator-pro/workflows/wf-next-action.yaml +113 -0
  2133. package/pro/squads/squad-creator-pro/workflows/wf-optimize-squad.yaml +761 -0
  2134. package/pro/squads/squad-creator-pro/workflows/wf-optimize-workflow.yaml +122 -0
  2135. package/pro/squads/squad-creator-pro/workflows/wf-optimize-yolo.yaml +595 -0
  2136. package/pro/squads/squad-creator-pro/workflows/wf-plan-squad.yaml +255 -0
  2137. package/pro/squads/squad-creator-pro/workflows/wf-pv-audit.yaml +115 -0
  2138. package/pro/squads/squad-creator-pro/workflows/wf-refresh-registry.yaml +110 -0
  2139. package/pro/squads/squad-creator-pro/workflows/wf-research-then-create-agent.yaml +858 -0
  2140. package/pro/squads/squad-creator-pro/workflows/wf-smoke-test-model-routing.yaml +103 -0
  2141. package/pro/squads/squad-creator-pro/workflows/wf-squad-fusion.yaml +1691 -0
  2142. package/pro/squads/squad-creator-pro/workflows/wf-update-mind.yaml +148 -0
  2143. package/pro/squads/squad-creator-pro/workflows/wf-upgrade-squad.yaml +141 -0
  2144. package/pro/squads/squad-creator-pro/workflows/wf-validate-clone.yaml +120 -0
  2145. package/pro/squads/squad-creator-pro/workflows/wf-validate-extraction.yaml +111 -0
  2146. package/pro/squads/squad-creator-pro/workflows/wf-workspace-integration-hardening.yaml +119 -0
  2147. package/pro/squads/storytelling/CHANGELOG.md +30 -0
  2148. package/pro/squads/storytelling/HEADLINE.md +3 -0
  2149. package/pro/squads/storytelling/README.md +137 -0
  2150. package/pro/squads/storytelling/agents/blake-snyder.md +451 -0
  2151. package/pro/squads/storytelling/agents/dan-harmon.md +742 -0
  2152. package/pro/squads/storytelling/agents/donald-miller.md +662 -0
  2153. package/pro/squads/storytelling/agents/joseph-campbell.md +625 -0
  2154. package/pro/squads/storytelling/agents/keith-johnstone.md +467 -0
  2155. package/pro/squads/storytelling/agents/kindra-hall.md +953 -0
  2156. package/pro/squads/storytelling/agents/marshall-ganz.md +473 -0
  2157. package/pro/squads/storytelling/agents/matthew-dicks.md +526 -0
  2158. package/pro/squads/storytelling/agents/nancy-duarte.md +528 -0
  2159. package/pro/squads/storytelling/agents/oren-klaff.md +785 -0
  2160. package/pro/squads/storytelling/agents/park-howell.md +807 -0
  2161. package/pro/squads/storytelling/agents/shawn-coyne.md +540 -0
  2162. package/pro/squads/storytelling/agents/story-chief.md +409 -0
  2163. package/pro/squads/storytelling/checklists/story-quality-checklist.md +100 -0
  2164. package/pro/squads/storytelling/config.yaml +248 -0
  2165. package/pro/squads/storytelling/data/story-mappings.yaml +200 -0
  2166. package/pro/squads/storytelling/docs/.gitkeep +0 -0
  2167. package/pro/squads/storytelling/research/blake-snyder-save-the-cat-research.md +958 -0
  2168. package/pro/squads/storytelling/research/donald-miller-storybrand-research.md +1205 -0
  2169. package/pro/squads/storytelling/research/joseph-campbell-heros-journey-research.md +1170 -0
  2170. package/pro/squads/storytelling/research/keith-johnstone-improv-spontaneity-research.md +574 -0
  2171. package/pro/squads/storytelling/research/marshall-ganz-public-narrative-research.md +658 -0
  2172. package/pro/squads/storytelling/research/nancy-duarte-sparkline-research.md +892 -0
  2173. package/pro/squads/storytelling/research/shawn-coyne-story-grid-research.md +760 -0
  2174. package/pro/squads/storytelling/scripts/generate-story-greeting.cjs +140 -0
  2175. package/pro/squads/storytelling/scripts/load-context.cjs +141 -0
  2176. package/pro/squads/storytelling/scripts/resolve-readiness.cjs +45 -0
  2177. package/pro/squads/storytelling/scripts/runtime-paths.cjs +44 -0
  2178. package/pro/squads/storytelling/scripts/set-active-context.cjs +108 -0
  2179. package/pro/squads/storytelling/scripts/show-context.cjs +22 -0
  2180. package/pro/squads/storytelling/squad-io.yaml +573 -0
  2181. package/pro/squads/storytelling/tasks/apply-abt.md +856 -0
  2182. package/pro/squads/storytelling/tasks/apply-beat-sheet.md +1245 -0
  2183. package/pro/squads/storytelling/tasks/apply-heros-journey.md +1100 -0
  2184. package/pro/squads/storytelling/tasks/apply-save-the-cat.md +1075 -0
  2185. package/pro/squads/storytelling/tasks/apply-story-circle.md +1116 -0
  2186. package/pro/squads/storytelling/tasks/craft-personal-story.md +1004 -0
  2187. package/pro/squads/storytelling/tasks/craft-public-narrative.md +1193 -0
  2188. package/pro/squads/storytelling/tasks/craft-ted-talk.md +773 -0
  2189. package/pro/squads/storytelling/tasks/create-brandscript.md +1376 -0
  2190. package/pro/squads/storytelling/tasks/create-business-story.md +1472 -0
  2191. package/pro/squads/storytelling/tasks/create-pitch.md +1128 -0
  2192. package/pro/squads/storytelling/tasks/diagnose-story-grid.md +979 -0
  2193. package/pro/squads/storytelling/tasks/improvise-story.md +772 -0
  2194. package/pro/squads/storytelling/templates/narrative-output-tmpl.md +44 -0
  2195. package/pro/squads/storytelling/workflows/story-creation.yaml +80 -0
  2196. package/scripts/validate-package-completeness.js +4 -1
@@ -0,0 +1,1916 @@
1
+ workflow:
2
+ id: wf-create-squad
3
+ name: Create Complete Squad
4
+ version: "3.2"
5
+ purpose: Orchestrate the complete creation of an AIOX squad from research to operational validation
6
+ description: Legacy phase-based orchestration for complete squad creation. Workspace integration ownership stays with COO/c-level.
7
+ type: orchestration
8
+ state_machine:
9
+ states:
10
+ - init
11
+ - discovery
12
+ - deep_tool_discovery
13
+ - research
14
+ - architecture
15
+ - creation
16
+ - integration
17
+ - publish
18
+ - validation
19
+ - operational_test
20
+ - complete
21
+ - failed
22
+ transitions:
23
+ - trigger: start
24
+ source: init
25
+ dest: discovery
26
+ - trigger: discovery_complete
27
+ source: discovery
28
+ dest: deep_tool_discovery
29
+ - trigger: discovery_failed
30
+ source: discovery
31
+ dest: failed
32
+ - trigger: deep_tool_discovery_complete
33
+ source: deep_tool_discovery
34
+ dest: research
35
+ - trigger: deep_tool_discovery_failed
36
+ source: deep_tool_discovery
37
+ dest: failed
38
+ - trigger: research_complete
39
+ source: research
40
+ dest: architecture
41
+ - trigger: research_failed
42
+ source: research
43
+ dest: failed
44
+ - trigger: architecture_complete
45
+ source: architecture
46
+ dest: creation
47
+ - trigger: architecture_failed
48
+ source: architecture
49
+ dest: failed
50
+ - trigger: creation_complete
51
+ source: creation
52
+ dest: integration
53
+ - trigger: creation_failed
54
+ source: creation
55
+ dest: failed
56
+ - trigger: integration_complete
57
+ source: integration
58
+ dest: publish
59
+ - trigger: integration_failed
60
+ source: integration
61
+ dest: failed
62
+ - trigger: publish_complete
63
+ source: publish
64
+ dest: validation
65
+ - trigger: publish_failed
66
+ source: publish
67
+ dest: failed
68
+ - trigger: validation_complete
69
+ source: validation
70
+ dest: operational_test
71
+ - trigger: validation_failed
72
+ source: validation
73
+ dest: failed
74
+ - trigger: operational_test_complete
75
+ source: operational_test
76
+ dest: complete
77
+ - trigger: operational_test_failed
78
+ source: operational_test
79
+ dest: failed
80
+ - trigger: fail
81
+ source: "*"
82
+ dest: failed
83
+ sequence:
84
+ - step: phase-0
85
+ id: phase-0
86
+ phase: 1
87
+ phase_name: DISCOVERY
88
+ agent: squad-chief
89
+ task_ref: create-squad-discover
90
+ action: execute_discovery
91
+ next: phase-0-5
92
+ - step: phase-0-5
93
+ id: phase-0-5
94
+ phase: 2
95
+ phase_name: DEEP TOOL DISCOVERY
96
+ agent: squad-chief
97
+ task_ref: discover-tools-scan
98
+ action: execute_deep-tool-discovery
99
+ outputs:
100
+ - .aiox/squad-runtime/discovery/{domain}/tool-discovery-report.md
101
+ - .aiox/squad-runtime/discovery/{domain}/tool-integration-plan.md
102
+ - .aiox/squad-runtime/discovery/{domain}/capability-tools.yaml
103
+ - .aiox/squad-runtime/discovery/{domain}/tool-registry.yaml (updated)
104
+ next: phase-1
105
+ - step: phase-1
106
+ id: phase-1
107
+ phase: 3
108
+ phase_name: RESEARCH
109
+ agent: squad-chief
110
+ task_ref: create-squad-discover
111
+ action: execute_research
112
+ next: phase-2
113
+ - step: phase-2
114
+ id: phase-2
115
+ phase: 4
116
+ phase_name: ARCHITECTURE
117
+ agent: squad-chief
118
+ task_ref: create-squad-design
119
+ action: execute_architecture
120
+ next: phase-3
121
+ - step: phase-3
122
+ id: phase-3
123
+ phase: 5
124
+ phase_name: CREATION
125
+ agent: squad-chief
126
+ task_ref: create-squad-build
127
+ action: execute_creation
128
+ next: phase-4
129
+ - step: phase-4
130
+ id: phase-4
131
+ phase: 6
132
+ phase_name: INTEGRATION
133
+ agent: squad-chief
134
+ task_ref: create-squad-build
135
+ action: execute_integration
136
+ next: phase-5
137
+ - step: phase-5
138
+ id: phase-5
139
+ phase: 7
140
+ phase_name: PUBLISH
141
+ agent: squad-chief
142
+ task_ref: create-squad-publish
143
+ action: execute_publish
144
+ next: phase-6
145
+ - step: phase-6
146
+ id: phase-6
147
+ phase: 8
148
+ phase_name: VALIDATION
149
+ agent: squad-chief
150
+ task_ref: create-squad-validate
151
+ action: execute_validation
152
+ outputs:
153
+ - squad_path
154
+ - activation_command
155
+ - quality_score
156
+ - governance_compliance
157
+ next: phase-7
158
+ - step: phase-7
159
+ id: phase-7
160
+ phase: 9
161
+ phase_name: OPERATIONAL TEST
162
+ agent: squad-chief
163
+ task_ref: create-squad-publish
164
+ action: execute_operational-test
165
+ outputs:
166
+ - smoke_test_report
167
+ - operational_status
168
+ - workflow_end:
169
+ id: complete
170
+ action: workflow_complete
171
+ quality_gates:
172
+ - id: SC_DISC_001
173
+ phase: discovery
174
+ type: automated
175
+ placement: exit
176
+ severity: blocking
177
+ description: "Discovery gate — ensures domain research is sufficient before architecture"
178
+ criteria:
179
+ - field: domain_research
180
+ operator: "!="
181
+ value: null
182
+ - field: squad_type
183
+ operator: "in"
184
+ value: [operational, strategic, tactical, hybrid]
185
+ on_fail: block
186
+ - id: SC_ARCH_001
187
+ phase: architecture
188
+ type: hybrid
189
+ placement: exit
190
+ severity: blocking
191
+ description: "Architecture gate — validates blueprint completeness before creation"
192
+ criteria:
193
+ - field: squad_blueprint
194
+ operator: "!="
195
+ value: null
196
+ - field: agent_count
197
+ operator: ">="
198
+ value: 1
199
+ on_fail: block
200
+ - id: SC_VAL_001
201
+ phase: validation
202
+ type: automated
203
+ placement: exit
204
+ severity: blocking
205
+ description: "Validation gate — quality score must meet squad threshold"
206
+ criteria:
207
+ - field: quality_score
208
+ operator: ">="
209
+ value: 7.0
210
+ - field: governance_compliance
211
+ operator: "=="
212
+ value: true
213
+ on_fail: block
214
+ - id: SC_OPS_001
215
+ phase: operational_test
216
+ type: automated
217
+ placement: exit
218
+ severity: warning
219
+ description: "Operational test gate — smoke test must pass before completion"
220
+ criteria:
221
+ - field: operational_status
222
+ operator: "=="
223
+ value: "PASS"
224
+ on_fail: warn
225
+ orchestrator: "@squad-chief"
226
+ mode: yolo
227
+ squad_type: auto
228
+ governance_protocol: squads/squad-creator/protocols/ai-first-governance.md
229
+ ci_policy:
230
+ blocking_deterministic_only: true
231
+ semantic_checks_in_checkpoints: true
232
+ routing:
233
+ preflight_task: detect-squad-context
234
+ routes:
235
+ greenfield_or_resume: wf-context-aware-create-squad
236
+ brownfield_upgrade: wf-brownfield-upgrade-squad
237
+ note: Use detect-squad-context before starting this legacy orchestration path.
238
+ specialists:
239
+ mind_cloning:
240
+ agent: "@oalanicolas"
241
+ role: Mind Cloning Architect
242
+ invoke_in_phases:
243
+ - phase_3
244
+ responsibilities:
245
+ - Curadoria de fontes (ouro vs bronze)
246
+ - Extração de Voice DNA + Thinking DNA
247
+ - Validação de fidelidade (85-97%)
248
+ - Playbook + Framework + Swipe File trinity
249
+ process_design:
250
+ agent: "@pedro-valerio"
251
+ role: Process Absolutist
252
+ invoke_in_phases:
253
+ - phase_5
254
+ responsibilities:
255
+ - Validar se workflows impedem caminhos errados
256
+ - Criar veto conditions em quality gates
257
+ - Auditar checkpoints para gaps de tempo
258
+ - Garantir fluxo unidirecional
259
+ yolo_mode:
260
+ philosophy: |
261
+ "Run autonomously until you hit a wall.
262
+ Only stop when data is genuinely missing.
263
+ Warn about quality trade-offs, but don't block."
264
+ auto_proceed_when:
265
+ - 10+ fontes web encontradas por mind
266
+ - Triangulação possível (3+ fontes por claim principal)
267
+ - Quality gates passam automaticamente
268
+ - Usuário escolheu YOLO mode no pre-flight
269
+ must_stop_when:
270
+ - < 5 fontes encontradas para um mind (muito obscuro)
271
+ - Usuário disse que tem materiais mas não forneceu path
272
+ - Quality gate CRÍTICO falha sem recovery possível
273
+ - Usuário marcou que conhece expert (DNA validation obrigatória)
274
+ quality_warning: |
275
+ ═══════════════════════════════════════════════════════════════════
276
+ ⚠️ AVISO DE QUALIDADE - YOLO MODE
277
+ ═══════════════════════════════════════════════════════════════════
278
+
279
+ COM materiais próprios (livros, PDFs, cursos):
280
+ ┌─────────────────────────────────────────────────────────────────┐
281
+ │ • Fidelidade: 85-95% │
282
+ │ • Frameworks: Completos │
283
+ │ • Voice DNA: Preciso (de fontes originais) │
284
+ │ • Contradições: Capturadas (aparecem em long-form) │
285
+ └─────────────────────────────────────────────────────────────────┘
286
+
287
+ APENAS com pesquisa web:
288
+ ┌─────────────────────────────────────────────────────────────────┐
289
+ │ • Fidelidade: 60-75% │
290
+ │ • Frameworks: Parciais (só o que é público) │
291
+ │ • Voice DNA: Aproximado │
292
+ │ • Contradições: Podem faltar (não aparecem em highlights) │
293
+ └─────────────────────────────────────────────────────────────────┘
294
+
295
+ "Materiais próprios = CLONE. Web only = APROXIMAÇÃO."
296
+ ═══════════════════════════════════════════════════════════════════
297
+ pre_flight:
298
+ trigger: Início do workflow (ANTES de tudo)
299
+ blocking: true
300
+ purpose: Informar usuário sobre o que vai precisar e escolher modo
301
+ message: |
302
+ ═══════════════════════════════════════════════════════════════════
303
+ 📋 PRE-FLIGHT: CRIAÇÃO DE SQUAD
304
+ ═══════════════════════════════════════════════════════════════════
305
+
306
+ Vou criar um squad de {domain}.
307
+
308
+ PARA MÁXIMA QUALIDADE, idealmente você teria:
309
+ ┌─────────────────────────────────────────────────────────────────┐
310
+ │ 📚 POR CADA EXPERT: │
311
+ │ • 2-3 livros principais (PDF ou referência) │
312
+ │ • 5-10 entrevistas/podcasts (links ou transcrições) │
313
+ │ • Artigos/newsletters escritos pelo expert │
314
+ │ • Cursos/workshops (se tiver acesso) │
315
+ └─────────────────────────────────────────────────────────────────┘
316
+
317
+ ⏱️ TEMPO ESTIMADO:
318
+ • Com materiais: 4-5 horas
319
+ • Só web: 6-8 horas (mais pesquisa, menos qualidade)
320
+
321
+ ═══════════════════════════════════════════════════════════════════
322
+ questions:
323
+ - id: execution_mode
324
+ question: Como você quer executar?
325
+ required: true
326
+ options:
327
+ - id: yolo
328
+ label: 🚀 YOLO MODE - Não tenho materiais
329
+ description: Rodo automaticamente com pesquisa web. Paro só se algo crítico faltar.
330
+ quality: 60-75%
331
+ interaction: Mínima (só aprovação final)
332
+ - id: quality
333
+ label: 💎 QUALITY MODE - Tenho materiais para fornecer
334
+ description: Você fornece materiais. Valido DNA extraído com você.
335
+ quality: 85-95%
336
+ interaction: Moderada (coleta + validação)
337
+ - id: hybrid
338
+ label: 🔀 HYBRID MODE - Tenho materiais de alguns
339
+ description: "Mix: alguns experts com materiais, outros com web."
340
+ quality: Variável por expert
341
+ interaction: Por expert
342
+ - id: expert_knowledge
343
+ question: Você conhece PROFUNDAMENTE algum expert do domínio?
344
+ description: Se sim, vou pedir para validar o DNA extraído
345
+ required: true
346
+ options:
347
+ - id: "yes"
348
+ label: Sim - Posso validar
349
+ action: CP3 (DNA Validation) será OBRIGATÓRIO
350
+ - id: "no"
351
+ label: Não - Confio na extração
352
+ action: CP3 será AUTOMÁTICO
353
+ - id: time_commitment
354
+ question: Quanto tempo você tem para interações?
355
+ required: true
356
+ options:
357
+ - id: minimal
358
+ label: Mínimo - Só me chame se for CRÍTICO
359
+ checkpoints:
360
+ - CP6 only
361
+ - id: moderate
362
+ label: Moderado - Checkpoints principais
363
+ checkpoints:
364
+ - CP1
365
+ - CP3
366
+ - CP6
367
+ - id: high
368
+ label: Alto - Validar cada etapa
369
+ checkpoints:
370
+ - ALL
371
+ - id: output_type
372
+ question: O squad deve EXECUTAR ações ou apenas RECOMENDAR?
373
+ required: true
374
+ description: |
375
+ EXECUTAR = Squad faz coisas automaticamente (cria forms, pausa campanhas, envia notificações)
376
+ RECOMENDAR = Squad gera análises, estratégias, relatórios (você implementa manualmente)
377
+ options:
378
+ - id: operational
379
+ label: 🚀 EXECUTAR - Squad com autonomia
380
+ description: Squad conecta com APIs externas e executa ações reais
381
+ examples:
382
+ - Criar forms no Typeform
383
+ - Pausar campanhas ruins
384
+ - Enviar alertas no Slack
385
+ requires: API connections setup
386
+ - id: textual
387
+ label: 📝 RECOMENDAR - Squad consultivo
388
+ description: Squad gera análises e recomendações que você implementa
389
+ examples:
390
+ - Relatórios de performance
391
+ - Estratégias de campanha
392
+ - Análises competitivas
393
+ requires: Standard documentation only
394
+ - id: auto
395
+ label: 🔄 DETECTAR AUTOMATICAMENTE
396
+ description: Analiso o briefing e detecto se precisa de conexões externas
397
+ action: Run detect-operational-mode.md
398
+ decision_matrix:
399
+ yolo_minimal:
400
+ checkpoints_active:
401
+ - CP6
402
+ auto_proceed: true
403
+ stops_for:
404
+ - Critical failures only
405
+ yolo_moderate:
406
+ checkpoints_active:
407
+ - CP1
408
+ - CP6
409
+ auto_proceed: true
410
+ stops_for:
411
+ - Mind selection
412
+ - Final approval
413
+ quality_any:
414
+ checkpoints_active:
415
+ - CP_MATERIALS
416
+ - CP1
417
+ - CP3
418
+ - CP4
419
+ - CP6
420
+ auto_proceed: false
421
+ stops_for:
422
+ - Materials collection
423
+ - DNA validation
424
+ hybrid_any:
425
+ checkpoints_active:
426
+ - CP_MATERIALS per mind
427
+ - CP3 for known experts
428
+ - CP6
429
+ auto_proceed: per mind based on materials
430
+ operational_any:
431
+ checkpoints_active:
432
+ - CP6
433
+ - CP7
434
+ - CP8
435
+ additional_phases:
436
+ - phase_7
437
+ - phase_8
438
+ - phase_9
439
+ requires:
440
+ - API connection setup (setup-runtime)
441
+ - E2E operational test
442
+ - Auto-heal configuration
443
+ stops_for:
444
+ - API connection failures
445
+ - Operational test failures
446
+ textual_any:
447
+ checkpoints_active:
448
+ - CP6
449
+ skip_phases:
450
+ - phase_7
451
+ - phase_8
452
+ - phase_9
453
+ note: Standard squad creation without operational infrastructure
454
+ post_pre_flight: |
455
+ {quality_warning}
456
+
457
+ Modo selecionado: {execution_mode}
458
+ Checkpoints ativos: {active_checkpoints}
459
+
460
+ Posso começar?
461
+ phase_materials:
462
+ id: phase_materials
463
+ name: MATERIALS COLLECTION
464
+ condition: mode == 'quality' OR mode == 'hybrid'
465
+ trigger: After minds are identified (post Phase 1)
466
+ blocking: true
467
+ purpose: |
468
+ Coletar materiais do usuário ANTES de iniciar extração.
469
+ Materiais do usuário = Tier 0 (máxima confiança).
470
+ prompt_template: |
471
+ ═══════════════════════════════════════════════════════════════════
472
+ 📚 COLETA DE MATERIAIS
473
+ ═══════════════════════════════════════════════════════════════════
474
+
475
+ Identifiquei {minds_count} elite minds para seu squad:
476
+ {minds_list}
477
+
478
+ PARA CADA EXPERT, me diga se você tem materiais:
479
+
480
+ {for_each_mind}
481
+ ┌─────────────────────────────────────────────────────────────────┐
482
+ │ {mind_name} │
483
+ │ │
484
+ │ Você tem materiais deste expert? │
485
+ │ □ Sim - Path/links: _______________________________ │
486
+ │ □ Não - Use pesquisa web │
487
+ │ │
488
+ │ Tipos que você tem: │
489
+ │ □ Livros (PDF) │
490
+ │ □ Transcrições de cursos │
491
+ │ □ Entrevistas/podcasts │
492
+ │ □ Artigos/newsletters │
493
+ │ □ Outros: ______________ │
494
+ └─────────────────────────────────────────────────────────────────┘
495
+ {end_for_each}
496
+
497
+ Quando terminar, me avise para prosseguir.
498
+ ═══════════════════════════════════════════════════════════════════
499
+ processing:
500
+ for_each_response:
501
+ if_has_materials:
502
+ - action: Index materials as Tier 0
503
+ - action: Validate files exist/accessible
504
+ - action: Add to sources_inventory
505
+ if_no_materials:
506
+ - action: Mark mind for web-only research
507
+ - action: Warn about reduced quality for this mind
508
+ output:
509
+ materials_inventory:
510
+ per_mind:
511
+ - mind_name: ""
512
+ has_user_materials: true/false
513
+ materials_path: ""
514
+ material_types: []
515
+ expected_quality: 85-95% | 60-75%
516
+ quality_standard:
517
+ agents: 300+ lines, voice_dna, output_examples
518
+ workflows: 500+ lines, 3+ phases, checkpoints
519
+ tasks: 500+ lines complex, 300+ simple, Task Anatomy (8 fields)
520
+ overall_score: ">= 7.0"
521
+ frameworks_used:
522
+ - id: tier-system-framework
523
+ file: data/tier-system-framework.md
524
+ applied_in:
525
+ - phase_2
526
+ - phase_3
527
+ - id: quality-dimensions-framework
528
+ file: data/quality-dimensions-framework.md
529
+ applied_in:
530
+ - phase_1
531
+ - phase_5
532
+ - id: decision-heuristics-framework
533
+ file: data/decision-heuristics-framework.md
534
+ applied_in:
535
+ - phase_0
536
+ - phase_1
537
+ - phase_3
538
+ - phase_5
539
+ - id: executor-matrix-framework
540
+ file: data/executor-matrix-framework.md
541
+ applied_in:
542
+ - phase_3
543
+ config_files:
544
+ - id: heuristics-engine
545
+ file: config/heuristics.yaml
546
+ version: "2.0"
547
+ purpose: "6 heuristics: SC_HE_001-003 (PV) + AN_HE_001-003 (AN) with veto mappings"
548
+ agents:
549
+ pedro_valerio:
550
+ - SC_HE_001
551
+ - SC_HE_002
552
+ - SC_HE_003
553
+ oalanicolas:
554
+ - AN_HE_001
555
+ - AN_HE_002
556
+ - AN_HE_003
557
+ applied_in:
558
+ - phase_0
559
+ - phase_3
560
+ - phase_5
561
+ - id: veto-conditions
562
+ file: config/veto-conditions.yaml
563
+ version: "2.0"
564
+ purpose: "15 veto conditions: SC_VC_001-010 (PV) + AN_VC_001-005 (AN)"
565
+ agents:
566
+ pedro_valerio:
567
+ - SC_VC_001
568
+ - SC_VC_002
569
+ - SC_VC_003
570
+ - SC_VC_004
571
+ - SC_VC_005
572
+ - SC_VC_006
573
+ - SC_VC_007
574
+ - SC_VC_008
575
+ - SC_VC_009
576
+ - SC_VC_010
577
+ oalanicolas:
578
+ - AN_VC_001
579
+ - AN_VC_002
580
+ - AN_VC_003
581
+ - AN_VC_004
582
+ - AN_VC_005
583
+ applied_in:
584
+ - phase_0
585
+ - phase_1
586
+ - phase_3
587
+ - phase_5
588
+ - id: axioma-validator
589
+ file: config/axioma-validator.yaml
590
+ purpose: 10 axioma dimensions (D1-D10) for quality scoring
591
+ applied_in:
592
+ - phase_5
593
+ - id: quality-gates
594
+ file: config/quality-gates.yaml
595
+ purpose: 10 quality gates (QG-SC-1.1 to 6.2) for checkpoints
596
+ applied_in:
597
+ - phase_0
598
+ - phase_1
599
+ - phase_3
600
+ - phase_4
601
+ - phase_5
602
+ - id: task-anatomy
603
+ file: config/task-anatomy.yaml
604
+ purpose: 8 mandatory fields for task validation
605
+ applied_in:
606
+ - phase_3
607
+ - phase_5
608
+ validation_script: scripts/coherence-validator.py
609
+ pattern_library: docs/PATTERN-LIBRARY.md
610
+ estimated_duration:
611
+ incremental: 60-90 minutes
612
+ yolo: 30-45 minutes
613
+ inputs:
614
+ required:
615
+ - name: domain
616
+ type: string
617
+ description: Domain expertise area (e.g., 'copywriting', 'legal', 'data')
618
+ example: copywriting
619
+ - name: purpose
620
+ type: string
621
+ description: What the squad should accomplish
622
+ example: Create high-converting sales pages and marketing copy
623
+ - name: target_user
624
+ type: string
625
+ description: Who will use this squad
626
+ example: Marketing teams at SaaS companies
627
+ - name: use_cases
628
+ type: list
629
+ description: 3-5 key use cases
630
+ example:
631
+ - Sales pages
632
+ - Email sequences
633
+ - Ad copy
634
+ - Landing pages
635
+ optional:
636
+ - name: mode
637
+ type: enum
638
+ values:
639
+ - incremental
640
+ - yolo
641
+ default: incremental
642
+ description: Workflow execution mode
643
+ - name: squad_name
644
+ type: string
645
+ description: Override default squad name (kebab-case)
646
+ example: copy
647
+ - name: existing_research
648
+ type: path
649
+ description: Path to existing research if available
650
+ example: docs/research/copywriting-research.md
651
+ preconditions:
652
+ system:
653
+ - squad-chief agent is active
654
+ - WebSearch tool available for research
655
+ - Write permissions for squads/ directory
656
+ - All 4 frameworks loaded and accessible
657
+ user:
658
+ - Clear domain understanding
659
+ - Defined use cases (3-5)
660
+ - Available for checkpoints (incremental mode)
661
+ phases:
662
+ - id: phase_0
663
+ name: DISCOVERY
664
+ purpose: Validate domain viability and define squad structure
665
+ duration: 5-10 minutes
666
+ mode: interactive
667
+ steps:
668
+ - id: step_0_0
669
+ name: Persist Creation Plan (MANDATORY)
670
+ action: Persist a trackable creation plan BEFORE creating any squad file
671
+ blocking: true
672
+ rule: |
673
+ NON-NEGOTIABLE: Toda criação de squad DEVE persistir um plano
674
+ rastreável ANTES de criar qualquer arquivo. Jamais confiar
675
+ apenas na janela de contexto.
676
+ Formato mínimo: .aiox/squad-runtime/create-squad/{squad_name}/creation-plan.yaml
677
+ Formato completo: docs/projects/{squad_name}/prd.md
678
+ O plano DEVE listar TODOS os artefatos com [ ] checklist.
679
+ workflow:
680
+ - Map ALL artifacts the squad needs (agents, tasks, workflows, checklists, templates, data, scripts)
681
+ - Count total artifacts
682
+ - Persist creation plan with checklist to disk
683
+ - THEN proceed to scope complexity check
684
+ veto: "Não pode criar nenhum arquivo do squad sem plano persistido"
685
+
686
+ - id: step_0_1
687
+ name: Scope Complexity Check (PRD Gate)
688
+ action: Map workflows and check if PRD is required
689
+ heuristic:
690
+ id: SC_SCP_001
691
+ name: Scope Complexity Gate
692
+ blocking: true
693
+ reference: data/decision-heuristics-framework.md#10
694
+ workflow:
695
+ - Map ALL workflows the squad needs to handle
696
+ - Count total workflows and artifacts
697
+ - Estimate agents needed
698
+ - Check for existing similar squads
699
+ thresholds:
700
+ total_artifacts_require_prd: 15
701
+ workflows_require_prd: 10
702
+ agents_require_prd: 8
703
+ decision:
704
+ if_workflows_gte_10:
705
+ action: VETO - PRD Required
706
+ message: |
707
+ ═══════════════════════════════════════════════════════════════════
708
+ ❌ ESCOPO GRANDE DEMAIS PARA CRIAÇÃO DIRETA
709
+ ═══════════════════════════════════════════════════════════════════
710
+
711
+ Mapeei {workflows_count} workflows.
712
+ Threshold para criação direta: < 10 workflows.
713
+
714
+ AÇÃO NECESSÁRIA:
715
+ ┌─────────────────────────────────────────────────────────────────┐
716
+ │ 1. Criar PRD: docs/projects/{domain}/prd.md │
717
+ │ 2. Dividir em Epics (por Tier ou funcionalidade) │
718
+ │ 3. Criar Stories com acceptance criteria │
719
+ │ 4. Implementar por fases │
720
+ └─────────────────────────────────────────────────────────────────┘
721
+
722
+ Benefícios do PRD:
723
+ • Nenhum workflow esquecido
724
+ • Roadmap claro de implementação
725
+ • Validação por Epic
726
+ • Possibilidade de pausa/retomada
727
+
728
+ Quer que eu crie o PRD agora? (Sim/Não)
729
+ ═══════════════════════════════════════════════════════════════════
730
+ next_action: Create PRD using templates/squad-prd-tmpl.md
731
+ reference_files:
732
+ - data/pm-best-practices.md
733
+ - templates/squad-prd-tmpl.md
734
+ story_generation_rules:
735
+ agent_stories:
736
+ template: templates/story-create-agent-tmpl.md
737
+ rule: |
738
+ ❌ NUNCA especificar agent YAML inline na story
739
+ ✅ SEMPRE referenciar workflow de criação
740
+ wrong_pattern: |
741
+ # Story especifica o agent completo (200+ linhas de YAML)
742
+ # Executor apenas copia → Agent genérico/fraco
743
+ correct_pattern: |
744
+ # Story referencia workflow
745
+ workflow: "wf-clone-mind.yaml" | "create-agent.md"
746
+ inputs: [agent_id, domain, sources_path]
747
+ quality_gates: [SC_AGT_001, SC_AGT_002, SC_AGT_003]
748
+ # Executor EXECUTA workflow → Agent com profundidade
749
+ quality_gates_required:
750
+ - "SC_AGT_001: Structure (300+ lines)"
751
+ - "SC_AGT_002: Content (all levels present)"
752
+ - "SC_AGT_003: Depth (frameworks with theory)"
753
+ - "SMOKE_TEST: 3/3 behavioral tests"
754
+ rationale: |
755
+ Stories com especificação inline geram agents fracos porque:
756
+ 1. Pulam pesquisa de fontes
757
+ 2. Pulam extração de thinking DNA
758
+ 3. Pulam extração de voice DNA
759
+ 4. Não passam no depth gate (SC_AGT_003)
760
+
761
+ Referência de qualidade: squads com agents de 1500+ lines com profundidade
762
+ if_agents_gte_8:
763
+ action: VETO - Roadmap Required
764
+ message: Muitos agents ({agents_count}) - precisa roadmap
765
+ else:
766
+ action: PROCEED
767
+ message: Escopo adequado para criação direta
768
+ output:
769
+ workflows_mapped: count
770
+ agents_needed: count
771
+ prd_required: true|false
772
+ decision: proceed|prd_required
773
+ - id: step_0_1
774
+ name: Validate Domain Viability
775
+ action: Assess if domain has sufficient documented frameworks
776
+ depends_on: step_0_0.decision == 'proceed'
777
+ heuristic:
778
+ id: SC_DSC_001
779
+ name: Discovery Complete
780
+ blocking: true
781
+ criteria:
782
+ documented_methodologies: ">= 2"
783
+ elite_practitioners: ">= 3"
784
+ validation_possible: true
785
+ output:
786
+ viability_score: 0-10
787
+ recommendation: proceed | limited_scope | abort
788
+ - id: step_0_2
789
+ name: Check Existing Squads
790
+ action: Search for similar squads that might overlap
791
+ search_paths:
792
+ - squads/*
793
+ - .claude/agents/*
794
+ decision:
795
+ if_80_percent_overlap: suggest extend existing
796
+ if_partial_overlap: warn about integration
797
+ if_no_overlap: proceed
798
+ - id: step_0_3
799
+ name: Define squad structure
800
+ action: Elicit squad metadata
801
+ elicit:
802
+ - squad_name: kebab-case identifier
803
+ - pack_title: Human-readable title
804
+ - version: 1.0.0
805
+ - entry_agent: "Primary activation agent id (default: {squad_name}-chief)"
806
+ - slash_prefix: camelCase
807
+ - pattern_prefix: 2-letter code
808
+ output:
809
+ pack_config: Initial config.yaml content
810
+ checkpoint:
811
+ id: CP_PHASE_0
812
+ name: Discovery Complete
813
+ blocking: true
814
+ criteria:
815
+ - viability_score: ">= 6"
816
+ - squad_name: defined
817
+ - no_duplicate: true
818
+ on_fail:
819
+ action: Present issues, suggest alternatives
820
+ approval:
821
+ incremental: Human approval required
822
+ yolo: Auto-approve if criteria met
823
+ - id: phase_0_5
824
+ name: DEEP TOOL DISCOVERY
825
+ purpose: Launch parallel sub-agents for deep research of MCPs, APIs, CLIs, Libraries, GitHub projects
826
+ duration: 15-25 minutes
827
+ mode: autonomous
828
+ depends_on:
829
+ - phase_0
830
+ philosophy: |
831
+ "A squad should leverage ALL available tools to deliver maximum value
832
+ with minimum user intervention."
833
+
834
+ This phase launches 5 SPECIALIZED SUB-AGENTS in PARALLEL:
835
+ 1. MCP Discovery Agent - Model Context Protocol servers
836
+ 2. API Discovery Agent - REST/GraphQL services
837
+ 3. CLI Discovery Agent - Command-line tools
838
+ 4. Library Discovery Agent - Python/Node packages
839
+ 5. GitHub Project Discovery Agent - Reusable components
840
+
841
+ Each agent performs DEEP SEARCH in its category, then results are
842
+ synthesized into a decision matrix (Impact vs Effort).
843
+ execute:
844
+ workflow: workflows/wf-discover-tools.yaml
845
+ inputs:
846
+ domain: "{domain}"
847
+ use_cases: "{use_cases}"
848
+ budget_tier: "{from pre_flight or default: low_cost}"
849
+ search_depth: standard
850
+ parallel_execution:
851
+ enabled: true
852
+ agents:
853
+ - name: MCP Discovery Agent
854
+ searches:
855
+ - modelcontextprotocol/servers
856
+ - github topics:mcp-server
857
+ - glama.ai/mcp
858
+ - name: API Discovery Agent
859
+ searches:
860
+ - RapidAPI
861
+ - PublicAPIs
862
+ - ProgrammableWeb
863
+ - name: CLI Discovery Agent
864
+ searches:
865
+ - awesome-cli-apps
866
+ - homebrew
867
+ - npm cli tools
868
+ - name: Library Discovery Agent
869
+ searches:
870
+ - PyPI
871
+ - npm
872
+ - GitHub SDKs
873
+ - name: GitHub Project Discovery Agent
874
+ searches:
875
+ - github topics
876
+ - github collections
877
+ - awesome lists
878
+ synthesis:
879
+ scoring_dimensions:
880
+ impact:
881
+ - capability_coverage: 0.2
882
+ - automation_potential: 0.15
883
+ - quality_improvement: 0.15
884
+ - uniqueness: 0.1
885
+ effort:
886
+ - installation_complexity: 0.1
887
+ - integration_effort: 0.1
888
+ - maintenance_burden: 0.1
889
+ - cost: 0.1
890
+ decision_matrix:
891
+ quick_wins: impact >= 7 AND effort_score >= 7
892
+ strategic: impact >= 7 AND effort_score < 7
893
+ fill_ins: impact < 7 AND effort_score >= 7
894
+ avoid: impact < 7 AND effort_score < 7
895
+ outputs:
896
+ - .aiox/squad-runtime/discovery/{domain}/tool-discovery-report.md
897
+ - .aiox/squad-runtime/discovery/{domain}/tool-integration-plan.md
898
+ - .aiox/squad-runtime/discovery/{domain}/capability-tools.yaml
899
+ - .aiox/squad-runtime/discovery/{domain}/tool-registry.yaml (updated)
900
+ checkpoint:
901
+ id: CP_PHASE_0_5
902
+ name: Deep Tool Discovery Complete
903
+ blocking: true
904
+ heuristic: SC_TLD_001
905
+ criteria:
906
+ - parallel_agents_executed: ">= 3 of 5"
907
+ - total_tools_discovered: ">= 10"
908
+ - decision_matrix_generated: true
909
+ - integration_plan_created: true
910
+ - reports_generated: true
911
+ - capability_mapping_created: true
912
+ - tool_registry_updated: true
913
+ veto_conditions:
914
+ - all_agents_failed: VETO - Retry required
915
+ - zero_tools_found: VETO - Domain may be too niche, manual research needed
916
+ output:
917
+ tools_discovered: count
918
+ quick_wins: count
919
+ strategic: count
920
+ decision_matrix: generated
921
+ report_path: .aiox/squad-runtime/discovery/{domain}/tool-discovery-report.md
922
+ integration_plan_path: .aiox/squad-runtime/discovery/{domain}/tool-integration-plan.md
923
+ yolo_mode_behavior: |
924
+ In YOLO mode:
925
+ - Execute all 5 parallel agents
926
+ - Generate decision matrix automatically
927
+ - Add quick_wins to squad dependencies
928
+ - Log summary (skip detailed presentation)
929
+ - Continue to Phase 1 immediately
930
+ - id: phase_1
931
+ name: RESEARCH
932
+ purpose: Identify elite minds with documented frameworks
933
+ duration: 15-30 minutes
934
+ mode: autonomous
935
+ depends_on:
936
+ - phase_0
937
+ - phase_0_5
938
+ steps:
939
+ - id: step_1_1
940
+ name: Execute Mind Research Loop
941
+ action: Run iterative research workflow
942
+ execute:
943
+ workflow: workflows/wf-mind-research-loop.yaml
944
+ inputs:
945
+ domain: "{domain}"
946
+ min_minds: 5
947
+ max_minds: 10
948
+ iterations: 3-5
949
+ output:
950
+ minds_list: Curated list of elite minds
951
+ frameworks_per_mind: Documented frameworks
952
+ tier_preliminary: Initial tier classification
953
+ - id: step_1_2
954
+ name: Validate Research Quality
955
+ action: Apply quality dimensions to research output
956
+ framework: quality-dimensions-framework
957
+ dimensions:
958
+ - accuracy: Minds are real with verifiable work
959
+ - coherence: Frameworks complement each other
960
+ - strategic_alignment: Cover the use cases
961
+ heuristic:
962
+ id: SC_RES_001
963
+ name: Research Quality Gate
964
+ blocking: true
965
+ threshold: 7
966
+ veto_conditions:
967
+ - minds_count: < 3
968
+ - no_tier_0: true
969
+ checkpoint:
970
+ id: CP_PHASE_1
971
+ name: Research Complete
972
+ blocking: true
973
+ criteria:
974
+ - minds_found: ">= 5"
975
+ - all_have_frameworks: true
976
+ - tier_0_covered: true
977
+ - use_cases_coverage: ">= 80%"
978
+ output:
979
+ minds_table: |
980
+ | Mind | Tier | Frameworks | Use Cases |
981
+ |------|------|------------|-----------|
982
+ | ... | ... | ... | ... |
983
+ fallback:
984
+ on_minds_below_5:
985
+ action: Expand search to adjacent domains
986
+ retry_with:
987
+ - Related experts in broader {domain}
988
+ - Historical figures in {domain}
989
+ - Practitioners vs theorists mix
990
+ max_iterations: 2
991
+ on_no_tier_0:
992
+ action: Research for diagnostic/analysis experts
993
+ search_queries:
994
+ - "\"{domain}\" diagnostic framework\""
995
+ - "\"{domain}\" assessment methodology\""
996
+ on_retry_fail: |
997
+ ESCALATE: Cannot find 5+ elite minds for {domain}.
998
+ → Present available minds (even if < 5)
999
+ → Ask user for manual expert suggestions
1000
+ → Proceed with reduced scope if user approves
1001
+ - id: phase_2
1002
+ name: ARCHITECTURE
1003
+ purpose: Design squad structure and relationships
1004
+ duration: 10-20 minutes
1005
+ mode:
1006
+ incremental: interactive
1007
+ yolo: autonomous
1008
+ depends_on:
1009
+ - phase_1
1010
+ steps:
1011
+ - id: step_2_1
1012
+ name: Define Tier Structure
1013
+ action: Assign minds to tiers using tier-system-framework
1014
+ framework: tier-system-framework
1015
+ structure:
1016
+ orchestrator:
1017
+ required: true
1018
+ purpose: Coordinates all tiers, routes requests
1019
+ tier_0:
1020
+ required: true
1021
+ purpose: Diagnosis, analysis, classification
1022
+ tier_1:
1023
+ purpose: Masters with proven results
1024
+ tier_2:
1025
+ purpose: Systematizers, framework creators
1026
+ tier_3:
1027
+ purpose: Format/channel specialists
1028
+ tools:
1029
+ purpose: Validation, checklists, calculators
1030
+ - id: step_2_2
1031
+ name: Plan Agent Relationships
1032
+ action: Define handoffs and synergies
1033
+ define:
1034
+ handoff_map: Who hands off to whom
1035
+ synergies: Agents that work well together
1036
+ conflicts: Agents that shouldn't be combined
1037
+ - id: step_2_3
1038
+ name: Design Quality Gates
1039
+ action: Define validation points between phases
1040
+ template:
1041
+ - id: QG-001
1042
+ transition: Input → Tier 0
1043
+ type: routing
1044
+ - id: QG-002
1045
+ transition: Tier 0 → Tier 1
1046
+ type: blocking
1047
+ - id: QG-003
1048
+ transition: Execution → Output
1049
+ type: blocking
1050
+ checkpoint:
1051
+ id: CP_PHASE_2
1052
+ name: Architecture Approved
1053
+ blocking: true
1054
+ criteria:
1055
+ - tier_0_defined: true
1056
+ - orchestrator_planned: true
1057
+ - quality_gates: ">= 3"
1058
+ - handoff_map: complete
1059
+ approval:
1060
+ incremental: Human review architecture
1061
+ yolo: Auto-approve if criteria met
1062
+ - id: phase_3
1063
+ name: CREATION
1064
+ purpose: Create all squad components
1065
+ duration: 30-60 minutes
1066
+ mode: autonomous
1067
+ depends_on:
1068
+ - phase_2
1069
+ steps:
1070
+ - id: step_3_1
1071
+ name: Create Directory Structure
1072
+ action: Initialize squad directories
1073
+ create:
1074
+ base: squads/{squad_name}/
1075
+ subdirs:
1076
+ - agents/
1077
+ - tasks/
1078
+ - workflows/
1079
+ - templates/
1080
+ - checklists/
1081
+ - data/
1082
+ - docs/
1083
+ files:
1084
+ - config.yaml
1085
+ - README.md
1086
+ - id: step_3_2
1087
+ name: Clone Mind & Create Agents
1088
+ action: Execute full mind cloning pipeline for each mind
1089
+ specialist: "@oalanicolas"
1090
+ specialist_guidance: |
1091
+ Apply DNA Mental™ 8-layer architecture.
1092
+ Curate sources (ouro > bronze).
1093
+ Extract Playbook + Framework + Swipe File trinity.
1094
+ Validate fidelity 85%+ for quality mode.
1095
+ execute:
1096
+ workflow: workflows/wf-clone-mind.yaml
1097
+ for_each: minds_list
1098
+ inputs_per_mind:
1099
+ mind_name: "{mind.name}"
1100
+ domain: "{domain}"
1101
+ user_materials: "{materials_inventory[mind.name]}"
1102
+ sub_phases:
1103
+ - "Phase 0: Source Collection (collect-sources.md)"
1104
+ - "Phase 1: Voice DNA Extraction (extract-voice-dna.md)"
1105
+ - "Phase 2: Thinking DNA Extraction (extract-thinking-dna.md)"
1106
+ - "Phase 3: Synthesis → mind_dna_complete.yaml"
1107
+ final_step:
1108
+ task: create-agent.md
1109
+ input: mind_dna_complete.yaml
1110
+ quality_gate:
1111
+ id: SC_AGT_001
1112
+ blocking: true
1113
+ retry_on_fail: true
1114
+ conditional_checkpoints:
1115
+ yolo_mode:
1116
+ - Auto-proceed unless sources < 5
1117
+ quality_mode:
1118
+ - "CP_SOURCES: Validate sources per mind"
1119
+ - "CP_DNA: Validate DNA if user knows expert"
1120
+ hybrid_mode:
1121
+ - Per-mind based on materials_inventory
1122
+ fallback:
1123
+ on_clone_fail:
1124
+ action: Isolate failed mind, continue with remaining
1125
+ recovery_path:
1126
+ - Log failure reason (sources_insufficient | dna_incomplete | smoke_test_fail)
1127
+ - Create placeholder agent with reduced fidelity warning
1128
+ - Add to remediation_queue for later improvement
1129
+ - Continue squad creation with available agents
1130
+ on_multiple_fails:
1131
+ threshold: "> 50% of minds fail"
1132
+ action: |
1133
+ ESCALATE: Too many agent creation failures.
1134
+ → Present failure analysis
1135
+ → Ask user to provide additional materials
1136
+ → Option: create squad with reduced scope
1137
+ max_retries_per_mind: 2
1138
+ - id: step_3_3
1139
+ name: Create Orchestrator
1140
+ action: Create squad orchestrator agent
1141
+ template: templates/agent-tmpl.md
1142
+ special:
1143
+ tier: orchestrator
1144
+ capabilities:
1145
+ - Route requests to appropriate tier
1146
+ - Manage multi-agent workflows
1147
+ - Track context across handoffs
1148
+ - id: step_3_4
1149
+ name: Create Workflows
1150
+ action: Create multi-phase workflows
1151
+ criteria:
1152
+ - spans_multiple_agents: true
1153
+ - has_checkpoints: true
1154
+ execute:
1155
+ task: tasks/create-workflow.md
1156
+ quality:
1157
+ min_lines: 500
1158
+ min_phases: 3
1159
+ - id: step_3_5
1160
+ name: Create Tasks
1161
+ action: Create atomic tasks with Task Anatomy
1162
+ framework: executor-matrix-framework
1163
+ execute:
1164
+ task: tasks/create-task.md
1165
+ quality:
1166
+ simple: 300+ lines
1167
+ complex: 500+ lines
1168
+ anatomy_fields: 8
1169
+ checkpoint:
1170
+ id: CP_PHASE_3
1171
+ name: Creation Complete
1172
+ blocking: true
1173
+ criteria:
1174
+ - orchestrator_created: true
1175
+ - tier_0_agents: ">= 1"
1176
+ - all_agents_pass_quality: true
1177
+ - workflows_have_checkpoints: true
1178
+ metrics:
1179
+ agents_created: count
1180
+ total_lines: sum
1181
+ quality_scores: average
1182
+ - id: phase_4
1183
+ name: INTEGRATION
1184
+ purpose: Wire components and generate documentation
1185
+ duration: 10-15 minutes
1186
+ mode: autonomous
1187
+ depends_on:
1188
+ - phase_3
1189
+ steps:
1190
+ - id: step_4_1
1191
+ name: Wire Dependencies
1192
+ action: Verify and link all component dependencies
1193
+ for_each_agent:
1194
+ - verify_tasks_exist: true
1195
+ - verify_templates_exist: true
1196
+ - verify_checklists_exist: true
1197
+ - update_dependencies: true
1198
+ create_missing:
1199
+ action: Create stubs with TODO
1200
+ - id: step_4_2
1201
+ name: Create Knowledge Base
1202
+ action: Generate domain knowledge documentation
1203
+ output:
1204
+ file: data/{squad_name}-kb.md
1205
+ sections:
1206
+ - domain_overview
1207
+ - key_concepts
1208
+ - best_practices
1209
+ - common_patterns
1210
+ - anti_patterns
1211
+ - id: step_4_3
1212
+ name: Generate README
1213
+ action: Create comprehensive documentation
1214
+ template: templates/readme-tmpl.md
1215
+ sections:
1216
+ - overview
1217
+ - installation
1218
+ - quick_start
1219
+ - agents_list
1220
+ - workflows_list
1221
+ - tasks_list
1222
+ - usage_examples
1223
+ - id: step_4_4
1224
+ name: Finalize config.yaml
1225
+ action: Complete squad configuration
1226
+ validate:
1227
+ - yaml_syntax: true
1228
+ - all_components_listed: true
1229
+ - entry_agent_defined: true
1230
+ - version_correct: true
1231
+ checkpoint:
1232
+ id: CP_PHASE_4
1233
+ name: Integration Complete
1234
+ blocking: false
1235
+ criteria:
1236
+ - all_dependencies_wired: true
1237
+ - readme_complete: true
1238
+ - config_valid: true
1239
+ - id: phase_5
1240
+ name: VALIDATION
1241
+ purpose: Validate squad meets quality standards
1242
+ duration: 5-10 minutes
1243
+ mode: autonomous
1244
+ depends_on:
1245
+ - phase_4
1246
+ specialist: "@pedro-valerio"
1247
+ specialist_guidance: |
1248
+ Audit all workflows for:
1249
+ - Veto conditions in every checkpoint
1250
+ - Zero caminhos errados possíveis
1251
+ - Fluxo unidirecional (cards nunca voltam)
1252
+ - Zero gaps de tempo em handoffs
1253
+ Apply: "Se executor CONSEGUE fazer errado → processo está errado"
1254
+ steps:
1255
+ - id: step_5_1
1256
+ name: Run Squad Checklist
1257
+ action: Execute comprehensive validation
1258
+ checklist: checklists/squad-checklist.md
1259
+ categories:
1260
+ - structure
1261
+ - agents
1262
+ - workflows
1263
+ - tasks
1264
+ - documentation
1265
+ - integration
1266
+ - id: step_5_2
1267
+ name: Quality Dimensions Scoring
1268
+ action: Score squad against quality dimensions
1269
+ framework: quality-dimensions-framework
1270
+ dimensions:
1271
+ accuracy:
1272
+ weight: 0.2
1273
+ check: Agents based on real minds
1274
+ coherence:
1275
+ weight: 0.2
1276
+ check: Components work together
1277
+ strategic_alignment:
1278
+ weight: 0.15
1279
+ check: Squad serves stated purpose
1280
+ operational_excellence:
1281
+ weight: 0.2
1282
+ check: Squad is usable
1283
+ innovation_capacity:
1284
+ weight: 0.1
1285
+ check: Squad can grow
1286
+ risk_management:
1287
+ weight: 0.15
1288
+ check: Guardrails in place
1289
+ threshold: 7
1290
+ veto_if_below_5:
1291
+ - accuracy
1292
+ - coherence
1293
+ - operational_excellence
1294
+ - id: step_5_3
1295
+ name: Fix Blocking Issues
1296
+ action: Resolve any blocking validation failures
1297
+ for_each_failure:
1298
+ - identify_root_cause: true
1299
+ - determine_fix: true
1300
+ - execute_fix: true
1301
+ - revalidate: true
1302
+ max_iterations: 3
1303
+ on_max_exceeded:
1304
+ action: Report remaining issues to human
1305
+ checkpoint:
1306
+ id: CP_PHASE_5
1307
+ name: Squad Validated
1308
+ blocking: true
1309
+ criteria:
1310
+ - checklist_pass: true
1311
+ - quality_score: ">= 7.0"
1312
+ - no_blocking_issues: true
1313
+ output:
1314
+ final_score: X/10
1315
+ status: PASS | FAIL
1316
+ issues_remaining: count
1317
+ - id: phase_6
1318
+ name: HANDOFF
1319
+ purpose: Present squad and document next steps
1320
+ duration: 2-5 minutes
1321
+ mode: interactive
1322
+ depends_on:
1323
+ - phase_5
1324
+ steps:
1325
+ - id: step_6_0
1326
+ name: Generate Quality Dashboard
1327
+ action: Create comprehensive quality metrics dashboard
1328
+ template: templates/quality-dashboard-tmpl.md
1329
+ output:
1330
+ file: squads/{squad_name}/docs/quality-dashboard.md
1331
+ metrics:
1332
+ per_agent:
1333
+ - sources_count
1334
+ - tier_1_ratio
1335
+ - voice_score
1336
+ - thinking_score
1337
+ - fidelity_estimate
1338
+ squad_level:
1339
+ - coverage_gaps
1340
+ - handoff_clarity
1341
+ - integration_test_status
1342
+ triangulation:
1343
+ - claims_validated
1344
+ - overall_score
1345
+ - id: step_6_1
1346
+ name: Present Squad Summary
1347
+ action: Display final creation summary
1348
+ present:
1349
+ created:
1350
+ - agents: count
1351
+ - workflows: count
1352
+ - tasks: count
1353
+ - templates: count
1354
+ - checklists: count
1355
+ quality:
1356
+ - overall_score: X/10
1357
+ - research_foundation: X elite minds
1358
+ - tier_coverage: Full/Partial
1359
+ - fidelity_estimate: X%
1360
+ - dashboard: squads/{squad_name}/docs/quality-dashboard.md
1361
+ activation:
1362
+ - install: npm run install:squad {squad_name}
1363
+ - activate: "@{squad_name}"
1364
+ - id: step_6_2
1365
+ name: Document Next Steps
1366
+ action: Provide recommendations for squad usage
1367
+ recommendations:
1368
+ immediate:
1369
+ - Test squad with sample request
1370
+ - Activate orchestrator and verify routing
1371
+ optional:
1372
+ - Add more Tier 3 specialists
1373
+ - Create additional templates
1374
+ - Add integration tests
1375
+ output:
1376
+ squad_path: squads/{squad_name}/
1377
+ activation_command: "@{squad_name}"
1378
+ quality_score: X/10
1379
+ agents_created: count
1380
+ status: STRUCTURAL_COMPLETE
1381
+ next_phase: phase_7 if operational_mode else COMPLETE
1382
+ - id: phase_7
1383
+ name: OPERATIONALIZE
1384
+ purpose: Configure API connections for autonomous squad execution
1385
+ duration: 10-20 minutes
1386
+ mode: interactive
1387
+ depends_on:
1388
+ - phase_6
1389
+ condition: operational_mode == true
1390
+ philosophy: |
1391
+ "A squad is not operational until it produces REAL output.
1392
+ Structure is necessary but not sufficient.
1393
+ Connections must be validated with actual API calls."
1394
+ steps:
1395
+ - id: step_7_1
1396
+ name: Detect Operational Requirements
1397
+ action: Analyze skills and outputs for external API dependencies
1398
+ execute:
1399
+ task: tasks/detect-operational-mode.md
1400
+ inputs:
1401
+ briefing: "{original_briefing}"
1402
+ outputs_defined: "{squad_outputs}"
1403
+ skills_detected: "{skills_list}"
1404
+ output:
1405
+ mode_detected: OPERATIONAL|TEXTUAL
1406
+ apis_required:
1407
+ - "{list}"
1408
+ env_vars_needed:
1409
+ - "{list}"
1410
+ - id: step_7_2
1411
+ name: Generate API Requirements
1412
+ condition: mode_detected == OPERATIONAL
1413
+ action: Map required APIs and generate env template
1414
+ output:
1415
+ file: squads/{squad_name}/data/api-requirements.yaml
1416
+ content:
1417
+ required_apis: "{from_detection}"
1418
+ env_vars: "{per_api}"
1419
+ validation_endpoints: "{per_api}"
1420
+ - id: step_7_3
1421
+ name: Run Setup Wizard
1422
+ condition: mode_detected == OPERATIONAL
1423
+ action: Execute interactive setup for API connections
1424
+ execute:
1425
+ task: tasks/setup-runtime.md
1426
+ inputs:
1427
+ squad_name: "{squad_name}"
1428
+ required_apis: "{apis_required}"
1429
+ validation_mode: strict
1430
+ output:
1431
+ connections_configured:
1432
+ - "{list}"
1433
+ runtime_baseline: squads/{squad_name}/data/runtime-baseline.yaml
1434
+ - id: step_7_4
1435
+ name: Generate Operational Tasks
1436
+ condition: mode_detected == OPERATIONAL
1437
+ action: Copy and customize operational task templates
1438
+ create:
1439
+ - source: templates/setup-runtime-task-tmpl.md
1440
+ target: squads/{squad_name}/tasks/setup-runtime.md
1441
+ customize: API requirements from detection
1442
+ - source: templates/operational-test-task-tmpl.md
1443
+ target: squads/{squad_name}/tasks/operational-test.md
1444
+ customize: Test flow based on squad domain
1445
+ - source: templates/auto-heal-task-tmpl.md
1446
+ target: squads/{squad_name}/tasks/auto-heal.md
1447
+ customize: Error patterns for detected APIs
1448
+ checkpoint:
1449
+ id: CP_PHASE_7
1450
+ name: Operationalization Setup Complete
1451
+ blocking: true
1452
+ condition: operational_mode == true
1453
+ criteria:
1454
+ - critical_apis_connected: true
1455
+ - runtime_baseline_created: true
1456
+ - operational_tasks_generated: true
1457
+ on_fail:
1458
+ action: Identify missing API, guide user to configure
1459
+ retry: true
1460
+ output:
1461
+ apis_connected: count
1462
+ apis_skipped: count
1463
+ ready_for_test: true
1464
+ - id: phase_8
1465
+ name: OPERATIONAL TEST
1466
+ purpose: Execute real E2E test to prove squad is operational
1467
+ duration: 5-10 minutes
1468
+ mode: autonomous
1469
+ depends_on:
1470
+ - phase_7
1471
+ condition: operational_mode == true AND runtime_baseline_exists
1472
+ philosophy: |
1473
+ "Squad is only operational after producing REAL output.
1474
+ Structural validation is not enough - we need proof of execution."
1475
+ steps:
1476
+ - id: step_8_1
1477
+ name: Pre-Flight Check
1478
+ action: Verify all connections are valid
1479
+ execute:
1480
+ task: tasks/operational-test-preflight.md
1481
+ inputs:
1482
+ squad_name: "{squad_name}"
1483
+ output:
1484
+ all_connections_valid: true
1485
+ test_target_available: true
1486
+ - id: step_8_2
1487
+ name: Execute Smoke Workflow
1488
+ action: Run minimal E2E workflow with real data
1489
+ execute:
1490
+ task: tasks/operational-test-smoke.md
1491
+ inputs:
1492
+ squad_name: "{squad_name}"
1493
+ test_mode: live
1494
+ test_scope: minimal
1495
+ tests:
1496
+ - t1_fetch: Fetch data from connected API
1497
+ - t2_process: Apply core skill logic (dry run)
1498
+ - t3_output: Generate artifact
1499
+ - t4_notify: Send test notification (if configured)
1500
+ output:
1501
+ tests_passed: "{count}/{total}"
1502
+ artifacts_generated:
1503
+ - "{list}"
1504
+ - id: step_8_3
1505
+ name: Register Operational Baseline
1506
+ action: Save known-good state for future comparison
1507
+ output:
1508
+ file: squads/{squad_name}/data/operational-baseline.yaml
1509
+ content:
1510
+ test_date: "{timestamp}"
1511
+ tests_passed: "{count}"
1512
+ artifacts:
1513
+ - "{list}"
1514
+ status: OPERATIONAL
1515
+ checkpoint:
1516
+ id: CP_PHASE_8
1517
+ name: Operational Test Passed
1518
+ blocking: true
1519
+ condition: operational_mode == true
1520
+ criteria:
1521
+ - tests_passed: ">= 3/4"
1522
+ - real_output_generated: true
1523
+ - operational_baseline_created: true
1524
+ on_fail:
1525
+ action: Diagnose failure, attempt auto-heal, retry
1526
+ max_retries: 2
1527
+ on_max_retries:
1528
+ action: Escalate to user with diagnostic report
1529
+ output:
1530
+ score: "{passed}/{total}"
1531
+ status: OPERATIONAL | PARTIAL | FAILED
1532
+ - id: phase_9
1533
+ name: OPERATIONAL HANDOFF
1534
+ purpose: Present fully operational squad with activation instructions
1535
+ duration: 2-5 minutes
1536
+ mode: interactive
1537
+ depends_on:
1538
+ - phase_8
1539
+ condition: operational_mode == true
1540
+ steps:
1541
+ - id: step_9_1
1542
+ name: Present Operational Summary
1543
+ action: Display comprehensive operational status
1544
+ present: |
1545
+ ═══════════════════════════════════════════════════════════════════════════════
1546
+ ✅ {SQUAD_NAME}: SQUAD TOTALMENTE OPERACIONAL
1547
+ ═══════════════════════════════════════════════════════════════════════════════
1548
+
1549
+ CONEXOES:
1550
+ ┌─────────────────────────────────────────────────────────────────────────────┐
1551
+ {for each api in configured_apis}
1552
+ │ {api.name} │ {api.status} │ {api.details} │
1553
+ {/for}
1554
+ └─────────────────────────────────────────────────────────────────────────────┘
1555
+
1556
+ TESTE OPERACIONAL:
1557
+ ┌─────────────────────────────────────────────────────────────────────────────┐
1558
+ │ Testes executados │ {tests_passed}/{tests_total} │
1559
+ │ Artefatos gerados │ {artifacts_count} │
1560
+ │ Status │ OPERACIONAL │
1561
+ └─────────────────────────────────────────────────────────────────────────────┘
1562
+
1563
+ O QUE O SQUAD FAZ AGORA:
1564
+ - {capability_1}
1565
+ - {capability_2}
1566
+ - {capability_3}
1567
+
1568
+ COMANDOS DISPONIVEIS:
1569
+ - *setup-runtime --status → Ver conexoes
1570
+ - *operational-test → Re-executar teste E2E
1571
+ - *auto-heal --status → Ver correcoes automaticas
1572
+
1573
+ ═══════════════════════════════════════════════════════════════════════════════
1574
+ Show! Squad operacional. A melhor coisa e voce impossibilitar caminhos. ⚙️
1575
+ ═══════════════════════════════════════════════════════════════════════════════
1576
+ - id: step_9_2
1577
+ name: Document Operational Commands
1578
+ action: Add operational commands to squad README
1579
+ update:
1580
+ file: squads/{squad_name}/README.md
1581
+ section: "## Operational Commands"
1582
+ content: |
1583
+ ### Runtime Management
1584
+ - `*setup-runtime` - Configure API connections
1585
+ - `*setup-runtime --status` - Check connection status
1586
+ - `*setup-runtime --refresh {api}` - Refresh expired token
1587
+
1588
+ ### Testing & Monitoring
1589
+ - `*operational-test` - Run E2E validation
1590
+ - `*auto-heal --status` - View auto-corrections
1591
+ output:
1592
+ squad_path: squads/{squad_name}/
1593
+ activation_command: "@{squad_name}"
1594
+ quality_score: X/10
1595
+ operational_status: FULLY_OPERATIONAL
1596
+ agents_created: count
1597
+ apis_connected: count
1598
+ status: COMPLETE
1599
+ transitions:
1600
+ - from: pre_flight
1601
+ to: phase_0
1602
+ condition: execution_mode_selected
1603
+ description: User selected YOLO/QUALITY/HYBRID mode
1604
+ - from: phase_0
1605
+ to: phase_0_5
1606
+ condition: discovery_complete
1607
+ checkpoint_required: true
1608
+ heuristic: SC_HE_001
1609
+ veto_check: SC_VC_001
1610
+ description: Domain viable, squad structure defined
1611
+ - from: phase_0_5
1612
+ to: phase_1
1613
+ condition: tools_discovered
1614
+ checkpoint_required: true
1615
+ description: Tool discovery complete, decision matrix generated
1616
+ - from: phase_1
1617
+ to: phase_materials
1618
+ condition: minds_identified AND mode != 'yolo'
1619
+ checkpoint_required: true
1620
+ veto_check: SC_VC_002
1621
+ description: Elite minds found, materials collection needed
1622
+ - from: phase_1
1623
+ to: phase_2
1624
+ condition: minds_identified AND mode == 'yolo'
1625
+ checkpoint_required: true
1626
+ description: Elite minds found, skip materials (YOLO mode)
1627
+ - from: phase_materials
1628
+ to: phase_2
1629
+ condition: materials_collected
1630
+ description: User materials indexed
1631
+ - from: phase_2
1632
+ to: phase_3
1633
+ condition: architecture_approved
1634
+ checkpoint_required: true
1635
+ heuristic: SC_HE_002
1636
+ veto_check: SC_VC_005
1637
+ description: Tier structure and handoffs defined
1638
+ - from: phase_3
1639
+ to: phase_3_sources
1640
+ condition: architecture_approved
1641
+ checkpoint_required: true
1642
+ agent: "@oalanicolas"
1643
+ description: Architecture approved, start source curation
1644
+ - from: phase_3_sources
1645
+ to: phase_3_extraction
1646
+ condition: sources_curated AND ouro_ratio >= 0.6
1647
+ checkpoint_required: true
1648
+ agent: "@oalanicolas"
1649
+ heuristic: AN_HE_003
1650
+ veto_check:
1651
+ - AN_VC_001
1652
+ - AN_VC_003
1653
+ description: Sources curated with Pareto ao Cubo, proceed to extraction
1654
+ - from: phase_3_extraction
1655
+ to: phase_3_validation
1656
+ condition: dna_extracted AND trinity_complete
1657
+ checkpoint_required: true
1658
+ agent: "@oalanicolas"
1659
+ heuristic: AN_HE_001
1660
+ veto_check:
1661
+ - AN_VC_002
1662
+ - AN_VC_004
1663
+ description: DNA extracted with trinity complete (Playbook + Framework + Swipe)
1664
+ - from: phase_3_validation
1665
+ to: phase_3_handoff
1666
+ condition: self_validation_passed
1667
+ checkpoint_required: true
1668
+ agent: "@oalanicolas"
1669
+ heuristic: AN_HE_002
1670
+ veto_check: AN_VC_005
1671
+ description: Self-validation passed (15+ citations, 5+ phrases, trinity complete)
1672
+ - from: phase_3_handoff
1673
+ to: phase_3_build
1674
+ condition: insumos_ready
1675
+ checkpoint_required: true
1676
+ handoff_from: "@oalanicolas"
1677
+ handoff_to: "@pedro-valerio"
1678
+ handoff_format: INSUMOS_READY
1679
+ description: Insumos validated, handoff to @pedro-valerio for agent creation
1680
+ - from: phase_3
1681
+ to: phase_4
1682
+ condition: agents_created AND quality_gate_passed
1683
+ checkpoint_required: true
1684
+ veto_check:
1685
+ - SC_VC_003
1686
+ - SC_VC_004
1687
+ - SC_VC_006
1688
+ description: All agents pass SC_AGT_001, smoke tests pass
1689
+ - from: phase_4
1690
+ to: phase_5
1691
+ condition: integration_complete
1692
+ checkpoint_required: false
1693
+ description: Dependencies wired, docs generated, COO workspace handoff prepared when needed
1694
+ - from: phase_5
1695
+ to: phase_6
1696
+ condition: validation_passed AND axioma_score >= 7.0
1697
+ checkpoint_required: true
1698
+ heuristic: SC_HE_003
1699
+ veto_check:
1700
+ - SC_VC_007
1701
+ - SC_VC_008
1702
+ - SC_VC_009
1703
+ - SC_VC_010
1704
+ description: All quality gates pass, no blocking issues
1705
+ - from: phase_6
1706
+ to: phase_7
1707
+ condition: handoff_accepted AND operational_mode == true
1708
+ description: Textual complete, proceed to operationalize
1709
+ - from: phase_6
1710
+ to: complete
1711
+ condition: handoff_accepted AND operational_mode == false
1712
+ description: Textual squad complete (no operational mode)
1713
+ - from: phase_7
1714
+ to: phase_8
1715
+ condition: runtime_setup_complete AND critical_apis_connected
1716
+ checkpoint_required: true
1717
+ description: API connections configured, proceed to operational test
1718
+ - from: phase_8
1719
+ to: phase_9
1720
+ condition: operational_test_passed AND real_output_generated
1721
+ checkpoint_required: true
1722
+ description: E2E test passed, proceed to operational handoff
1723
+ - from: phase_9
1724
+ to: complete
1725
+ condition: operational_handoff_accepted
1726
+ description: Fully operational squad delivered
1727
+ outputs:
1728
+ primary:
1729
+ - name: Squad Directory
1730
+ location: squads/{squad_name}/
1731
+ description: Complete squad structure
1732
+ - name: Agents
1733
+ location: squads/{squad_name}/agents/
1734
+ description: All agent definitions
1735
+ - name: Workflows
1736
+ location: squads/{squad_name}/workflows/
1737
+ description: Multi-phase workflows
1738
+ - name: Tasks
1739
+ location: squads/{squad_name}/tasks/
1740
+ description: Atomic tasks
1741
+ - name: Documentation
1742
+ location: squads/{squad_name}/README.md
1743
+ description: Usage documentation
1744
+ secondary:
1745
+ - name: Research Files
1746
+ location: docs/research/{domain}-*.md
1747
+ description: Research documentation
1748
+ - name: Tool Discovery Report
1749
+ location: .aiox/squad-runtime/discovery/{domain}/tool-discovery-report.md
1750
+ description: Comprehensive tool research findings (MCPs, APIs, CLIs, Libraries)
1751
+ - name: Tool Integration Plan
1752
+ location: .aiox/squad-runtime/discovery/{domain}/tool-integration-plan.md
1753
+ description: Prioritized implementation steps for discovered tools
1754
+ - name: Capability-Tools Mapping
1755
+ location: .aiox/squad-runtime/discovery/{domain}/capability-tools.yaml
1756
+ description: Domain capability to tool mapping
1757
+ - name: Session Report
1758
+ location: squads/{squad_name}/docs/creation-report.md
1759
+ description: Creation session documentation
1760
+ heuristics:
1761
+ - id: SC_SCP_001
1762
+ name: Scope Complexity Gate (PRD Gate)
1763
+ phase: phase_0
1764
+ blocking: true
1765
+ thresholds:
1766
+ workflows: ">= 10 → PRD required"
1767
+ agents: ">= 8 → PRD required"
1768
+ - id: SC_DSC_001
1769
+ name: Discovery Complete
1770
+ phase: phase_0
1771
+ blocking: true
1772
+ - id: SC_TLD_001
1773
+ name: Deep Tool Discovery Complete
1774
+ phase: phase_0_5
1775
+ blocking: true
1776
+ description: |
1777
+ 5 parallel sub-agents executed deep search for MCPs, APIs, CLIs, Libraries, GitHub projects.
1778
+ Tools ranked by RELATIVE TIERS (percentile comparison), not absolute thresholds.
1779
+ Comparative report generated with flags for human attention.
1780
+ criteria:
1781
+ - parallel_agents_executed: ">= 3 of 5"
1782
+ - tools_discovered: ">= 5"
1783
+ - tier_distribution_calculated: true
1784
+ - comparative_report_generated: true
1785
+ notes:
1786
+ - No tool automatically eliminated - all get tiers
1787
+ - Even Tier 4 tools included as they may be best option
1788
+ - id: SC_TLD_002
1789
+ name: Relative Ranking Complete
1790
+ phase: phase_0_5.step_2_3
1791
+ blocking: true
1792
+ description: All tools ranked by percentile within dataset found
1793
+ criteria:
1794
+ - all_tools_have_tiers: true
1795
+ - percentile_calculation_done: true
1796
+ notes:
1797
+ - NO absolute thresholds like 'stars >= 100'
1798
+ - 30 stars can be Tier 1 if best in niche
1799
+ - id: SC_TLD_003
1800
+ name: Attention Flags Identified
1801
+ phase: phase_0_5.step_2_4
1802
+ blocking: false
1803
+ description: Security, maturity, and license flags identified for human review
1804
+ criteria:
1805
+ - flags_checked: true
1806
+ notes:
1807
+ - FLAGS require attention, not automatic elimination
1808
+ - Tool with flag may still be recommended if best available
1809
+ - id: SC_TLD_004
1810
+ name: Cost Comparison Complete
1811
+ phase: phase_0_5.step_2_5
1812
+ blocking: false
1813
+ description: Paid vs OSS compared by tier within same capability
1814
+ criteria:
1815
+ - paid_vs_oss_grouped_by_capability: true
1816
+ - tier_comparison_generated: true
1817
+ notes:
1818
+ - NO fixed ROI thresholds
1819
+ - OSS preferred when same tier as paid
1820
+ - Present analysis for human decision
1821
+ - id: SC_TLD_005
1822
+ name: Decision Matrix Generated
1823
+ phase: phase_0_5.step_2_8
1824
+ blocking: true
1825
+ description: Tools assigned to quadrants based on relative tiers
1826
+ criteria:
1827
+ - quadrants_assigned: true
1828
+ - recommendations_per_gap: true
1829
+ notes:
1830
+ - Quick Win = Tier 1-2 Value + Tier 1-2 Effort
1831
+ - No tool excluded - all get quadrant assignment
1832
+ - id: SC_RES_001
1833
+ name: Research Quality Gate
1834
+ phase: phase_1
1835
+ blocking: true
1836
+ - id: SC_ARC_001
1837
+ name: Architecture Approved
1838
+ phase: phase_2
1839
+ blocking: true
1840
+ - id: SC_AGT_001
1841
+ name: Agent Quality Gate
1842
+ phase: phase_3
1843
+ blocking: true
1844
+ - id: SC_CRT_001
1845
+ name: Creation Quality
1846
+ phase: phase_3
1847
+ blocking: true
1848
+ - id: SC_INT_001
1849
+ name: Integration Complete
1850
+ phase: phase_4
1851
+ blocking: false
1852
+ - id: SC_VAL_001
1853
+ name: Squad Validated
1854
+ phase: phase_5
1855
+ blocking: true
1856
+ error_handling:
1857
+ veto_conditions_reference:
1858
+ phase_0_discovery:
1859
+ - SC_VC_001
1860
+ phase_2_architecture:
1861
+ - SC_VC_002
1862
+ phase_3_dna_extraction:
1863
+ - SC_VC_003
1864
+ - SC_VC_004
1865
+ phase_3_agent_creation:
1866
+ - SC_VC_005
1867
+ - SC_VC_006
1868
+ phase_5_validation:
1869
+ - SC_VC_007
1870
+ - SC_VC_008
1871
+ - SC_VC_009
1872
+ - SC_VC_010
1873
+ phase_3_sources:
1874
+ - AN_VC_001
1875
+ - AN_VC_003
1876
+ phase_3_extraction:
1877
+ - AN_VC_002
1878
+ - AN_VC_004
1879
+ phase_3_validation:
1880
+ - AN_VC_005
1881
+ research_fails:
1882
+ - action: Retry with different queries
1883
+ - if_still_fails: Abort with explanation
1884
+ - veto_triggered: SC_VC_001 (Domain Viability)
1885
+ agent_creation_fails:
1886
+ - action: Identify missing research
1887
+ - action: Supplement research
1888
+ - action: Retry creation
1889
+ - if_still_fails: Create simpler agent, note for improvement
1890
+ - veto_triggered: SC_VC_005 (Agent Coherence) or SC_VC_006 (Smoke Test)
1891
+ validation_fails:
1892
+ - action: Log specific failures
1893
+ - action: Attempt automated fix
1894
+ - if_cannot_fix: Report to human for decision
1895
+ - run_coherence_validator: python scripts/coherence-validator.py
1896
+ checkpoint_fails:
1897
+ - blocking_checkpoint:
1898
+ action: Halt and report
1899
+ require: Human intervention or fix
1900
+ check_vetos: config/veto-conditions.yaml
1901
+ - non_blocking_checkpoint:
1902
+ action: Log warning
1903
+ proceed: true
1904
+ metrics:
1905
+ track:
1906
+ - duration_per_phase: minutes
1907
+ - agents_created: count
1908
+ - total_lines_generated: sum
1909
+ - quality_scores: per component
1910
+ - checkpoint_passes: count
1911
+ - issues_fixed: count
1912
+ - tools_discovered: count
1913
+ - tools_integrated: count
1914
+ - capability_gaps_filled: count
1915
+ report_at_end: true
1916
+ save_to: squads/{squad_name}/docs/metrics.yaml