aiox-core 5.0.5 → 5.0.8

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 (2374) hide show
  1. package/.aiox-core/cli/commands/pro/buyer.js +379 -0
  2. package/.aiox-core/cli/commands/pro/index.js +191 -52
  3. package/.aiox-core/cli/commands/validate/index.js +2 -0
  4. package/.aiox-core/core/code-intel/helpers/dev-helper.js +1 -1
  5. package/.aiox-core/core/code-intel/helpers/devops-helper.js +0 -1
  6. package/.aiox-core/core/code-intel/helpers/planning-helper.js +1 -1
  7. package/.aiox-core/core/code-intel/helpers/qa-helper.js +2 -2
  8. package/.aiox-core/core/config/schemas/framework-config.schema.json +1 -0
  9. package/.aiox-core/core/config/template-overrides.js +1 -1
  10. package/.aiox-core/core/doctor/checks/ide-sync.js +81 -25
  11. package/.aiox-core/core/doctor/checks/rules-files.js +0 -1
  12. package/.aiox-core/core/doctor/checks/skills-count.js +83 -15
  13. package/.aiox-core/core/graph-dashboard/cli.js +1 -2
  14. package/.aiox-core/core/graph-dashboard/data-sources/code-intel-source.js +1 -1
  15. package/.aiox-core/core/ids/layer-classifier.js +1 -1
  16. package/.aiox-core/core/pro/pro-updater.js +578 -0
  17. package/.aiox-core/core/synapse/context/context-tracker.js +107 -9
  18. package/.aiox-core/core/synapse/layers/layer-processor.js +1 -1
  19. package/.aiox-core/core-config.yaml +15 -1
  20. package/.aiox-core/data/capability-detection.js +15 -15
  21. package/.aiox-core/data/entity-registry.yaml +18 -2
  22. package/.aiox-core/data/registry-update-log.jsonl +5 -0
  23. package/.aiox-core/data/tok3-token-comparison.js +0 -4
  24. package/.aiox-core/data/tool-search-validation.js +1 -1
  25. package/.aiox-core/development/agents/aiox-master.md +44 -6
  26. package/.aiox-core/development/agents/data-engineer.md +4 -4
  27. package/.aiox-core/development/agents/devops.md +52 -2
  28. package/.aiox-core/development/agents/po.md +1 -1
  29. package/.aiox-core/development/agents/qa.md +5 -11
  30. package/.aiox-core/development/agents/sm.md +3 -3
  31. package/.aiox-core/development/agents/ux-design-expert.md +1 -1
  32. package/.aiox-core/development/scripts/unified-activation-pipeline.js +29 -3
  33. package/.aiox-core/development/tasks/dev-develop-story.md +46 -7
  34. package/.aiox-core/development/tasks/devops-pro-access-grant.md +93 -0
  35. package/.aiox-core/development/tasks/devops-pro-activate.md +42 -0
  36. package/.aiox-core/development/tasks/devops-pro-check-access.md +34 -0
  37. package/.aiox-core/development/tasks/devops-pro-request-reset.md +34 -0
  38. package/.aiox-core/development/tasks/devops-pro-resend-verification.md +32 -0
  39. package/.aiox-core/development/tasks/devops-pro-reset-password.md +36 -0
  40. package/.aiox-core/development/tasks/devops-pro-validate-login.md +36 -0
  41. package/.aiox-core/development/tasks/devops-pro-verify-status.md +33 -0
  42. package/.aiox-core/development/tasks/qa-gate.md +54 -4
  43. package/.aiox-core/development/tasks/validate-next-story.md +39 -2
  44. package/.aiox-core/framework-config.yaml +1 -0
  45. package/.aiox-core/infrastructure/scripts/codex-skills-sync/README.md +69 -0
  46. package/.aiox-core/infrastructure/scripts/codex-skills-sync/bootstrap.js +727 -0
  47. package/.aiox-core/infrastructure/scripts/codex-skills-sync/index.js +10 -0
  48. package/.aiox-core/infrastructure/scripts/codex-skills-sync/validate.js +65 -4
  49. package/.aiox-core/infrastructure/scripts/generate-settings-json.js +29 -4
  50. package/.aiox-core/infrastructure/scripts/ide-sync/agent-parser.js +4 -0
  51. package/.aiox-core/infrastructure/scripts/ide-sync/index.js +67 -7
  52. package/.aiox-core/infrastructure/scripts/ide-sync/transformers/claude-code.js +145 -3
  53. package/.aiox-core/infrastructure/scripts/repair-agent-references.js +263 -0
  54. package/.aiox-core/infrastructure/scripts/validate-claude-integration.js +60 -8
  55. package/.aiox-core/infrastructure/scripts/validate-paths.js +13 -0
  56. package/.aiox-core/install-manifest.yaml +134 -82
  57. package/.aiox-core/utils/filters/index.js +2 -1
  58. package/.claude/commands/AIOX/agents/aiox-master.md +21 -0
  59. package/.claude/commands/AIOX/agents/analyst.md +21 -0
  60. package/.claude/commands/AIOX/agents/architect.md +21 -0
  61. package/.claude/commands/AIOX/agents/data-engineer.md +21 -0
  62. package/.claude/commands/AIOX/agents/dev.md +21 -0
  63. package/.claude/commands/AIOX/agents/devops.md +21 -0
  64. package/.claude/commands/AIOX/agents/pm.md +21 -0
  65. package/.claude/commands/AIOX/agents/po.md +21 -0
  66. package/.claude/commands/AIOX/agents/qa.md +21 -0
  67. package/.claude/commands/AIOX/agents/sm.md +21 -0
  68. package/.claude/commands/AIOX/agents/squad-creator.md +21 -0
  69. package/.claude/commands/AIOX/agents/ux-design-expert.md +21 -0
  70. package/.claude/commands/AIOX/scripts/agent-config-loader.js +624 -0
  71. package/.claude/commands/AIOX/scripts/generate-greeting.js +160 -0
  72. package/.claude/commands/AIOX/scripts/greeting-builder.js +866 -0
  73. package/.claude/commands/AIOX/scripts/session-context-loader.js +286 -0
  74. package/.claude/commands/AIOX/stories/story-6.1.4.md +1404 -0
  75. package/.claude/commands/cohort-squad/agents/cohort-manager.md +156 -0
  76. package/.claude/commands/design-system/agents/brad-frost.md +1097 -0
  77. package/.claude/commands/design-system/agents/dan-mall.md +857 -0
  78. package/.claude/commands/design-system/agents/dave-malouf.md +2272 -0
  79. package/.claude/commands/design-system/agents/design-chief.md +102 -0
  80. package/.claude/commands/design-system/agents/nano-banana-generator.md +162 -0
  81. package/.claude/commands/greet.md +101 -0
  82. package/.claude/commands/synapse/manager.md +75 -0
  83. package/.claude/commands/synapse/tasks/add-rule.md +94 -0
  84. package/.claude/commands/synapse/tasks/create-command.md +109 -0
  85. package/.claude/commands/synapse/tasks/create-domain.md +127 -0
  86. package/.claude/commands/synapse/tasks/diagnose-synapse.md +245 -0
  87. package/.claude/commands/synapse/tasks/edit-rule.md +109 -0
  88. package/.claude/commands/synapse/tasks/suggest-domain.md +116 -0
  89. package/.claude/commands/synapse/tasks/toggle-domain.md +83 -0
  90. package/.claude/commands/synapse/templates/domain-template +8 -0
  91. package/.claude/commands/synapse/templates/manifest-entry-template +4 -0
  92. package/.claude/commands/synapse/utils/manifest-parser-reference.md +134 -0
  93. package/.claude/hooks/precompact-session-digest.cjs +2 -2
  94. package/.claude/skills/AIOX/agents/aiox-master/SKILL.md +511 -0
  95. package/.claude/skills/AIOX/agents/analyst/SKILL.md +281 -0
  96. package/.claude/skills/AIOX/agents/architect/SKILL.md +482 -0
  97. package/.claude/skills/AIOX/agents/data-engineer/SKILL.md +503 -0
  98. package/.claude/skills/AIOX/agents/dev/SKILL.md +568 -0
  99. package/.claude/skills/AIOX/agents/devops/SKILL.md +597 -0
  100. package/.claude/skills/AIOX/agents/pm/SKILL.md +385 -0
  101. package/.claude/skills/AIOX/agents/po/SKILL.md +343 -0
  102. package/.claude/skills/AIOX/agents/qa/SKILL.md +451 -0
  103. package/.claude/skills/AIOX/agents/sm/SKILL.md +295 -0
  104. package/.claude/skills/AIOX/agents/squad-creator/SKILL.md +352 -0
  105. package/.claude/skills/AIOX/agents/ux-design-expert/SKILL.md +503 -0
  106. package/.claude/skills/architect-first/SKILL.md +275 -0
  107. package/.claude/skills/architect-first/assets/architecture-template.md +505 -0
  108. package/.claude/skills/architect-first/assets/config-template.yaml +351 -0
  109. package/.claude/skills/architect-first/references/architecture-checklist.md +216 -0
  110. package/.claude/skills/architect-first/references/pre-implementation-checklist.md +119 -0
  111. package/.claude/skills/architect-first/references/stop-rules-guide.md +291 -0
  112. package/.claude/skills/architect-first/references/testing-strategy-guide.md +477 -0
  113. package/.claude/skills/architect-first/scripts/architecture_validator.py +490 -0
  114. package/.claude/skills/architect-first/scripts/check_coupling.py +306 -0
  115. package/.claude/skills/architect-first/scripts/validate_risk_mitigation.py +382 -0
  116. package/.claude/skills/checklist-runner/SKILL.md +113 -0
  117. package/.claude/skills/clone-mind.md +329 -0
  118. package/.claude/skills/coderabbit-review/SKILL.md +106 -0
  119. package/.claude/skills/course-generation-workflow.md +76 -0
  120. package/.claude/skills/enhance-workflow.md +466 -0
  121. package/.claude/skills/mcp-builder/LICENSE.txt +202 -0
  122. package/.claude/skills/mcp-builder/SKILL.md +328 -0
  123. package/.claude/skills/mcp-builder/reference/evaluation.md +602 -0
  124. package/.claude/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
  125. package/.claude/skills/mcp-builder/reference/node_mcp_server.md +916 -0
  126. package/.claude/skills/mcp-builder/reference/python_mcp_server.md +752 -0
  127. package/.claude/skills/mcp-builder/scripts/connections.py +151 -0
  128. package/.claude/skills/mcp-builder/scripts/evaluation.py +373 -0
  129. package/.claude/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
  130. package/.claude/skills/mcp-builder/scripts/requirements.txt +2 -0
  131. package/.claude/skills/ralph.md +181 -0
  132. package/.claude/skills/skill-creator/LICENSE.txt +202 -0
  133. package/.claude/skills/skill-creator/SKILL.md +209 -0
  134. package/.claude/skills/skill-creator/scripts/init_skill.py +303 -0
  135. package/.claude/skills/skill-creator/scripts/package_skill.py +110 -0
  136. package/.claude/skills/skill-creator/scripts/quick_validate.py +65 -0
  137. package/.claude/skills/squad.md +301 -0
  138. package/.claude/skills/synapse/SKILL.md +132 -0
  139. package/.claude/skills/synapse/assets/README.md +50 -0
  140. package/.claude/skills/synapse/references/brackets.md +100 -0
  141. package/.claude/skills/synapse/references/commands.md +118 -0
  142. package/.claude/skills/synapse/references/domains.md +126 -0
  143. package/.claude/skills/synapse/references/layers.md +186 -0
  144. package/.claude/skills/synapse/references/manifest.md +142 -0
  145. package/.claude/skills/tech-search/SKILL.md +431 -0
  146. package/.claude/skills/tech-search/prompts/page-extract.md +133 -0
  147. package/README.en.md +2 -2
  148. package/README.md +8 -2
  149. package/bin/aiox.js +55 -4
  150. package/bin/utils/framework-guard.js +4 -2
  151. package/bin/utils/pro-detector.js +119 -28
  152. package/bin/utils/validate-publish.js +2 -1
  153. package/docs/aiox-agent-flows/devops-system.md +18 -0
  154. package/docs/aiox-workflows/README.md +1 -0
  155. package/docs/aiox-workflows/pro-access-grant-workflow.md +218 -0
  156. package/docs/guides/pro/access-grant-ops-playbook.md +370 -0
  157. package/docs/guides/pro/install-gate-setup.md +12 -6
  158. package/docs/guides/pro/squad-creator-handoff-pro-access-ops.md +134 -0
  159. package/docs/guides/supabase-ops-handoff.md +768 -0
  160. package/package.json +12 -1
  161. package/packages/aiox-pro-cli/bin/aiox-pro.js +33 -12
  162. package/packages/installer/src/config/configure-environment.js +118 -50
  163. package/packages/installer/src/installer/aiox-core-installer.js +124 -27
  164. package/packages/installer/src/installer/brownfield-upgrader.js +66 -9
  165. package/packages/installer/src/installer/dependency-installer.js +4 -0
  166. package/packages/installer/src/pro/pro-scaffolder.js +5 -5
  167. package/packages/installer/src/updater/index.js +151 -10
  168. package/packages/installer/src/wizard/ide-config-generator.js +73 -7
  169. package/packages/installer/src/wizard/index.js +119 -31
  170. package/packages/installer/src/wizard/pro-setup.js +117 -45
  171. package/packages/installer/src/wizard/validation/validators/dependency-validator.js +32 -25
  172. package/packages/installer/src/wizard/validation/validators/file-structure-validator.js +26 -0
  173. package/packages/installer/tests/unit/artifact-copy-pipeline/artifact-copy-pipeline.test.js +84 -1
  174. package/packages/installer/tests/unit/claude-md-template-v5/claude-md-template-v5.test.js +1 -1
  175. package/packages/installer/tests/unit/doctor/doctor-checks.test.js +85 -19
  176. package/packages/installer/tests/unit/entity-registry-bootstrap.test.js +4 -4
  177. package/packages/installer/tests/unit/generate-settings-json/generate-settings-json.test.js +5 -5
  178. package/packages/installer/tests/unit/ide-sync-integration/ide-sync-integration.test.js +4 -4
  179. package/packages/installer/tests/unit/merger/yaml-merger.test.js +11 -11
  180. package/pro/README.md +77 -0
  181. package/pro/feature-registry.yaml +225 -0
  182. package/pro/license/degradation.js +220 -0
  183. package/pro/license/errors.js +450 -0
  184. package/pro/license/feature-gate.js +354 -0
  185. package/pro/license/index.js +173 -0
  186. package/pro/license/license-api.js +704 -0
  187. package/pro/license/license-cache.js +627 -0
  188. package/pro/license/license-crypto.js +359 -0
  189. package/pro/package.json +53 -0
  190. package/pro/pro-config.yaml +63 -0
  191. package/pro/squads/README.md +42 -0
  192. package/pro/squads/aiox-sop/ARCHITECTURE.md +86 -0
  193. package/pro/squads/aiox-sop/CHANGELOG.md +27 -0
  194. package/pro/squads/aiox-sop/HEADLINE.md +3 -0
  195. package/pro/squads/aiox-sop/README.md +77 -0
  196. package/pro/squads/aiox-sop/agents/sop-analyst.md +363 -0
  197. package/pro/squads/aiox-sop/agents/sop-auditor.md +294 -0
  198. package/pro/squads/aiox-sop/agents/sop-chief.md +279 -0
  199. package/pro/squads/aiox-sop/agents/sop-creator.md +322 -0
  200. package/pro/squads/aiox-sop/agents/sop-extractor.md +246 -0
  201. package/pro/squads/aiox-sop/agents/sop-ml-architect.md +310 -0
  202. package/pro/squads/aiox-sop/checklists/14-point-crosby-checklist.md +84 -0
  203. package/pro/squads/aiox-sop/checklists/extraction-completeness-checklist.md +78 -0
  204. package/pro/squads/aiox-sop/checklists/sop-completeness-checklist.md +283 -0
  205. package/pro/squads/aiox-sop/checklists/sop-ml-validation-checklist.md +157 -0
  206. package/pro/squads/aiox-sop/checklists/sop-quality-checklist.md +138 -0
  207. package/pro/squads/aiox-sop/checklists/stranger-test-checklist.md +108 -0
  208. package/pro/squads/aiox-sop/config.yaml +460 -0
  209. package/pro/squads/aiox-sop/data/category-map.yaml +647 -0
  210. package/pro/squads/aiox-sop/data/confidence-levels.yaml +133 -0
  211. package/pro/squads/aiox-sop/data/infrastructure-connections.yaml +730 -0
  212. package/pro/squads/aiox-sop/data/market-categories.yaml +65 -0
  213. package/pro/squads/aiox-sop/data/risk-register.yaml +90 -0
  214. package/pro/squads/aiox-sop/data/sop-ml-schema-examples.yaml +420 -0
  215. package/pro/squads/aiox-sop/data/sop-ml-schema.yaml +780 -0
  216. package/pro/squads/aiox-sop/data/sop-registry.yaml +42 -0
  217. package/pro/squads/aiox-sop/data/sop-scoring-rubric.yaml +601 -0
  218. package/pro/squads/aiox-sop/data/sop-standards-reference.yaml +475 -0
  219. package/pro/squads/aiox-sop/data/task-definitions.yaml +1602 -0
  220. package/pro/squads/aiox-sop/data/token-assignments.yaml +304 -0
  221. package/pro/squads/aiox-sop/data/verdict-thresholds.yaml +117 -0
  222. package/pro/squads/aiox-sop/data/workflow-quality-rubric.yaml +579 -0
  223. package/pro/squads/aiox-sop/docs/README.md +10 -0
  224. package/pro/squads/aiox-sop/docs/optimization-doc-drift-2026-03-18.json +20 -0
  225. package/pro/squads/aiox-sop/docs/optimization-economy-2026-03-18.md +40 -0
  226. package/pro/squads/aiox-sop/docs/optimization-environment-2026-03-18.json +24 -0
  227. package/pro/squads/aiox-sop/docs/optimization-material-inventory-2026-03-18.yaml +73 -0
  228. package/pro/squads/aiox-sop/docs/optimization-repo-baseline-2026-03-18.json +38 -0
  229. package/pro/squads/aiox-sop/docs/optimization-runtime-smoke-2026-03-18.json +57 -0
  230. package/pro/squads/aiox-sop/docs/optimization-split-verdict-2026-03-18.json +21 -0
  231. package/pro/squads/aiox-sop/docs/optimization-validation-2026-03-18.json +53 -0
  232. package/pro/squads/aiox-sop/docs/optimization-validation-fallback-2026-03-18.json +6 -0
  233. package/pro/squads/aiox-sop/docs/optimization-workflow-contracts-2026-03-18.json +81 -0
  234. package/pro/squads/aiox-sop/docs/optimization-yolo-plan-2026-03-18.md +177 -0
  235. package/pro/squads/aiox-sop/docs/optimization-yolo-report-2026-03-18.md +181 -0
  236. package/pro/squads/aiox-sop/docs/scaling-strategy.md +129 -0
  237. package/pro/squads/aiox-sop/examples/README.md +14 -0
  238. package/pro/squads/aiox-sop/examples/sample-human-sop.md +11 -0
  239. package/pro/squads/aiox-sop/examples/sample-ml-sop.yaml +14 -0
  240. package/pro/squads/aiox-sop/outputs/README.md +20 -0
  241. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-001.md +864 -0
  242. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-001.yaml +1225 -0
  243. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-002.md +904 -0
  244. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-002.yaml +431 -0
  245. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-003.md +964 -0
  246. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-003.yaml +392 -0
  247. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-004.md +975 -0
  248. package/pro/squads/aiox-sop/outputs/SOP-SLIDES-004.yaml +786 -0
  249. package/pro/squads/aiox-sop/protocols/sop-workflow-integration.md +209 -0
  250. package/pro/squads/aiox-sop/scripts/convert-sop-format-worker.py +299 -0
  251. package/pro/squads/aiox-sop/scripts/load-workspace-context.cjs +296 -0
  252. package/pro/squads/aiox-sop/scripts/normalize-thiagoroas-vsl-extractions.cjs +1448 -0
  253. package/pro/squads/aiox-sop/scripts/refresh-sop-registry.cjs +331 -0
  254. package/pro/squads/aiox-sop/scripts/resolve-environment-contract.cjs +107 -0
  255. package/pro/squads/aiox-sop/scripts/test-load-workspace-context.cjs +100 -0
  256. package/pro/squads/aiox-sop/scripts/test-resolve-environment-contract.cjs +159 -0
  257. package/pro/squads/aiox-sop/tasks/analyze-sop.md +464 -0
  258. package/pro/squads/aiox-sop/tasks/analyze-squad.md +317 -0
  259. package/pro/squads/aiox-sop/tasks/analyze-workflow.md +343 -0
  260. package/pro/squads/aiox-sop/tasks/audit-batch.md +354 -0
  261. package/pro/squads/aiox-sop/tasks/audit-sop.md +528 -0
  262. package/pro/squads/aiox-sop/tasks/benchmark-sop.md +408 -0
  263. package/pro/squads/aiox-sop/tasks/certify-sop.md +193 -0
  264. package/pro/squads/aiox-sop/tasks/check-environment.md +47 -0
  265. package/pro/squads/aiox-sop/tasks/compliance-check.md +84 -0
  266. package/pro/squads/aiox-sop/tasks/convert-sop-format.md +413 -0
  267. package/pro/squads/aiox-sop/tasks/create-checklist.md +267 -0
  268. package/pro/squads/aiox-sop/tasks/create-sop-human.md +306 -0
  269. package/pro/squads/aiox-sop/tasks/create-sop-ml.md +313 -0
  270. package/pro/squads/aiox-sop/tasks/create-sop-operations-suite.md +177 -0
  271. package/pro/squads/aiox-sop/tasks/delete-aiox-sop.md +38 -0
  272. package/pro/squads/aiox-sop/tasks/extract-from-video.md +354 -0
  273. package/pro/squads/aiox-sop/tasks/extract-sop.md +389 -0
  274. package/pro/squads/aiox-sop/tasks/load-workspace-context.md +112 -0
  275. package/pro/squads/aiox-sop/tasks/map-core-sop-backlog.md +651 -0
  276. package/pro/squads/aiox-sop/tasks/re-audit.md +97 -0
  277. package/pro/squads/aiox-sop/tasks/structured-interview.md +243 -0
  278. package/pro/squads/aiox-sop/tasks/update-aiox-sop.md +39 -0
  279. package/pro/squads/aiox-sop/templates/audit-report-template.md +119 -0
  280. package/pro/squads/aiox-sop/templates/certification-template.md +31 -0
  281. package/pro/squads/aiox-sop/templates/checklist-from-sop-tmpl.md +142 -0
  282. package/pro/squads/aiox-sop/templates/decision-tree-template.yaml +209 -0
  283. package/pro/squads/aiox-sop/templates/extraction-output-template.md +150 -0
  284. package/pro/squads/aiox-sop/templates/handoff-tmpl.yaml +85 -0
  285. package/pro/squads/aiox-sop/templates/ml-sop-json-template.json +208 -0
  286. package/pro/squads/aiox-sop/templates/ml-sop-yaml-template.yaml +204 -0
  287. package/pro/squads/aiox-sop/templates/nonconformity-register-template.md +85 -0
  288. package/pro/squads/aiox-sop/templates/sop-analysis-report-tmpl.md +378 -0
  289. package/pro/squads/aiox-sop/templates/sop-human-tmpl.md +385 -0
  290. package/pro/squads/aiox-sop/templates/sop-ml-tmpl.md +352 -0
  291. package/pro/squads/aiox-sop/templates/sop-scorecard-tmpl.md +123 -0
  292. package/pro/squads/aiox-sop/templates/state-machine-template.yaml +232 -0
  293. package/pro/squads/aiox-sop/templates/tool-binding-template.yaml +255 -0
  294. package/pro/squads/aiox-sop/templates/workflow-gap-report-tmpl.yaml +227 -0
  295. package/pro/squads/aiox-sop/workflows/wf-sop-audit-pipeline.yaml +381 -0
  296. package/pro/squads/aiox-sop/workflows/wf-sop-audit-pipeline.yaml.bak +332 -0
  297. package/pro/squads/aiox-sop/workflows/wf-sop-creation-pipeline.yaml +200 -0
  298. package/pro/squads/aiox-sop/workflows/wf-sop-creation-pipeline.yaml.bak +147 -0
  299. package/pro/squads/aiox-sop/workflows/wf-sop-extraction-pipeline.yaml +476 -0
  300. package/pro/squads/aiox-sop/workflows/wf-sop-extraction-pipeline.yaml.bak +441 -0
  301. package/pro/squads/aiox-sop/workflows/wf-sop-pipeline-definition.yaml +813 -0
  302. package/pro/squads/aiox-sop/workflows/wf-sop-quality-gates.yaml +473 -0
  303. package/pro/squads/brand/ARCHITECTURE.md +79 -0
  304. package/pro/squads/brand/CHANGELOG.md +38 -0
  305. package/pro/squads/brand/README.md +213 -0
  306. package/pro/squads/brand/agents/aaker-brand-identity.md +475 -0
  307. package/pro/squads/brand/agents/archetype-consultant.md +424 -0
  308. package/pro/squads/brand/agents/brand-chief.md +502 -0
  309. package/pro/squads/brand/agents/brand-strategist.md +661 -0
  310. package/pro/squads/brand/agents/domain-scout.md +412 -0
  311. package/pro/squads/brand/agents/heyward-dtc-brand.md +399 -0
  312. package/pro/squads/brand/agents/keller-brand-equity.md +390 -0
  313. package/pro/squads/brand/agents/miller-sticky-brand.md +510 -0
  314. package/pro/squads/brand/agents/naming-strategist.md +638 -0
  315. package/pro/squads/brand/agents/nano-banana-generator.md +38 -0
  316. package/pro/squads/brand/agents/neumeier-differentiation.md +390 -0
  317. package/pro/squads/brand/agents/ries-positioning.md +413 -0
  318. package/pro/squads/brand/agents/sharp-brand-science.md +444 -0
  319. package/pro/squads/brand/agents/storybrand-narrator.md +442 -0
  320. package/pro/squads/brand/agents/wheeler-brand-design.md +700 -0
  321. package/pro/squads/brand/agents/yohn-brand-culture.md +391 -0
  322. package/pro/squads/brand/checklists/brand-naming-checklist.md +46 -0
  323. package/pro/squads/brand/checklists/brand-quality-gate.md +58 -0
  324. package/pro/squads/brand/config/veto-conditions.yaml +54 -0
  325. package/pro/squads/brand/config.yaml +634 -0
  326. package/pro/squads/brand/data/brand-mappings.yaml +140 -0
  327. package/pro/squads/brand/data/logo-scds-templates.yaml +224 -0
  328. package/pro/squads/brand/data/logo-style-library.yaml +226 -0
  329. package/pro/squads/brand/data/swipe-file.yaml +282 -0
  330. package/pro/squads/brand/docs/optimization-economy-2026-03-10.md +25 -0
  331. package/pro/squads/brand/docs/optimization-material-inventory-2026-03-10.yaml +40 -0
  332. package/pro/squads/brand/docs/optimization-validation-2026-03-10.json +26 -0
  333. package/pro/squads/brand/docs/optimization-yolo-plan-2026-03-10.md +80 -0
  334. package/pro/squads/brand/docs/optimization-yolo-report-2026-03-10.md +158 -0
  335. package/pro/squads/brand/scripts/bootstrap-brand-workspace.sh +47 -0
  336. package/pro/squads/brand/scripts/validate-brand-essentials.sh +289 -0
  337. package/pro/squads/brand/tasks/brand-activation.md +86 -0
  338. package/pro/squads/brand/tasks/brand-book.md +224 -0
  339. package/pro/squads/brand/tasks/brand-consulting.md +189 -0
  340. package/pro/squads/brand/tasks/brand-diagnosis.md +81 -0
  341. package/pro/squads/brand/tasks/brand-identity.md +255 -0
  342. package/pro/squads/brand/tasks/brand-messaging.md +226 -0
  343. package/pro/squads/brand/tasks/brand-quality-gate.md +213 -0
  344. package/pro/squads/brand/tasks/create-brand-epic.md +129 -0
  345. package/pro/squads/brand/tasks/create-brand-story.md +155 -0
  346. package/pro/squads/brand/tasks/delete-brand.md +56 -0
  347. package/pro/squads/brand/tasks/domain-check.md +120 -0
  348. package/pro/squads/brand/tasks/load-workspace-context.md +112 -0
  349. package/pro/squads/brand/tasks/logo-curate.md +180 -0
  350. package/pro/squads/brand/tasks/logo-deliverable.md +210 -0
  351. package/pro/squads/brand/tasks/logo-generate.md +143 -0
  352. package/pro/squads/brand/tasks/logo-intake.md +151 -0
  353. package/pro/squads/brand/tasks/logo-prompt-engineering.md +151 -0
  354. package/pro/squads/brand/tasks/logo-refine.md +156 -0
  355. package/pro/squads/brand/tasks/logo-strategic-direction.md +160 -0
  356. package/pro/squads/brand/tasks/naming-generation.md +118 -0
  357. package/pro/squads/brand/tasks/positioning-narrative.md +93 -0
  358. package/pro/squads/brand/tasks/update-brand.md +52 -0
  359. package/pro/squads/brand/templates/brand-epic-tmpl.md +124 -0
  360. package/pro/squads/brand/templates/brand-story-tmpl.md +133 -0
  361. package/pro/squads/brand/templates/brandbook-tmpl.yaml +38 -0
  362. package/pro/squads/brand/templates/naming-report-tmpl.md +36 -0
  363. package/pro/squads/brand/workflows/wf-brand-activation-system.yaml +148 -0
  364. package/pro/squads/brand/workflows/wf-brand-all-hands.yaml +368 -0
  365. package/pro/squads/brand/workflows/wf-brand-complete.yaml +223 -0
  366. package/pro/squads/brand/workflows/wf-brand-consulting.yaml +301 -0
  367. package/pro/squads/brand/workflows/wf-brand-foundations.yaml +129 -0
  368. package/pro/squads/brand/workflows/wf-brand-mockup-generation.yaml +247 -0
  369. package/pro/squads/brand/workflows/wf-brand-positioning-narrative.yaml +146 -0
  370. package/pro/squads/brand/workflows/wf-logo-brainstorm.yaml +297 -0
  371. package/pro/squads/brand/workflows/wf-naming-to-domain.yaml +152 -0
  372. package/pro/squads/claude-code-mastery/ARCHITECTURE.md +224 -0
  373. package/pro/squads/claude-code-mastery/CHANGELOG.md +41 -0
  374. package/pro/squads/claude-code-mastery/README.md +146 -0
  375. package/pro/squads/claude-code-mastery/agents/claude-mastery-chief.md +542 -0
  376. package/pro/squads/claude-code-mastery/agents/config-engineer.md +1051 -0
  377. package/pro/squads/claude-code-mastery/agents/hooks-architect.md +1088 -0
  378. package/pro/squads/claude-code-mastery/agents/mcp-integrator.md +790 -0
  379. package/pro/squads/claude-code-mastery/agents/project-integrator.md +1184 -0
  380. package/pro/squads/claude-code-mastery/agents/roadmap-sentinel.md +922 -0
  381. package/pro/squads/claude-code-mastery/agents/skill-craftsman.md +1302 -0
  382. package/pro/squads/claude-code-mastery/agents/swarm-orchestrator.md +1072 -0
  383. package/pro/squads/claude-code-mastery/checklists/agent-team-readiness-checklist.md +88 -0
  384. package/pro/squads/claude-code-mastery/checklists/brownfield-readiness-checklist.md +91 -0
  385. package/pro/squads/claude-code-mastery/checklists/change-checklist.md +75 -0
  386. package/pro/squads/claude-code-mastery/checklists/context-rot-checklist.md +116 -0
  387. package/pro/squads/claude-code-mastery/checklists/integration-audit-checklist.md +104 -0
  388. package/pro/squads/claude-code-mastery/checklists/multi-agent-review-checklist.md +77 -0
  389. package/pro/squads/claude-code-mastery/checklists/pre-push-checklist.md +79 -0
  390. package/pro/squads/claude-code-mastery/config.yaml +351 -0
  391. package/pro/squads/claude-code-mastery/data/cc-architecture-map.yaml +217 -0
  392. package/pro/squads/claude-code-mastery/data/cc-permission-rules.yaml +281 -0
  393. package/pro/squads/claude-code-mastery/data/ci-cd-patterns.yaml +412 -0
  394. package/pro/squads/claude-code-mastery/data/claude-code-quick-ref.yaml +436 -0
  395. package/pro/squads/claude-code-mastery/data/frontmatter-schemas.yaml +395 -0
  396. package/pro/squads/claude-code-mastery/data/hook-patterns.yaml +799 -0
  397. package/pro/squads/claude-code-mastery/data/infrastructure-map.yaml +53 -0
  398. package/pro/squads/claude-code-mastery/data/journey-log-events.yaml +115 -0
  399. package/pro/squads/claude-code-mastery/data/mcp-integration-catalog.yaml +323 -0
  400. package/pro/squads/claude-code-mastery/data/project-type-signatures.yaml +335 -0
  401. package/pro/squads/claude-code-mastery/data/quality-gates.yaml +43 -0
  402. package/pro/squads/claude-code-mastery/data/swarm-agent-schema.yaml +35 -0
  403. package/pro/squads/claude-code-mastery/data/token-registry.yaml +213 -0
  404. package/pro/squads/claude-code-mastery/docs/.gitkeep +0 -0
  405. package/pro/squads/claude-code-mastery/scripts/README-Permission-Sync.md +38 -0
  406. package/pro/squads/claude-code-mastery/scripts/generate-tool-allowlists.js +232 -0
  407. package/pro/squads/claude-code-mastery/scripts/inject-accountability-tokens.js +91 -0
  408. package/pro/squads/claude-code-mastery/scripts/inject-output-schemas.js +131 -0
  409. package/pro/squads/claude-code-mastery/scripts/inject-swarm-fields.js +92 -0
  410. package/pro/squads/claude-code-mastery/scripts/prepare-claude-runtime.sh +26 -0
  411. package/pro/squads/claude-code-mastery/scripts/publish-mastery-report.sh +17 -0
  412. package/pro/squads/claude-code-mastery/scripts/session-usage-report.py +982 -0
  413. package/pro/squads/claude-code-mastery/scripts/session_usage_report_cache.py +163 -0
  414. package/pro/squads/claude-code-mastery/scripts/session_usage_report_claude_adapter.py +375 -0
  415. package/pro/squads/claude-code-mastery/scripts/session_usage_report_facets.py +1128 -0
  416. package/pro/squads/claude-code-mastery/scripts/session_usage_report_html.py +989 -0
  417. package/pro/squads/claude-code-mastery/scripts/session_usage_report_inventory.py +66 -0
  418. package/pro/squads/claude-code-mastery/scripts/session_usage_report_markdown.py +506 -0
  419. package/pro/squads/claude-code-mastery/scripts/session_usage_report_mock_insights_adapter.py +277 -0
  420. package/pro/squads/claude-code-mastery/scripts/session_usage_report_pipeline.py +519 -0
  421. package/pro/squads/claude-code-mastery/scripts/session_usage_report_recommendations.py +317 -0
  422. package/pro/squads/claude-code-mastery/scripts/session_usage_report_usage.py +235 -0
  423. package/pro/squads/claude-code-mastery/scripts/test_session_usage_report.py +1910 -0
  424. package/pro/squads/claude-code-mastery/scripts/validate-setup.js +597 -0
  425. package/pro/squads/claude-code-mastery/squad-io.yaml +151 -0
  426. package/pro/squads/claude-code-mastery/tasks/align-memory-context.md +212 -0
  427. package/pro/squads/claude-code-mastery/tasks/audit-integration.md +252 -0
  428. package/pro/squads/claude-code-mastery/tasks/audit-settings.md +239 -0
  429. package/pro/squads/claude-code-mastery/tasks/audit-setup.md +258 -0
  430. package/pro/squads/claude-code-mastery/tasks/brownfield-setup.md +355 -0
  431. package/pro/squads/claude-code-mastery/tasks/ci-cd-setup.md +368 -0
  432. package/pro/squads/claude-code-mastery/tasks/claude-md-engineer.md +367 -0
  433. package/pro/squads/claude-code-mastery/tasks/configure-claude-code.md +248 -0
  434. package/pro/squads/claude-code-mastery/tasks/context-rot-audit.md +363 -0
  435. package/pro/squads/claude-code-mastery/tasks/create-agent-definition.md +311 -0
  436. package/pro/squads/claude-code-mastery/tasks/create-rules.md +239 -0
  437. package/pro/squads/claude-code-mastery/tasks/create-team-topology.md +291 -0
  438. package/pro/squads/claude-code-mastery/tasks/delete-claude-code-mastery.md +224 -0
  439. package/pro/squads/claude-code-mastery/tasks/diagnose.md +199 -0
  440. package/pro/squads/claude-code-mastery/tasks/enterprise-config.md +379 -0
  441. package/pro/squads/claude-code-mastery/tasks/hook-designer.md +315 -0
  442. package/pro/squads/claude-code-mastery/tasks/integrate-project.md +337 -0
  443. package/pro/squads/claude-code-mastery/tasks/mcp-integration-plan.md +284 -0
  444. package/pro/squads/claude-code-mastery/tasks/mcp-workflow.md +330 -0
  445. package/pro/squads/claude-code-mastery/tasks/multi-project-setup.md +261 -0
  446. package/pro/squads/claude-code-mastery/tasks/optimize-context.md +250 -0
  447. package/pro/squads/claude-code-mastery/tasks/optimize-workflow.md +270 -0
  448. package/pro/squads/claude-code-mastery/tasks/parallel-decomposition.md +326 -0
  449. package/pro/squads/claude-code-mastery/tasks/permission-strategy.md +315 -0
  450. package/pro/squads/claude-code-mastery/tasks/rebuild-runtime-validator.md +234 -0
  451. package/pro/squads/claude-code-mastery/tasks/refresh-runtime-contract.md +235 -0
  452. package/pro/squads/claude-code-mastery/tasks/sandbox-setup.md +312 -0
  453. package/pro/squads/claude-code-mastery/tasks/setup-repository.md +263 -0
  454. package/pro/squads/claude-code-mastery/tasks/setup-wizard.md +269 -0
  455. package/pro/squads/claude-code-mastery/tasks/update-claude-code-mastery.md +227 -0
  456. package/pro/squads/claude-code-mastery/tasks/worktree-strategy.md +353 -0
  457. package/pro/squads/claude-code-mastery/templates/baseline-kpis-tmpl.yaml +0 -0
  458. package/pro/squads/claude-code-mastery/templates/claude-md-fullstack.md +147 -0
  459. package/pro/squads/claude-code-mastery/templates/claude-md-library.md +175 -0
  460. package/pro/squads/claude-code-mastery/templates/claude-md-microservices.md +186 -0
  461. package/pro/squads/claude-code-mastery/templates/claude-md-mobile.md +198 -0
  462. package/pro/squads/claude-code-mastery/templates/claude-md-monorepo.md +139 -0
  463. package/pro/squads/claude-code-mastery/templates/concept-mapping-tmpl.yaml +0 -0
  464. package/pro/squads/claude-code-mastery/templates/cross-domain-handoff-tmpl.yaml +15 -0
  465. package/pro/squads/claude-code-mastery/templates/github-actions-claude-ci.yml +348 -0
  466. package/pro/squads/claude-code-mastery/templates/github-actions-claude-review.yml +179 -0
  467. package/pro/squads/claude-code-mastery/templates/hook-implementation-tmpl.md +24 -0
  468. package/pro/squads/claude-code-mastery/templates/mcp-config-tmpl.yaml +18 -0
  469. package/pro/squads/claude-code-mastery/templates/session-usage-report-page.css +591 -0
  470. package/pro/squads/claude-code-mastery/templates/session-usage-report-page.html +32 -0
  471. package/pro/squads/claude-code-mastery/templates/session-usage-report-tmpl.yaml +224 -0
  472. package/pro/squads/claude-code-mastery/templates/skill-definition-tmpl.md +67 -0
  473. package/pro/squads/claude-code-mastery/templates/violations-log-tmpl.jsonl +0 -0
  474. package/pro/squads/claude-code-mastery/workflows/wf-audit-complete.yaml +178 -0
  475. package/pro/squads/claude-code-mastery/workflows/wf-knowledge-update.yaml +447 -0
  476. package/pro/squads/claude-code-mastery/workflows/wf-project-setup.yaml +236 -0
  477. package/pro/squads/data/HEADLINE.md +3 -0
  478. package/pro/squads/data/README.md +292 -0
  479. package/pro/squads/data/agents/avinash-kaushik.md +1117 -0
  480. package/pro/squads/data/agents/data-chief.md +1035 -0
  481. package/pro/squads/data/agents/david-spinks.md +1896 -0
  482. package/pro/squads/data/agents/nick-mehta.md +1338 -0
  483. package/pro/squads/data/agents/peter-fader.md +1815 -0
  484. package/pro/squads/data/agents/sean-ellis.md +2460 -0
  485. package/pro/squads/data/agents/wes-kao.md +2124 -0
  486. package/pro/squads/data/checklists/cbc-readiness-checklist.md +155 -0
  487. package/pro/squads/data/checklists/community-health-checklist.md +131 -0
  488. package/pro/squads/data/checklists/customer-360-checklist.md +997 -0
  489. package/pro/squads/data/checklists/customer-centricity-checklist.md +105 -0
  490. package/pro/squads/data/checklists/health-score-checklist.md +984 -0
  491. package/pro/squads/data/checklists/pre-implementation-checklist.md +291 -0
  492. package/pro/squads/data/checklists/so-what-checklist.md +326 -0
  493. package/pro/squads/data/config.yaml +705 -0
  494. package/pro/squads/data/data/.gitkeep +0 -0
  495. package/pro/squads/data/data/README.md +84 -0
  496. package/pro/squads/data/data/framework/01_arquitetura_geral.md +134 -0
  497. package/pro/squads/data/data/framework/02_tier0_fundacao.md +198 -0
  498. package/pro/squads/data/data/framework/03_tier0_fundamentadores.md +297 -0
  499. package/pro/squads/data/data/framework/04_tier1_operacionalizadores.md +447 -0
  500. package/pro/squads/data/data/framework/05_tier2_comunicadores.md +297 -0
  501. package/pro/squads/data/data/framework/06_matriz_decisao.md +328 -0
  502. package/pro/squads/data/data/framework/07_workflows.md +552 -0
  503. package/pro/squads/data/data/framework/08_cheatsheet.md +216 -0
  504. package/pro/squads/data/examples/cohorts-diagnostic-sample-output.yaml +10 -0
  505. package/pro/squads/data/outputs/workspace-hardening-summary.md +12 -0
  506. package/pro/squads/data/projects/data-v1-setup/prd.json +440 -0
  507. package/pro/squads/data/projects/data-v1-setup/prompt.md +184 -0
  508. package/pro/squads/data/scripts/bootstrap-data-workspace.sh +186 -0
  509. package/pro/squads/data/scripts/validate-data-essentials.sh +237 -0
  510. package/pro/squads/data/tasks/analyze-cohort.md +1777 -0
  511. package/pro/squads/data/tasks/build-attribution.md +1695 -0
  512. package/pro/squads/data/tasks/calculate-clv.md +1660 -0
  513. package/pro/squads/data/tasks/create-dashboard.md +2305 -0
  514. package/pro/squads/data/tasks/define-north-star.md +1779 -0
  515. package/pro/squads/data/tasks/design-health-score.md +1952 -0
  516. package/pro/squads/data/tasks/design-learning-outcomes.md +2122 -0
  517. package/pro/squads/data/tasks/load-workspace-context.md +115 -0
  518. package/pro/squads/data/tasks/measure-community.md +1376 -0
  519. package/pro/squads/data/tasks/predict-churn.md +1979 -0
  520. package/pro/squads/data/tasks/run-growth-experiment.md +1863 -0
  521. package/pro/squads/data/tasks/run-pmf-test.md +1514 -0
  522. package/pro/squads/data/tasks/segment-rfm.md +2070 -0
  523. package/pro/squads/data/templates/attribution-report-tmpl.yaml +94 -0
  524. package/pro/squads/data/templates/churn-alert-tmpl.yaml +529 -0
  525. package/pro/squads/data/templates/clv-report-tmpl.yaml +818 -0
  526. package/pro/squads/data/templates/cohort-analysis-tmpl.yaml +72 -0
  527. package/pro/squads/data/templates/cohorts/community-health-cohort-tmpl.yaml +60 -0
  528. package/pro/squads/data/templates/cohorts/executive-summary-tmpl.yaml +54 -0
  529. package/pro/squads/data/templates/cohorts/icp-deep-analysis-tmpl.yaml +49 -0
  530. package/pro/squads/data/templates/cohorts/learning-journey-tmpl.yaml +52 -0
  531. package/pro/squads/data/templates/cohorts/segmentation-rfm-tmpl.yaml +48 -0
  532. package/pro/squads/data/templates/cohorts/student-health-score-tmpl.yaml +50 -0
  533. package/pro/squads/data/templates/community-health-tmpl.yaml +106 -0
  534. package/pro/squads/data/templates/customer-360-tmpl.yaml +80 -0
  535. package/pro/squads/data/templates/dmmm-tmpl.yaml +134 -0
  536. package/pro/squads/data/templates/executive-report-tmpl.yaml +432 -0
  537. package/pro/squads/data/templates/health-score-report-tmpl.yaml +644 -0
  538. package/pro/squads/data/templates/learning-outcomes-tmpl.yaml +112 -0
  539. package/pro/squads/data/workflows/cohort-analysis-workflow.md +356 -0
  540. package/pro/squads/data/workflows/cohorts-diagnostic.md +96 -0
  541. package/pro/squads/data/workflows/create-churn-system.md +354 -0
  542. package/pro/squads/data/workflows/fix-completion-rate.md +436 -0
  543. package/pro/squads/data/workflows/implement-attribution.md +371 -0
  544. package/pro/squads/data/workflows/implement-customer-360.md +297 -0
  545. package/pro/squads/data/workflows/optimize-community-workflow.md +463 -0
  546. package/pro/squads/data/workspace-hardening-state.json +6 -0
  547. package/pro/squads/db-sage/README.md +331 -0
  548. package/pro/squads/db-sage/agents/db-sage.md +317 -0
  549. package/pro/squads/db-sage/checklists/database-design-checklist.md +79 -0
  550. package/pro/squads/db-sage/checklists/database-migration-documentation-checklist.md +348 -0
  551. package/pro/squads/db-sage/checklists/db-kiss-validation-checklist.md +246 -0
  552. package/pro/squads/db-sage/checklists/dba-predeploy-checklist.md +276 -0
  553. package/pro/squads/db-sage/checklists/dba-rollback-checklist.md +65 -0
  554. package/pro/squads/db-sage/checklists/migration-validation-checklist.md +195 -0
  555. package/pro/squads/db-sage/checklists/supabase-best-practices-audit.md +256 -0
  556. package/pro/squads/db-sage/config.yaml +165 -0
  557. package/pro/squads/db-sage/data/database-best-practices.md +42 -0
  558. package/pro/squads/db-sage/data/migration-safety-guide.md +64 -0
  559. package/pro/squads/db-sage/data/postgres-tuning-guide.md +39 -0
  560. package/pro/squads/db-sage/data/rls-security-patterns.md +46 -0
  561. package/pro/squads/db-sage/data/supabase-agent-skills.md +970 -0
  562. package/pro/squads/db-sage/data/supabase-patterns.md +482 -0
  563. package/pro/squads/db-sage/docs/.gitkeep +0 -0
  564. package/pro/squads/db-sage/scripts/database-adapters/detect-database.sh +113 -0
  565. package/pro/squads/db-sage/scripts/database-adapters/postgresql-schema-loader.sh +334 -0
  566. package/pro/squads/db-sage/scripts/database-adapters/unified-db-loader.sh +176 -0
  567. package/pro/squads/db-sage/scripts/database-operations/README.md +638 -0
  568. package/pro/squads/db-sage/scripts/database-operations/backup-manager.sh +341 -0
  569. package/pro/squads/db-sage/scripts/database-operations/connection-monitor.sh +433 -0
  570. package/pro/squads/db-sage/scripts/database-operations/constraint-validator.sh +588 -0
  571. package/pro/squads/db-sage/scripts/database-operations/data-anonymizer.sh +446 -0
  572. package/pro/squads/db-sage/scripts/database-operations/data-loader.sh +346 -0
  573. package/pro/squads/db-sage/scripts/database-operations/explain-analyzer.sh +285 -0
  574. package/pro/squads/db-sage/scripts/database-operations/health-checker.sh +512 -0
  575. package/pro/squads/db-sage/scripts/database-operations/index-manager.sh +380 -0
  576. package/pro/squads/db-sage/scripts/database-operations/migration-generator.sh +490 -0
  577. package/pro/squads/db-sage/scripts/database-operations/migration-safe-runner.sh +228 -0
  578. package/pro/squads/db-sage/scripts/database-operations/permission-auditor.sh +513 -0
  579. package/pro/squads/db-sage/scripts/database-operations/query-killer.sh +306 -0
  580. package/pro/squads/db-sage/scripts/database-operations/replication-monitor.sh +366 -0
  581. package/pro/squads/db-sage/scripts/database-operations/rls-policy-installer.sh +480 -0
  582. package/pro/squads/db-sage/scripts/database-operations/rls-test-suite.sh +172 -0
  583. package/pro/squads/db-sage/scripts/database-operations/schema-differ.sh +265 -0
  584. package/pro/squads/db-sage/scripts/database-operations/security-scanner.sh +683 -0
  585. package/pro/squads/db-sage/scripts/database-operations/setup-pgpass.sh +185 -0
  586. package/pro/squads/db-sage/scripts/database-operations/vacuum-optimizer.sh +448 -0
  587. package/pro/squads/db-sage/scripts/db-ops/backup-manager.sh +321 -0
  588. package/pro/squads/db-sage/scripts/db-ops/best-practices-auditor.sh +534 -0
  589. package/pro/squads/db-sage/scripts/db-ops/bootstrap-runner.sh +255 -0
  590. package/pro/squads/db-sage/scripts/db-ops/data-loader.sh +616 -0
  591. package/pro/squads/db-sage/scripts/db-ops/detect-database.sh +25 -0
  592. package/pro/squads/db-sage/scripts/db-ops/explain-analyzer.sh +90 -0
  593. package/pro/squads/db-sage/scripts/db-ops/health-checker.sh +323 -0
  594. package/pro/squads/db-sage/scripts/db-ops/migration-runner.sh +308 -0
  595. package/pro/squads/db-sage/scripts/db-ops/query-runner.sh +171 -0
  596. package/pro/squads/db-sage/scripts/db-ops/rls-policy-installer.sh +46 -0
  597. package/pro/squads/db-sage/scripts/db-ops/rls-test-suite.sh +38 -0
  598. package/pro/squads/db-sage/scripts/db-ops/schema-context-loader.sh +25 -0
  599. package/pro/squads/db-sage/scripts/db-ops/squad-integration-preflight.sh +155 -0
  600. package/pro/squads/db-sage/tasks/create-doc.md +107 -0
  601. package/pro/squads/db-sage/tasks/db-analyze-hotpaths.md +406 -0
  602. package/pro/squads/db-sage/tasks/db-apply-migration.md +206 -0
  603. package/pro/squads/db-sage/tasks/db-best-practices-audit.md +523 -0
  604. package/pro/squads/db-sage/tasks/db-bootstrap.md +464 -0
  605. package/pro/squads/db-sage/tasks/db-dry-run.md +122 -0
  606. package/pro/squads/db-sage/tasks/db-env-check.md +94 -0
  607. package/pro/squads/db-sage/tasks/db-explain.md +461 -0
  608. package/pro/squads/db-sage/tasks/db-impersonate.md +326 -0
  609. package/pro/squads/db-sage/tasks/db-load-csv.md +433 -0
  610. package/pro/squads/db-sage/tasks/db-policy-apply.md +464 -0
  611. package/pro/squads/db-sage/tasks/db-rls-audit.md +241 -0
  612. package/pro/squads/db-sage/tasks/db-rollback.md +573 -0
  613. package/pro/squads/db-sage/tasks/db-run-sql.md +453 -0
  614. package/pro/squads/db-sage/tasks/db-seed.md +230 -0
  615. package/pro/squads/db-sage/tasks/db-smoke-test.md +181 -0
  616. package/pro/squads/db-sage/tasks/db-snapshot.md +403 -0
  617. package/pro/squads/db-sage/tasks/db-squad-integration.md +487 -0
  618. package/pro/squads/db-sage/tasks/db-verify-order.md +344 -0
  619. package/pro/squads/db-sage/tasks/domain-modeling.md +517 -0
  620. package/pro/squads/db-sage/tasks/execute-checklist.md +99 -0
  621. package/pro/squads/db-sage/tasks/kiss.md +129 -0
  622. package/pro/squads/db-sage/tasks/query-optimization.md +599 -0
  623. package/pro/squads/db-sage/tasks/schema-audit.md +833 -0
  624. package/pro/squads/db-sage/tasks/supabase-setup.md +536 -0
  625. package/pro/squads/db-sage/templates/backup-metadata.json.tmpl +7 -0
  626. package/pro/squads/db-sage/templates/db-analysis-template.yaml +291 -0
  627. package/pro/squads/db-sage/templates/index-strategy-tmpl.yaml +53 -0
  628. package/pro/squads/db-sage/templates/migration-plan-tmpl.yaml +1022 -0
  629. package/pro/squads/db-sage/templates/migration.sql.tmpl +9 -0
  630. package/pro/squads/db-sage/templates/rls-policies-tmpl.yaml +1201 -0
  631. package/pro/squads/db-sage/templates/rollback.sql.tmpl +9 -0
  632. package/pro/squads/db-sage/templates/schema-design-tmpl.yaml +426 -0
  633. package/pro/squads/db-sage/workflows/analyze-data-workflow.yaml +407 -0
  634. package/pro/squads/db-sage/workflows/backup-restore-workflow.yaml +121 -0
  635. package/pro/squads/db-sage/workflows/kiss-gate-workflow.yaml +143 -0
  636. package/pro/squads/db-sage/workflows/modify-schema-workflow.yaml +440 -0
  637. package/pro/squads/db-sage/workflows/performance-tuning-workflow.yaml +104 -0
  638. package/pro/squads/db-sage/workflows/query-database-workflow.yaml +394 -0
  639. package/pro/squads/db-sage/workflows/setup-database-workflow.yaml +428 -0
  640. package/pro/squads/design/HEADLINE.md +3 -0
  641. package/pro/squads/design/README.md +109 -0
  642. package/pro/squads/design/agents/brad-frost.md +1097 -0
  643. package/pro/squads/design/agents/dan-mall.md +857 -0
  644. package/pro/squads/design/agents/dave-malouf.md +2272 -0
  645. package/pro/squads/design/agents/design-chief.md +114 -0
  646. package/pro/squads/design/agents/ds-foundations-lead.md +194 -0
  647. package/pro/squads/design/agents/ds-token-architect.md +361 -0
  648. package/pro/squads/design/agents/nano-banana-generator.md +162 -0
  649. package/pro/squads/design/agents/storybook-expert.md +809 -0
  650. package/pro/squads/design/checklists/atomic-refactor-checklist.md +299 -0
  651. package/pro/squads/design/checklists/component-adaptation-checklist.md +81 -0
  652. package/pro/squads/design/checklists/design-fidelity-checklist.md +283 -0
  653. package/pro/squads/design/checklists/design-handoff-checklist.md +55 -0
  654. package/pro/squads/design/checklists/design-team-health-checklist.md +454 -0
  655. package/pro/squads/design/checklists/designops-maturity-checklist.md +518 -0
  656. package/pro/squads/design/checklists/ds-a11y-release-gate-checklist.md +45 -0
  657. package/pro/squads/design/checklists/ds-accessibility-wcag-checklist.md +147 -0
  658. package/pro/squads/design/checklists/ds-component-quality-checklist.md +150 -0
  659. package/pro/squads/design/checklists/ds-critical-eye-review-checklist.md +147 -0
  660. package/pro/squads/design/checklists/ds-migration-readiness-checklist.md +99 -0
  661. package/pro/squads/design/checklists/ds-pattern-audit-checklist.md +164 -0
  662. package/pro/squads/design/checklists/reading-accessibility-checklist.md +275 -0
  663. package/pro/squads/design/checklists/token-mapping-checklist.md +107 -0
  664. package/pro/squads/design/config/coding-standards.md +286 -0
  665. package/pro/squads/design/config/source-tree.md +59 -0
  666. package/pro/squads/design/config/tech-stack.md +48 -0
  667. package/pro/squads/design/config.yaml +207 -0
  668. package/pro/squads/design/data/agentic-design-systems-guide.md +46 -0
  669. package/pro/squads/design/data/agentic-ds-principles.md +100 -0
  670. package/pro/squads/design/data/atomic-design-principles.md +108 -0
  671. package/pro/squads/design/data/atomic-refactor-rules.md +582 -0
  672. package/pro/squads/design/data/base-component-specs.md +972 -0
  673. package/pro/squads/design/data/brad-frost-analysis-extract-implicit.yaml +270 -0
  674. package/pro/squads/design/data/brad-frost-analysis-find-0.8.yaml +176 -0
  675. package/pro/squads/design/data/brad-frost-analysis-qa-report.yaml +168 -0
  676. package/pro/squads/design/data/brad-frost-dna.yaml +713 -0
  677. package/pro/squads/design/data/capability-tools.yaml +124 -0
  678. package/pro/squads/design/data/component-adaptation-changelog.md +318 -0
  679. package/pro/squads/design/data/consolidation-algorithms.md +168 -0
  680. package/pro/squads/design/data/critical-eye-scoring-rules.yaml +240 -0
  681. package/pro/squads/design/data/design-token-best-practices.md +107 -0
  682. package/pro/squads/design/data/design-tokens-spec.yaml +418 -0
  683. package/pro/squads/design/data/ds-reference-architectures.md +93 -0
  684. package/pro/squads/design/data/f2-qa-report.md +168 -0
  685. package/pro/squads/design/data/f3-derived-components-changelog.md +100 -0
  686. package/pro/squads/design/data/f3-qa-report.md +208 -0
  687. package/pro/squads/design/data/figma-base-components-raw.md +102 -0
  688. package/pro/squads/design/data/figma-tokens-raw.md +1549 -0
  689. package/pro/squads/design/data/fluent2-design-principles.md +114 -0
  690. package/pro/squads/design/data/high-retention-reading-guide.md +349 -0
  691. package/pro/squads/design/data/integration-patterns.md +207 -0
  692. package/pro/squads/design/data/internal-quality-chain.yaml +48 -0
  693. package/pro/squads/design/data/motion-tokens-guide.md +202 -0
  694. package/pro/squads/design/data/roi-calculation-guide.md +142 -0
  695. package/pro/squads/design/data/token-mapping-reference.md +213 -0
  696. package/pro/squads/design/data/w3c-dtcg-spec-reference.md +149 -0
  697. package/pro/squads/design/data/wcag-compliance-guide.md +267 -0
  698. package/pro/squads/design/docs/AUDIT_REPORT.md +97 -0
  699. package/pro/squads/design/docs/DS-CURATION-PIPELINE-PROPOSAL.md +577 -0
  700. package/pro/squads/design/docs/UPGRADE_PLAN.md +618 -0
  701. package/pro/squads/design/docs/brad-frost-research-validation.md +372 -0
  702. package/pro/squads/design/docs/dave-malouf-research-validation.md +391 -0
  703. package/pro/squads/design/docs/tool-discovery-report.md +87 -0
  704. package/pro/squads/design/docs/tool-integration-plan.md +44 -0
  705. package/pro/squads/design/protocols/ai-first-governance.md +56 -0
  706. package/pro/squads/design/protocols/governance-execution-boundary.md +59 -0
  707. package/pro/squads/design/protocols/handoff.md +60 -0
  708. package/pro/squads/design/rules/.claude-rules.md +88 -0
  709. package/pro/squads/design/scripts/design-system/curate_colors.cjs +447 -0
  710. package/pro/squads/design/scripts/design-system/curate_components.cjs +217 -0
  711. package/pro/squads/design/scripts/design-system/curate_radius.cjs +190 -0
  712. package/pro/squads/design/scripts/design-system/curate_shadows.cjs +208 -0
  713. package/pro/squads/design/scripts/design-system/curate_spacing.cjs +243 -0
  714. package/pro/squads/design/scripts/design-system/curate_typography.cjs +404 -0
  715. package/pro/squads/design/scripts/design-system/design-system-metadata.test.js +49 -0
  716. package/pro/squads/design/scripts/design-system/design_manifest_lib.cjs +142 -0
  717. package/pro/squads/design/scripts/design-system/fetch_page_images.cjs +195 -0
  718. package/pro/squads/design/scripts/design-system/generate_components_metadata.cjs +114 -0
  719. package/pro/squads/design/scripts/design-system/generate_curation_report.cjs +258 -0
  720. package/pro/squads/design/scripts/design-system/generate_tokens.cjs +342 -0
  721. package/pro/squads/design/scripts/design-system/sync_design_manifest.cjs +27 -0
  722. package/pro/squads/design/scripts/design-system/test_mcp_tools.cjs +232 -0
  723. package/pro/squads/design/scripts/design-system/validate_components_metadata.cjs +96 -0
  724. package/pro/squads/design/scripts/design-system/validate_curation.cjs +226 -0
  725. package/pro/squads/design/scripts/design-system/validate_design_manifest_drift.cjs +72 -0
  726. package/pro/squads/design/scripts/design-system/validate_mcp_skeleton.cjs +38 -0
  727. package/pro/squads/design/scripts/design-system/validate_registry.cjs +186 -0
  728. package/pro/squads/design/scripts/design-system/validate_task_checklist_bindings.cjs +78 -0
  729. package/pro/squads/design/scripts/dissect-artifact.cjs +806 -0
  730. package/pro/squads/design/scripts/validate-a11y-integration.cjs +40 -0
  731. package/pro/squads/design/scripts/validate-design-squad.py +411 -0
  732. package/pro/squads/design/squad.yaml +714 -0
  733. package/pro/squads/design/tasks/a11y-audit.md +340 -0
  734. package/pro/squads/design/tasks/aria-audit.md +525 -0
  735. package/pro/squads/design/tasks/atomic-refactor-execute.md +391 -0
  736. package/pro/squads/design/tasks/atomic-refactor-plan.md +262 -0
  737. package/pro/squads/design/tasks/audit-reading-experience.md +350 -0
  738. package/pro/squads/design/tasks/audit-tailwind-config.md +101 -0
  739. package/pro/squads/design/tasks/bootstrap-shadcn-library.md +96 -0
  740. package/pro/squads/design/tasks/bundle-audit.md +245 -0
  741. package/pro/squads/design/tasks/contrast-matrix.md +373 -0
  742. package/pro/squads/design/tasks/create-doc.md +135 -0
  743. package/pro/squads/design/tasks/dead-code-detection.md +329 -0
  744. package/pro/squads/design/tasks/design-compare.md +414 -0
  745. package/pro/squads/design/tasks/design-process-optimization.md +407 -0
  746. package/pro/squads/design/tasks/design-review-orchestration.md +99 -0
  747. package/pro/squads/design/tasks/design-team-scaling.md +407 -0
  748. package/pro/squads/design/tasks/design-tooling-audit.md +404 -0
  749. package/pro/squads/design/tasks/design-triage.md +89 -0
  750. package/pro/squads/design/tasks/designops-maturity-assessment.md +364 -0
  751. package/pro/squads/design/tasks/designops-metrics-setup.md +465 -0
  752. package/pro/squads/design/tasks/ds-agentic-audit.md +100 -0
  753. package/pro/squads/design/tasks/ds-agentic-setup.md +103 -0
  754. package/pro/squads/design/tasks/ds-audit-codebase.md +273 -0
  755. package/pro/squads/design/tasks/ds-build-component.md +349 -0
  756. package/pro/squads/design/tasks/ds-build-mcp-server.md +84 -0
  757. package/pro/squads/design/tasks/ds-calculate-roi.md +282 -0
  758. package/pro/squads/design/tasks/ds-compose-molecule.md +106 -0
  759. package/pro/squads/design/tasks/ds-consolidate-patterns.md +253 -0
  760. package/pro/squads/design/tasks/ds-context-contract.md +194 -0
  761. package/pro/squads/design/tasks/ds-critical-eye-compare.md +130 -0
  762. package/pro/squads/design/tasks/ds-critical-eye-decide.md +139 -0
  763. package/pro/squads/design/tasks/ds-critical-eye-inventory.md +111 -0
  764. package/pro/squads/design/tasks/ds-critical-eye-report.md +101 -0
  765. package/pro/squads/design/tasks/ds-critical-eye-score.md +109 -0
  766. package/pro/squads/design/tasks/ds-designops.md +99 -0
  767. package/pro/squads/design/tasks/ds-extend-pattern.md +91 -0
  768. package/pro/squads/design/tasks/ds-extract-tokens.md +312 -0
  769. package/pro/squads/design/tasks/ds-figma-pipeline.md +95 -0
  770. package/pro/squads/design/tasks/ds-fluent-audit.md +105 -0
  771. package/pro/squads/design/tasks/ds-fluent-build.md +110 -0
  772. package/pro/squads/design/tasks/ds-generate-ai-metadata.md +81 -0
  773. package/pro/squads/design/tasks/ds-generate-cursor-rules.md +74 -0
  774. package/pro/squads/design/tasks/ds-generate-documentation.md +101 -0
  775. package/pro/squads/design/tasks/ds-generate-migration-strategy.md +331 -0
  776. package/pro/squads/design/tasks/ds-generate-shock-report.md +323 -0
  777. package/pro/squads/design/tasks/ds-govern-a11y-compliance.md +93 -0
  778. package/pro/squads/design/tasks/ds-governance.md +187 -0
  779. package/pro/squads/design/tasks/ds-health-metrics.md +278 -0
  780. package/pro/squads/design/tasks/ds-integrate-squad.md +130 -0
  781. package/pro/squads/design/tasks/ds-integrate-workspace.md +100 -0
  782. package/pro/squads/design/tasks/ds-legacy-modernization.md +302 -0
  783. package/pro/squads/design/tasks/ds-mcp-status.md +65 -0
  784. package/pro/squads/design/tasks/ds-motion-audit.md +118 -0
  785. package/pro/squads/design/tasks/ds-multi-framework.md +96 -0
  786. package/pro/squads/design/tasks/ds-parallelization-gate.md +246 -0
  787. package/pro/squads/design/tasks/ds-query.md +90 -0
  788. package/pro/squads/design/tasks/ds-rebuild-artifact.md +369 -0
  789. package/pro/squads/design/tasks/ds-reverse-engineer.md +194 -0
  790. package/pro/squads/design/tasks/ds-scan-artifact.md +131 -0
  791. package/pro/squads/design/tasks/ds-setup-design-system.md +297 -0
  792. package/pro/squads/design/tasks/ds-sync-registry.md +287 -0
  793. package/pro/squads/design/tasks/ds-theme-multi-brand.md +90 -0
  794. package/pro/squads/design/tasks/ds-token-modes.md +108 -0
  795. package/pro/squads/design/tasks/ds-token-w3c-extract.md +105 -0
  796. package/pro/squads/design/tasks/ds-validate-ai-readiness.md +69 -0
  797. package/pro/squads/design/tasks/ds-visual-regression.md +130 -0
  798. package/pro/squads/design/tasks/execute-checklist.md +141 -0
  799. package/pro/squads/design/tasks/export-design-tokens-dtcg.md +97 -0
  800. package/pro/squads/design/tasks/f1-apply-foundations.md +154 -0
  801. package/pro/squads/design/tasks/f1-ingest-figma-tokens.md +130 -0
  802. package/pro/squads/design/tasks/f1-map-tokens-to-shadcn.md +145 -0
  803. package/pro/squads/design/tasks/f1-qa-foundations.md +95 -0
  804. package/pro/squads/design/tasks/f2-adapt-shadcn-components.md +155 -0
  805. package/pro/squads/design/tasks/f2-ingest-base-components.md +148 -0
  806. package/pro/squads/design/tasks/f2-qa-base-components.md +98 -0
  807. package/pro/squads/design/tasks/f3-derive-components.md +145 -0
  808. package/pro/squads/design/tasks/f3-qa-derived-components.md +101 -0
  809. package/pro/squads/design/tasks/focus-order-audit.md +450 -0
  810. package/pro/squads/design/tasks/sb-brownfield-migrate.md +367 -0
  811. package/pro/squads/design/tasks/sb-brownfield-scan.md +318 -0
  812. package/pro/squads/design/tasks/sb-configure.md +230 -0
  813. package/pro/squads/design/tasks/sb-expand-shadcn.md +213 -0
  814. package/pro/squads/design/tasks/sb-generate-all-stories.md +288 -0
  815. package/pro/squads/design/tasks/sb-install.md +152 -0
  816. package/pro/squads/design/tasks/sb-sync-workspace.md +239 -0
  817. package/pro/squads/design/tasks/sb-verify.md +203 -0
  818. package/pro/squads/design/tasks/tailwind-upgrade.md +117 -0
  819. package/pro/squads/design/tasks/token-usage-analytics.md +262 -0
  820. package/pro/squads/design/tasks/ux-rewrite-sixth-grade.md +82 -0
  821. package/pro/squads/design/tasks/validate-design-fidelity.md +222 -0
  822. package/pro/squads/design/templates/agent-template.yaml +46 -0
  823. package/pro/squads/design/templates/clone-mind-template.md +352 -0
  824. package/pro/squads/design/templates/component-prompt-injection-tmpl.md +236 -0
  825. package/pro/squads/design/templates/component-visual-spec-tmpl.md +378 -0
  826. package/pro/squads/design/templates/critical-eye-cycle-report-tmpl.md +165 -0
  827. package/pro/squads/design/templates/design-fidelity-report-tmpl.md +155 -0
  828. package/pro/squads/design/templates/ds-ai-component-metadata-schema-tmpl.json +138 -0
  829. package/pro/squads/design/templates/ds-artifact-analysis.md +70 -0
  830. package/pro/squads/design/templates/ds-health-report-tmpl.md +236 -0
  831. package/pro/squads/design/templates/ds-migration-strategy-tmpl.md +524 -0
  832. package/pro/squads/design/templates/ds-state-persistence-tmpl.yaml +194 -0
  833. package/pro/squads/design/templates/ds-tokens-schema-tmpl.yaml +139 -0
  834. package/pro/squads/design/templates/migration-strategy-tmpl.md +524 -0
  835. package/pro/squads/design/templates/reading-design-tokens.css +26 -0
  836. package/pro/squads/design/templates/state-persistence-tmpl.yaml +219 -0
  837. package/pro/squads/design/templates/tokens-schema-tmpl.yaml +305 -0
  838. package/pro/squads/design/workflows/agentic-readiness.yaml +83 -0
  839. package/pro/squads/design/workflows/audit-only.yaml +198 -0
  840. package/pro/squads/design/workflows/brownfield-complete.yaml +257 -0
  841. package/pro/squads/design/workflows/critical-eye.yaml +184 -0
  842. package/pro/squads/design/workflows/dtcg-tokens-governance.yaml +64 -0
  843. package/pro/squads/design/workflows/foundations-pipeline.yaml +192 -0
  844. package/pro/squads/design/workflows/greenfield-new.yaml +192 -0
  845. package/pro/squads/design/workflows/motion-quality.yaml +65 -0
  846. package/pro/squads/design/workflows/self-healing-workflow.yaml +237 -0
  847. package/pro/squads/design/workflows/storybook-brownfield-migration.yaml +400 -0
  848. package/pro/squads/design/workflows/storybook-full-setup.yaml +280 -0
  849. package/pro/squads/etl-ops/HEADLINE.md +3 -0
  850. package/pro/squads/etl-ops/README.md +121 -0
  851. package/pro/squads/etl-ops/agents/etl-chief.md +440 -0
  852. package/pro/squads/etl-ops/agents/etl-extractor.md +352 -0
  853. package/pro/squads/etl-ops/agents/etl-transformer.md +409 -0
  854. package/pro/squads/etl-ops/checklists/.gitkeep +0 -0
  855. package/pro/squads/etl-ops/checklists/README.md +1 -0
  856. package/pro/squads/etl-ops/config.yaml +405 -0
  857. package/pro/squads/etl-ops/data/checkpoints.yaml +92 -0
  858. package/pro/squads/etl-ops/data/enriched-transcript.schema.json +107 -0
  859. package/pro/squads/etl-ops/data/infrastructure-map.yaml +27 -0
  860. package/pro/squads/etl-ops/data/output-contract.yaml +85 -0
  861. package/pro/squads/etl-ops/data/process.schema.json +293 -0
  862. package/pro/squads/etl-ops/data/quality-gates.yaml +40 -0
  863. package/pro/squads/etl-ops/data/routing-profiles.yaml +239 -0
  864. package/pro/squads/etl-ops/data/service-catalog.yaml +13 -0
  865. package/pro/squads/etl-ops/data/token-registry.yaml +58 -0
  866. package/pro/squads/etl-ops/docs/.gitkeep +0 -0
  867. package/pro/squads/etl-ops/scripts/bootstrap-etl-workspace.sh +42 -0
  868. package/pro/squads/etl-ops/scripts/etl-env-bootstrap.sh +876 -0
  869. package/pro/squads/etl-ops/scripts/validate-etl-essentials.sh +164 -0
  870. package/pro/squads/etl-ops/squad-io.yaml +61 -0
  871. package/pro/squads/etl-ops/tasks/compile.md +191 -0
  872. package/pro/squads/etl-ops/tasks/enrich.md +236 -0
  873. package/pro/squads/etl-ops/tasks/etl-env-bootstrap.md +140 -0
  874. package/pro/squads/etl-ops/tasks/extract-keyframes.md +318 -0
  875. package/pro/squads/etl-ops/tasks/extract-podcast.md +146 -0
  876. package/pro/squads/etl-ops/tasks/load-workspace-context.md +140 -0
  877. package/pro/squads/etl-ops/tasks/process.md +185 -0
  878. package/pro/squads/etl-ops/tasks/summarize-book.md +121 -0
  879. package/pro/squads/etl-ops/templates/cross-domain-handoff-tmpl.yaml +9 -0
  880. package/pro/squads/etl-ops/workflows/etl-pipeline.yaml +25 -0
  881. package/pro/squads/etl-ops/workflows/etl-thresholds.yaml +15 -0
  882. package/pro/squads/hormozi/HEADLINE.md +3 -0
  883. package/pro/squads/hormozi/README.md +313 -0
  884. package/pro/squads/hormozi/agents/hormozi-ads.md +1863 -0
  885. package/pro/squads/hormozi/agents/hormozi-advisor.md +1866 -0
  886. package/pro/squads/hormozi/agents/hormozi-audit.md +2301 -0
  887. package/pro/squads/hormozi/agents/hormozi-chief.md +1671 -0
  888. package/pro/squads/hormozi/agents/hormozi-closer.md +2631 -0
  889. package/pro/squads/hormozi/agents/hormozi-content.md +2148 -0
  890. package/pro/squads/hormozi/agents/hormozi-copy.md +2000 -0
  891. package/pro/squads/hormozi/agents/hormozi-hooks.md +1790 -0
  892. package/pro/squads/hormozi/agents/hormozi-launch.md +1734 -0
  893. package/pro/squads/hormozi/agents/hormozi-leads.md +1022 -0
  894. package/pro/squads/hormozi/agents/hormozi-models.md +1429 -0
  895. package/pro/squads/hormozi/agents/hormozi-offers.md +2228 -0
  896. package/pro/squads/hormozi/agents/hormozi-pricing.md +1784 -0
  897. package/pro/squads/hormozi/agents/hormozi-retention.md +1467 -0
  898. package/pro/squads/hormozi/agents/hormozi-scale.md +2312 -0
  899. package/pro/squads/hormozi/agents/hormozi-workshop.md +2715 -0
  900. package/pro/squads/hormozi/checklists/5-horsemen-checklist.md +188 -0
  901. package/pro/squads/hormozi/checklists/activation-point-checklist.md +156 -0
  902. package/pro/squads/hormozi/checklists/ad-angles-checklist.md +395 -0
  903. package/pro/squads/hormozi/checklists/affiliates-referrals-checklist.md +411 -0
  904. package/pro/squads/hormozi/checklists/antipattern-screening.md +319 -0
  905. package/pro/squads/hormozi/checklists/bonuses-checklist.md +282 -0
  906. package/pro/squads/hormozi/checklists/branding-checklist.md +547 -0
  907. package/pro/squads/hormozi/checklists/churn-diagnosis-checklist.md +148 -0
  908. package/pro/squads/hormozi/checklists/content-creation-checklist.md +598 -0
  909. package/pro/squads/hormozi/checklists/core-four-checklist.md +543 -0
  910. package/pro/squads/hormozi/checklists/customer-journey-checklist.md +207 -0
  911. package/pro/squads/hormozi/checklists/downsell-strategy-checklist.md +306 -0
  912. package/pro/squads/hormozi/checklists/email-campaign-checklist.md +484 -0
  913. package/pro/squads/hormozi/checklists/engagement-scoring-checklist.md +227 -0
  914. package/pro/squads/hormozi/checklists/exit-interview-checklist.md +206 -0
  915. package/pro/squads/hormozi/checklists/fast-cash-checklist.md +434 -0
  916. package/pro/squads/hormozi/checklists/goated-ads-checklist.md +558 -0
  917. package/pro/squads/hormozi/checklists/golden-ratios-veto.md +340 -0
  918. package/pro/squads/hormozi/checklists/guarantees-checklist.md +312 -0
  919. package/pro/squads/hormozi/checklists/hooks-checklist.md +621 -0
  920. package/pro/squads/hormozi/checklists/landing-page-checklist.md +514 -0
  921. package/pro/squads/hormozi/checklists/launch-checklist.md +1033 -0
  922. package/pro/squads/hormozi/checklists/lead-magnet-checklist.md +421 -0
  923. package/pro/squads/hormozi/checklists/lead-nurture-checklist.md +730 -0
  924. package/pro/squads/hormozi/checklists/ltv-checklist.md +953 -0
  925. package/pro/squads/hormozi/checklists/market-validation-veto.md +248 -0
  926. package/pro/squads/hormozi/checklists/marketing-machine-checklist.md +570 -0
  927. package/pro/squads/hormozi/checklists/money-model-checklist.md +226 -0
  928. package/pro/squads/hormozi/checklists/naming-framework-checklist.md +325 -0
  929. package/pro/squads/hormozi/checklists/offer-architecture-checklist.md +542 -0
  930. package/pro/squads/hormozi/checklists/onboarding-30-day-checklist.md +223 -0
  931. package/pro/squads/hormozi/checklists/price-raise-checklist.md +399 -0
  932. package/pro/squads/hormozi/checklists/pricing-checklist.md +228 -0
  933. package/pro/squads/hormozi/checklists/pricing-framework-checklist.md +627 -0
  934. package/pro/squads/hormozi/checklists/registration-page-checklist.md +429 -0
  935. package/pro/squads/hormozi/checklists/retention-checklist.md +977 -0
  936. package/pro/squads/hormozi/checklists/sales-page-checklist.md +682 -0
  937. package/pro/squads/hormozi/checklists/scarcity-urgency-checklist.md +423 -0
  938. package/pro/squads/hormozi/checklists/subscription-model-checklist.md +342 -0
  939. package/pro/squads/hormozi/checklists/upsell-page-checklist.md +374 -0
  940. package/pro/squads/hormozi/checklists/upsell-sequence-checklist.md +217 -0
  941. package/pro/squads/hormozi/checklists/upsell-strategy-checklist.md +424 -0
  942. package/pro/squads/hormozi/checklists/value-equation-checklist.md +387 -0
  943. package/pro/squads/hormozi/checklists/vsl-script-checklist.md +464 -0
  944. package/pro/squads/hormozi/checklists/workshop-launch-checklist.md +585 -0
  945. package/pro/squads/hormozi/config/veto-conditions.yaml +324 -0
  946. package/pro/squads/hormozi/config.yaml +617 -0
  947. package/pro/squads/hormozi/data/antipatterns-database.yaml +402 -0
  948. package/pro/squads/hormozi/data/hormozi-case-library.yaml +469 -0
  949. package/pro/squads/hormozi/data/hormozi-infrastructure-map.yaml +16 -0
  950. package/pro/squads/hormozi/data/hormozi-service-catalog.yaml +14 -0
  951. package/pro/squads/hormozi/data/minds/hormozi-ads_dna.yaml +75 -0
  952. package/pro/squads/hormozi/data/minds/hormozi-advisor_dna.yaml +112 -0
  953. package/pro/squads/hormozi/data/minds/hormozi-audit_dna.yaml +124 -0
  954. package/pro/squads/hormozi/data/minds/hormozi-closer_dna.yaml +109 -0
  955. package/pro/squads/hormozi/data/minds/hormozi-content_dna.yaml +112 -0
  956. package/pro/squads/hormozi/data/minds/hormozi-copy_dna.yaml +115 -0
  957. package/pro/squads/hormozi/data/minds/hormozi-hooks_dna.yaml +134 -0
  958. package/pro/squads/hormozi/data/minds/hormozi-launch_dna.yaml +122 -0
  959. package/pro/squads/hormozi/data/minds/hormozi-leads_dna.yaml +64 -0
  960. package/pro/squads/hormozi/data/minds/hormozi-models_dna.yaml +111 -0
  961. package/pro/squads/hormozi/data/minds/hormozi-offers_dna.yaml +100 -0
  962. package/pro/squads/hormozi/data/minds/hormozi-pricing_dna.yaml +129 -0
  963. package/pro/squads/hormozi/data/minds/hormozi-retention_dna.yaml +120 -0
  964. package/pro/squads/hormozi/data/minds/hormozi-scale_dna.yaml +112 -0
  965. package/pro/squads/hormozi/data/minds/hormozi-thinking-dna.yaml +421 -0
  966. package/pro/squads/hormozi/data/minds/hormozi-voice-dna.yaml +548 -0
  967. package/pro/squads/hormozi/data/minds/hormozi-workshop_dna.yaml +109 -0
  968. package/pro/squads/hormozi/data/quality-gates.yaml +76 -0
  969. package/pro/squads/hormozi/data/scaling-by-business-type.yaml +166 -0
  970. package/pro/squads/hormozi/data/source-index.yaml +215 -0
  971. package/pro/squads/hormozi/data/swipefiles/ads-swipefile.yaml +378 -0
  972. package/pro/squads/hormozi/data/swipefiles/blueprint-swipefile.yaml +1223 -0
  973. package/pro/squads/hormozi/data/swipefiles/branding-swipefile.yaml +142 -0
  974. package/pro/squads/hormozi/data/swipefiles/closing-swipefile.yaml +716 -0
  975. package/pro/squads/hormozi/data/swipefiles/content-swipefile.yaml +579 -0
  976. package/pro/squads/hormozi/data/swipefiles/copy-sales-swipefile.yaml +1085 -0
  977. package/pro/squads/hormozi/data/swipefiles/fast-cash-swipefile.yaml +190 -0
  978. package/pro/squads/hormozi/data/swipefiles/goated-ads-swipefile.yaml +770 -0
  979. package/pro/squads/hormozi/data/swipefiles/hooks-swipefile.yaml +1982 -0
  980. package/pro/squads/hormozi/data/swipefiles/lead-nurture-swipefile.yaml +191 -0
  981. package/pro/squads/hormozi/data/swipefiles/ltv-swipefile.yaml +216 -0
  982. package/pro/squads/hormozi/data/swipefiles/marketing-machine-swipefile.yaml +191 -0
  983. package/pro/squads/hormozi/data/swipefiles/naming-swipefile-brasil.yaml +596 -0
  984. package/pro/squads/hormozi/data/swipefiles/naming-swipefile-global.yaml +543 -0
  985. package/pro/squads/hormozi/data/swipefiles/price-raise-swipefile.yaml +213 -0
  986. package/pro/squads/hormozi/data/swipefiles/pricing-swipefile.yaml +203 -0
  987. package/pro/squads/hormozi/data/swipefiles/proof-swipefile.yaml +443 -0
  988. package/pro/squads/hormozi/data/swipefiles/retention-swipefile.yaml +245 -0
  989. package/pro/squads/hormozi/data/swipefiles/scaling-roadmap-swipefile.yaml +529 -0
  990. package/pro/squads/hormozi/data/swipefiles/workshop-launch-swipefile.yaml +912 -0
  991. package/pro/squads/hormozi/data/token-registry.yaml +89 -0
  992. package/pro/squads/hormozi/docs/MIGRATION-PLAN-AGENT-CONFORMITY.md +326 -0
  993. package/pro/squads/hormozi/docs/frameworks/100m-offers-framework.md +363 -0
  994. package/pro/squads/hormozi/docs/frameworks/attraction-offers-framework.md +720 -0
  995. package/pro/squads/hormozi/docs/frameworks/bonuses-framework.md +501 -0
  996. package/pro/squads/hormozi/docs/frameworks/core-four-framework.md +685 -0
  997. package/pro/squads/hormozi/docs/frameworks/goated-ads-framework.md +916 -0
  998. package/pro/squads/hormozi/docs/frameworks/guarantees-framework.md +709 -0
  999. package/pro/squads/hormozi/docs/frameworks/hooks-framework.md +1007 -0
  1000. package/pro/squads/hormozi/docs/frameworks/lead-magnet-framework.md +485 -0
  1001. package/pro/squads/hormozi/docs/frameworks/money-models-framework.md +891 -0
  1002. package/pro/squads/hormozi/docs/frameworks/scarcity-framework.md +793 -0
  1003. package/pro/squads/hormozi/docs/frameworks/urgency-framework.md +533 -0
  1004. package/pro/squads/hormozi/docs/frameworks/value-equation-framework.md +428 -0
  1005. package/pro/squads/hormozi/docs/frameworks/workshop-framework.md +289 -0
  1006. package/pro/squads/hormozi/docs/sops/.parallel-execution-plan-batch2.md +344 -0
  1007. package/pro/squads/hormozi/docs/sops/.parallel-execution-plan-batch3.md +331 -0
  1008. package/pro/squads/hormozi/docs/sops/.parallel-execution-plan.md +558 -0
  1009. package/pro/squads/hormozi/docs/sops/ad-angles-sop.md +1247 -0
  1010. package/pro/squads/hormozi/docs/sops/ad-angles-squad-blueprint.yaml +739 -0
  1011. package/pro/squads/hormozi/docs/sops/affiliates-referrals-sop.md +1105 -0
  1012. package/pro/squads/hormozi/docs/sops/affiliates-referrals-squad-blueprint.yaml +1131 -0
  1013. package/pro/squads/hormozi/docs/sops/bonuses-sop.md +1014 -0
  1014. package/pro/squads/hormozi/docs/sops/bonuses-squad-blueprint.yaml +994 -0
  1015. package/pro/squads/hormozi/docs/sops/branding-sop.md +870 -0
  1016. package/pro/squads/hormozi/docs/sops/branding-squad-blueprint.yaml +1107 -0
  1017. package/pro/squads/hormozi/docs/sops/content-creation-sop.md +877 -0
  1018. package/pro/squads/hormozi/docs/sops/content-creation-squad-blueprint.yaml +1362 -0
  1019. package/pro/squads/hormozi/docs/sops/core-four-sop.md +1231 -0
  1020. package/pro/squads/hormozi/docs/sops/core-four-squad-blueprint.yaml +1205 -0
  1021. package/pro/squads/hormozi/docs/sops/downsell-strategy-sop.md +832 -0
  1022. package/pro/squads/hormozi/docs/sops/downsell-strategy-squad-blueprint.yaml +1230 -0
  1023. package/pro/squads/hormozi/docs/sops/email-campaign-sop.md +1547 -0
  1024. package/pro/squads/hormozi/docs/sops/email-campaign-squad-blueprint.yaml +1150 -0
  1025. package/pro/squads/hormozi/docs/sops/fast-cash-sop.md +1224 -0
  1026. package/pro/squads/hormozi/docs/sops/fast-cash-squad-blueprint.yaml +1128 -0
  1027. package/pro/squads/hormozi/docs/sops/goated-ads-sop.md +671 -0
  1028. package/pro/squads/hormozi/docs/sops/goated-ads-squad-blueprint.yaml +627 -0
  1029. package/pro/squads/hormozi/docs/sops/guarantees-sop.md +1017 -0
  1030. package/pro/squads/hormozi/docs/sops/guarantees-squad-blueprint.yaml +1252 -0
  1031. package/pro/squads/hormozi/docs/sops/hooks-sop.md +958 -0
  1032. package/pro/squads/hormozi/docs/sops/hooks-squad-blueprint.yaml +740 -0
  1033. package/pro/squads/hormozi/docs/sops/landing-page-sop.md +1079 -0
  1034. package/pro/squads/hormozi/docs/sops/landing-page-squad-blueprint.yaml +1373 -0
  1035. package/pro/squads/hormozi/docs/sops/launch-sop.md +1055 -0
  1036. package/pro/squads/hormozi/docs/sops/launch-squad-blueprint.yaml +1276 -0
  1037. package/pro/squads/hormozi/docs/sops/lead-magnet-sop.md +807 -0
  1038. package/pro/squads/hormozi/docs/sops/lead-magnet-squad-blueprint.yaml +1144 -0
  1039. package/pro/squads/hormozi/docs/sops/lead-nurture-sop.md +867 -0
  1040. package/pro/squads/hormozi/docs/sops/lead-nurture-squad-blueprint.yaml +1168 -0
  1041. package/pro/squads/hormozi/docs/sops/ltv-sop.md +897 -0
  1042. package/pro/squads/hormozi/docs/sops/ltv-squad-blueprint.yaml +1286 -0
  1043. package/pro/squads/hormozi/docs/sops/marketing-machine-sop.md +1257 -0
  1044. package/pro/squads/hormozi/docs/sops/marketing-machine-squad-blueprint.yaml +1433 -0
  1045. package/pro/squads/hormozi/docs/sops/naming-framework-sop.md +1006 -0
  1046. package/pro/squads/hormozi/docs/sops/naming-framework-squad-blueprint.yaml +543 -0
  1047. package/pro/squads/hormozi/docs/sops/offer-architecture-sop.md +843 -0
  1048. package/pro/squads/hormozi/docs/sops/offer-architecture-squad-blueprint.yaml +794 -0
  1049. package/pro/squads/hormozi/docs/sops/price-raise-sop.md +983 -0
  1050. package/pro/squads/hormozi/docs/sops/price-raise-squad-blueprint.yaml +919 -0
  1051. package/pro/squads/hormozi/docs/sops/pricing-framework-sop.md +459 -0
  1052. package/pro/squads/hormozi/docs/sops/pricing-squad-blueprint.yaml +517 -0
  1053. package/pro/squads/hormozi/docs/sops/registration-page-sop.md +1111 -0
  1054. package/pro/squads/hormozi/docs/sops/registration-page-squad-blueprint.yaml +762 -0
  1055. package/pro/squads/hormozi/docs/sops/retention-sop.md +1065 -0
  1056. package/pro/squads/hormozi/docs/sops/retention-squad-blueprint.yaml +1356 -0
  1057. package/pro/squads/hormozi/docs/sops/sales-page-sop.md +924 -0
  1058. package/pro/squads/hormozi/docs/sops/sales-page-squad-blueprint.yaml +1096 -0
  1059. package/pro/squads/hormozi/docs/sops/scarcity-urgency-sop.md +1092 -0
  1060. package/pro/squads/hormozi/docs/sops/scarcity-urgency-squad-blueprint.yaml +1206 -0
  1061. package/pro/squads/hormozi/docs/sops/subscription-model-sop.md +1077 -0
  1062. package/pro/squads/hormozi/docs/sops/subscription-model-squad-blueprint.yaml +1007 -0
  1063. package/pro/squads/hormozi/docs/sops/upsell-page-sop.md +886 -0
  1064. package/pro/squads/hormozi/docs/sops/upsell-page-squad-blueprint.yaml +1100 -0
  1065. package/pro/squads/hormozi/docs/sops/upsell-strategy-sop.md +1265 -0
  1066. package/pro/squads/hormozi/docs/sops/upsell-strategy-squad-blueprint.yaml +1245 -0
  1067. package/pro/squads/hormozi/docs/sops/value-equation-sop.md +793 -0
  1068. package/pro/squads/hormozi/docs/sops/value-equation-squad-blueprint.yaml +777 -0
  1069. package/pro/squads/hormozi/docs/sops/vsl-script-sop.md +1145 -0
  1070. package/pro/squads/hormozi/docs/sops/vsl-script-squad-blueprint.yaml +777 -0
  1071. package/pro/squads/hormozi/docs/sops/workshop-launch-sop.md +1273 -0
  1072. package/pro/squads/hormozi/docs/sops/workshop-launch-squad-blueprint.yaml +1292 -0
  1073. package/pro/squads/hormozi/docs/validation-report-2026-02-10.md +79 -0
  1074. package/pro/squads/hormozi/scripts/generate-hormozi-greeting.cjs +132 -0
  1075. package/pro/squads/hormozi/scripts/load-context.cjs +139 -0
  1076. package/pro/squads/hormozi/scripts/resolve-readiness.cjs +45 -0
  1077. package/pro/squads/hormozi/scripts/runtime-paths.cjs +44 -0
  1078. package/pro/squads/hormozi/scripts/set-active-context.cjs +104 -0
  1079. package/pro/squads/hormozi/scripts/show-context.cjs +22 -0
  1080. package/pro/squads/hormozi/scripts/validate-antipattern.py +287 -0
  1081. package/pro/squads/hormozi/scripts/validate-handoff.py +166 -0
  1082. package/pro/squads/hormozi/scripts/validate-mvn.py +198 -0
  1083. package/pro/squads/hormozi/sops/pricing-squad-blueprint.yaml +1445 -0
  1084. package/pro/squads/hormozi/squad-io.yaml +917 -0
  1085. package/pro/squads/hormozi/tasks/architect-offer-stack.md +228 -0
  1086. package/pro/squads/hormozi/tasks/build-marketing-machine.md +205 -0
  1087. package/pro/squads/hormozi/tasks/build-scaling-team.md +271 -0
  1088. package/pro/squads/hormozi/tasks/calculate-30-day-profit.md +418 -0
  1089. package/pro/squads/hormozi/tasks/calculate-ppd.md +200 -0
  1090. package/pro/squads/hormozi/tasks/create-ad-angles.md +182 -0
  1091. package/pro/squads/hormozi/tasks/create-ad-campaign.md +399 -0
  1092. package/pro/squads/hormozi/tasks/create-bonus-stack.md +287 -0
  1093. package/pro/squads/hormozi/tasks/create-closer-script.md +240 -0
  1094. package/pro/squads/hormozi/tasks/create-content-unit.md +176 -0
  1095. package/pro/squads/hormozi/tasks/create-contingency-plan.md +426 -0
  1096. package/pro/squads/hormozi/tasks/create-downsell-sequence.md +427 -0
  1097. package/pro/squads/hormozi/tasks/create-email-sequence.md +196 -0
  1098. package/pro/squads/hormozi/tasks/create-engagement-scoring.md +484 -0
  1099. package/pro/squads/hormozi/tasks/create-exit-interview-system.md +382 -0
  1100. package/pro/squads/hormozi/tasks/create-grand-slam-offer.md +499 -0
  1101. package/pro/squads/hormozi/tasks/create-guarantee-stack.md +246 -0
  1102. package/pro/squads/hormozi/tasks/create-hook-set.md +368 -0
  1103. package/pro/squads/hormozi/tasks/create-landing-page.md +130 -0
  1104. package/pro/squads/hormozi/tasks/create-launch-narrative.md +406 -0
  1105. package/pro/squads/hormozi/tasks/create-launch-timeline.md +473 -0
  1106. package/pro/squads/hormozi/tasks/create-lead-magnet.md +479 -0
  1107. package/pro/squads/hormozi/tasks/create-nurture-sequence.md +207 -0
  1108. package/pro/squads/hormozi/tasks/create-offer-name.md +165 -0
  1109. package/pro/squads/hormozi/tasks/create-pricing-strategy.md +177 -0
  1110. package/pro/squads/hormozi/tasks/create-registration-page.md +190 -0
  1111. package/pro/squads/hormozi/tasks/create-sales-page.md +157 -0
  1112. package/pro/squads/hormozi/tasks/create-upsell-page.md +138 -0
  1113. package/pro/squads/hormozi/tasks/create-upsell-sequence.md +449 -0
  1114. package/pro/squads/hormozi/tasks/create-vsl-script.md +175 -0
  1115. package/pro/squads/hormozi/tasks/design-brand-identity.md +186 -0
  1116. package/pro/squads/hormozi/tasks/design-continuity-offer.md +462 -0
  1117. package/pro/squads/hormozi/tasks/design-core-four-strategy.md +733 -0
  1118. package/pro/squads/hormozi/tasks/design-customer-journey.md +426 -0
  1119. package/pro/squads/hormozi/tasks/design-launch-value-stack.md +379 -0
  1120. package/pro/squads/hormozi/tasks/design-money-model.md +391 -0
  1121. package/pro/squads/hormozi/tasks/design-onboarding-sequence.md +380 -0
  1122. package/pro/squads/hormozi/tasks/design-scarcity-urgency.md +216 -0
  1123. package/pro/squads/hormozi/tasks/design-subscription-model.md +162 -0
  1124. package/pro/squads/hormozi/tasks/design-systems-automation.md +234 -0
  1125. package/pro/squads/hormozi/tasks/design-workshop.md +167 -0
  1126. package/pro/squads/hormozi/tasks/diagnose-business-stage.md +323 -0
  1127. package/pro/squads/hormozi/tasks/diagnose-cfa-level.md +198 -0
  1128. package/pro/squads/hormozi/tasks/diagnose-churn-rate.md +265 -0
  1129. package/pro/squads/hormozi/tasks/diagnose-scaling-constraint.md +257 -0
  1130. package/pro/squads/hormozi/tasks/diagnose-value-equation.md +431 -0
  1131. package/pro/squads/hormozi/tasks/discover-activation-points.md +329 -0
  1132. package/pro/squads/hormozi/tasks/execute-price-raise.md +221 -0
  1133. package/pro/squads/hormozi/tasks/execute-rule-of-100.md +423 -0
  1134. package/pro/squads/hormozi/tasks/generate-fast-cash.md +217 -0
  1135. package/pro/squads/hormozi/tasks/implement-5-horsemen.md +430 -0
  1136. package/pro/squads/hormozi/tasks/optimize-ltv-cac-ratio.md +505 -0
  1137. package/pro/squads/hormozi/tasks/plan-launch-evento.md +395 -0
  1138. package/pro/squads/hormozi/tasks/run-launch-post-mortem.md +461 -0
  1139. package/pro/squads/hormozi/tasks/setup-affiliate-program.md +406 -0
  1140. package/pro/squads/hormozi/tasks/setup-war-room.md +407 -0
  1141. package/pro/squads/hormozi/tasks/validate-market-selection.md +331 -0
  1142. package/pro/squads/hormozi/templates/capacity-planning-worksheet.yaml +151 -0
  1143. package/pro/squads/hormozi/templates/grand-slam-offer-output.yaml +462 -0
  1144. package/pro/squads/hormozi/templates/grand-slam-offer-tmpl.md +34 -0
  1145. package/pro/squads/hormozi/templates/handoff-context-tmpl.yaml +215 -0
  1146. package/pro/squads/hormozi/templates/money-model-tmpl.md +29 -0
  1147. package/pro/squads/hormozi/templates/offer-analysis-tmpl.md +33 -0
  1148. package/pro/squads/hormozi/templates/value-equation-scorecard.md +267 -0
  1149. package/pro/squads/hormozi/workflows/wf-context-diagnosis.yaml +569 -0
  1150. package/pro/squads/hormozi/workflows/wf-full-launch-sequence.yaml +995 -0
  1151. package/pro/squads/hormozi/workflows/wf-grand-slam-offer.yaml +1138 -0
  1152. package/pro/squads/hormozi/workflows/wf-growth-decision.yaml +135 -0
  1153. package/pro/squads/hormozi/workflows/wf-lead-magnet-pipeline.yaml +1147 -0
  1154. package/pro/squads/hormozi/workflows/wf-money-model-design.yaml +1168 -0
  1155. package/pro/squads/hormozi/workflows/wf-opportunity-screening.yaml +511 -0
  1156. package/pro/squads/hormozi/workflows/wf-paid-ads-campaign.yaml +1204 -0
  1157. package/pro/squads/hormozi/workflows/wf-scaling-diagnostic.yaml +636 -0
  1158. package/pro/squads/index.js +145 -0
  1159. package/pro/squads/spy/HEADLINE.md +3 -0
  1160. package/pro/squads/spy/README.md +115 -0
  1161. package/pro/squads/spy/agents/bench-analyst.md +654 -0
  1162. package/pro/squads/spy/agents/research-head.md +673 -0
  1163. package/pro/squads/spy/agents/spy.md +498 -0
  1164. package/pro/squads/spy/checklists/bench-quality-checklist.md +119 -0
  1165. package/pro/squads/spy/checklists/content-creation-checklist.md +136 -0
  1166. package/pro/squads/spy/config.yaml +587 -0
  1167. package/pro/squads/spy/data/bench-data-sources.yaml +46 -0
  1168. package/pro/squads/spy/data/bench-dimension-packs.yaml +182 -0
  1169. package/pro/squads/spy/data/bench-output-formats.yaml +44 -0
  1170. package/pro/squads/spy/data/bench-skeleton.md +184 -0
  1171. package/pro/squads/spy/data/capability-tools.yaml +109 -0
  1172. package/pro/squads/spy/data/knowledge-base.md +337 -0
  1173. package/pro/squads/spy/data/quality-gates.yaml +48 -0
  1174. package/pro/squads/spy/data/spy-infrastructure-map.yaml +27 -0
  1175. package/pro/squads/spy/data/spy-service-catalog.yaml +13 -0
  1176. package/pro/squads/spy/data/token-registry.yaml +57 -0
  1177. package/pro/squads/spy/data/viral-content-framework.md +304 -0
  1178. package/pro/squads/spy/docs/tool-discovery-report.md +110 -0
  1179. package/pro/squads/spy/docs/tool-integration-plan.md +47 -0
  1180. package/pro/squads/spy/scripts/prepare-benchmark-workspace.sh +14 -0
  1181. package/pro/squads/spy/scripts/publish-benchmark-report.sh +16 -0
  1182. package/pro/squads/spy/squad-io.yaml +24 -0
  1183. package/pro/squads/spy/tasks/bench-absorb.md +266 -0
  1184. package/pro/squads/spy/tasks/bench-battle-card.md +398 -0
  1185. package/pro/squads/spy/tasks/bench-codebase-recon.md +339 -0
  1186. package/pro/squads/spy/tasks/bench-company-intel.md +360 -0
  1187. package/pro/squads/spy/tasks/bench-deep-compare.md +573 -0
  1188. package/pro/squads/spy/tasks/bench-detect.md +349 -0
  1189. package/pro/squads/spy/tasks/bench-framework.md +105 -0
  1190. package/pro/squads/spy/tasks/bench-gap-analysis.md +168 -0
  1191. package/pro/squads/spy/tasks/bench-gap-company.md +48 -0
  1192. package/pro/squads/spy/tasks/bench-gap-llm.md +48 -0
  1193. package/pro/squads/spy/tasks/bench-gap-product.md +48 -0
  1194. package/pro/squads/spy/tasks/bench-gap-technology.md +48 -0
  1195. package/pro/squads/spy/tasks/bench-gap.md +78 -0
  1196. package/pro/squads/spy/tasks/bench-hooks.md +209 -0
  1197. package/pro/squads/spy/tasks/bench-inventory.md +98 -0
  1198. package/pro/squads/spy/tasks/bench-llm-eval.md +359 -0
  1199. package/pro/squads/spy/tasks/bench-matrix-codebase.md +50 -0
  1200. package/pro/squads/spy/tasks/bench-matrix-company.md +50 -0
  1201. package/pro/squads/spy/tasks/bench-matrix-llm.md +50 -0
  1202. package/pro/squads/spy/tasks/bench-matrix-product.md +50 -0
  1203. package/pro/squads/spy/tasks/bench-matrix-technology.md +50 -0
  1204. package/pro/squads/spy/tasks/bench-matrix.md +78 -0
  1205. package/pro/squads/spy/tasks/bench-migrate.md +207 -0
  1206. package/pro/squads/spy/tasks/bench-product-research.md +370 -0
  1207. package/pro/squads/spy/tasks/bench-quick-compare.md +287 -0
  1208. package/pro/squads/spy/tasks/bench-report-load-evidence.md +49 -0
  1209. package/pro/squads/spy/tasks/bench-report-publish.md +49 -0
  1210. package/pro/squads/spy/tasks/bench-report-synthesize-findings.md +48 -0
  1211. package/pro/squads/spy/tasks/bench-report.md +70 -0
  1212. package/pro/squads/spy/tasks/bench-score.md +406 -0
  1213. package/pro/squads/spy/tasks/bench-synergy.md +248 -0
  1214. package/pro/squads/spy/tasks/bench-tech-eval.md +417 -0
  1215. package/pro/squads/spy/tasks/bench-traceability.md +225 -0
  1216. package/pro/squads/spy/tasks/deep-research-collect.md +50 -0
  1217. package/pro/squads/spy/tasks/deep-research-comments.md +48 -0
  1218. package/pro/squads/spy/tasks/deep-research-patterns.md +49 -0
  1219. package/pro/squads/spy/tasks/deep-research-publish.md +49 -0
  1220. package/pro/squads/spy/tasks/deep-research-select.md +48 -0
  1221. package/pro/squads/spy/tasks/deep-research-synthesis.md +49 -0
  1222. package/pro/squads/spy/tasks/deep-research-transcribe.md +48 -0
  1223. package/pro/squads/spy/tasks/deep-research.md +116 -0
  1224. package/pro/squads/spy/tasks/quick-analysis.md +130 -0
  1225. package/pro/squads/spy/templates/bench-battle-card-tmpl.md +52 -0
  1226. package/pro/squads/spy/templates/bench-codebase-comparativo-tmpl.md +84 -0
  1227. package/pro/squads/spy/templates/bench-codebase-scores-tmpl.md +41 -0
  1228. package/pro/squads/spy/templates/bench-comparativo-tmpl.md +86 -0
  1229. package/pro/squads/spy/templates/bench-deep-compare-tmpl.md +117 -0
  1230. package/pro/squads/spy/templates/bench-gap-tmpl.md +194 -0
  1231. package/pro/squads/spy/templates/bench-matrix-tmpl.md +130 -0
  1232. package/pro/squads/spy/templates/bench-migration-tmpl.md +127 -0
  1233. package/pro/squads/spy/templates/bench-quadrant-tmpl.md +227 -0
  1234. package/pro/squads/spy/templates/bench-report-tmpl.md +167 -0
  1235. package/pro/squads/spy/templates/bench-scorecard-tmpl.md +113 -0
  1236. package/pro/squads/spy/templates/bench-scores-tmpl.md +43 -0
  1237. package/pro/squads/spy/templates/bench-synergy-tmpl.md +381 -0
  1238. package/pro/squads/spy/templates/cross-domain-handoff-tmpl.yaml +9 -0
  1239. package/pro/squads/spy/templates/player-analysis-tmpl.md +145 -0
  1240. package/pro/squads/spy/workflows/bench-comparison-pipeline.yaml +1193 -0
  1241. package/pro/squads/squad-creator/CHANGELOG.md +162 -0
  1242. package/pro/squads/squad-creator/HEADLINE.md +3 -0
  1243. package/pro/squads/squad-creator/README.md +1176 -0
  1244. package/pro/squads/squad-creator/agents/squad-chief.md +1449 -0
  1245. package/pro/squads/squad-creator/checklists/agent-quality-gate.md +433 -0
  1246. package/pro/squads/squad-creator/checklists/analysis-quality-checklist.md +70 -0
  1247. package/pro/squads/squad-creator/checklists/create-agent-checklist.md +239 -0
  1248. package/pro/squads/squad-creator/checklists/create-squad-checklist.md +326 -0
  1249. package/pro/squads/squad-creator/checklists/create-task-checklist.md +225 -0
  1250. package/pro/squads/squad-creator/checklists/create-workflow-checklist.md +243 -0
  1251. package/pro/squads/squad-creator/checklists/greeting-script-checklist.md +110 -0
  1252. package/pro/squads/squad-creator/checklists/install-skills-checklist.md +197 -0
  1253. package/pro/squads/squad-creator/checklists/pipeline-runner-checklist.md +135 -0
  1254. package/pro/squads/squad-creator/checklists/report-quality-checklist.md +49 -0
  1255. package/pro/squads/squad-creator/checklists/smoke-test-agent.md +313 -0
  1256. package/pro/squads/squad-creator/checklists/squad-checklist.md +1000 -0
  1257. package/pro/squads/squad-creator/checklists/squad-consistency-patterns.md +134 -0
  1258. package/pro/squads/squad-creator/checklists/squad-overview-checklist.md +381 -0
  1259. package/pro/squads/squad-creator/checklists/squad-structural-completeness.md +394 -0
  1260. package/pro/squads/squad-creator/checklists/task-anatomy-checklist.md +687 -0
  1261. package/pro/squads/squad-creator/checklists/upgrade-squad-checklist.md +222 -0
  1262. package/pro/squads/squad-creator/config/squad-config.yaml +202 -0
  1263. package/pro/squads/squad-creator/config/workflow-yaml-schema.yaml +323 -0
  1264. package/pro/squads/squad-creator/config.yaml +429 -0
  1265. package/pro/squads/squad-creator/data/base-core-contract.yaml +22 -0
  1266. package/pro/squads/squad-creator/data/baselines/ecosystem-baseline.yaml +88 -0
  1267. package/pro/squads/squad-creator/data/baselines/initial-radar.yaml +89 -0
  1268. package/pro/squads/squad-creator/data/best-practices.md +986 -0
  1269. package/pro/squads/squad-creator/data/cc-agent-schema-ref.yaml +405 -0
  1270. package/pro/squads/squad-creator/data/core-heuristics.md +510 -0
  1271. package/pro/squads/squad-creator/data/decision-heuristics-framework.md +695 -0
  1272. package/pro/squads/squad-creator/data/design-heuristics-diagnostic-systems.md +140 -0
  1273. package/pro/squads/squad-creator/data/executor-decision-tree.md +774 -0
  1274. package/pro/squads/squad-creator/data/executor-matrix-framework.md +441 -0
  1275. package/pro/squads/squad-creator/data/hybridops-patterns.md +1351 -0
  1276. package/pro/squads/squad-creator/data/journey-log-events.yaml +72 -0
  1277. package/pro/squads/squad-creator/data/kaizen-legacy/kaizen-infrastructure-map.yaml +16 -0
  1278. package/pro/squads/squad-creator/data/kpi-baseline.yaml +72 -0
  1279. package/pro/squads/squad-creator/data/pipeline-patterns.md +352 -0
  1280. package/pro/squads/squad-creator/data/process-token-map.yaml +225 -0
  1281. package/pro/squads/squad-creator/data/quality-dimensions-framework.md +405 -0
  1282. package/pro/squads/squad-creator/data/quality-gates.yaml +135 -0
  1283. package/pro/squads/squad-creator/data/radar/initial-radar.yaml +76 -0
  1284. package/pro/squads/squad-creator/data/recommendation-tracker.yaml +53 -0
  1285. package/pro/squads/squad-creator/data/reports/self-improve-2026-02-15.md +111 -0
  1286. package/pro/squads/squad-creator/data/reports/week-07-2026-02-15.md +210 -0
  1287. package/pro/squads/squad-creator/data/reports/week-09-2026-02-28.md +295 -0
  1288. package/pro/squads/squad-creator/data/reports/week-14-2026-04-04.md +234 -0
  1289. package/pro/squads/squad-creator/data/squad-analytics-guide.md +252 -0
  1290. package/pro/squads/squad-creator/data/squad-creator-infrastructure-map.yaml +36 -0
  1291. package/pro/squads/squad-creator/data/squad-creator-service-catalog.yaml +17 -0
  1292. package/pro/squads/squad-creator/data/squad-kb.md +987 -0
  1293. package/pro/squads/squad-creator/data/squad-registry.yaml +14 -0
  1294. package/pro/squads/squad-creator/data/squad-type-definitions.yaml +578 -0
  1295. package/pro/squads/squad-creator/data/tier-system-framework.md +475 -0
  1296. package/pro/squads/squad-creator/data/tool-discovery-sources.yaml +68 -0
  1297. package/pro/squads/squad-creator/docs/ADR-001-model-tier-qualification.md +344 -0
  1298. package/pro/squads/squad-creator/docs/AGENT-COLLABORATION.md +820 -0
  1299. package/pro/squads/squad-creator/docs/COMMANDS.md +895 -0
  1300. package/pro/squads/squad-creator/docs/CONCEPTS.md +979 -0
  1301. package/pro/squads/squad-creator/docs/FAQ.md +773 -0
  1302. package/pro/squads/squad-creator/docs/HITL-FLOW.md +406 -0
  1303. package/pro/squads/squad-creator/docs/MODEL-TIER-QUALIFICATION.md +337 -0
  1304. package/pro/squads/squad-creator/docs/PATTERN-LIBRARY.md +620 -0
  1305. package/pro/squads/squad-creator/docs/PEDRO-VALERIO-ARCHITECTURE.md +456 -0
  1306. package/pro/squads/squad-creator/docs/POR-ONDE-COMECAR.md +211 -0
  1307. package/pro/squads/squad-creator/docs/QUICK-START.md +205 -0
  1308. package/pro/squads/squad-creator/docs/TROUBLESHOOTING.md +412 -0
  1309. package/pro/squads/squad-creator/docs/TUTORIAL-COMPLETO.md +458 -0
  1310. package/pro/squads/squad-creator/docs/sop-extraction-process.md +675 -0
  1311. package/pro/squads/squad-creator/docs/squad-free-vs-open.md +596 -0
  1312. package/pro/squads/squad-creator/docs/task-optimization-framework.md +229 -0
  1313. package/pro/squads/squad-creator/package-lock.json +38 -0
  1314. package/pro/squads/squad-creator/package.json +27 -0
  1315. package/pro/squads/squad-creator/protocols/ai-first-governance.md +63 -0
  1316. package/pro/squads/squad-creator/requirements.txt +1 -0
  1317. package/pro/squads/squad-creator/rules/agent-naming-convention.md +58 -0
  1318. package/pro/squads/squad-creator/rules/recommendation-defensibility.md +161 -0
  1319. package/pro/squads/squad-creator/schemas/agent-persona.schema.json +64 -0
  1320. package/pro/squads/squad-creator/schemas/squad-config.schema.json +92 -0
  1321. package/pro/squads/squad-creator/schemas/validation-report.schema.json +158 -0
  1322. package/pro/squads/squad-creator/scripts/README.md +262 -0
  1323. package/pro/squads/squad-creator/scripts/checklist_validator.py +451 -0
  1324. package/pro/squads/squad-creator/scripts/coherence-validator.py +62 -0
  1325. package/pro/squads/squad-creator/scripts/dependency_check.py +341 -0
  1326. package/pro/squads/squad-creator/scripts/detect-environment-contract.cjs +583 -0
  1327. package/pro/squads/squad-creator/scripts/export-antigravity-workflows.cjs +199 -0
  1328. package/pro/squads/squad-creator/scripts/generate-squad-greeting.js +1150 -0
  1329. package/pro/squads/squad-creator/scripts/generate-squad-guide.js +596 -0
  1330. package/pro/squads/squad-creator/scripts/inventory.py +286 -0
  1331. package/pro/squads/squad-creator/scripts/kaizen/kaizen-trigger.sh +126 -0
  1332. package/pro/squads/squad-creator/scripts/lib/config-loader.js +151 -0
  1333. package/pro/squads/squad-creator/scripts/lib/doom-loop-detector.js +120 -0
  1334. package/pro/squads/squad-creator/scripts/lib/squad-runtime-paths.cjs +187 -0
  1335. package/pro/squads/squad-creator/scripts/lib/validate-runtime-state.cjs +271 -0
  1336. package/pro/squads/squad-creator/scripts/naming_validator.py +303 -0
  1337. package/pro/squads/squad-creator/scripts/on-specialist-complete.py +98 -0
  1338. package/pro/squads/squad-creator/scripts/refresh-registry.py +933 -0
  1339. package/pro/squads/squad-creator/scripts/rename-squad.sh +395 -0
  1340. package/pro/squads/squad-creator/scripts/scaffold-squad.cjs +317 -0
  1341. package/pro/squads/squad-creator/scripts/scoring.py +65 -0
  1342. package/pro/squads/squad-creator/scripts/security_scanner.py +378 -0
  1343. package/pro/squads/squad-creator/scripts/squad-analytics.py +810 -0
  1344. package/pro/squads/squad-creator/scripts/squad_utils.py +267 -0
  1345. package/pro/squads/squad-creator/scripts/sync-chief-codex-skill.js +242 -0
  1346. package/pro/squads/squad-creator/scripts/sync-ide-skills.py +705 -0
  1347. package/pro/squads/squad-creator/scripts/tests/__init__.py +1 -0
  1348. package/pro/squads/squad-creator/scripts/tests/test_adapters.py +73 -0
  1349. package/pro/squads/squad-creator/scripts/tests/test_assess_sources.sh +216 -0
  1350. package/pro/squads/squad-creator/scripts/tests/test_clone_review.sh +239 -0
  1351. package/pro/squads/squad-creator/scripts/tests/test_fidelity_score.sh +298 -0
  1352. package/pro/squads/squad-creator/scripts/tests/test_refresh_registry_contract.py +110 -0
  1353. package/pro/squads/squad-creator/scripts/tests/test_squad_analytics.py +332 -0
  1354. package/pro/squads/squad-creator/scripts/tests/test_validate_squad_contextual_lifecycle.py +111 -0
  1355. package/pro/squads/squad-creator/scripts/tests/test_validate_squad_tested_inference.py +102 -0
  1356. package/pro/squads/squad-creator/scripts/tests/test_validate_squad_yolo_warning.py +108 -0
  1357. package/pro/squads/squad-creator/scripts/update-aiox-sync-config.py +144 -0
  1358. package/pro/squads/squad-creator/scripts/update-claude-command-registry.py +171 -0
  1359. package/pro/squads/squad-creator/scripts/validate-all.sh +49 -0
  1360. package/pro/squads/squad-creator/scripts/validate-report.sh +98 -0
  1361. package/pro/squads/squad-creator/scripts/validate-squad-deep.sh +318 -0
  1362. package/pro/squads/squad-creator/scripts/validate-squad-quality.py +514 -0
  1363. package/pro/squads/squad-creator/scripts/validate-squad-structure.py +881 -0
  1364. package/pro/squads/squad-creator/scripts/validate-squad.sh +4340 -0
  1365. package/pro/squads/squad-creator/scripts/validate-tokens.sh +178 -0
  1366. package/pro/squads/squad-creator/scripts/verify-squad-completeness.sh +294 -0
  1367. package/pro/squads/squad-creator/scripts/yaml_validator.py +528 -0
  1368. package/pro/squads/squad-creator/squad-io.yaml +71 -0
  1369. package/pro/squads/squad-creator/tasks/audit-output-quality.md +135 -0
  1370. package/pro/squads/squad-creator/tasks/auto-heal-close.md +134 -0
  1371. package/pro/squads/squad-creator/tasks/auto-heal-resolve.md +128 -0
  1372. package/pro/squads/squad-creator/tasks/auto-heal.md +86 -0
  1373. package/pro/squads/squad-creator/tasks/auto-healing-gate.md +166 -0
  1374. package/pro/squads/squad-creator/tasks/cost-analysis.md +117 -0
  1375. package/pro/squads/squad-creator/tasks/create-agent-commands.md +197 -0
  1376. package/pro/squads/squad-creator/tasks/create-agent-generate.md +224 -0
  1377. package/pro/squads/squad-creator/tasks/create-agent-persona.md +207 -0
  1378. package/pro/squads/squad-creator/tasks/create-agent-publish.md +136 -0
  1379. package/pro/squads/squad-creator/tasks/create-agent-research.md +201 -0
  1380. package/pro/squads/squad-creator/tasks/create-agent-validate.md +213 -0
  1381. package/pro/squads/squad-creator/tasks/create-agent.md +145 -0
  1382. package/pro/squads/squad-creator/tasks/create-documentation.md +284 -0
  1383. package/pro/squads/squad-creator/tasks/create-greeting-script-discovery.md +59 -0
  1384. package/pro/squads/squad-creator/tasks/create-greeting-script-gap-map.md +59 -0
  1385. package/pro/squads/squad-creator/tasks/create-greeting-script-generate.md +60 -0
  1386. package/pro/squads/squad-creator/tasks/create-greeting-script-integrate.md +59 -0
  1387. package/pro/squads/squad-creator/tasks/create-greeting-script-validate.md +59 -0
  1388. package/pro/squads/squad-creator/tasks/create-greeting-script.md +130 -0
  1389. package/pro/squads/squad-creator/tasks/create-pipeline-design.md +143 -0
  1390. package/pro/squads/squad-creator/tasks/create-pipeline-persist.md +100 -0
  1391. package/pro/squads/squad-creator/tasks/create-pipeline-qualify.md +103 -0
  1392. package/pro/squads/squad-creator/tasks/create-pipeline-render.md +296 -0
  1393. package/pro/squads/squad-creator/tasks/create-pipeline-validate.md +121 -0
  1394. package/pro/squads/squad-creator/tasks/create-pipeline.md +171 -0
  1395. package/pro/squads/squad-creator/tasks/create-squad-build.md +383 -0
  1396. package/pro/squads/squad-creator/tasks/create-squad-design.md +349 -0
  1397. package/pro/squads/squad-creator/tasks/create-squad-discover.md +392 -0
  1398. package/pro/squads/squad-creator/tasks/create-squad-publish.md +225 -0
  1399. package/pro/squads/squad-creator/tasks/create-squad-validate.md +327 -0
  1400. package/pro/squads/squad-creator/tasks/create-squad.md +113 -0
  1401. package/pro/squads/squad-creator/tasks/create-task-anatomy.md +273 -0
  1402. package/pro/squads/squad-creator/tasks/create-task-classify.md +222 -0
  1403. package/pro/squads/squad-creator/tasks/create-task-executor.md +205 -0
  1404. package/pro/squads/squad-creator/tasks/create-task-generate.md +224 -0
  1405. package/pro/squads/squad-creator/tasks/create-task-register.md +192 -0
  1406. package/pro/squads/squad-creator/tasks/create-task-validate.md +232 -0
  1407. package/pro/squads/squad-creator/tasks/create-task.md +113 -0
  1408. package/pro/squads/squad-creator/tasks/create-template-elicitation.md +59 -0
  1409. package/pro/squads/squad-creator/tasks/create-template-identity.md +59 -0
  1410. package/pro/squads/squad-creator/tasks/create-template-register.md +58 -0
  1411. package/pro/squads/squad-creator/tasks/create-template-structure.md +59 -0
  1412. package/pro/squads/squad-creator/tasks/create-template-validate.md +59 -0
  1413. package/pro/squads/squad-creator/tasks/create-template.md +95 -0
  1414. package/pro/squads/squad-creator/tasks/create-workflow-classify.md +213 -0
  1415. package/pro/squads/squad-creator/tasks/create-workflow-design.md +494 -0
  1416. package/pro/squads/squad-creator/tasks/create-workflow-from-sop.md +301 -0
  1417. package/pro/squads/squad-creator/tasks/create-workflow-generate.md +262 -0
  1418. package/pro/squads/squad-creator/tasks/create-workflow.md +108 -0
  1419. package/pro/squads/squad-creator/tasks/detect-gaps.md +116 -0
  1420. package/pro/squads/squad-creator/tasks/detect-operational-mode-classify.md +112 -0
  1421. package/pro/squads/squad-creator/tasks/detect-operational-mode-infrastructure.md +104 -0
  1422. package/pro/squads/squad-creator/tasks/detect-operational-mode-outputs.md +94 -0
  1423. package/pro/squads/squad-creator/tasks/detect-operational-mode-systems.md +91 -0
  1424. package/pro/squads/squad-creator/tasks/detect-operational-mode-verbs.md +94 -0
  1425. package/pro/squads/squad-creator/tasks/detect-operational-mode.md +115 -0
  1426. package/pro/squads/squad-creator/tasks/detect-squad-context.md +120 -0
  1427. package/pro/squads/squad-creator/tasks/discover-tools-classify.md +191 -0
  1428. package/pro/squads/squad-creator/tasks/discover-tools-evaluate.md +173 -0
  1429. package/pro/squads/squad-creator/tasks/discover-tools-recommend.md +180 -0
  1430. package/pro/squads/squad-creator/tasks/discover-tools-report.md +184 -0
  1431. package/pro/squads/squad-creator/tasks/discover-tools-scan.md +188 -0
  1432. package/pro/squads/squad-creator/tasks/discover-tools.md +139 -0
  1433. package/pro/squads/squad-creator/tasks/generate-recommendations.md +162 -0
  1434. package/pro/squads/squad-creator/tasks/improve-workflow-from-report.md +127 -0
  1435. package/pro/squads/squad-creator/tasks/improve-workflow-report-apply-p1.md +59 -0
  1436. package/pro/squads/squad-creator/tasks/improve-workflow-report-apply-secondary.md +59 -0
  1437. package/pro/squads/squad-creator/tasks/improve-workflow-report-backup.md +59 -0
  1438. package/pro/squads/squad-creator/tasks/improve-workflow-report-ingest.md +59 -0
  1439. package/pro/squads/squad-creator/tasks/improve-workflow-report-target.md +59 -0
  1440. package/pro/squads/squad-creator/tasks/improve-workflow-report-validate-report.md +59 -0
  1441. package/pro/squads/squad-creator/tasks/install-skills-finalize.md +415 -0
  1442. package/pro/squads/squad-creator/tasks/install-skills-prepare.md +353 -0
  1443. package/pro/squads/squad-creator/tasks/install-skills-write.md +395 -0
  1444. package/pro/squads/squad-creator/tasks/install-skills.md +282 -0
  1445. package/pro/squads/squad-creator/tasks/next-squad-ranking.md +58 -0
  1446. package/pro/squads/squad-creator/tasks/next-squad-registry.md +58 -0
  1447. package/pro/squads/squad-creator/tasks/next-squad-report.md +59 -0
  1448. package/pro/squads/squad-creator/tasks/next-squad-scoring.md +59 -0
  1449. package/pro/squads/squad-creator/tasks/next-squad-signals.md +58 -0
  1450. package/pro/squads/squad-creator/tasks/next-squad.md +98 -0
  1451. package/pro/squads/squad-creator/tasks/operational-test-baseline.md +69 -0
  1452. package/pro/squads/squad-creator/tasks/operational-test-preflight.md +70 -0
  1453. package/pro/squads/squad-creator/tasks/operational-test-report.md +71 -0
  1454. package/pro/squads/squad-creator/tasks/operational-test-smoke.md +72 -0
  1455. package/pro/squads/squad-creator/tasks/operational-test-target.md +71 -0
  1456. package/pro/squads/squad-creator/tasks/operational-test.md +102 -0
  1457. package/pro/squads/squad-creator/tasks/performance-dashboard.md +118 -0
  1458. package/pro/squads/squad-creator/tasks/qa-after-creation.md +129 -0
  1459. package/pro/squads/squad-creator/tasks/qa-check-compatibility.md +191 -0
  1460. package/pro/squads/squad-creator/tasks/qa-check-completeness.md +218 -0
  1461. package/pro/squads/squad-creator/tasks/qa-check-references.md +172 -0
  1462. package/pro/squads/squad-creator/tasks/qa-check-schema.md +190 -0
  1463. package/pro/squads/squad-creator/tasks/qa-check-structure.md +176 -0
  1464. package/pro/squads/squad-creator/tasks/qa-generate-report.md +240 -0
  1465. package/pro/squads/squad-creator/tasks/qualify-provider-baseline.md +122 -0
  1466. package/pro/squads/squad-creator/tasks/qualify-provider-compare.md +159 -0
  1467. package/pro/squads/squad-creator/tasks/qualify-provider-preflight.md +143 -0
  1468. package/pro/squads/squad-creator/tasks/qualify-provider-ptbr.md +166 -0
  1469. package/pro/squads/squad-creator/tasks/qualify-provider-reliability.md +140 -0
  1470. package/pro/squads/squad-creator/tasks/qualify-provider-report.md +178 -0
  1471. package/pro/squads/squad-creator/tasks/reexecute-squad-phase.md +97 -0
  1472. package/pro/squads/squad-creator/tasks/refresh-registry.md +299 -0
  1473. package/pro/squads/squad-creator/tasks/rename-squad-map.md +59 -0
  1474. package/pro/squads/squad-creator/tasks/rename-squad-propagate.md +59 -0
  1475. package/pro/squads/squad-creator/tasks/rename-squad-structural.md +59 -0
  1476. package/pro/squads/squad-creator/tasks/rename-squad-validate.md +59 -0
  1477. package/pro/squads/squad-creator/tasks/rename-squad.md +118 -0
  1478. package/pro/squads/squad-creator/tasks/self-improve.md +107 -0
  1479. package/pro/squads/squad-creator/tasks/setup-runtime-handoff.md +74 -0
  1480. package/pro/squads/squad-creator/tasks/setup-runtime-persist.md +81 -0
  1481. package/pro/squads/squad-creator/tasks/setup-runtime-requirements.md +84 -0
  1482. package/pro/squads/squad-creator/tasks/setup-runtime-validate.md +82 -0
  1483. package/pro/squads/squad-creator/tasks/setup-runtime-wizard.md +84 -0
  1484. package/pro/squads/squad-creator/tasks/setup-runtime.md +103 -0
  1485. package/pro/squads/squad-creator/tasks/squad-analytics.md +276 -0
  1486. package/pro/squads/squad-creator/tasks/squad-overview-agents.md +110 -0
  1487. package/pro/squads/squad-creator/tasks/squad-overview-generate.md +102 -0
  1488. package/pro/squads/squad-creator/tasks/squad-overview-metadata.md +121 -0
  1489. package/pro/squads/squad-creator/tasks/squad-overview-minds.md +100 -0
  1490. package/pro/squads/squad-creator/tasks/squad-overview-structure.md +106 -0
  1491. package/pro/squads/squad-creator/tasks/squad-overview-write.md +103 -0
  1492. package/pro/squads/squad-creator/tasks/squad-overview.md +117 -0
  1493. package/pro/squads/squad-creator/tasks/sync-chief-codex-skill.md +73 -0
  1494. package/pro/squads/squad-creator/tasks/sync-ide-skills.md +240 -0
  1495. package/pro/squads/squad-creator/tasks/update-radar.md +151 -0
  1496. package/pro/squads/squad-creator/tasks/upgrade-squad-apply.md +187 -0
  1497. package/pro/squads/squad-creator/tasks/upgrade-squad-gap.md +203 -0
  1498. package/pro/squads/squad-creator/tasks/upgrade-squad-inventory.md +186 -0
  1499. package/pro/squads/squad-creator/tasks/upgrade-squad-plan.md +163 -0
  1500. package/pro/squads/squad-creator/tasks/upgrade-squad-verify.md +178 -0
  1501. package/pro/squads/squad-creator/tasks/upgrade-squad.md +138 -0
  1502. package/pro/squads/squad-creator/tasks/validate-final-artifacts.md +104 -0
  1503. package/pro/squads/squad-creator/tasks/validate-squad-classify.md +335 -0
  1504. package/pro/squads/squad-creator/tasks/validate-squad-deep-review.md +226 -0
  1505. package/pro/squads/squad-creator/tasks/validate-squad-preflight.md +189 -0
  1506. package/pro/squads/squad-creator/tasks/validate-squad-verdict.md +442 -0
  1507. package/pro/squads/squad-creator/tasks/validate-squad.md +117 -0
  1508. package/pro/squads/squad-creator/templates/agent-flow-doc-tmpl.md +512 -0
  1509. package/pro/squads/squad-creator/templates/agent-tmpl.md +703 -0
  1510. package/pro/squads/squad-creator/templates/auto-heal-task-tmpl.md +417 -0
  1511. package/pro/squads/squad-creator/templates/capability-map-tmpl.md +95 -0
  1512. package/pro/squads/squad-creator/templates/config-tmpl.yaml +534 -0
  1513. package/pro/squads/squad-creator/templates/cross-domain-handoff-tmpl.yaml +18 -0
  1514. package/pro/squads/squad-creator/templates/ecosystem-health-tmpl.md +19 -0
  1515. package/pro/squads/squad-creator/templates/gap-analysis-tmpl.md +13 -0
  1516. package/pro/squads/squad-creator/templates/greeting-script-tmpl.cjs +169 -0
  1517. package/pro/squads/squad-creator/templates/handoff-insumos-tmpl.yaml +112 -0
  1518. package/pro/squads/squad-creator/templates/journey-log-tmpl.yaml +93 -0
  1519. package/pro/squads/squad-creator/templates/operational-test-task-tmpl.md +514 -0
  1520. package/pro/squads/squad-creator/templates/orchestrator-tmpl.md +74 -0
  1521. package/pro/squads/squad-creator/templates/performance-dashboard-tmpl.md +77 -0
  1522. package/pro/squads/squad-creator/templates/pipeline-progress-tmpl.py +373 -0
  1523. package/pro/squads/squad-creator/templates/pipeline-prompt-tmpl.md +94 -0
  1524. package/pro/squads/squad-creator/templates/pipeline-runner-tmpl.py +444 -0
  1525. package/pro/squads/squad-creator/templates/pipeline-state-tmpl.py +413 -0
  1526. package/pro/squads/squad-creator/templates/pop-extractor-prompt.md +549 -0
  1527. package/pro/squads/squad-creator/templates/quality-dashboard-tmpl.md +286 -0
  1528. package/pro/squads/squad-creator/templates/quality-gate-tmpl.yaml +589 -0
  1529. package/pro/squads/squad-creator/templates/readme-tmpl.md +254 -0
  1530. package/pro/squads/squad-creator/templates/research-output-tmpl.md +625 -0
  1531. package/pro/squads/squad-creator/templates/research-prompt-tmpl.md +479 -0
  1532. package/pro/squads/squad-creator/templates/setup-runtime-task-tmpl.md +627 -0
  1533. package/pro/squads/squad-creator/templates/squad-mappings-tmpl.yaml +71 -0
  1534. package/pro/squads/squad-creator/templates/squad-prd-tmpl.md +488 -0
  1535. package/pro/squads/squad-creator/templates/squad-readme-tmpl.md +170 -0
  1536. package/pro/squads/squad-creator/templates/story-create-agent-tmpl.md +284 -0
  1537. package/pro/squads/squad-creator/templates/task-tmpl.md +533 -0
  1538. package/pro/squads/squad-creator/templates/tech-radar-tmpl.md +73 -0
  1539. package/pro/squads/squad-creator/templates/template-tmpl.yaml +227 -0
  1540. package/pro/squads/squad-creator/templates/weekly-digest-tmpl.md +11 -0
  1541. package/pro/squads/squad-creator/templates/weekly-report-tmpl.md +155 -0
  1542. package/pro/squads/squad-creator/templates/workflow-doc-tmpl.md +860 -0
  1543. package/pro/squads/squad-creator/templates/workflow-tmpl.yaml +486 -0
  1544. package/pro/squads/squad-creator/test-cases/an-assess-sources/TEST-REPORT-v2.1.md +351 -0
  1545. package/pro/squads/squad-creator/test-cases/an-assess-sources/formal-qualification-report.yaml +389 -0
  1546. package/pro/squads/squad-creator/test-cases/an-clone-review/opus-baseline.yaml +566 -0
  1547. package/pro/squads/squad-creator/test-cases/pv-axioma-assessment/opus-baseline.yaml +96 -0
  1548. package/pro/squads/squad-creator/test-cases/pv-modernization-score/opus-baseline.yaml +488 -0
  1549. package/pro/squads/squad-creator/test-cases/smoke-test-model-routing/test-case.yaml +100 -0
  1550. package/pro/squads/squad-creator/workflows/wf-auto-heal.yaml +33 -0
  1551. package/pro/squads/squad-creator/workflows/wf-create-agent.yaml +252 -0
  1552. package/pro/squads/squad-creator/workflows/wf-create-greeting-script.yaml +60 -0
  1553. package/pro/squads/squad-creator/workflows/wf-create-pipeline.yaml +60 -0
  1554. package/pro/squads/squad-creator/workflows/wf-create-squad.yaml +1916 -0
  1555. package/pro/squads/squad-creator/workflows/wf-create-task.yaml +172 -0
  1556. package/pro/squads/squad-creator/workflows/wf-create-template.yaml +60 -0
  1557. package/pro/squads/squad-creator/workflows/wf-create-workflow.yaml +138 -0
  1558. package/pro/squads/squad-creator/workflows/wf-cross-provider-qualification.yaml +769 -0
  1559. package/pro/squads/squad-creator/workflows/wf-detect-operational-mode.yaml +112 -0
  1560. package/pro/squads/squad-creator/workflows/wf-discover-tools.yaml +1695 -0
  1561. package/pro/squads/squad-creator/workflows/wf-ecosystem-analysis.yaml +338 -0
  1562. package/pro/squads/squad-creator/workflows/wf-improve-workflow-from-report.yaml +69 -0
  1563. package/pro/squads/squad-creator/workflows/wf-install-skills.yaml +52 -0
  1564. package/pro/squads/squad-creator/workflows/wf-next-squad.yaml +60 -0
  1565. package/pro/squads/squad-creator/workflows/wf-operational-test.yaml +86 -0
  1566. package/pro/squads/squad-creator/workflows/wf-qa-after-creation.yaml +339 -0
  1567. package/pro/squads/squad-creator/workflows/wf-rename-squad.yaml +51 -0
  1568. package/pro/squads/squad-creator/workflows/wf-self-improve.yaml +206 -0
  1569. package/pro/squads/squad-creator/workflows/wf-setup-runtime.yaml +86 -0
  1570. package/pro/squads/squad-creator/workflows/wf-squad-overview.yaml +100 -0
  1571. package/pro/squads/squad-creator/workflows/wf-sync-ide-skills.yaml +24 -0
  1572. package/pro/squads/squad-creator/workflows/wf-upgrade-squad.yaml +236 -0
  1573. package/pro/squads/squad-creator/workflows/wf-weekly-report.yaml +139 -0
  1574. package/pro/squads/squad-creator-pro/.state.json +32 -0
  1575. package/pro/squads/squad-creator-pro/ARCHITECTURE.md +37 -0
  1576. package/pro/squads/squad-creator-pro/CHANGELOG.md +275 -0
  1577. package/pro/squads/squad-creator-pro/README.md +1061 -0
  1578. package/pro/squads/squad-creator-pro/agents/ecosystem-analyst.md +989 -0
  1579. package/pro/squads/squad-creator-pro/agents/heuristic-ops.md +369 -0
  1580. package/pro/squads/squad-creator-pro/agents/oalanicolas.md +998 -0
  1581. package/pro/squads/squad-creator-pro/agents/pedro-valerio.md +1291 -0
  1582. package/pro/squads/squad-creator-pro/agents/squad-chief.md +1819 -0
  1583. package/pro/squads/squad-creator-pro/agents/thiago_finch.md +986 -0
  1584. package/pro/squads/squad-creator-pro/benchmarks/golden/hormozi-golden.yaml +382 -0
  1585. package/pro/squads/squad-creator-pro/benchmarks/scripts/run-benchmark.sh +363 -0
  1586. package/pro/squads/squad-creator-pro/checklists/.gitkeep +1 -0
  1587. package/pro/squads/squad-creator-pro/checklists/agent-depth-checklist.md +244 -0
  1588. package/pro/squads/squad-creator-pro/checklists/agent-quality-gate.md +434 -0
  1589. package/pro/squads/squad-creator-pro/checklists/create-squad-checklist.md +291 -0
  1590. package/pro/squads/squad-creator-pro/checklists/deep-research-quality.md +505 -0
  1591. package/pro/squads/squad-creator-pro/checklists/executor-matrix-checklist.md +260 -0
  1592. package/pro/squads/squad-creator-pro/checklists/mental-model-integration-checklist.md +95 -0
  1593. package/pro/squads/squad-creator-pro/checklists/mind-validation.md +373 -0
  1594. package/pro/squads/squad-creator-pro/checklists/pipeline-quality-checklist.md +84 -0
  1595. package/pro/squads/squad-creator-pro/checklists/quality-gate-checklist.md +385 -0
  1596. package/pro/squads/squad-creator-pro/checklists/session-heuristics-extraction.md +65 -0
  1597. package/pro/squads/squad-creator-pro/checklists/sop-validation.md +250 -0
  1598. package/pro/squads/squad-creator-pro/checklists/squad-checklist.md +1014 -0
  1599. package/pro/squads/squad-creator-pro/checklists/task-anatomy-checklist.md +626 -0
  1600. package/pro/squads/squad-creator-pro/config/.gitkeep +1 -0
  1601. package/pro/squads/squad-creator-pro/config/axioma-validator.yaml +371 -0
  1602. package/pro/squads/squad-creator-pro/config/heuristic-watcher-rubric.yaml +300 -0
  1603. package/pro/squads/squad-creator-pro/config/heuristics.yaml +937 -0
  1604. package/pro/squads/squad-creator-pro/config/model-routing.yaml +693 -0
  1605. package/pro/squads/squad-creator-pro/config/quality-gates.yaml +415 -0
  1606. package/pro/squads/squad-creator-pro/config/scoring-rubric.yaml +199 -0
  1607. package/pro/squads/squad-creator-pro/config/squad-config.yaml +165 -0
  1608. package/pro/squads/squad-creator-pro/config/task-anatomy.yaml +263 -0
  1609. package/pro/squads/squad-creator-pro/config/veto-conditions.yaml +455 -0
  1610. package/pro/squads/squad-creator-pro/config.yaml +455 -0
  1611. package/pro/squads/squad-creator-pro/data/.gitkeep +1 -0
  1612. package/pro/squads/squad-creator-pro/data/an-anchor-words.yaml +78 -0
  1613. package/pro/squads/squad-creator-pro/data/an-clone-anti-patterns.yaml +148 -0
  1614. package/pro/squads/squad-creator-pro/data/an-clone-validation.yaml +190 -0
  1615. package/pro/squads/squad-creator-pro/data/an-diagnostic-framework.yaml +164 -0
  1616. package/pro/squads/squad-creator-pro/data/an-output-examples.yaml +102 -0
  1617. package/pro/squads/squad-creator-pro/data/an-source-signals.yaml +98 -0
  1618. package/pro/squads/squad-creator-pro/data/an-source-tiers.yaml +119 -0
  1619. package/pro/squads/squad-creator-pro/data/best-practices.md +986 -0
  1620. package/pro/squads/squad-creator-pro/data/core-heuristics.md +510 -0
  1621. package/pro/squads/squad-creator-pro/data/decision-heuristics-framework.md +620 -0
  1622. package/pro/squads/squad-creator-pro/data/executor-matrix-framework.md +441 -0
  1623. package/pro/squads/squad-creator-pro/data/extraction-mentoria-processos-dec19.yaml +337 -0
  1624. package/pro/squads/squad-creator-pro/data/fusion-decision-points-analysis.md +397 -0
  1625. package/pro/squads/squad-creator-pro/data/fusion-dry-runs/traffic-masters-absorve-_traffic-2026-03-09.md +135 -0
  1626. package/pro/squads/squad-creator-pro/data/fusion-executor-analysis.md +677 -0
  1627. package/pro/squads/squad-creator-pro/data/hybridops-patterns.md +1351 -0
  1628. package/pro/squads/squad-creator-pro/data/internal-infrastructure-library.yaml +103 -0
  1629. package/pro/squads/squad-creator-pro/data/mental-model-task-matrix.yaml +692 -0
  1630. package/pro/squads/squad-creator-pro/data/pm-best-practices.md +504 -0
  1631. package/pro/squads/squad-creator-pro/data/pv-anchor-words.yaml +64 -0
  1632. package/pro/squads/squad-creator-pro/data/pv-authenticity-markers.yaml +200 -0
  1633. package/pro/squads/squad-creator-pro/data/pv-meta-axiomas.yaml +162 -0
  1634. package/pro/squads/squad-creator-pro/data/pv-output-examples.yaml +342 -0
  1635. package/pro/squads/squad-creator-pro/data/pv-workflow-validation.yaml +318 -0
  1636. package/pro/squads/squad-creator-pro/data/quality-dimensions-framework.md +405 -0
  1637. package/pro/squads/squad-creator-pro/data/quality-gate-coverage.yaml +169 -0
  1638. package/pro/squads/squad-creator-pro/data/squad-analytics-guide.md +252 -0
  1639. package/pro/squads/squad-creator-pro/data/squad-kb.md +987 -0
  1640. package/pro/squads/squad-creator-pro/data/squad-kpis.yaml +60 -0
  1641. package/pro/squads/squad-creator-pro/data/squad-registry.yaml +4900 -0
  1642. package/pro/squads/squad-creator-pro/data/tier-system-framework.md +475 -0
  1643. package/pro/squads/squad-creator-pro/data/token-registry.yaml +386 -0
  1644. package/pro/squads/squad-creator-pro/data/tool-evaluation-framework.md +847 -0
  1645. package/pro/squads/squad-creator-pro/data/tool-registry.yaml +816 -0
  1646. package/pro/squads/squad-creator-pro/docs/ARCHITECTURE-DIAGRAMS.md +1466 -0
  1647. package/pro/squads/squad-creator-pro/docs/COMMANDS.md +544 -0
  1648. package/pro/squads/squad-creator-pro/docs/CONCEPTS.md +584 -0
  1649. package/pro/squads/squad-creator-pro/docs/FAQ.md +731 -0
  1650. package/pro/squads/squad-creator-pro/docs/HITL-FLOW.md +255 -0
  1651. package/pro/squads/squad-creator-pro/docs/PATTERN-LIBRARY.md +341 -0
  1652. package/pro/squads/squad-creator-pro/docs/PEDRO-VALERIO-ARCHITECTURE.md +456 -0
  1653. package/pro/squads/squad-creator-pro/docs/POR-ONDE-COMECAR.md +210 -0
  1654. package/pro/squads/squad-creator-pro/docs/QUICK-START.md +205 -0
  1655. package/pro/squads/squad-creator-pro/docs/TOOL-RECOMMENDATIONS.md +381 -0
  1656. package/pro/squads/squad-creator-pro/docs/TUTORIAL-COMPLETO.md +458 -0
  1657. package/pro/squads/squad-creator-pro/docs/sop-extraction-process.md +674 -0
  1658. package/pro/squads/squad-creator-pro/docs/squad-chief-agent-flow.md +981 -0
  1659. package/pro/squads/squad-creator-pro/docs/squad-creation-pipeline-workflow.md +937 -0
  1660. package/pro/squads/squad-creator-pro/minds/oalanicolas/artifacts/HANDOFF_PROTOCOL.md +269 -0
  1661. package/pro/squads/squad-creator-pro/minds/oalanicolas/artifacts/SOURCE_CLASSIFICATION.md +258 -0
  1662. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_001.md +117 -0
  1663. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_002.md +115 -0
  1664. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_003.md +110 -0
  1665. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_004.md +109 -0
  1666. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_005.md +116 -0
  1667. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_006.md +183 -0
  1668. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_007.md +273 -0
  1669. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_008.md +204 -0
  1670. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_009.md +246 -0
  1671. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_010.md +265 -0
  1672. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_011.md +72 -0
  1673. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_012.md +59 -0
  1674. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_013.md +69 -0
  1675. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_014.md +69 -0
  1676. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_015.md +83 -0
  1677. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_016.md +67 -0
  1678. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_017.md +64 -0
  1679. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_018.md +79 -0
  1680. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_019.md +69 -0
  1681. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_020.md +67 -0
  1682. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_021.md +114 -0
  1683. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_022.md +75 -0
  1684. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_023.md +60 -0
  1685. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_024.md +66 -0
  1686. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_025.md +81 -0
  1687. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_026.md +82 -0
  1688. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_027.md +85 -0
  1689. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_028.md +74 -0
  1690. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_029.md +73 -0
  1691. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_030.md +80 -0
  1692. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_031.md +78 -0
  1693. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_032.md +81 -0
  1694. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_033.md +69 -0
  1695. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_034.md +119 -0
  1696. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_035.md +120 -0
  1697. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_036.md +134 -0
  1698. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_037.md +123 -0
  1699. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_038.md +85 -0
  1700. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_039.md +74 -0
  1701. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_040.md +130 -0
  1702. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_041.md +87 -0
  1703. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_042.md +89 -0
  1704. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_043.md +78 -0
  1705. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_044.md +97 -0
  1706. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_045.md +82 -0
  1707. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_046.md +83 -0
  1708. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_047.md +77 -0
  1709. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_048.md +83 -0
  1710. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_049.md +102 -0
  1711. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_050.md +85 -0
  1712. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_051.md +90 -0
  1713. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_052.md +84 -0
  1714. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_053.md +83 -0
  1715. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_054.md +96 -0
  1716. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_055.md +137 -0
  1717. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_056.md +114 -0
  1718. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_057.md +82 -0
  1719. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_058.md +79 -0
  1720. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_059.md +88 -0
  1721. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_060.md +78 -0
  1722. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_061.md +79 -0
  1723. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_062.md +99 -0
  1724. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_063.md +73 -0
  1725. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_064.md +106 -0
  1726. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_065.md +87 -0
  1727. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_066.md +66 -0
  1728. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_067.md +65 -0
  1729. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_068.md +70 -0
  1730. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_069.md +69 -0
  1731. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_070.md +67 -0
  1732. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_071.md +87 -0
  1733. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_072.md +84 -0
  1734. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_073.md +89 -0
  1735. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_074.md +60 -0
  1736. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_075.md +87 -0
  1737. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_076.md +107 -0
  1738. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_077.md +98 -0
  1739. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_078.md +66 -0
  1740. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_079.md +91 -0
  1741. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_080.md +59 -0
  1742. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_081.md +64 -0
  1743. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_082.md +71 -0
  1744. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_083.md +62 -0
  1745. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_084.md +66 -0
  1746. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_085.md +62 -0
  1747. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_086.md +69 -0
  1748. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_087.md +74 -0
  1749. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_088.md +89 -0
  1750. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_089.md +88 -0
  1751. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_090.md +74 -0
  1752. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_091.md +76 -0
  1753. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_092.md +61 -0
  1754. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_093.md +69 -0
  1755. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_094.md +58 -0
  1756. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_095.md +58 -0
  1757. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_096.md +65 -0
  1758. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_097.md +63 -0
  1759. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_098.md +98 -0
  1760. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_099.md +97 -0
  1761. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_100.md +100 -0
  1762. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_101.md +62 -0
  1763. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_102.md +65 -0
  1764. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_103.md +60 -0
  1765. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_104.md +60 -0
  1766. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_105.md +67 -0
  1767. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_106.md +64 -0
  1768. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_107.md +63 -0
  1769. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_108.md +60 -0
  1770. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_109.md +62 -0
  1771. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_110.md +58 -0
  1772. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_111.md +88 -0
  1773. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_112.md +60 -0
  1774. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_113.md +74 -0
  1775. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_114.md +55 -0
  1776. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_115.md +126 -0
  1777. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_116.md +76 -0
  1778. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_117.md +65 -0
  1779. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_118.md +72 -0
  1780. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_119.md +58 -0
  1781. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_120.md +77 -0
  1782. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_121.md +65 -0
  1783. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_122.md +57 -0
  1784. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_123.md +63 -0
  1785. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_124.md +69 -0
  1786. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_125.md +73 -0
  1787. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_126.md +81 -0
  1788. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_127.md +77 -0
  1789. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_128.md +76 -0
  1790. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_129.md +81 -0
  1791. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_130.md +88 -0
  1792. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_131.md +85 -0
  1793. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_132.md +81 -0
  1794. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/AN_KE_133.md +86 -0
  1795. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/decision-cards.yaml +1010 -0
  1796. package/pro/squads/squad-creator-pro/minds/oalanicolas/heuristics/heuristic-analytics.md +24 -0
  1797. package/pro/squads/squad-creator-pro/minds/pedro_valerio/artifacts/Assinatura_Linguistica.md +355 -0
  1798. package/pro/squads/squad-creator-pro/minds/pedro_valerio/artifacts/META_AXIOMAS.md +277 -0
  1799. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_BS_001.md +151 -0
  1800. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_041.md +80 -0
  1801. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_042.md +79 -0
  1802. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_043.md +81 -0
  1803. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_044.md +83 -0
  1804. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_045.md +82 -0
  1805. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_046.md +82 -0
  1806. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_047.md +81 -0
  1807. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_048.md +77 -0
  1808. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_049.md +81 -0
  1809. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_050.md +79 -0
  1810. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_051.md +81 -0
  1811. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_052.md +81 -0
  1812. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_053.md +79 -0
  1813. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_054.md +74 -0
  1814. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_055.md +78 -0
  1815. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_056.md +78 -0
  1816. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_057.md +78 -0
  1817. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_058.md +81 -0
  1818. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_059.md +81 -0
  1819. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_060.md +82 -0
  1820. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_061.md +74 -0
  1821. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_062.md +75 -0
  1822. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_063.md +80 -0
  1823. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_064.md +75 -0
  1824. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_065.md +74 -0
  1825. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_066.md +76 -0
  1826. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_067.md +75 -0
  1827. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_068.md +78 -0
  1828. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_069.md +78 -0
  1829. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_070.md +75 -0
  1830. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_071.md +77 -0
  1831. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_072.md +76 -0
  1832. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_073.md +82 -0
  1833. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_074.md +80 -0
  1834. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_075.md +85 -0
  1835. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_076.md +81 -0
  1836. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_077.md +77 -0
  1837. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_078.md +81 -0
  1838. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_079.md +77 -0
  1839. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_080.md +81 -0
  1840. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_081.md +76 -0
  1841. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_082.md +84 -0
  1842. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_083.md +78 -0
  1843. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_084.md +76 -0
  1844. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_085.md +83 -0
  1845. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_086.md +74 -0
  1846. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_087.md +87 -0
  1847. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_088.md +75 -0
  1848. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_089.md +79 -0
  1849. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_090.md +75 -0
  1850. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_091.md +77 -0
  1851. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_092.md +81 -0
  1852. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_093.md +74 -0
  1853. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_094.md +73 -0
  1854. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_095.md +84 -0
  1855. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_096.md +78 -0
  1856. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_097.md +79 -0
  1857. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_098.md +85 -0
  1858. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_099.md +82 -0
  1859. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_100.md +81 -0
  1860. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_KE_101.md +61 -0
  1861. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_001.md +197 -0
  1862. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_002.md +165 -0
  1863. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_003.md +164 -0
  1864. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_004.md +163 -0
  1865. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_005.md +161 -0
  1866. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_006.md +164 -0
  1867. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_007.md +162 -0
  1868. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_008.md +156 -0
  1869. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_009.md +157 -0
  1870. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_010.md +166 -0
  1871. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_011.md +161 -0
  1872. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_012.md +80 -0
  1873. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_013.md +66 -0
  1874. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_014.md +64 -0
  1875. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_015.md +61 -0
  1876. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_016.md +60 -0
  1877. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_017.md +66 -0
  1878. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_018.md +56 -0
  1879. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_019.md +63 -0
  1880. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_020.md +64 -0
  1881. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_021.md +71 -0
  1882. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_022.md +69 -0
  1883. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_023.md +56 -0
  1884. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_024.md +61 -0
  1885. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_025.md +60 -0
  1886. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_026.md +71 -0
  1887. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_027.md +65 -0
  1888. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_028.md +61 -0
  1889. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_029.md +62 -0
  1890. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_030.md +62 -0
  1891. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_031.md +62 -0
  1892. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_032.md +59 -0
  1893. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_033.md +64 -0
  1894. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_034.md +65 -0
  1895. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_035.md +62 -0
  1896. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_036.md +63 -0
  1897. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_037.md +60 -0
  1898. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_038.md +78 -0
  1899. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_039.md +58 -0
  1900. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_040.md +62 -0
  1901. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PA_041.md +61 -0
  1902. package/pro/squads/squad-creator-pro/minds/pedro_valerio/heuristics/PV_PM_001.md +198 -0
  1903. package/pro/squads/squad-creator-pro/package-lock.json +38 -0
  1904. package/pro/squads/squad-creator-pro/package.json +30 -0
  1905. package/pro/squads/squad-creator-pro/requirements.txt +1 -0
  1906. package/pro/squads/squad-creator-pro/schemas/agent-persona.schema.json +78 -0
  1907. package/pro/squads/squad-creator-pro/schemas/squad-config.schema.json +146 -0
  1908. package/pro/squads/squad-creator-pro/scripts/README.md +166 -0
  1909. package/pro/squads/squad-creator-pro/scripts/WAVE-LOOP.md +157 -0
  1910. package/pro/squads/squad-creator-pro/scripts/assess-sources.sh +443 -0
  1911. package/pro/squads/squad-creator-pro/scripts/checklist_validator.py +59 -0
  1912. package/pro/squads/squad-creator-pro/scripts/clone-review.sh +394 -0
  1913. package/pro/squads/squad-creator-pro/scripts/coherence-validator.py +836 -0
  1914. package/pro/squads/squad-creator-pro/scripts/create-agent-preflight.py +243 -0
  1915. package/pro/squads/squad-creator-pro/scripts/cross-mind-linker.py +143 -0
  1916. package/pro/squads/squad-creator-pro/scripts/cross-provider/compare-results.js +281 -0
  1917. package/pro/squads/squad-creator-pro/scripts/cross-provider/cross-provider-runner.js +462 -0
  1918. package/pro/squads/squad-creator-pro/scripts/cross_map.json +338 -0
  1919. package/pro/squads/squad-creator-pro/scripts/dependency_check.py +337 -0
  1920. package/pro/squads/squad-creator-pro/scripts/detect-environment-contract.cjs +37 -0
  1921. package/pro/squads/squad-creator-pro/scripts/export-antigravity-workflows.cjs +12 -0
  1922. package/pro/squads/squad-creator-pro/scripts/fidelity-score.sh +519 -0
  1923. package/pro/squads/squad-creator-pro/scripts/generate-heuristic-registry.py +83 -0
  1924. package/pro/squads/squad-creator-pro/scripts/generate-squad-greeting.js +426 -0
  1925. package/pro/squads/squad-creator-pro/scripts/generate-squad-guide.js +38 -0
  1926. package/pro/squads/squad-creator-pro/scripts/inventory.py +59 -0
  1927. package/pro/squads/squad-creator-pro/scripts/lib/config-loader.js +12 -0
  1928. package/pro/squads/squad-creator-pro/scripts/lib/squad-runtime-paths.cjs +14 -0
  1929. package/pro/squads/squad-creator-pro/scripts/lib/validate-runtime-state.cjs +14 -0
  1930. package/pro/squads/squad-creator-pro/scripts/load-business-sops.cjs +460 -0
  1931. package/pro/squads/squad-creator-pro/scripts/model-tier-validator.cjs +369 -0
  1932. package/pro/squads/squad-creator-pro/scripts/model-usage-logger.cjs +245 -0
  1933. package/pro/squads/squad-creator-pro/scripts/modernization-score.sh +308 -0
  1934. package/pro/squads/squad-creator-pro/scripts/naming_validator.py +59 -0
  1935. package/pro/squads/squad-creator-pro/scripts/on-specialist-complete.py +152 -0
  1936. package/pro/squads/squad-creator-pro/scripts/quality_gate.py +413 -0
  1937. package/pro/squads/squad-creator-pro/scripts/refresh-registry.py +425 -0
  1938. package/pro/squads/squad-creator-pro/scripts/rename-squad.sh +8 -0
  1939. package/pro/squads/squad-creator-pro/scripts/save-session-metrics.py +189 -0
  1940. package/pro/squads/squad-creator-pro/scripts/scaffold-squad.cjs +12 -0
  1941. package/pro/squads/squad-creator-pro/scripts/scoring.py +395 -0
  1942. package/pro/squads/squad-creator-pro/scripts/security_scanner.py +59 -0
  1943. package/pro/squads/squad-creator-pro/scripts/squad-analytics.py +59 -0
  1944. package/pro/squads/squad-creator-pro/scripts/squad-context-loader.cjs +232 -0
  1945. package/pro/squads/squad-creator-pro/scripts/squad-state-manager.cjs +707 -0
  1946. package/pro/squads/squad-creator-pro/scripts/squad-workflow-runner.cjs +884 -0
  1947. package/pro/squads/squad-creator-pro/scripts/squad_utils.py +59 -0
  1948. package/pro/squads/squad-creator-pro/scripts/sync-chief-codex-skill.js +242 -0
  1949. package/pro/squads/squad-creator-pro/scripts/sync-ide-skills.py +59 -0
  1950. package/pro/squads/squad-creator-pro/scripts/tests/__init__.py +1 -0
  1951. package/pro/squads/squad-creator-pro/scripts/tests/conftest.py +309 -0
  1952. package/pro/squads/squad-creator-pro/scripts/tests/run_bash_tests.sh +29 -0
  1953. package/pro/squads/squad-creator-pro/scripts/tests/test_assess_sources.sh +216 -0
  1954. package/pro/squads/squad-creator-pro/scripts/tests/test_checklist_validator.py +396 -0
  1955. package/pro/squads/squad-creator-pro/scripts/tests/test_clone_review.sh +239 -0
  1956. package/pro/squads/squad-creator-pro/scripts/tests/test_coherence_validator.py +212 -0
  1957. package/pro/squads/squad-creator-pro/scripts/tests/test_dependency_check.py +361 -0
  1958. package/pro/squads/squad-creator-pro/scripts/tests/test_fidelity_score.sh +298 -0
  1959. package/pro/squads/squad-creator-pro/scripts/tests/test_inventory.py +307 -0
  1960. package/pro/squads/squad-creator-pro/scripts/tests/test_load_business_sops.cjs +158 -0
  1961. package/pro/squads/squad-creator-pro/scripts/tests/test_modernization_score.sh +211 -0
  1962. package/pro/squads/squad-creator-pro/scripts/tests/test_naming_validator.py +373 -0
  1963. package/pro/squads/squad-creator-pro/scripts/tests/test_quality_gate.py +280 -0
  1964. package/pro/squads/squad-creator-pro/scripts/tests/test_refresh_registry.py +328 -0
  1965. package/pro/squads/squad-creator-pro/scripts/tests/test_scoring.py +366 -0
  1966. package/pro/squads/squad-creator-pro/scripts/tests/test_security_scanner.py +354 -0
  1967. package/pro/squads/squad-creator-pro/scripts/tests/test_squad_analytics.py +309 -0
  1968. package/pro/squads/squad-creator-pro/scripts/tests/test_squad_runtime_pipeline_e2e.cjs +267 -0
  1969. package/pro/squads/squad-creator-pro/scripts/tests/test_validate_clone.sh +252 -0
  1970. package/pro/squads/squad-creator-pro/scripts/tests/test_validate_squad_runtime_state_e2e.cjs +99 -0
  1971. package/pro/squads/squad-creator-pro/scripts/tests/test_wave_loop_runtime_e2e.cjs +216 -0
  1972. package/pro/squads/squad-creator-pro/scripts/tests/test_wave_loop_runtime_unit.cjs +336 -0
  1973. package/pro/squads/squad-creator-pro/scripts/tests/test_yaml_validator.py +412 -0
  1974. package/pro/squads/squad-creator-pro/scripts/validate-agent-output.py +115 -0
  1975. package/pro/squads/squad-creator-pro/scripts/validate-all.sh +49 -0
  1976. package/pro/squads/squad-creator-pro/scripts/validate-clone.sh +345 -0
  1977. package/pro/squads/squad-creator-pro/scripts/validate-squad-structure.py +59 -0
  1978. package/pro/squads/squad-creator-pro/scripts/validate-squad.sh +12 -0
  1979. package/pro/squads/squad-creator-pro/scripts/validate-workspace-contract.py +204 -0
  1980. package/pro/squads/squad-creator-pro/scripts/verify-squad-completeness.sh +8 -0
  1981. package/pro/squads/squad-creator-pro/scripts/wave-loop.cjs +911 -0
  1982. package/pro/squads/squad-creator-pro/scripts/wave-loop.sh +5 -0
  1983. package/pro/squads/squad-creator-pro/scripts/yaml_validator.py +59 -0
  1984. package/pro/squads/squad-creator-pro/skills/fidelity-score.md +245 -0
  1985. package/pro/squads/squad-creator-pro/skills/squad.md +294 -0
  1986. package/pro/squads/squad-creator-pro/squad-io.yaml +49 -0
  1987. package/pro/squads/squad-creator-pro/tasks/CHANGELOG.md +118 -0
  1988. package/pro/squads/squad-creator-pro/tasks/an-assess-sources-collect.md +197 -0
  1989. package/pro/squads/squad-creator-pro/tasks/an-assess-sources-score.md +471 -0
  1990. package/pro/squads/squad-creator-pro/tasks/an-assess-sources.md +177 -0
  1991. package/pro/squads/squad-creator-pro/tasks/an-clone-review-report.md +171 -0
  1992. package/pro/squads/squad-creator-pro/tasks/an-clone-review-source-trinity.md +227 -0
  1993. package/pro/squads/squad-creator-pro/tasks/an-clone-review-stages-fidelity.md +158 -0
  1994. package/pro/squads/squad-creator-pro/tasks/an-clone-review.md +173 -0
  1995. package/pro/squads/squad-creator-pro/tasks/an-compare-outputs-score.md +340 -0
  1996. package/pro/squads/squad-creator-pro/tasks/an-compare-outputs.md +154 -0
  1997. package/pro/squads/squad-creator-pro/tasks/an-design-clone-blueprint.md +51 -0
  1998. package/pro/squads/squad-creator-pro/tasks/an-design-clone-contexts.md +48 -0
  1999. package/pro/squads/squad-creator-pro/tasks/an-design-clone-memory.md +49 -0
  2000. package/pro/squads/squad-creator-pro/tasks/an-design-clone-stages.md +48 -0
  2001. package/pro/squads/squad-creator-pro/tasks/an-design-clone-trinity.md +49 -0
  2002. package/pro/squads/squad-creator-pro/tasks/an-design-clone.md +106 -0
  2003. package/pro/squads/squad-creator-pro/tasks/an-diagnose-clone-prescribe.md +147 -0
  2004. package/pro/squads/squad-creator-pro/tasks/an-diagnose-clone-symptoms.md +147 -0
  2005. package/pro/squads/squad-creator-pro/tasks/an-diagnose-clone-verify-trinity.md +200 -0
  2006. package/pro/squads/squad-creator-pro/tasks/an-diagnose-clone.md +132 -0
  2007. package/pro/squads/squad-creator-pro/tasks/an-extract-dna-layer-extraction.md +54 -0
  2008. package/pro/squads/squad-creator-pro/tasks/an-extract-dna-report.md +55 -0
  2009. package/pro/squads/squad-creator-pro/tasks/an-extract-dna-source-assessment.md +54 -0
  2010. package/pro/squads/squad-creator-pro/tasks/an-extract-dna-thinking-dna.md +54 -0
  2011. package/pro/squads/squad-creator-pro/tasks/an-extract-dna-voice-dna.md +54 -0
  2012. package/pro/squads/squad-creator-pro/tasks/an-extract-dna.md +106 -0
  2013. package/pro/squads/squad-creator-pro/tasks/an-extract-framework-analyze.md +178 -0
  2014. package/pro/squads/squad-creator-pro/tasks/an-extract-framework-integrate.md +239 -0
  2015. package/pro/squads/squad-creator-pro/tasks/an-extract-framework-trinity.md +206 -0
  2016. package/pro/squads/squad-creator-pro/tasks/an-extract-framework.md +144 -0
  2017. package/pro/squads/squad-creator-pro/tasks/an-extract-heuristics.md +560 -0
  2018. package/pro/squads/squad-creator-pro/tasks/an-extract-session-heuristics.md +633 -0
  2019. package/pro/squads/squad-creator-pro/tasks/an-fidelity-score-calculate.md +317 -0
  2020. package/pro/squads/squad-creator-pro/tasks/an-fidelity-score.md +132 -0
  2021. package/pro/squads/squad-creator-pro/tasks/an-validate-clone-hackability.md +346 -0
  2022. package/pro/squads/squad-creator-pro/tasks/an-validate-clone.md +107 -0
  2023. package/pro/squads/squad-creator-pro/tasks/auto-acquire-sources-consolidate.md +186 -0
  2024. package/pro/squads/squad-creator-pro/tasks/auto-acquire-sources-expand.md +173 -0
  2025. package/pro/squads/squad-creator-pro/tasks/auto-acquire-sources-search.md +200 -0
  2026. package/pro/squads/squad-creator-pro/tasks/auto-acquire-sources.md +167 -0
  2027. package/pro/squads/squad-creator-pro/tasks/batch-closeout.md +96 -0
  2028. package/pro/squads/squad-creator-pro/tasks/clone-mind-quality-dashboard.md +142 -0
  2029. package/pro/squads/squad-creator-pro/tasks/clone-mind-smoke-test.md +137 -0
  2030. package/pro/squads/squad-creator-pro/tasks/clone-mind-synthesis.md +147 -0
  2031. package/pro/squads/squad-creator-pro/tasks/collect-sources-classify.md +209 -0
  2032. package/pro/squads/squad-creator-pro/tasks/collect-sources-discover.md +244 -0
  2033. package/pro/squads/squad-creator-pro/tasks/collect-sources-gap-analysis.md +201 -0
  2034. package/pro/squads/squad-creator-pro/tasks/collect-sources-quality-gate.md +227 -0
  2035. package/pro/squads/squad-creator-pro/tasks/collect-sources-validate.md +234 -0
  2036. package/pro/squads/squad-creator-pro/tasks/collect-sources.md +178 -0
  2037. package/pro/squads/squad-creator-pro/tasks/create-agent.md +122 -0
  2038. package/pro/squads/squad-creator-pro/tasks/create-documentation.md +202 -0
  2039. package/pro/squads/squad-creator-pro/tasks/create-from-sop-brief.md +139 -0
  2040. package/pro/squads/squad-creator-pro/tasks/create-from-sop-load-classify.md +173 -0
  2041. package/pro/squads/squad-creator-pro/tasks/create-from-sop-map-workflow.md +172 -0
  2042. package/pro/squads/squad-creator-pro/tasks/create-from-sop.md +130 -0
  2043. package/pro/squads/squad-creator-pro/tasks/create-greeting-script.md +148 -0
  2044. package/pro/squads/squad-creator-pro/tasks/create-pipeline.md +107 -0
  2045. package/pro/squads/squad-creator-pro/tasks/create-squad.md +141 -0
  2046. package/pro/squads/squad-creator-pro/tasks/create-task.md +125 -0
  2047. package/pro/squads/squad-creator-pro/tasks/create-template.md +105 -0
  2048. package/pro/squads/squad-creator-pro/tasks/create-workflow.md +130 -0
  2049. package/pro/squads/squad-creator-pro/tasks/deconstruct-extract.md +221 -0
  2050. package/pro/squads/squad-creator-pro/tasks/deconstruct-synthesize.md +154 -0
  2051. package/pro/squads/squad-creator-pro/tasks/deconstruct.md +123 -0
  2052. package/pro/squads/squad-creator-pro/tasks/deep-research-check-local-knowledge.md +164 -0
  2053. package/pro/squads/squad-creator-pro/tasks/deep-research-execute.md +200 -0
  2054. package/pro/squads/squad-creator-pro/tasks/deep-research-generate-prompt.md +245 -0
  2055. package/pro/squads/squad-creator-pro/tasks/deep-research-pre-agent.md +168 -0
  2056. package/pro/squads/squad-creator-pro/tasks/deep-research-validate.md +192 -0
  2057. package/pro/squads/squad-creator-pro/tasks/delete-squad.md +104 -0
  2058. package/pro/squads/squad-creator-pro/tasks/discover-tools-execute.md +293 -0
  2059. package/pro/squads/squad-creator-pro/tasks/discover-tools.md +201 -0
  2060. package/pro/squads/squad-creator-pro/tasks/etd-assemble-output.md +183 -0
  2061. package/pro/squads/squad-creator-pro/tasks/etd-discovery.md +216 -0
  2062. package/pro/squads/squad-creator-pro/tasks/etd-extract-and-classify.md +250 -0
  2063. package/pro/squads/squad-creator-pro/tasks/etd-extract-heuristics.md +173 -0
  2064. package/pro/squads/squad-creator-pro/tasks/etd-handoff-triggers.md +166 -0
  2065. package/pro/squads/squad-creator-pro/tasks/etd-l4-card-generation.md +224 -0
  2066. package/pro/squads/squad-creator-pro/tasks/etd-objection-handling.md +167 -0
  2067. package/pro/squads/squad-creator-pro/tasks/etd-resolve-and-consolidate.md +158 -0
  2068. package/pro/squads/squad-creator-pro/tasks/evd-assemble-voice-dna.md +218 -0
  2069. package/pro/squads/squad-creator-pro/tasks/evd-collect-sources.md +176 -0
  2070. package/pro/squads/squad-creator-pro/tasks/evd-extract-dimensions.md +667 -0
  2071. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold-context-load.md +180 -0
  2072. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold-enrichment.md +181 -0
  2073. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold-filter.md +192 -0
  2074. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold-multi-lense.md +158 -0
  2075. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold-validation.md +167 -0
  2076. package/pro/squads/squad-creator-pro/tasks/extract-expert-gold.md +185 -0
  2077. package/pro/squads/squad-creator-pro/tasks/extract-implicit-analyze.md +192 -0
  2078. package/pro/squads/squad-creator-pro/tasks/extract-implicit-prioritize.md +212 -0
  2079. package/pro/squads/squad-creator-pro/tasks/extract-implicit-scan.md +231 -0
  2080. package/pro/squads/squad-creator-pro/tasks/extract-implicit-synthesize.md +176 -0
  2081. package/pro/squads/squad-creator-pro/tasks/extract-implicit-validate.md +234 -0
  2082. package/pro/squads/squad-creator-pro/tasks/extract-implicit.md +172 -0
  2083. package/pro/squads/squad-creator-pro/tasks/extract-knowledge-checklist.md +220 -0
  2084. package/pro/squads/squad-creator-pro/tasks/extract-knowledge-framework.md +244 -0
  2085. package/pro/squads/squad-creator-pro/tasks/extract-knowledge-sop.md +244 -0
  2086. package/pro/squads/squad-creator-pro/tasks/extract-knowledge-source-validation.md +191 -0
  2087. package/pro/squads/squad-creator-pro/tasks/extract-knowledge-validation.md +224 -0
  2088. package/pro/squads/squad-creator-pro/tasks/extract-knowledge.md +193 -0
  2089. package/pro/squads/squad-creator-pro/tasks/extract-sop-analyze.md +180 -0
  2090. package/pro/squads/squad-creator-pro/tasks/extract-sop-assemble.md +184 -0
  2091. package/pro/squads/squad-creator-pro/tasks/extract-sop-extract.md +178 -0
  2092. package/pro/squads/squad-creator-pro/tasks/extract-sop-prepare.md +189 -0
  2093. package/pro/squads/squad-creator-pro/tasks/extract-sop.md +182 -0
  2094. package/pro/squads/squad-creator-pro/tasks/extract-thinking-dna.md +160 -0
  2095. package/pro/squads/squad-creator-pro/tasks/extract-voice-dna.md +170 -0
  2096. package/pro/squads/squad-creator-pro/tasks/find-0-8-classify.md +203 -0
  2097. package/pro/squads/squad-creator-pro/tasks/find-0-8-recommend.md +166 -0
  2098. package/pro/squads/squad-creator-pro/tasks/find-0-8.md +136 -0
  2099. package/pro/squads/squad-creator-pro/tasks/ics-audit.md +211 -0
  2100. package/pro/squads/squad-creator-pro/tasks/ics-domain-mapping.md +172 -0
  2101. package/pro/squads/squad-creator-pro/tasks/ics-generate-scripts.md +241 -0
  2102. package/pro/squads/squad-creator-pro/tasks/ics-integration.md +182 -0
  2103. package/pro/squads/squad-creator-pro/tasks/ics-validation.md +181 -0
  2104. package/pro/squads/squad-creator-pro/tasks/install-context-stack.md +228 -0
  2105. package/pro/squads/squad-creator-pro/tasks/install-skills.md +180 -0
  2106. package/pro/squads/squad-creator-pro/tasks/lookup-model.md +139 -0
  2107. package/pro/squads/squad-creator-pro/tasks/migrate-workflows-analyze.md +154 -0
  2108. package/pro/squads/squad-creator-pro/tasks/migrate-workflows-archive.md +162 -0
  2109. package/pro/squads/squad-creator-pro/tasks/migrate-workflows-convert.md +167 -0
  2110. package/pro/squads/squad-creator-pro/tasks/migrate-workflows-to-yaml.md +97 -0
  2111. package/pro/squads/squad-creator-pro/tasks/modernize-squad.md +338 -0
  2112. package/pro/squads/squad-creator-pro/tasks/next-action-discovery.md +191 -0
  2113. package/pro/squads/squad-creator-pro/tasks/next-action-gap-map.md +220 -0
  2114. package/pro/squads/squad-creator-pro/tasks/next-action-implement.md +183 -0
  2115. package/pro/squads/squad-creator-pro/tasks/next-action.md +149 -0
  2116. package/pro/squads/squad-creator-pro/tasks/optimize-binary-checkpoints.md +114 -0
  2117. package/pro/squads/squad-creator-pro/tasks/optimize-determinism-analysis.md +164 -0
  2118. package/pro/squads/squad-creator-pro/tasks/optimize-empirical-validation.md +138 -0
  2119. package/pro/squads/squad-creator-pro/tasks/optimize-gap-zero.md +111 -0
  2120. package/pro/squads/squad-creator-pro/tasks/optimize-gatekeeper-detection.md +113 -0
  2121. package/pro/squads/squad-creator-pro/tasks/optimize-hybrid-executor.md +117 -0
  2122. package/pro/squads/squad-creator-pro/tasks/optimize-post-economy.md +158 -0
  2123. package/pro/squads/squad-creator-pro/tasks/optimize-scope-clarification.md +110 -0
  2124. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-apply.md +142 -0
  2125. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-checkpoints.md +108 -0
  2126. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-executor-distribution.md +107 -0
  2127. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-gap-zero.md +113 -0
  2128. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-parallelization.md +107 -0
  2129. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-phase-necessity.md +139 -0
  2130. package/pro/squads/squad-creator-pro/tasks/optimize-workflow-report.md +146 -0
  2131. package/pro/squads/squad-creator-pro/tasks/optimize-workflow.md +139 -0
  2132. package/pro/squads/squad-creator-pro/tasks/optimize.md +172 -0
  2133. package/pro/squads/squad-creator-pro/tasks/parallel-discovery.md +111 -0
  2134. package/pro/squads/squad-creator-pro/tasks/plan-squad-architecture.md +34 -0
  2135. package/pro/squads/squad-creator-pro/tasks/plan-squad-challenge-reorder.md +34 -0
  2136. package/pro/squads/squad-creator-pro/tasks/plan-squad-contract.md +38 -0
  2137. package/pro/squads/squad-creator-pro/tasks/plan-squad-depth-calibration.md +34 -0
  2138. package/pro/squads/squad-creator-pro/tasks/plan-squad-domain-mapping.md +32 -0
  2139. package/pro/squads/squad-creator-pro/tasks/plan-squad-prd-assembly.md +37 -0
  2140. package/pro/squads/squad-creator-pro/tasks/plan-squad-roadmap.md +32 -0
  2141. package/pro/squads/squad-creator-pro/tasks/plan-squad.md +90 -0
  2142. package/pro/squads/squad-creator-pro/tasks/pv-audit-deep-dive.md +157 -0
  2143. package/pro/squads/squad-creator-pro/tasks/pv-audit-overview.md +157 -0
  2144. package/pro/squads/squad-creator-pro/tasks/pv-audit-sample.md +188 -0
  2145. package/pro/squads/squad-creator-pro/tasks/pv-audit.md +171 -0
  2146. package/pro/squads/squad-creator-pro/tasks/pv-axioma-assessment.md +172 -0
  2147. package/pro/squads/squad-creator-pro/tasks/pv-modernization-score.md +162 -0
  2148. package/pro/squads/squad-creator-pro/tasks/qa-after-creation.md +114 -0
  2149. package/pro/squads/squad-creator-pro/tasks/qualify-task.md +117 -0
  2150. package/pro/squads/squad-creator-pro/tasks/refresh-registry-enrich.md +171 -0
  2151. package/pro/squads/squad-creator-pro/tasks/refresh-registry-scan.md +173 -0
  2152. package/pro/squads/squad-creator-pro/tasks/refresh-registry-write.md +192 -0
  2153. package/pro/squads/squad-creator-pro/tasks/refresh-registry.md +163 -0
  2154. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing-comparison.md +49 -0
  2155. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing-execution.md +49 -0
  2156. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing-lookup.md +49 -0
  2157. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing-preflight.md +48 -0
  2158. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing-report.md +51 -0
  2159. package/pro/squads/squad-creator-pro/tasks/smoke-test-model-routing.md +105 -0
  2160. package/pro/squads/squad-creator-pro/tasks/squad-analytics.md +192 -0
  2161. package/pro/squads/squad-creator-pro/tasks/squad-fusion-cleanup.md +93 -0
  2162. package/pro/squads/squad-creator-pro/tasks/squad-fusion-command-sync.md +97 -0
  2163. package/pro/squads/squad-creator-pro/tasks/squad-fusion-deduplication.md +234 -0
  2164. package/pro/squads/squad-creator-pro/tasks/squad-fusion-discovery.md +98 -0
  2165. package/pro/squads/squad-creator-pro/tasks/squad-fusion-execution.md +246 -0
  2166. package/pro/squads/squad-creator-pro/tasks/squad-fusion-initialize.md +247 -0
  2167. package/pro/squads/squad-creator-pro/tasks/squad-fusion-integration.md +95 -0
  2168. package/pro/squads/squad-creator-pro/tasks/squad-fusion-resolution.md +205 -0
  2169. package/pro/squads/squad-creator-pro/tasks/squad-fusion-scope.md +95 -0
  2170. package/pro/squads/squad-creator-pro/tasks/squad-fusion-structure.md +128 -0
  2171. package/pro/squads/squad-creator-pro/tasks/squad-fusion-validation.md +96 -0
  2172. package/pro/squads/squad-creator-pro/tasks/squad-fusion.md +148 -0
  2173. package/pro/squads/squad-creator-pro/tasks/sync-chief-codex-skill.md +107 -0
  2174. package/pro/squads/squad-creator-pro/tasks/sync-ide-skills.md +192 -0
  2175. package/pro/squads/squad-creator-pro/tasks/update-mind-apply.md +207 -0
  2176. package/pro/squads/squad-creator-pro/tasks/update-mind-extract-merge.md +257 -0
  2177. package/pro/squads/squad-creator-pro/tasks/update-mind-extract.md +201 -0
  2178. package/pro/squads/squad-creator-pro/tasks/update-mind-load-snapshot.md +177 -0
  2179. package/pro/squads/squad-creator-pro/tasks/update-mind-load.md +173 -0
  2180. package/pro/squads/squad-creator-pro/tasks/update-mind-merge.md +193 -0
  2181. package/pro/squads/squad-creator-pro/tasks/update-mind.md +177 -0
  2182. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-apply.md +104 -0
  2183. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-gap.md +110 -0
  2184. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-inventory.md +110 -0
  2185. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-plan.md +107 -0
  2186. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-qualitative.md +104 -0
  2187. package/pro/squads/squad-creator-pro/tasks/upgrade-squad-verify.md +106 -0
  2188. package/pro/squads/squad-creator-pro/tasks/upgrade-squad.md +155 -0
  2189. package/pro/squads/squad-creator-pro/tasks/validate-extraction-adversarial.md +182 -0
  2190. package/pro/squads/squad-creator-pro/tasks/validate-extraction-checklist.md +155 -0
  2191. package/pro/squads/squad-creator-pro/tasks/validate-extraction-gate.md +175 -0
  2192. package/pro/squads/squad-creator-pro/tasks/validate-extraction.md +151 -0
  2193. package/pro/squads/squad-creator-pro/tasks/validate-squad-contextual.md +120 -0
  2194. package/pro/squads/squad-creator-pro/tasks/validate-squad-cross-references.md +122 -0
  2195. package/pro/squads/squad-creator-pro/tasks/validate-squad-deterministic.md +261 -0
  2196. package/pro/squads/squad-creator-pro/tasks/validate-squad-quality.md +138 -0
  2197. package/pro/squads/squad-creator-pro/tasks/validate-squad-verdict.md +183 -0
  2198. package/pro/squads/squad-creator-pro/tasks/validate-squad.md +135 -0
  2199. package/pro/squads/squad-creator-pro/tasks/workspace-integration-hardening.md +187 -0
  2200. package/pro/squads/squad-creator-pro/templates/.gitkeep +1 -0
  2201. package/pro/squads/squad-creator-pro/templates/agent-flow-doc-tmpl.md +512 -0
  2202. package/pro/squads/squad-creator-pro/templates/agent-tmpl.md +697 -0
  2203. package/pro/squads/squad-creator-pro/templates/config-tmpl.yaml +434 -0
  2204. package/pro/squads/squad-creator-pro/templates/cross-domain-handoff-tmpl.yaml +17 -0
  2205. package/pro/squads/squad-creator-pro/templates/journey-log-tmpl.yaml +75 -0
  2206. package/pro/squads/squad-creator-pro/templates/pop-extractor-prompt.md +549 -0
  2207. package/pro/squads/squad-creator-pro/templates/quality-gate-tmpl.yaml +589 -0
  2208. package/pro/squads/squad-creator-pro/templates/readme-tmpl.md +231 -0
  2209. package/pro/squads/squad-creator-pro/templates/report-tmpl.yaml +14 -0
  2210. package/pro/squads/squad-creator-pro/templates/research-output-tmpl.md +625 -0
  2211. package/pro/squads/squad-creator-pro/templates/research-prompt-tmpl.md +479 -0
  2212. package/pro/squads/squad-creator-pro/templates/session-heuristic-tmpl.md +100 -0
  2213. package/pro/squads/squad-creator-pro/templates/squad-prd-deep-tmpl.md +434 -0
  2214. package/pro/squads/squad-creator-pro/templates/squad-prd-tmpl.md +464 -0
  2215. package/pro/squads/squad-creator-pro/templates/story-create-agent-tmpl.md +284 -0
  2216. package/pro/squads/squad-creator-pro/templates/task-tmpl.md +461 -0
  2217. package/pro/squads/squad-creator-pro/templates/template-tmpl.yaml +227 -0
  2218. package/pro/squads/squad-creator-pro/templates/workflow-doc-tmpl.md +860 -0
  2219. package/pro/squads/squad-creator-pro/templates/workflow-tmpl.yaml +394 -0
  2220. package/pro/squads/squad-creator-pro/test-cases/BATCH-PROGRESS.md +268 -0
  2221. package/pro/squads/squad-creator-pro/test-cases/QUALIFICATION-DASHBOARD.yaml +13 -0
  2222. package/pro/squads/squad-creator-pro/test-cases/_template.yaml +147 -0
  2223. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/ASSESSMENT-SUMMARY.md +275 -0
  2224. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/ASSESSMENT_SUMMARY.md +140 -0
  2225. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/CHECKPOINT_MATRIX.md +202 -0
  2226. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/EXECUTION-REPORT.md +413 -0
  2227. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/EXECUTION_NOTES.md +358 -0
  2228. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/README-v2.2.2.md +299 -0
  2229. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/README.md +320 -0
  2230. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/TEST-REPORT-v2.1.md +351 -0
  2231. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/VERIFICATION-CHECKLIST.txt +247 -0
  2232. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/formal-qualification-report.yaml +389 -0
  2233. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/opus-baseline.yaml +517 -0
  2234. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/qualification-report.yaml +213 -0
  2235. package/pro/squads/squad-creator-pro/test-cases/an-assess-sources/test-case.yaml +69 -0
  2236. package/pro/squads/squad-creator-pro/test-cases/an-clone-review/opus-baseline.yaml +566 -0
  2237. package/pro/squads/squad-creator-pro/test-cases/an-clone-review/qualification-report.yaml +82 -0
  2238. package/pro/squads/squad-creator-pro/test-cases/an-design-clone/test-case.yaml +102 -0
  2239. package/pro/squads/squad-creator-pro/test-cases/an-extract-dna/test-case.yaml +105 -0
  2240. package/pro/squads/squad-creator-pro/test-cases/an-fidelity-score/opus-baseline.yaml +266 -0
  2241. package/pro/squads/squad-creator-pro/test-cases/an-fidelity-score/qualification-report.yaml +94 -0
  2242. package/pro/squads/squad-creator-pro/test-cases/an-validate-clone/opus-baseline.yaml +470 -0
  2243. package/pro/squads/squad-creator-pro/test-cases/an-validate-clone/qualification-report.yaml +106 -0
  2244. package/pro/squads/squad-creator-pro/test-cases/collect-sources/test-case.yaml +105 -0
  2245. package/pro/squads/squad-creator-pro/test-cases/create-task/test-case.yaml +104 -0
  2246. package/pro/squads/squad-creator-pro/test-cases/cross-provider/DASHBOARD.yaml +11 -0
  2247. package/pro/squads/squad-creator-pro/test-cases/pv-audit/test-case.yaml +106 -0
  2248. package/pro/squads/squad-creator-pro/test-cases/pv-axioma-assessment/opus-baseline.yaml +96 -0
  2249. package/pro/squads/squad-creator-pro/test-cases/pv-axioma-assessment/sonnet-output.yaml +30 -0
  2250. package/pro/squads/squad-creator-pro/test-cases/pv-axioma-assessment/test-case.yaml +129 -0
  2251. package/pro/squads/squad-creator-pro/test-cases/pv-modernization-score/comparison-round-1.yaml +242 -0
  2252. package/pro/squads/squad-creator-pro/test-cases/pv-modernization-score/opus-baseline.yaml +488 -0
  2253. package/pro/squads/squad-creator-pro/test-cases/pv-modernization-score/qualification-report.yaml +74 -0
  2254. package/pro/squads/squad-creator-pro/test-cases/qa-after-creation/opus-baseline.yaml +603 -0
  2255. package/pro/squads/squad-creator-pro/test-cases/qa-after-creation/qualification-report.yaml +97 -0
  2256. package/pro/squads/squad-creator-pro/test-cases/smoke-test-model-routing/test-case.yaml +100 -0
  2257. package/pro/squads/squad-creator-pro/test-cases/upgrade-squad/test-case.yaml +106 -0
  2258. package/pro/squads/squad-creator-pro/test-cases/validate-squad/comparison-round-1.yaml +223 -0
  2259. package/pro/squads/squad-creator-pro/test-cases/validate-squad/opus-baseline.yaml +529 -0
  2260. package/pro/squads/squad-creator-pro/test-cases/validate-squad/opus-round-3-v4-task.yaml +132 -0
  2261. package/pro/squads/squad-creator-pro/test-cases/validate-squad/qualification-report.yaml +104 -0
  2262. package/pro/squads/squad-creator-pro/test-cases/wf-clone-mind/opus-baseline.yaml +112 -0
  2263. package/pro/squads/squad-creator-pro/utils/.gitkeep +1 -0
  2264. package/pro/squads/squad-creator-pro/workflows/.gitkeep +1 -0
  2265. package/pro/squads/squad-creator-pro/workflows/create-squad.yaml +300 -0
  2266. package/pro/squads/squad-creator-pro/workflows/modules/module-discovery.yaml +16 -0
  2267. package/pro/squads/squad-creator-pro/workflows/modules/module-integration.yaml +34 -0
  2268. package/pro/squads/squad-creator-pro/workflows/modules/module-quality-gates.yaml +20 -0
  2269. package/pro/squads/squad-creator-pro/workflows/validate-squad.yaml +552 -0
  2270. package/pro/squads/squad-creator-pro/workflows/wf-assess-sources.yaml +62 -0
  2271. package/pro/squads/squad-creator-pro/workflows/wf-auto-acquire-sources.yaml +520 -0
  2272. package/pro/squads/squad-creator-pro/workflows/wf-brownfield-upgrade-squad.yaml +142 -0
  2273. package/pro/squads/squad-creator-pro/workflows/wf-clone-mind.yaml +607 -0
  2274. package/pro/squads/squad-creator-pro/workflows/wf-clone-review.yaml +111 -0
  2275. package/pro/squads/squad-creator-pro/workflows/wf-collect-sources.yaml +104 -0
  2276. package/pro/squads/squad-creator-pro/workflows/wf-compare-outputs.yaml +77 -0
  2277. package/pro/squads/squad-creator-pro/workflows/wf-context-aware-create-squad.yaml +177 -0
  2278. package/pro/squads/squad-creator-pro/workflows/wf-create-from-sop.yaml +117 -0
  2279. package/pro/squads/squad-creator-pro/workflows/wf-create-pipeline.yaml +19 -0
  2280. package/pro/squads/squad-creator-pro/workflows/wf-create-squad.yaml +1763 -0
  2281. package/pro/squads/squad-creator-pro/workflows/wf-create-task.yaml +22 -0
  2282. package/pro/squads/squad-creator-pro/workflows/wf-create-template.yaml +17 -0
  2283. package/pro/squads/squad-creator-pro/workflows/wf-create-workflow.yaml +22 -0
  2284. package/pro/squads/squad-creator-pro/workflows/wf-cross-provider-qualification.yaml +660 -0
  2285. package/pro/squads/squad-creator-pro/workflows/wf-deconstruct.yaml +92 -0
  2286. package/pro/squads/squad-creator-pro/workflows/wf-deep-research.yaml +148 -0
  2287. package/pro/squads/squad-creator-pro/workflows/wf-design-clone.yaml +103 -0
  2288. package/pro/squads/squad-creator-pro/workflows/wf-diagnose-clone.yaml +115 -0
  2289. package/pro/squads/squad-creator-pro/workflows/wf-discover-tools.yaml +1711 -0
  2290. package/pro/squads/squad-creator-pro/workflows/wf-extract-dna.yaml +103 -0
  2291. package/pro/squads/squad-creator-pro/workflows/wf-extract-expert-gold.yaml +101 -0
  2292. package/pro/squads/squad-creator-pro/workflows/wf-extract-framework.yaml +108 -0
  2293. package/pro/squads/squad-creator-pro/workflows/wf-extract-implicit.yaml +101 -0
  2294. package/pro/squads/squad-creator-pro/workflows/wf-extract-knowledge.yaml +162 -0
  2295. package/pro/squads/squad-creator-pro/workflows/wf-extract-sop.yaml +143 -0
  2296. package/pro/squads/squad-creator-pro/workflows/wf-extract-thinking-dna.yaml +210 -0
  2297. package/pro/squads/squad-creator-pro/workflows/wf-extract-voice-dna.yaml +76 -0
  2298. package/pro/squads/squad-creator-pro/workflows/wf-extraction-pipeline.yaml +475 -0
  2299. package/pro/squads/squad-creator-pro/workflows/wf-fidelity-score.yaml +88 -0
  2300. package/pro/squads/squad-creator-pro/workflows/wf-find-08.yaml +71 -0
  2301. package/pro/squads/squad-creator-pro/workflows/wf-install-context-stack.yaml +88 -0
  2302. package/pro/squads/squad-creator-pro/workflows/wf-install-workspace-context.yaml +764 -0
  2303. package/pro/squads/squad-creator-pro/workflows/wf-migrate-workflows.yaml +103 -0
  2304. package/pro/squads/squad-creator-pro/workflows/wf-mind-research-loop.yaml +671 -0
  2305. package/pro/squads/squad-creator-pro/workflows/wf-model-tier-qualification.yaml +737 -0
  2306. package/pro/squads/squad-creator-pro/workflows/wf-modernize-squad.yaml +178 -0
  2307. package/pro/squads/squad-creator-pro/workflows/wf-next-action.yaml +113 -0
  2308. package/pro/squads/squad-creator-pro/workflows/wf-optimize-squad.yaml +761 -0
  2309. package/pro/squads/squad-creator-pro/workflows/wf-optimize-workflow.yaml +122 -0
  2310. package/pro/squads/squad-creator-pro/workflows/wf-optimize-yolo.yaml +595 -0
  2311. package/pro/squads/squad-creator-pro/workflows/wf-plan-squad.yaml +255 -0
  2312. package/pro/squads/squad-creator-pro/workflows/wf-pv-audit.yaml +115 -0
  2313. package/pro/squads/squad-creator-pro/workflows/wf-refresh-registry.yaml +110 -0
  2314. package/pro/squads/squad-creator-pro/workflows/wf-research-then-create-agent.yaml +858 -0
  2315. package/pro/squads/squad-creator-pro/workflows/wf-smoke-test-model-routing.yaml +103 -0
  2316. package/pro/squads/squad-creator-pro/workflows/wf-squad-fusion.yaml +1691 -0
  2317. package/pro/squads/squad-creator-pro/workflows/wf-update-mind.yaml +148 -0
  2318. package/pro/squads/squad-creator-pro/workflows/wf-upgrade-squad.yaml +141 -0
  2319. package/pro/squads/squad-creator-pro/workflows/wf-validate-clone.yaml +120 -0
  2320. package/pro/squads/squad-creator-pro/workflows/wf-validate-extraction.yaml +111 -0
  2321. package/pro/squads/squad-creator-pro/workflows/wf-workspace-integration-hardening.yaml +119 -0
  2322. package/pro/squads/storytelling/CHANGELOG.md +30 -0
  2323. package/pro/squads/storytelling/HEADLINE.md +3 -0
  2324. package/pro/squads/storytelling/README.md +137 -0
  2325. package/pro/squads/storytelling/agents/blake-snyder.md +451 -0
  2326. package/pro/squads/storytelling/agents/dan-harmon.md +742 -0
  2327. package/pro/squads/storytelling/agents/donald-miller.md +662 -0
  2328. package/pro/squads/storytelling/agents/joseph-campbell.md +625 -0
  2329. package/pro/squads/storytelling/agents/keith-johnstone.md +467 -0
  2330. package/pro/squads/storytelling/agents/kindra-hall.md +953 -0
  2331. package/pro/squads/storytelling/agents/marshall-ganz.md +473 -0
  2332. package/pro/squads/storytelling/agents/matthew-dicks.md +526 -0
  2333. package/pro/squads/storytelling/agents/nancy-duarte.md +528 -0
  2334. package/pro/squads/storytelling/agents/oren-klaff.md +785 -0
  2335. package/pro/squads/storytelling/agents/park-howell.md +807 -0
  2336. package/pro/squads/storytelling/agents/shawn-coyne.md +540 -0
  2337. package/pro/squads/storytelling/agents/story-chief.md +409 -0
  2338. package/pro/squads/storytelling/checklists/story-quality-checklist.md +100 -0
  2339. package/pro/squads/storytelling/config.yaml +248 -0
  2340. package/pro/squads/storytelling/data/story-mappings.yaml +200 -0
  2341. package/pro/squads/storytelling/docs/.gitkeep +0 -0
  2342. package/pro/squads/storytelling/research/blake-snyder-save-the-cat-research.md +958 -0
  2343. package/pro/squads/storytelling/research/donald-miller-storybrand-research.md +1205 -0
  2344. package/pro/squads/storytelling/research/joseph-campbell-heros-journey-research.md +1170 -0
  2345. package/pro/squads/storytelling/research/keith-johnstone-improv-spontaneity-research.md +574 -0
  2346. package/pro/squads/storytelling/research/marshall-ganz-public-narrative-research.md +658 -0
  2347. package/pro/squads/storytelling/research/nancy-duarte-sparkline-research.md +892 -0
  2348. package/pro/squads/storytelling/research/shawn-coyne-story-grid-research.md +760 -0
  2349. package/pro/squads/storytelling/scripts/generate-story-greeting.cjs +140 -0
  2350. package/pro/squads/storytelling/scripts/load-context.cjs +141 -0
  2351. package/pro/squads/storytelling/scripts/resolve-readiness.cjs +45 -0
  2352. package/pro/squads/storytelling/scripts/runtime-paths.cjs +44 -0
  2353. package/pro/squads/storytelling/scripts/set-active-context.cjs +108 -0
  2354. package/pro/squads/storytelling/scripts/show-context.cjs +22 -0
  2355. package/pro/squads/storytelling/squad-io.yaml +573 -0
  2356. package/pro/squads/storytelling/tasks/apply-abt.md +856 -0
  2357. package/pro/squads/storytelling/tasks/apply-beat-sheet.md +1245 -0
  2358. package/pro/squads/storytelling/tasks/apply-heros-journey.md +1100 -0
  2359. package/pro/squads/storytelling/tasks/apply-save-the-cat.md +1075 -0
  2360. package/pro/squads/storytelling/tasks/apply-story-circle.md +1116 -0
  2361. package/pro/squads/storytelling/tasks/craft-personal-story.md +1004 -0
  2362. package/pro/squads/storytelling/tasks/craft-public-narrative.md +1193 -0
  2363. package/pro/squads/storytelling/tasks/craft-ted-talk.md +773 -0
  2364. package/pro/squads/storytelling/tasks/create-brandscript.md +1376 -0
  2365. package/pro/squads/storytelling/tasks/create-business-story.md +1472 -0
  2366. package/pro/squads/storytelling/tasks/create-pitch.md +1128 -0
  2367. package/pro/squads/storytelling/tasks/diagnose-story-grid.md +979 -0
  2368. package/pro/squads/storytelling/tasks/improvise-story.md +772 -0
  2369. package/pro/squads/storytelling/templates/narrative-output-tmpl.md +44 -0
  2370. package/pro/squads/storytelling/workflows/story-creation.yaml +80 -0
  2371. package/scripts/e2e/installed-skills-smoke.js +264 -0
  2372. package/scripts/package-synapse.js +3 -3
  2373. package/scripts/validate-package-completeness.js +7 -7
  2374. package/.aiox-core/lib/build.json +0 -1
@@ -0,0 +1,4900 @@
1
+ # DEPRECATED: 2026-03-26
2
+ # Replaced by: squads/sinkra-squad/data/ecosystem-registry.yaml
3
+ # Grace period: 30 days (removal after 2026-04-25)
4
+ # Do not add new entries. Use ecosystem-registry.yaml instead.
5
+
6
+ metadata:
7
+ deprecated: true
8
+ replaced_by: "squads/sinkra-squad/data/ecosystem-registry.yaml"
9
+ deprecation_date: "2026-03-26"
10
+ removal_date: "2026-04-25"
11
+ grace_period: "30d"
12
+ version: 1.0.0
13
+ last_updated: '2026-03-30'
14
+ total_squads: 41
15
+ maintainer: squad-creator
16
+ generated_by: scripts/refresh-registry.py
17
+ squads:
18
+ agent-autonomy:
19
+ path: squads/agent-autonomy/
20
+ version: unknown
21
+ description: ''
22
+ slashPrefix: ''
23
+ counts:
24
+ agents: 6
25
+ tasks: 7
26
+ workflows: 3
27
+ templates: 3
28
+ checklists: 1
29
+ data_files: 5
30
+ agent_names:
31
+ - reasoning-engineer
32
+ - agent-architect
33
+ - ecosystem-scout
34
+ - autonomy-auditor
35
+ - autonomy-chief
36
+ - tool-smith
37
+ has_readme: true
38
+ has_changelog: true
39
+ domain: _TO_BE_INFERRED_
40
+ keywords: []
41
+ highlights: []
42
+ example_use: ''
43
+ executor_capable_agents:
44
+ - id: autonomy-steward
45
+ story_role: executor
46
+ fw_type: Agent
47
+ work_contexts: []
48
+ core_replaces: null
49
+ can_review: []
50
+ - id: autonomy-chief
51
+ story_role: executor
52
+ fw_type: Agent
53
+ work_contexts: []
54
+ core_replaces: null
55
+ can_review: []
56
+ - id: autonomy-auditor
57
+ story_role: executor
58
+ fw_type: Agent
59
+ work_contexts: []
60
+ core_replaces: null
61
+ can_review: []
62
+ - id: agent-architect
63
+ story_role: executor
64
+ fw_type: Agent
65
+ work_contexts: []
66
+ core_replaces: null
67
+ can_review: []
68
+ - id: reasoning-engineer
69
+ story_role: executor
70
+ fw_type: Agent
71
+ work_contexts: []
72
+ core_replaces: null
73
+ can_review: []
74
+ - id: tool-smith
75
+ story_role: executor
76
+ fw_type: Agent
77
+ work_contexts: []
78
+ core_replaces: null
79
+ can_review: []
80
+ - id: ecosystem-scout
81
+ story_role: executor
82
+ fw_type: Agent
83
+ work_contexts: []
84
+ core_replaces: null
85
+ can_review: []
86
+ aiox-ads:
87
+ path: squads/aiox-ads/
88
+ version: 5.0.0
89
+ description: 'Squad operacional de tráfego pago multi-plataforma. 10 agentes em
90
+ 3 tiers com modelo concierge (@ad-midas). 38 skills, 47 frameworks de 5+ experts.
91
+ Integração com 2 MCPs externos (Pipeboard + ads-mcp). Safety systems com 3 tiers
92
+ de autonomia (Auto/HITL/Human).
93
+
94
+ '
95
+ slashPrefix: aiox-ads
96
+ counts:
97
+ agents: 13
98
+ tasks: 11
99
+ workflows: 3
100
+ templates: 14
101
+ checklists: 5
102
+ data_files: 6
103
+ agent_names:
104
+ - audit-orchestrator
105
+ - ralph-burns
106
+ - tom-breeze
107
+ - fiscal
108
+ - campaign-manager
109
+ - creative-analyst
110
+ - performance-analyst
111
+ - br-traffic-operator
112
+ - ads-traffic-chief
113
+ - ad-midas
114
+ - kasim-aslam
115
+ - CLAUDE
116
+ - pixel-specialist
117
+ has_readme: false
118
+ has_changelog: false
119
+ domain: _TO_BE_INFERRED_
120
+ keywords: []
121
+ highlights: []
122
+ example_use: ''
123
+ executor_capable_agents:
124
+ - id: ad-midas
125
+ story_role: executor
126
+ fw_type: Agent
127
+ work_contexts:
128
+ - general
129
+ core_replaces: null
130
+ can_review: []
131
+ - id: campaign-manager
132
+ story_role: executor
133
+ fw_type: Agent
134
+ work_contexts:
135
+ - general
136
+ core_replaces: null
137
+ can_review: []
138
+ - id: performance-analyst
139
+ story_role: executor
140
+ fw_type: Agent
141
+ work_contexts:
142
+ - general
143
+ core_replaces: null
144
+ can_review: []
145
+ - id: creative-analyst
146
+ story_role: executor
147
+ fw_type: Agent
148
+ work_contexts:
149
+ - general
150
+ core_replaces: null
151
+ can_review: []
152
+ - id: pixel-specialist
153
+ story_role: executor
154
+ fw_type: Agent
155
+ work_contexts:
156
+ - general
157
+ core_replaces: null
158
+ can_review: []
159
+ - id: fiscal
160
+ story_role: executor
161
+ fw_type: Agent
162
+ work_contexts:
163
+ - general
164
+ core_replaces: null
165
+ can_review: []
166
+ - id: kasim-aslam
167
+ story_role: executor
168
+ fw_type: Agent
169
+ work_contexts:
170
+ - general
171
+ core_replaces: null
172
+ can_review: []
173
+ - id: tom-breeze
174
+ story_role: executor
175
+ fw_type: Agent
176
+ work_contexts:
177
+ - general
178
+ core_replaces: null
179
+ can_review: []
180
+ - id: ralph-burns
181
+ story_role: executor
182
+ fw_type: Agent
183
+ work_contexts:
184
+ - general
185
+ core_replaces: null
186
+ can_review: []
187
+ - id: br-traffic-operator
188
+ story_role: executor
189
+ fw_type: Agent
190
+ work_contexts:
191
+ - general
192
+ core_replaces: null
193
+ can_review: []
194
+ aggregated_work_contexts:
195
+ - general
196
+ aiox-copy:
197
+ path: squads/copy/
198
+ version: unknown
199
+ description: ''
200
+ slashPrefix: ''
201
+ counts:
202
+ agents: 24
203
+ tasks: 71
204
+ workflows: 15
205
+ templates: 28
206
+ checklists: 33
207
+ data_files: 22
208
+ agent_names:
209
+ - gary-bencivenga
210
+ - andre-chaperon
211
+ - john-carlton
212
+ - david-deutsch
213
+ - clayton-makepeace
214
+ - david-ogilvy
215
+ - claude-hopkins
216
+ - todd-brown
217
+ - jim-rutz
218
+ - stefan-georgi
219
+ - gary-halbert
220
+ - frank-kern
221
+ - copy-chief
222
+ - joe-sugarman
223
+ - dan-koe
224
+ - ben-settle
225
+ - eugene-schwartz
226
+ - russell-brunson
227
+ - dan-kennedy
228
+ - parris-lampropoulos
229
+ - jeff-walker
230
+ - jon-benson
231
+ - robert-collier
232
+ - ry-schwartz
233
+ has_readme: true
234
+ has_changelog: false
235
+ domain: _TO_BE_INFERRED_
236
+ keywords: []
237
+ highlights: []
238
+ example_use: ''
239
+ executor_capable_agents:
240
+ - id: copy-chief
241
+ story_role: executor
242
+ fw_type: Agent
243
+ work_contexts:
244
+ - general
245
+ core_replaces: null
246
+ can_review: []
247
+ - id: claude-hopkins
248
+ story_role: executor
249
+ fw_type: Agent
250
+ work_contexts:
251
+ - general
252
+ core_replaces: null
253
+ can_review: []
254
+ - id: eugene-schwartz
255
+ story_role: executor
256
+ fw_type: Agent
257
+ work_contexts:
258
+ - general
259
+ core_replaces: null
260
+ can_review: []
261
+ - id: gary-halbert
262
+ story_role: executor
263
+ fw_type: Agent
264
+ work_contexts:
265
+ - general
266
+ core_replaces: null
267
+ can_review: []
268
+ - id: gary-bencivenga
269
+ story_role: executor
270
+ fw_type: Agent
271
+ work_contexts:
272
+ - general
273
+ core_replaces: null
274
+ can_review: []
275
+ - id: david-ogilvy
276
+ story_role: executor
277
+ fw_type: Agent
278
+ work_contexts:
279
+ - general
280
+ core_replaces: null
281
+ can_review: []
282
+ - id: dan-kennedy
283
+ story_role: executor
284
+ fw_type: Agent
285
+ work_contexts:
286
+ - general
287
+ core_replaces: null
288
+ can_review: []
289
+ - id: todd-brown
290
+ story_role: executor
291
+ fw_type: Agent
292
+ work_contexts:
293
+ - general
294
+ core_replaces: null
295
+ can_review: []
296
+ - id: jon-benson
297
+ story_role: executor
298
+ fw_type: Agent
299
+ work_contexts:
300
+ - general
301
+ core_replaces: null
302
+ can_review: []
303
+ - id: jeff-walker
304
+ story_role: executor
305
+ fw_type: Agent
306
+ work_contexts:
307
+ - general
308
+ core_replaces: null
309
+ can_review: []
310
+ - id: joe-sugarman
311
+ story_role: executor
312
+ fw_type: Agent
313
+ work_contexts:
314
+ - general
315
+ core_replaces: null
316
+ can_review: []
317
+ - id: robert-collier
318
+ story_role: executor
319
+ fw_type: Agent
320
+ work_contexts:
321
+ - general
322
+ core_replaces: null
323
+ can_review: []
324
+ - id: clayton-makepeace
325
+ story_role: executor
326
+ fw_type: Agent
327
+ work_contexts:
328
+ - general
329
+ core_replaces: null
330
+ can_review: []
331
+ - id: parris-lampropoulos
332
+ story_role: executor
333
+ fw_type: Agent
334
+ work_contexts:
335
+ - general
336
+ core_replaces: null
337
+ can_review: []
338
+ - id: john-carlton
339
+ story_role: executor
340
+ fw_type: Agent
341
+ work_contexts:
342
+ - general
343
+ core_replaces: null
344
+ can_review: []
345
+ - id: jim-rutz
346
+ story_role: executor
347
+ fw_type: Agent
348
+ work_contexts:
349
+ - general
350
+ core_replaces: null
351
+ can_review: []
352
+ - id: david-deutsch
353
+ story_role: executor
354
+ fw_type: Agent
355
+ work_contexts:
356
+ - general
357
+ core_replaces: null
358
+ can_review: []
359
+ - id: frank-kern
360
+ story_role: executor
361
+ fw_type: Agent
362
+ work_contexts:
363
+ - general
364
+ core_replaces: null
365
+ can_review: []
366
+ - id: stefan-georgi
367
+ story_role: executor
368
+ fw_type: Agent
369
+ work_contexts:
370
+ - general
371
+ core_replaces: null
372
+ can_review: []
373
+ - id: russell-brunson
374
+ story_role: executor
375
+ fw_type: Agent
376
+ work_contexts:
377
+ - general
378
+ core_replaces: null
379
+ can_review: []
380
+ - id: dan-koe
381
+ story_role: executor
382
+ fw_type: Agent
383
+ work_contexts:
384
+ - general
385
+ core_replaces: null
386
+ can_review: []
387
+ - id: andre-chaperon
388
+ story_role: executor
389
+ fw_type: Agent
390
+ work_contexts:
391
+ - general
392
+ core_replaces: null
393
+ can_review: []
394
+ - id: ben-settle
395
+ story_role: executor
396
+ fw_type: Agent
397
+ work_contexts:
398
+ - general
399
+ core_replaces: null
400
+ can_review: []
401
+ - id: ry-schwartz
402
+ story_role: executor
403
+ fw_type: Agent
404
+ work_contexts:
405
+ - general
406
+ core_replaces: null
407
+ can_review: []
408
+ aggregated_work_contexts:
409
+ - general
410
+ aiox-design:
411
+ path: squads/design-system/
412
+ version: 2.1.0
413
+ description: AIOX-specific brand execution squad. Focuses on visual identity,
414
+ brand components, and design implementation for AIOX products. For shared DS
415
+ infrastructure (tokens, registries, page-types, motion-primitives), defers to
416
+ design-system squad as SOT.
417
+ slashPrefix: DS
418
+ counts:
419
+ agents: 9
420
+ tasks: 111
421
+ workflows: 14
422
+ templates: 14
423
+ checklists: 20
424
+ data_files: 45
425
+ agent_names:
426
+ - dave-malouf
427
+ - design-chief
428
+ - ds-foundations-lead
429
+ - brad-frost
430
+ - page-composer
431
+ - ds-token-architect
432
+ - nano-banana-generator
433
+ - dan-mall
434
+ - storybook-expert
435
+ has_readme: true
436
+ has_changelog: false
437
+ domain: _TO_BE_INFERRED_
438
+ keywords: []
439
+ highlights: []
440
+ example_use: ''
441
+ executor_capable_agents:
442
+ - id: design-chief
443
+ story_role: executor
444
+ fw_type: Agent
445
+ work_contexts:
446
+ - general
447
+ core_replaces: null
448
+ can_review: []
449
+ - id: brad-frost
450
+ story_role: executor
451
+ fw_type: Agent
452
+ work_contexts:
453
+ - general
454
+ core_replaces: null
455
+ can_review: []
456
+ - id: dave-malouf
457
+ story_role: executor
458
+ fw_type: Agent
459
+ work_contexts:
460
+ - general
461
+ core_replaces: null
462
+ can_review: []
463
+ - id: dan-mall
464
+ story_role: executor
465
+ fw_type: Agent
466
+ work_contexts:
467
+ - general
468
+ core_replaces: null
469
+ can_review: []
470
+ - id: nano-banana-generator
471
+ story_role: executor
472
+ fw_type: Agent
473
+ work_contexts:
474
+ - general
475
+ core_replaces: null
476
+ can_review: []
477
+ - id: ds-token-architect
478
+ story_role: executor
479
+ fw_type: Agent
480
+ work_contexts:
481
+ - general
482
+ core_replaces: null
483
+ can_review: []
484
+ - id: ds-foundations-lead
485
+ story_role: executor
486
+ fw_type: Agent
487
+ work_contexts:
488
+ - general
489
+ core_replaces: null
490
+ can_review: []
491
+ - id: storybook-expert
492
+ story_role: executor
493
+ fw_type: Agent
494
+ work_contexts:
495
+ - general
496
+ core_replaces: null
497
+ can_review: []
498
+ - id: page-composer
499
+ story_role: executor
500
+ fw_type: Agent
501
+ work_contexts:
502
+ - general
503
+ core_replaces: null
504
+ can_review: []
505
+ aggregated_work_contexts:
506
+ - general
507
+ aiox-sop:
508
+ path: squads/aiox-sop/
509
+ version: 1.0.0
510
+ description: Elite SOP creation, extraction, analysis, grading and AI-optimization
511
+ squad. Creates world-class SOPs for humans and AI agents based on Deming, Gawande,
512
+ Juran, Toyota, ISO 9001, FDA/GMP, and Six Sigma methodologies.
513
+ slashPrefix: ''
514
+ counts:
515
+ agents: 6
516
+ tasks: 22
517
+ workflows: 5
518
+ templates: 15
519
+ checklists: 6
520
+ data_files: 14
521
+ agent_names:
522
+ - sop-auditor
523
+ - sop-analyst
524
+ - sop-creator
525
+ - sop-chief
526
+ - sop-ml-architect
527
+ - sop-extractor
528
+ has_readme: true
529
+ has_changelog: true
530
+ domain: _TO_BE_INFERRED_
531
+ keywords: []
532
+ highlights: []
533
+ example_use: ''
534
+ executor_capable_agents:
535
+ - id: sop-chief
536
+ story_role: executor
537
+ fw_type: Agent
538
+ work_contexts:
539
+ - general
540
+ core_replaces: null
541
+ can_review: []
542
+ - id: sop-analyst
543
+ story_role: executor
544
+ fw_type: Agent
545
+ work_contexts:
546
+ - general
547
+ core_replaces: null
548
+ can_review: []
549
+ - id: sop-creator
550
+ story_role: executor
551
+ fw_type: Agent
552
+ work_contexts:
553
+ - general
554
+ core_replaces: null
555
+ can_review: []
556
+ - id: sop-ml-architect
557
+ story_role: executor
558
+ fw_type: Agent
559
+ work_contexts:
560
+ - general
561
+ core_replaces: null
562
+ can_review: []
563
+ - id: sop-extractor
564
+ story_role: executor
565
+ fw_type: Agent
566
+ work_contexts:
567
+ - general
568
+ core_replaces: null
569
+ can_review: []
570
+ - id: sop-auditor
571
+ story_role: executor
572
+ fw_type: Agent
573
+ work_contexts:
574
+ - general
575
+ core_replaces: null
576
+ can_review: []
577
+ aggregated_work_contexts:
578
+ - general
579
+ workspace-governance-legacy:
580
+ path: squads/c-level/
581
+ version: 1.1.0
582
+ description: 'Legacy workspace governance squad - Gestão de workspace, businesses, diagnósticos
583
+ e operações.
584
+
585
+ Responsável por elicitação profunda, geração de documentos de referência,
586
+
587
+ e organização completa do workspace com visão executiva.
588
+
589
+
590
+ Suporta múltiplos negócios (businesses) dentro de um único workspace.
591
+
592
+ '
593
+ slashPrefix: ''
594
+ counts:
595
+ agents: 6
596
+ tasks: 36
597
+ workflows: 3
598
+ templates: 0
599
+ checklists: 4
600
+ data_files: 1
601
+ agent_names:
602
+ - cio-engineer
603
+ - cmo-architect
604
+ - workspace-chief
605
+ - cto-architect
606
+ - caio-architect
607
+ - vision-strategist
608
+ has_readme: true
609
+ has_changelog: false
610
+ domain: _TO_BE_INFERRED_
611
+ keywords: []
612
+ highlights: []
613
+ example_use: ''
614
+ executor_capable_agents:
615
+ - id: workspace-chief
616
+ story_role: executor
617
+ fw_type: Agent
618
+ work_contexts:
619
+ - general
620
+ core_replaces: null
621
+ can_review: []
622
+ - id: vision-strategist
623
+ story_role: executor
624
+ fw_type: Agent
625
+ work_contexts:
626
+ - general
627
+ core_replaces: null
628
+ can_review: []
629
+ - id: cmo-architect
630
+ story_role: executor
631
+ fw_type: Agent
632
+ work_contexts:
633
+ - general
634
+ core_replaces: null
635
+ can_review: []
636
+ - id: cto-architect
637
+ story_role: executor
638
+ fw_type: Agent
639
+ work_contexts:
640
+ - general
641
+ core_replaces: null
642
+ can_review: []
643
+ - id: cio-engineer
644
+ story_role: executor
645
+ fw_type: Agent
646
+ work_contexts:
647
+ - general
648
+ core_replaces: null
649
+ can_review: []
650
+ - id: caio-architect
651
+ story_role: executor
652
+ fw_type: Agent
653
+ work_contexts:
654
+ - general
655
+ core_replaces: null
656
+ can_review: []
657
+ aggregated_work_contexts:
658
+ - general
659
+ backlog-ops:
660
+ path: squads/backlog-ops/
661
+ version: unknown
662
+ description: ''
663
+ slashPrefix: ''
664
+ counts:
665
+ agents: 13
666
+ tasks: 0
667
+ workflows: 0
668
+ templates: 0
669
+ checklists: 0
670
+ data_files: 0
671
+ agent_names:
672
+ - sync-engineer
673
+ - task-manager
674
+ - don-reinertsen
675
+ - david-allen
676
+ - backlog-chief
677
+ - shreyas-doshi
678
+ - ryan-singer
679
+ - jeff-patton
680
+ - marty-cagan
681
+ - mike-cohn
682
+ - backlog-analyst
683
+ - jim-benson
684
+ - melissa-perri
685
+ has_readme: false
686
+ has_changelog: false
687
+ domain: _TO_BE_INFERRED_
688
+ keywords: []
689
+ highlights: []
690
+ example_use: ''
691
+ executor_capable_agents:
692
+ - id: sync-engineer
693
+ story_role: executor
694
+ fw_type: Agent
695
+ work_contexts:
696
+ - bilateral-sync
697
+ - task-sink-integration
698
+ - persistence-sync
699
+ - story-sync
700
+ - rfc-012
701
+ core_replaces: '@dev'
702
+ can_review:
703
+ - sync
704
+ - integration
705
+ - id: backlog-analyst
706
+ story_role: executor
707
+ fw_type: Agent
708
+ work_contexts:
709
+ - backlog-metrics
710
+ - anomaly-detection
711
+ - dashboards
712
+ - sprint-analytics
713
+ - forecasting
714
+ core_replaces: '@analyst'
715
+ can_review:
716
+ - metrics
717
+ - analytics
718
+ - id: task-manager
719
+ story_role: executor
720
+ fw_type: Agent
721
+ work_contexts:
722
+ - task-lifecycle
723
+ - capture
724
+ - clarify
725
+ - board-management
726
+ - cooldown
727
+ - gtd
728
+ core_replaces: '@dev'
729
+ can_review:
730
+ - task-management
731
+ - lifecycle
732
+ executor_reviewers:
733
+ - id: backlog-chief
734
+ can_review:
735
+ - backlog
736
+ - sprint-ops
737
+ - sync
738
+ - id: don-reinertsen
739
+ can_review:
740
+ - prioritization
741
+ - flow-economics
742
+ - id: mike-cohn
743
+ can_review:
744
+ - sprint-planning
745
+ - estimation
746
+ - id: shreyas-doshi
747
+ can_review:
748
+ - prioritization
749
+ - product-strategy
750
+ - id: david-allen
751
+ can_review:
752
+ - gtd
753
+ - task-management
754
+ - id: jim-benson
755
+ can_review:
756
+ - kanban
757
+ - flow
758
+ - id: marty-cagan
759
+ can_review:
760
+ - product-discovery
761
+ - validation
762
+ - id: jeff-patton
763
+ can_review:
764
+ - story-mapping
765
+ - release-planning
766
+ - id: melissa-perri
767
+ can_review:
768
+ - product-strategy
769
+ - outcome-focus
770
+ - id: ryan-singer
771
+ can_review:
772
+ - shape-up
773
+ - cycle-management
774
+ aggregated_work_contexts:
775
+ - anomaly-detection
776
+ - backlog-metrics
777
+ - bilateral-sync
778
+ - board-management
779
+ - capture
780
+ - clarify
781
+ - cooldown
782
+ - dashboards
783
+ - forecasting
784
+ - gtd
785
+ - persistence-sync
786
+ - rfc-012
787
+ - sprint-analytics
788
+ - story-sync
789
+ - task-lifecycle
790
+ - task-sink-integration
791
+ books:
792
+ path: squads/books/
793
+ version: unknown
794
+ description: ''
795
+ slashPrefix: BookSummary
796
+ counts:
797
+ agents: 1
798
+ tasks: 27
799
+ workflows: 1
800
+ templates: 5
801
+ checklists: 2
802
+ data_files: 13
803
+ agent_names:
804
+ - book-summary-orchestrator
805
+ has_readme: true
806
+ has_changelog: true
807
+ domain: _TO_BE_INFERRED_
808
+ keywords: []
809
+ highlights: []
810
+ example_use: ''
811
+ executor_capable_agents:
812
+ - id: book-summary-orchestrator
813
+ story_role: executor
814
+ fw_type: Agent
815
+ work_contexts: []
816
+ core_replaces: null
817
+ can_review: []
818
+ - id: content-operator
819
+ story_role: executor
820
+ fw_type: Agent
821
+ work_contexts: []
822
+ core_replaces: null
823
+ can_review: []
824
+ - id: books-runtime-worker
825
+ story_role: executor
826
+ fw_type: Agent
827
+ work_contexts: []
828
+ core_replaces: null
829
+ can_review: []
830
+ brand:
831
+ path: squads/brand/
832
+ version: 1.1.0
833
+ description: SNP (Igor) + E/F/F (Ana) com 11 especialistas globais para fundamentos,
834
+ posicionamento e ativação
835
+ slashPrefix: ''
836
+ counts:
837
+ agents: 16
838
+ tasks: 18
839
+ workflows: 8
840
+ templates: 2
841
+ checklists: 1
842
+ data_files: 4
843
+ agent_names:
844
+ - brand-strategist
845
+ - miller-sticky-brand
846
+ - sharp-brand-science
847
+ - ries-positioning
848
+ - heyward-dtc-brand
849
+ - storybrand-narrator
850
+ - keller-brand-equity
851
+ - yohn-brand-culture
852
+ - domain-scout
853
+ - aaker-brand-identity
854
+ - wheeler-brand-design
855
+ - nano-banana-generator
856
+ - archetype-consultant
857
+ - naming-strategist
858
+ - neumeier-differentiation
859
+ - brand-chief
860
+ has_readme: true
861
+ has_changelog: true
862
+ domain: _TO_BE_INFERRED_
863
+ keywords: []
864
+ highlights: []
865
+ example_use: ''
866
+ executor_capable_agents:
867
+ - id: naming-strategist
868
+ story_role: executor
869
+ fw_type: Agent
870
+ work_contexts:
871
+ - general
872
+ core_replaces: null
873
+ can_review: []
874
+ - id: brand-strategist
875
+ story_role: executor
876
+ fw_type: Agent
877
+ work_contexts:
878
+ - general
879
+ core_replaces: null
880
+ can_review: []
881
+ - id: domain-scout
882
+ story_role: executor
883
+ fw_type: Agent
884
+ work_contexts:
885
+ - general
886
+ core_replaces: null
887
+ can_review: []
888
+ - id: keller-brand-equity
889
+ story_role: executor
890
+ fw_type: Agent
891
+ work_contexts:
892
+ - general
893
+ core_replaces: null
894
+ can_review: []
895
+ - id: aaker-brand-identity
896
+ story_role: executor
897
+ fw_type: Agent
898
+ work_contexts:
899
+ - general
900
+ core_replaces: null
901
+ can_review: []
902
+ - id: sharp-brand-science
903
+ story_role: executor
904
+ fw_type: Agent
905
+ work_contexts:
906
+ - general
907
+ core_replaces: null
908
+ can_review: []
909
+ - id: neumeier-differentiation
910
+ story_role: executor
911
+ fw_type: Agent
912
+ work_contexts:
913
+ - general
914
+ core_replaces: null
915
+ can_review: []
916
+ - id: ries-positioning
917
+ story_role: executor
918
+ fw_type: Agent
919
+ work_contexts:
920
+ - general
921
+ core_replaces: null
922
+ can_review: []
923
+ - id: storybrand-narrator
924
+ story_role: executor
925
+ fw_type: Agent
926
+ work_contexts:
927
+ - general
928
+ core_replaces: null
929
+ can_review: []
930
+ - id: archetype-consultant
931
+ story_role: executor
932
+ fw_type: Agent
933
+ work_contexts:
934
+ - general
935
+ core_replaces: null
936
+ can_review: []
937
+ - id: wheeler-brand-design
938
+ story_role: executor
939
+ fw_type: Agent
940
+ work_contexts:
941
+ - general
942
+ core_replaces: null
943
+ can_review: []
944
+ - id: yohn-brand-culture
945
+ story_role: executor
946
+ fw_type: Agent
947
+ work_contexts:
948
+ - general
949
+ core_replaces: null
950
+ can_review: []
951
+ - id: heyward-dtc-brand
952
+ story_role: executor
953
+ fw_type: Agent
954
+ work_contexts:
955
+ - general
956
+ core_replaces: null
957
+ can_review: []
958
+ - id: miller-sticky-brand
959
+ story_role: executor
960
+ fw_type: Agent
961
+ work_contexts:
962
+ - general
963
+ core_replaces: null
964
+ can_review: []
965
+ aggregated_work_contexts:
966
+ - general
967
+ c-level:
968
+ path: squads/c-level/
969
+ version: unknown
970
+ description: ''
971
+ slashPrefix: ''
972
+ counts:
973
+ agents: 8
974
+ tasks: 30
975
+ workflows: 3
976
+ templates: 3
977
+ checklists: 3
978
+ data_files: 5
979
+ agent_names:
980
+ - cio-engineer
981
+ - coo-orchestrator
982
+ - cmo-architect
983
+ - cso
984
+ - cto-architect
985
+ - caio-architect
986
+ - cfo-architect
987
+ - vision-chief
988
+ has_readme: true
989
+ has_changelog: false
990
+ domain: _TO_BE_INFERRED_
991
+ keywords: []
992
+ highlights: []
993
+ example_use: ''
994
+ executor_capable_agents:
995
+ - id: coo-orchestrator
996
+ story_role: executor
997
+ fw_type: Agent
998
+ work_contexts:
999
+ - workspace governance
1000
+ - squad coordination
1001
+ - operações
1002
+ - estrutura organizacional
1003
+ - handoff
1004
+ - elicitação
1005
+ - 5-layer workspace
1006
+ core_replaces: null
1007
+ can_review:
1008
+ - operations
1009
+ - workspace-structure
1010
+ - governance
1011
+ - process
1012
+ - id: vision-chief
1013
+ story_role: executor
1014
+ fw_type: Agent
1015
+ work_contexts:
1016
+ - visão estratégica
1017
+ - missão
1018
+ - direção geral
1019
+ - founder DNA
1020
+ - strategy
1021
+ - leadership
1022
+ - company vision
1023
+ core_replaces: null
1024
+ can_review:
1025
+ - strategy
1026
+ - vision
1027
+ - mission
1028
+ - id: cmo-architect
1029
+ story_role: executor
1030
+ fw_type: Agent
1031
+ work_contexts:
1032
+ - ICP
1033
+ - proposta de valor
1034
+ - brand
1035
+ - messaging
1036
+ - posicionamento
1037
+ - pricing
1038
+ - marketing strategy
1039
+ core_replaces: null
1040
+ can_review:
1041
+ - brand
1042
+ - marketing
1043
+ - positioning
1044
+ - ICP
1045
+ - id: cto-architect
1046
+ story_role: executor
1047
+ fw_type: Agent
1048
+ work_contexts:
1049
+ - tech strategy
1050
+ - stack selection
1051
+ - roadmap técnico
1052
+ - arquitetura
1053
+ - technology decisions
1054
+ - scalability
1055
+ core_replaces: null
1056
+ can_review:
1057
+ - architecture
1058
+ - tech-stack
1059
+ - technical-strategy
1060
+ - id: cio-engineer
1061
+ story_role: executor
1062
+ fw_type: Agent
1063
+ work_contexts:
1064
+ - tech stack operacional
1065
+ - code standards
1066
+ - infraestrutura
1067
+ - devops
1068
+ - CI/CD
1069
+ - cloud
1070
+ core_replaces: null
1071
+ can_review:
1072
+ - infrastructure
1073
+ - code-standards
1074
+ - devops
1075
+ - id: caio-architect
1076
+ story_role: executor
1077
+ fw_type: Agent
1078
+ work_contexts:
1079
+ - AI strategy
1080
+ - agent orchestration
1081
+ - model selection
1082
+ - orquestração
1083
+ - configuração de agentes
1084
+ - LLM
1085
+ core_replaces: null
1086
+ can_review:
1087
+ - ai-strategy
1088
+ - agent-config
1089
+ - model-selection
1090
+ - id: cfo-architect
1091
+ story_role: executor
1092
+ fw_type: Agent
1093
+ work_contexts:
1094
+ - financial governance
1095
+ - DRE
1096
+ - IRPF
1097
+ - investimentos
1098
+ - cloud costs
1099
+ - bonificação
1100
+ - M&A
1101
+ - export policy
1102
+ - financial routing
1103
+ core_replaces: null
1104
+ can_review:
1105
+ - financial-strategy
1106
+ - export-policy
1107
+ - financial-governance
1108
+ - id: cso
1109
+ story_role: executor
1110
+ fw_type: Agent
1111
+ work_contexts:
1112
+ - SINKRA governance
1113
+ - coerência documental
1114
+ - gap-zero enforcement
1115
+ - compliance
1116
+ - layer validation
1117
+ - L0-L4
1118
+ core_replaces: null
1119
+ can_review:
1120
+ - governance
1121
+ - document-compliance
1122
+ - sinkra-standards
1123
+ aggregated_work_contexts:
1124
+ - 5-layer workspace
1125
+ - AI strategy
1126
+ - CI/CD
1127
+ - DRE
1128
+ - ICP
1129
+ - IRPF
1130
+ - L0-L4
1131
+ - LLM
1132
+ - M&A
1133
+ - SINKRA governance
1134
+ - agent orchestration
1135
+ - arquitetura
1136
+ - bonificação
1137
+ - brand
1138
+ - cloud
1139
+ - cloud costs
1140
+ - code standards
1141
+ - coerência documental
1142
+ - company vision
1143
+ - compliance
1144
+ - configuração de agentes
1145
+ - devops
1146
+ - direção geral
1147
+ - elicitação
1148
+ - estrutura organizacional
1149
+ - export policy
1150
+ - financial governance
1151
+ - financial routing
1152
+ - founder DNA
1153
+ - gap-zero enforcement
1154
+ - handoff
1155
+ - infraestrutura
1156
+ - investimentos
1157
+ - layer validation
1158
+ - leadership
1159
+ - marketing strategy
1160
+ - messaging
1161
+ - missão
1162
+ - model selection
1163
+ - operações
1164
+ - orquestração
1165
+ - posicionamento
1166
+ - pricing
1167
+ - proposta de valor
1168
+ - roadmap técnico
1169
+ - scalability
1170
+ - squad coordination
1171
+ - stack selection
1172
+ - strategy
1173
+ - tech stack operacional
1174
+ - tech strategy
1175
+ - technology decisions
1176
+ - visão estratégica
1177
+ - workspace governance
1178
+ claude-code-mastery:
1179
+ path: squads/claude-code-mastery/
1180
+ version: unknown
1181
+ description: ''
1182
+ slashPrefix: ''
1183
+ counts:
1184
+ agents: 8
1185
+ tasks: 28
1186
+ workflows: 3
1187
+ templates: 9
1188
+ checklists: 7
1189
+ data_files: 8
1190
+ agent_names:
1191
+ - mcp-integrator
1192
+ - hooks-architect
1193
+ - skill-craftsman
1194
+ - swarm-orchestrator
1195
+ - config-engineer
1196
+ - claude-mastery-chief
1197
+ - project-integrator
1198
+ - roadmap-sentinel
1199
+ has_readme: true
1200
+ has_changelog: true
1201
+ domain: _TO_BE_INFERRED_
1202
+ keywords: []
1203
+ highlights: []
1204
+ example_use: ''
1205
+ executor_capable_agents:
1206
+ - id: hooks-architect
1207
+ story_role: executor
1208
+ fw_type: Agent
1209
+ work_contexts:
1210
+ - hooks
1211
+ - automação
1212
+ - lifecycle
1213
+ - validation
1214
+ - damage-control
1215
+ core_replaces: '@dev'
1216
+ can_review:
1217
+ - hooks
1218
+ - automação
1219
+ - id: mcp-integrator
1220
+ story_role: executor
1221
+ fw_type: Agent
1222
+ work_contexts:
1223
+ - mcp
1224
+ - tool-discovery
1225
+ - integration
1226
+ - context-budget
1227
+ - transport
1228
+ core_replaces: '@dev'
1229
+ can_review:
1230
+ - mcp
1231
+ - integration
1232
+ - id: swarm-orchestrator
1233
+ story_role: executor
1234
+ fw_type: Agent
1235
+ work_contexts:
1236
+ - agent-teams
1237
+ - subagents
1238
+ - worktrees
1239
+ - coordination
1240
+ - sessions
1241
+ core_replaces: '@architect'
1242
+ can_review:
1243
+ - orchestration
1244
+ - swarm
1245
+ - id: config-engineer
1246
+ story_role: executor
1247
+ fw_type: Agent
1248
+ work_contexts:
1249
+ - settings
1250
+ - permissions
1251
+ - CLAUDE.md
1252
+ - rules
1253
+ - personas
1254
+ - config
1255
+ core_replaces: '@dev'
1256
+ can_review:
1257
+ - configuration
1258
+ - permissions
1259
+ - id: skill-craftsman
1260
+ story_role: executor
1261
+ fw_type: Agent
1262
+ work_contexts:
1263
+ - skills
1264
+ - commands
1265
+ - plugins
1266
+ - context-engineering
1267
+ - marketplace
1268
+ core_replaces: '@dev'
1269
+ can_review:
1270
+ - skills
1271
+ - commands
1272
+ - plugins
1273
+ - id: project-integrator
1274
+ story_role: executor
1275
+ fw_type: Agent
1276
+ work_contexts:
1277
+ - project-integration
1278
+ - brownfield
1279
+ - monorepo
1280
+ - ci-cd
1281
+ - setup
1282
+ core_replaces: '@devops'
1283
+ can_review:
1284
+ - integration
1285
+ - setup
1286
+ - id: roadmap-sentinel
1287
+ story_role: executor
1288
+ fw_type: Agent
1289
+ work_contexts:
1290
+ - roadmap
1291
+ - changelog
1292
+ - feature-adoption
1293
+ - release-notes
1294
+ - ecosystem
1295
+ core_replaces: '@analyst'
1296
+ can_review:
1297
+ - roadmap
1298
+ - updates
1299
+ - changelog
1300
+ executor_reviewers:
1301
+ - id: mastery-steward
1302
+ can_review:
1303
+ - configuração
1304
+ - hooks
1305
+ - mcp
1306
+ - roadmap
1307
+ - integração
1308
+ - id: mastery-reviewer
1309
+ can_review:
1310
+ - setup
1311
+ - quality-gates
1312
+ - artifacts
1313
+ - update-knowledge
1314
+ - id: claude-mastery-chief
1315
+ can_review:
1316
+ - claude-code
1317
+ - orchestration
1318
+ - audit
1319
+ aggregated_work_contexts:
1320
+ - CLAUDE.md
1321
+ - agent-teams
1322
+ - automação
1323
+ - brownfield
1324
+ - changelog
1325
+ - ci-cd
1326
+ - commands
1327
+ - config
1328
+ - context-budget
1329
+ - context-engineering
1330
+ - coordination
1331
+ - damage-control
1332
+ - ecosystem
1333
+ - feature-adoption
1334
+ - hooks
1335
+ - integration
1336
+ - lifecycle
1337
+ - marketplace
1338
+ - mcp
1339
+ - monorepo
1340
+ - permissions
1341
+ - personas
1342
+ - plugins
1343
+ - project-integration
1344
+ - release-notes
1345
+ - roadmap
1346
+ - rules
1347
+ - sessions
1348
+ - settings
1349
+ - setup
1350
+ - skills
1351
+ - subagents
1352
+ - tool-discovery
1353
+ - transport
1354
+ - validation
1355
+ - worktrees
1356
+ clickup-ops-squad:
1357
+ path: squads/clickup-ops-squad/
1358
+ version: unknown
1359
+ description: ''
1360
+ slashPrefix: ''
1361
+ counts:
1362
+ agents: 1
1363
+ tasks: 22
1364
+ workflows: 1
1365
+ templates: 2
1366
+ checklists: 0
1367
+ data_files: 8
1368
+ agent_names:
1369
+ - clickup-chief
1370
+ has_readme: false
1371
+ has_changelog: false
1372
+ domain: _TO_BE_INFERRED_
1373
+ keywords: []
1374
+ highlights: []
1375
+ example_use: ''
1376
+ executor_capable_agents:
1377
+ - id: clickup-chief
1378
+ story_role: executor
1379
+ fw_type: Agent
1380
+ work_contexts: []
1381
+ core_replaces: null
1382
+ can_review: []
1383
+ - id: mission-lead
1384
+ story_role: executor
1385
+ fw_type: Agent
1386
+ work_contexts: []
1387
+ core_replaces: null
1388
+ can_review: []
1389
+ - id: clickup-runner
1390
+ story_role: executor
1391
+ fw_type: Agent
1392
+ work_contexts: []
1393
+ core_replaces: null
1394
+ can_review: []
1395
+ - id: mission-quality-clone
1396
+ story_role: executor
1397
+ fw_type: Agent
1398
+ work_contexts: []
1399
+ core_replaces: null
1400
+ can_review: []
1401
+ copy:
1402
+ path: squads/copy/
1403
+ version: 4.0.0
1404
+ description: Time de copywriters lendários organizado por tiers para criar peças
1405
+ de alta conversão.
1406
+ slashPrefix: copy
1407
+ counts:
1408
+ agents: 27
1409
+ tasks: 68
1410
+ workflows: 17
1411
+ templates: 30
1412
+ checklists: 33
1413
+ data_files: 21
1414
+ agent_names:
1415
+ - gary-bencivenga
1416
+ - alex-hormozi
1417
+ - launch-owner
1418
+ - andre-chaperon
1419
+ - john-carlton
1420
+ - david-deutsch
1421
+ - clayton-makepeace
1422
+ - david-ogilvy
1423
+ - claude-hopkins
1424
+ - todd-brown
1425
+ - jim-rutz
1426
+ - stefan-georgi
1427
+ - gary-halbert
1428
+ - frank-kern
1429
+ - copy-chief
1430
+ - joe-sugarman
1431
+ - dan-koe
1432
+ - ben-settle
1433
+ - eugene-schwartz
1434
+ - russell-brunson
1435
+ - dan-kennedy
1436
+ - copy-ops-worker
1437
+ - parris-lampropoulos
1438
+ - jeff-walker
1439
+ - jon-benson
1440
+ - robert-collier
1441
+ - ry-schwartz
1442
+ has_readme: true
1443
+ has_changelog: false
1444
+ domain: _TO_BE_INFERRED_
1445
+ keywords: []
1446
+ highlights: []
1447
+ example_use: ''
1448
+ executor_capable_agents:
1449
+ - id: copy-ops-worker
1450
+ story_role: executor
1451
+ fw_type: Agent
1452
+ work_contexts:
1453
+ - package assembly
1454
+ - deliverable normalization
1455
+ - handoff manifest
1456
+ - output packaging
1457
+ - ops handoff
1458
+ - file normalization
1459
+ core_replaces: null
1460
+ can_review:
1461
+ - delivery-completeness
1462
+ - handoff-integrity
1463
+ - id: gary-halbert
1464
+ story_role: executor
1465
+ fw_type: Agent
1466
+ work_contexts:
1467
+ - sales letters
1468
+ - headlines
1469
+ - storytelling visceral
1470
+ - emotional copy
1471
+ - direct mail
1472
+ - cartas de vendas
1473
+ core_replaces: '@dev'
1474
+ can_review:
1475
+ - sales-letter-quality
1476
+ - headline-power
1477
+ - id: gary-bencivenga
1478
+ story_role: executor
1479
+ fw_type: Agent
1480
+ work_contexts:
1481
+ - bullets
1482
+ - fascinations
1483
+ - long-form copy
1484
+ - control beating
1485
+ - hipnotic bullets
1486
+ - proof stack
1487
+ core_replaces: '@dev'
1488
+ can_review:
1489
+ - bullet-quality
1490
+ - fascination-power
1491
+ - id: david-ogilvy
1492
+ story_role: executor
1493
+ fw_type: Agent
1494
+ work_contexts:
1495
+ - branding copy
1496
+ - premium copy
1497
+ - research-based
1498
+ - elegant writing
1499
+ - brand advertising
1500
+ - long headlines
1501
+ core_replaces: '@dev'
1502
+ can_review:
1503
+ - brand-copy
1504
+ - premium-quality
1505
+ - id: dan-kennedy
1506
+ story_role: executor
1507
+ fw_type: Agent
1508
+ work_contexts:
1509
+ - direct response
1510
+ - urgência
1511
+ - escassez
1512
+ - 3Ms
1513
+ - PAS
1514
+ - ultimate sales letter
1515
+ - NO B.S.
1516
+ core_replaces: '@dev'
1517
+ can_review:
1518
+ - direct-response-quality
1519
+ - urgency-scarcity
1520
+ - id: todd-brown
1521
+ story_role: executor
1522
+ fw_type: Agent
1523
+ work_contexts:
1524
+ - big ideas
1525
+ - unique mechanisms
1526
+ - E5 method
1527
+ - diferenciação
1528
+ - mercados saturados
1529
+ - marketing differentiation
1530
+ core_replaces: '@dev'
1531
+ can_review:
1532
+ - big-idea-quality
1533
+ - mechanism-uniqueness
1534
+ - id: jon-benson
1535
+ story_role: executor
1536
+ fw_type: Agent
1537
+ work_contexts:
1538
+ - VSL scripts
1539
+ - video sales letter
1540
+ - Sellerator method
1541
+ - video copy
1542
+ - slide VSL
1543
+ - conversion video
1544
+ core_replaces: '@dev'
1545
+ can_review:
1546
+ - VSL-quality
1547
+ - video-copy
1548
+ - id: jeff-walker
1549
+ story_role: executor
1550
+ fw_type: Agent
1551
+ work_contexts:
1552
+ - PLF
1553
+ - product launch formula
1554
+ - PLC sequences
1555
+ - mental triggers
1556
+ - launch copy
1557
+ - seed launch
1558
+ core_replaces: '@dev'
1559
+ can_review:
1560
+ - launch-sequence
1561
+ - PLF-compliance
1562
+ - id: alex-hormozi
1563
+ story_role: executor
1564
+ fw_type: Agent
1565
+ work_contexts:
1566
+ - offer creation
1567
+ - grand slam offers
1568
+ - value equation
1569
+ - pricing
1570
+ - value stack
1571
+ - irresistible offers
1572
+ core_replaces: '@dev'
1573
+ can_review:
1574
+ - offer-strength
1575
+ - pricing-strategy
1576
+ - value-equation
1577
+ - id: clayton-makepeace
1578
+ story_role: executor
1579
+ fw_type: Agent
1580
+ work_contexts:
1581
+ - visceral copy
1582
+ - emotional amplification
1583
+ - health market
1584
+ - copy visceral
1585
+ - amplificação emocional
1586
+ - supplement copy
1587
+ core_replaces: '@dev'
1588
+ can_review:
1589
+ - emotional-copy
1590
+ - health-copy
1591
+ - id: parris-lampropoulos
1592
+ story_role: executor
1593
+ fw_type: Agent
1594
+ work_contexts:
1595
+ - fascinations
1596
+ - bullets 700-to-100
1597
+ - long-form
1598
+ - control copy
1599
+ - Boardroom controls
1600
+ - financial copy
1601
+ core_replaces: '@dev'
1602
+ can_review:
1603
+ - bullet-density
1604
+ - fascination-quality
1605
+ - id: john-carlton
1606
+ story_role: executor
1607
+ fw_type: Agent
1608
+ work_contexts:
1609
+ - simple writing system
1610
+ - conversational copy
1611
+ - sales copy
1612
+ - copy simplificada
1613
+ - persuasive writing
1614
+ core_replaces: '@dev'
1615
+ can_review:
1616
+ - copy-simplicity
1617
+ - conversational-tone
1618
+ - id: jim-rutz
1619
+ story_role: executor
1620
+ fw_type: Agent
1621
+ work_contexts:
1622
+ - magalogs
1623
+ - direct mail
1624
+ - magazine-format copy
1625
+ - high-volume mail
1626
+ - editorial style
1627
+ - long-form direct
1628
+ core_replaces: '@dev'
1629
+ can_review:
1630
+ - magalog-quality
1631
+ - direct-mail-format
1632
+ - id: david-deutsch
1633
+ story_role: executor
1634
+ fw_type: Agent
1635
+ work_contexts:
1636
+ - direct mail
1637
+ - sales letters
1638
+ - control copy
1639
+ - cartas de vendas
1640
+ - mail campaigns
1641
+ - response copy
1642
+ core_replaces: '@dev'
1643
+ can_review:
1644
+ - direct-mail-quality
1645
+ - control-performance
1646
+ - id: frank-kern
1647
+ story_role: executor
1648
+ fw_type: Agent
1649
+ work_contexts:
1650
+ - intent-based branding
1651
+ - mass control
1652
+ - behavioral dynamic response
1653
+ - results in advance
1654
+ - brand marketing
1655
+ core_replaces: '@dev'
1656
+ can_review:
1657
+ - intent-branding
1658
+ - mass-control
1659
+ - id: stefan-georgi
1660
+ story_role: executor
1661
+ fw_type: Agent
1662
+ work_contexts:
1663
+ - RMBC method
1664
+ - research mechanism brief copy
1665
+ - copy sistematizada
1666
+ - mecanismos
1667
+ - systematic copy
1668
+ core_replaces: '@dev'
1669
+ can_review:
1670
+ - RMBC-compliance
1671
+ - mechanism-quality
1672
+ - id: russell-brunson
1673
+ story_role: executor
1674
+ fw_type: Agent
1675
+ work_contexts:
1676
+ - funnels
1677
+ - book launches
1678
+ - free + shipping
1679
+ - value ladders
1680
+ - funnel hacking
1681
+ - ClickFunnels
1682
+ core_replaces: '@dev'
1683
+ can_review:
1684
+ - funnel-copy
1685
+ - launch-copy
1686
+ - id: dan-koe
1687
+ story_role: executor
1688
+ fw_type: Agent
1689
+ work_contexts:
1690
+ - digital writing
1691
+ - one-person business
1692
+ - content systems
1693
+ - newsletter
1694
+ - social writing
1695
+ - creator economy
1696
+ core_replaces: '@dev'
1697
+ can_review:
1698
+ - digital-writing
1699
+ - content-systems
1700
+ - id: andre-chaperon
1701
+ story_role: executor
1702
+ fw_type: Agent
1703
+ work_contexts:
1704
+ - soap opera sequences
1705
+ - email storytelling
1706
+ - autoresponder
1707
+ - story-driven email
1708
+ - narrative email
1709
+ core_replaces: '@dev'
1710
+ can_review:
1711
+ - email-sequence
1712
+ - story-email
1713
+ - id: ben-settle
1714
+ story_role: executor
1715
+ fw_type: Agent
1716
+ work_contexts:
1717
+ - daily email
1718
+ - infotainment
1719
+ - personality-driven
1720
+ - email diário
1721
+ - provocative marketing
1722
+ core_replaces: '@dev'
1723
+ can_review:
1724
+ - daily-email-quality
1725
+ - infotainment
1726
+ - id: ry-schwartz
1727
+ story_role: executor
1728
+ fw_type: Agent
1729
+ work_contexts:
1730
+ - email copywriting
1731
+ - email sequences
1732
+ - automation copy
1733
+ - drip campaigns
1734
+ - conversion emails
1735
+ core_replaces: '@dev'
1736
+ can_review:
1737
+ - email-copy
1738
+ - sequence-quality
1739
+ executor_reviewers:
1740
+ - id: copy-chief
1741
+ can_review:
1742
+ - copy-quality
1743
+ - workflow-routing
1744
+ - tier-compliance
1745
+ - id: launch-owner
1746
+ can_review:
1747
+ - launch-readiness
1748
+ - offer-truth
1749
+ - risk-control
1750
+ - checkpoint-approval
1751
+ - id: claude-hopkins
1752
+ can_review:
1753
+ - copy-testing
1754
+ - scientific-method
1755
+ - id: eugene-schwartz
1756
+ can_review:
1757
+ - awareness-diagnosis
1758
+ - market-sophistication
1759
+ - id: joe-sugarman
1760
+ can_review:
1761
+ - trigger-compliance
1762
+ - persuasion-checklist
1763
+ - id: robert-collier
1764
+ can_review:
1765
+ - prospect-alignment
1766
+ - mental-conversation
1767
+ aggregated_work_contexts:
1768
+ - 3Ms
1769
+ - Boardroom controls
1770
+ - ClickFunnels
1771
+ - E5 method
1772
+ - NO B.S.
1773
+ - PAS
1774
+ - PLC sequences
1775
+ - PLF
1776
+ - RMBC method
1777
+ - Sellerator method
1778
+ - VSL scripts
1779
+ - amplificação emocional
1780
+ - automation copy
1781
+ - autoresponder
1782
+ - behavioral dynamic response
1783
+ - big ideas
1784
+ - book launches
1785
+ - brand advertising
1786
+ - brand marketing
1787
+ - branding copy
1788
+ - bullets
1789
+ - bullets 700-to-100
1790
+ - cartas de vendas
1791
+ - content systems
1792
+ - control beating
1793
+ - control copy
1794
+ - conversational copy
1795
+ - conversion emails
1796
+ - conversion video
1797
+ - copy simplificada
1798
+ - copy sistematizada
1799
+ - copy visceral
1800
+ - creator economy
1801
+ - daily email
1802
+ - deliverable normalization
1803
+ - diferenciação
1804
+ - digital writing
1805
+ - direct mail
1806
+ - direct response
1807
+ - drip campaigns
1808
+ - editorial style
1809
+ - elegant writing
1810
+ - email copywriting
1811
+ - email diário
1812
+ - email sequences
1813
+ - email storytelling
1814
+ - emotional amplification
1815
+ - emotional copy
1816
+ - escassez
1817
+ - fascinations
1818
+ - file normalization
1819
+ - financial copy
1820
+ - free + shipping
1821
+ - funnel hacking
1822
+ - funnels
1823
+ - grand slam offers
1824
+ - handoff manifest
1825
+ - headlines
1826
+ - health market
1827
+ - high-volume mail
1828
+ - hipnotic bullets
1829
+ - infotainment
1830
+ - intent-based branding
1831
+ - irresistible offers
1832
+ - launch copy
1833
+ - long headlines
1834
+ - long-form
1835
+ - long-form copy
1836
+ - long-form direct
1837
+ - magalogs
1838
+ - magazine-format copy
1839
+ - mail campaigns
1840
+ - marketing differentiation
1841
+ - mass control
1842
+ - mecanismos
1843
+ - mental triggers
1844
+ - mercados saturados
1845
+ - narrative email
1846
+ - newsletter
1847
+ - offer creation
1848
+ - one-person business
1849
+ - ops handoff
1850
+ - output packaging
1851
+ - package assembly
1852
+ - personality-driven
1853
+ - persuasive writing
1854
+ - premium copy
1855
+ - pricing
1856
+ - product launch formula
1857
+ - proof stack
1858
+ - provocative marketing
1859
+ - research mechanism brief copy
1860
+ - research-based
1861
+ - response copy
1862
+ - results in advance
1863
+ - sales copy
1864
+ - sales letters
1865
+ - seed launch
1866
+ - simple writing system
1867
+ - slide VSL
1868
+ - soap opera sequences
1869
+ - social writing
1870
+ - story-driven email
1871
+ - storytelling visceral
1872
+ - supplement copy
1873
+ - systematic copy
1874
+ - ultimate sales letter
1875
+ - unique mechanisms
1876
+ - urgência
1877
+ - value equation
1878
+ - value ladders
1879
+ - value stack
1880
+ - video copy
1881
+ - video sales letter
1882
+ - visceral copy
1883
+ course-creator:
1884
+ path: squads/course-creator/
1885
+ version: 2.0.0
1886
+ description: Squad especializado em criação e modernização de cursos online com
1887
+ rigor pedagógico. Cobre fluxos greenfield (curso do zero) e brownfield (upgrade
1888
+ de curso existente) com extração de ICP, voz, objetivos, curriculum e lições.
1889
+ slashPrefix: course
1890
+ counts:
1891
+ agents: 2
1892
+ tasks: 18
1893
+ workflows: 2
1894
+ templates: 16
1895
+ checklists: 3
1896
+ data_files: 4
1897
+ agent_names:
1898
+ - course-architect
1899
+ - blog-writer
1900
+ has_readme: true
1901
+ has_changelog: true
1902
+ domain: _TO_BE_INFERRED_
1903
+ keywords: []
1904
+ highlights: []
1905
+ example_use: ''
1906
+ executor_capable_agents:
1907
+ - id: course-architect
1908
+ story_role: executor
1909
+ fw_type: Agent
1910
+ work_contexts:
1911
+ - general
1912
+ core_replaces: null
1913
+ can_review: []
1914
+ - id: blog-writer
1915
+ story_role: executor
1916
+ fw_type: Agent
1917
+ work_contexts:
1918
+ - general
1919
+ core_replaces: null
1920
+ can_review: []
1921
+ aggregated_work_contexts:
1922
+ - general
1923
+ data:
1924
+ path: squads/data/
1925
+ version: unknown
1926
+ description: ''
1927
+ slashPrefix: ''
1928
+ counts:
1929
+ agents: 7
1930
+ tasks: 13
1931
+ workflows: 7
1932
+ templates: 10
1933
+ checklists: 7
1934
+ data_files: 0
1935
+ agent_names:
1936
+ - avinash-kaushik
1937
+ - nick-mehta
1938
+ - wes-kao
1939
+ - data-chief
1940
+ - peter-fader
1941
+ - david-spinks
1942
+ - sean-ellis
1943
+ has_readme: true
1944
+ has_changelog: false
1945
+ domain: _TO_BE_INFERRED_
1946
+ keywords: []
1947
+ highlights: []
1948
+ example_use: ''
1949
+ executor_capable_agents:
1950
+ - id: data-chief
1951
+ story_role: executor
1952
+ fw_type: Agent
1953
+ work_contexts:
1954
+ - general
1955
+ core_replaces: null
1956
+ can_review: []
1957
+ - id: peter-fader
1958
+ story_role: executor
1959
+ fw_type: Agent
1960
+ work_contexts:
1961
+ - general
1962
+ core_replaces: null
1963
+ can_review: []
1964
+ - id: sean-ellis
1965
+ story_role: executor
1966
+ fw_type: Agent
1967
+ work_contexts:
1968
+ - general
1969
+ core_replaces: null
1970
+ can_review: []
1971
+ - id: nick-mehta
1972
+ story_role: executor
1973
+ fw_type: Agent
1974
+ work_contexts:
1975
+ - general
1976
+ core_replaces: null
1977
+ can_review: []
1978
+ - id: david-spinks
1979
+ story_role: executor
1980
+ fw_type: Agent
1981
+ work_contexts:
1982
+ - general
1983
+ core_replaces: null
1984
+ can_review: []
1985
+ - id: wes-kao
1986
+ story_role: executor
1987
+ fw_type: Agent
1988
+ work_contexts:
1989
+ - general
1990
+ core_replaces: null
1991
+ can_review: []
1992
+ - id: avinash-kaushik
1993
+ story_role: executor
1994
+ fw_type: Agent
1995
+ work_contexts:
1996
+ - general
1997
+ core_replaces: null
1998
+ can_review: []
1999
+ aggregated_work_contexts:
2000
+ - general
2001
+ db-sage:
2002
+ path: squads/db-sage/
2003
+ version: 1.2.0
2004
+ description: Expert database agent for PostgreSQL and Supabase - schema design,
2005
+ migrations, RLS policies, performance tuning
2006
+ slashPrefix: db-sage
2007
+ counts:
2008
+ agents: 1
2009
+ tasks: 25
2010
+ workflows: 7
2011
+ templates: 5
2012
+ checklists: 7
2013
+ data_files: 6
2014
+ agent_names:
2015
+ - db-sage
2016
+ has_readme: true
2017
+ has_changelog: false
2018
+ domain: _TO_BE_INFERRED_
2019
+ keywords: []
2020
+ highlights: []
2021
+ example_use: ''
2022
+ executor_capable_agents:
2023
+ - id: db-sage
2024
+ story_role: executor
2025
+ fw_type: Agent
2026
+ work_contexts:
2027
+ - general
2028
+ core_replaces: null
2029
+ can_review: []
2030
+ aggregated_work_contexts:
2031
+ - general
2032
+ deep-research:
2033
+ path: squads/deep-research/
2034
+ version: unknown
2035
+ description: ''
2036
+ slashPrefix: ''
2037
+ counts:
2038
+ agents: 11
2039
+ tasks: 17
2040
+ workflows: 3
2041
+ templates: 0
2042
+ checklists: 6
2043
+ data_files: 0
2044
+ agent_names:
2045
+ - forsgren
2046
+ - ioannidis
2047
+ - sackett
2048
+ - klein
2049
+ - higgins
2050
+ - creswell
2051
+ - gilad
2052
+ - cochrane
2053
+ - dr-orchestrator
2054
+ - booth
2055
+ - kahneman
2056
+ has_readme: true
2057
+ has_changelog: true
2058
+ domain: _TO_BE_INFERRED_
2059
+ keywords: []
2060
+ highlights: []
2061
+ example_use: ''
2062
+ executor_capable_agents:
2063
+ - id: dr-orchestrator
2064
+ story_role: executor
2065
+ fw_type: Agent
2066
+ work_contexts:
2067
+ - general
2068
+ core_replaces: null
2069
+ can_review: []
2070
+ - id: sackett
2071
+ story_role: executor
2072
+ fw_type: Agent
2073
+ work_contexts:
2074
+ - general
2075
+ core_replaces: null
2076
+ can_review: []
2077
+ - id: booth
2078
+ story_role: executor
2079
+ fw_type: Agent
2080
+ work_contexts:
2081
+ - general
2082
+ core_replaces: null
2083
+ can_review: []
2084
+ - id: creswell
2085
+ story_role: executor
2086
+ fw_type: Agent
2087
+ work_contexts:
2088
+ - general
2089
+ core_replaces: null
2090
+ can_review: []
2091
+ - id: forsgren
2092
+ story_role: executor
2093
+ fw_type: Agent
2094
+ work_contexts:
2095
+ - general
2096
+ core_replaces: null
2097
+ can_review: []
2098
+ - id: cochrane
2099
+ story_role: executor
2100
+ fw_type: Agent
2101
+ work_contexts:
2102
+ - general
2103
+ core_replaces: null
2104
+ can_review: []
2105
+ - id: higgins
2106
+ story_role: executor
2107
+ fw_type: Agent
2108
+ work_contexts:
2109
+ - general
2110
+ core_replaces: null
2111
+ can_review: []
2112
+ - id: klein
2113
+ story_role: executor
2114
+ fw_type: Agent
2115
+ work_contexts:
2116
+ - general
2117
+ core_replaces: null
2118
+ can_review: []
2119
+ - id: gilad
2120
+ story_role: executor
2121
+ fw_type: Agent
2122
+ work_contexts:
2123
+ - general
2124
+ core_replaces: null
2125
+ can_review: []
2126
+ - id: ioannidis
2127
+ story_role: executor
2128
+ fw_type: Agent
2129
+ work_contexts:
2130
+ - general
2131
+ core_replaces: null
2132
+ can_review: []
2133
+ - id: kahneman
2134
+ story_role: executor
2135
+ fw_type: Agent
2136
+ work_contexts:
2137
+ - general
2138
+ core_replaces: null
2139
+ can_review: []
2140
+ aggregated_work_contexts:
2141
+ - general
2142
+ design-system:
2143
+ path: squads/design-system/
2144
+ version: unknown
2145
+ description: ''
2146
+ slashPrefix: ''
2147
+ counts:
2148
+ agents: 9
2149
+ tasks: 110
2150
+ workflows: 15
2151
+ templates: 15
2152
+ checklists: 20
2153
+ data_files: 52
2154
+ agent_names:
2155
+ - dave-malouf
2156
+ - design-chief
2157
+ - ds-foundations-lead
2158
+ - brad-frost
2159
+ - page-composer
2160
+ - ds-token-architect
2161
+ - nano-banana-generator
2162
+ - dan-mall
2163
+ - storybook-expert
2164
+ has_readme: true
2165
+ has_changelog: false
2166
+ domain: _TO_BE_INFERRED_
2167
+ keywords: []
2168
+ highlights: []
2169
+ example_use: ''
2170
+ executor_capable_agents:
2171
+ - id: design-operator
2172
+ story_role: executor
2173
+ fw_type: Agent
2174
+ work_contexts: []
2175
+ core_replaces: null
2176
+ can_review: []
2177
+ - id: design-runtime
2178
+ story_role: executor
2179
+ fw_type: Agent
2180
+ work_contexts: []
2181
+ core_replaces: null
2182
+ can_review: []
2183
+ - id: design-chief
2184
+ story_role: executor
2185
+ fw_type: Agent
2186
+ work_contexts: []
2187
+ core_replaces: null
2188
+ can_review: []
2189
+ - id: brad-frost
2190
+ story_role: executor
2191
+ fw_type: Agent
2192
+ work_contexts: []
2193
+ core_replaces: null
2194
+ can_review: []
2195
+ - id: dave-malouf
2196
+ story_role: executor
2197
+ fw_type: Agent
2198
+ work_contexts: []
2199
+ core_replaces: null
2200
+ can_review: []
2201
+ - id: dan-mall
2202
+ story_role: executor
2203
+ fw_type: Agent
2204
+ work_contexts: []
2205
+ core_replaces: null
2206
+ can_review: []
2207
+ - id: nano-banana-generator
2208
+ story_role: executor
2209
+ fw_type: Agent
2210
+ work_contexts: []
2211
+ core_replaces: null
2212
+ can_review: []
2213
+ - id: ds-token-architect
2214
+ story_role: executor
2215
+ fw_type: Agent
2216
+ work_contexts: []
2217
+ core_replaces: null
2218
+ can_review: []
2219
+ - id: ds-foundations-lead
2220
+ story_role: executor
2221
+ fw_type: Agent
2222
+ work_contexts: []
2223
+ core_replaces: null
2224
+ can_review: []
2225
+ - id: storybook-expert
2226
+ story_role: executor
2227
+ fw_type: Agent
2228
+ work_contexts: []
2229
+ core_replaces: null
2230
+ can_review: []
2231
+ - id: page-composer
2232
+ story_role: executor
2233
+ fw_type: Agent
2234
+ work_contexts: []
2235
+ core_replaces: null
2236
+ can_review: []
2237
+ domain-decoder:
2238
+ path: squads/domain-decoder/
2239
+ version: unknown
2240
+ description: ''
2241
+ slashPrefix: ''
2242
+ counts:
2243
+ agents: 8
2244
+ tasks: 5
2245
+ workflows: 2
2246
+ templates: 2
2247
+ checklists: 2
2248
+ data_files: 2
2249
+ agent_names:
2250
+ - james-taylor
2251
+ - graham-witt
2252
+ - martin-fowler
2253
+ - barbara-von-halle
2254
+ - michael-feathers
2255
+ - eric-evans
2256
+ - decoder-chief
2257
+ - ronald-ross
2258
+ has_readme: true
2259
+ has_changelog: false
2260
+ domain: _TO_BE_INFERRED_
2261
+ keywords: []
2262
+ highlights: []
2263
+ example_use: ''
2264
+ executor_capable_agents:
2265
+ - id: decoder-chief
2266
+ story_role: executor
2267
+ fw_type: Agent
2268
+ work_contexts:
2269
+ - general
2270
+ core_replaces: null
2271
+ can_review: []
2272
+ - id: ronald-ross
2273
+ story_role: executor
2274
+ fw_type: Agent
2275
+ work_contexts:
2276
+ - general
2277
+ core_replaces: null
2278
+ can_review: []
2279
+ - id: eric-evans
2280
+ story_role: executor
2281
+ fw_type: Agent
2282
+ work_contexts:
2283
+ - general
2284
+ core_replaces: null
2285
+ can_review: []
2286
+ - id: michael-feathers
2287
+ story_role: executor
2288
+ fw_type: Agent
2289
+ work_contexts:
2290
+ - general
2291
+ core_replaces: null
2292
+ can_review: []
2293
+ - id: barbara-von-halle
2294
+ story_role: executor
2295
+ fw_type: Agent
2296
+ work_contexts:
2297
+ - general
2298
+ core_replaces: null
2299
+ can_review: []
2300
+ - id: james-taylor
2301
+ story_role: executor
2302
+ fw_type: Agent
2303
+ work_contexts:
2304
+ - general
2305
+ core_replaces: null
2306
+ can_review: []
2307
+ - id: martin-fowler
2308
+ story_role: executor
2309
+ fw_type: Agent
2310
+ work_contexts:
2311
+ - general
2312
+ core_replaces: null
2313
+ can_review: []
2314
+ - id: graham-witt
2315
+ story_role: executor
2316
+ fw_type: Agent
2317
+ work_contexts:
2318
+ - general
2319
+ core_replaces: null
2320
+ can_review: []
2321
+ aggregated_work_contexts:
2322
+ - general
2323
+ edital:
2324
+ path: squads/edital/
2325
+ version: unknown
2326
+ description: ''
2327
+ slashPrefix: ''
2328
+ counts:
2329
+ agents: 7
2330
+ tasks: 11
2331
+ workflows: 4
2332
+ templates: 9
2333
+ checklists: 0
2334
+ data_files: 7
2335
+ agent_names:
2336
+ - gate
2337
+ - regulamento
2338
+ - thesis
2339
+ - scorer
2340
+ - critic
2341
+ - edital-chief
2342
+ - radar
2343
+ has_readme: false
2344
+ has_changelog: false
2345
+ domain: _TO_BE_INFERRED_
2346
+ keywords: []
2347
+ highlights: []
2348
+ example_use: ''
2349
+ executor_capable_agents:
2350
+ - id: edital-chief
2351
+ story_role: executor
2352
+ fw_type: Agent
2353
+ work_contexts:
2354
+ - general
2355
+ core_replaces: null
2356
+ can_review: []
2357
+ - id: radar
2358
+ story_role: executor
2359
+ fw_type: Agent
2360
+ work_contexts:
2361
+ - general
2362
+ core_replaces: null
2363
+ can_review: []
2364
+ - id: regulamento
2365
+ story_role: executor
2366
+ fw_type: Agent
2367
+ work_contexts:
2368
+ - general
2369
+ core_replaces: null
2370
+ can_review: []
2371
+ - id: gate
2372
+ story_role: executor
2373
+ fw_type: Agent
2374
+ work_contexts:
2375
+ - general
2376
+ core_replaces: null
2377
+ can_review: []
2378
+ - id: thesis
2379
+ story_role: executor
2380
+ fw_type: Agent
2381
+ work_contexts:
2382
+ - general
2383
+ core_replaces: null
2384
+ can_review: []
2385
+ - id: scorer
2386
+ story_role: executor
2387
+ fw_type: Agent
2388
+ work_contexts:
2389
+ - general
2390
+ core_replaces: null
2391
+ can_review: []
2392
+ - id: critic
2393
+ story_role: executor
2394
+ fw_type: Agent
2395
+ work_contexts:
2396
+ - general
2397
+ core_replaces: null
2398
+ can_review: []
2399
+ aggregated_work_contexts:
2400
+ - general
2401
+ etl-ops:
2402
+ path: squads/etl-ops/
2403
+ version: unknown
2404
+ description: ''
2405
+ slashPrefix: ''
2406
+ counts:
2407
+ agents: 3
2408
+ tasks: 7
2409
+ workflows: 2
2410
+ templates: 1
2411
+ checklists: 0
2412
+ data_files: 7
2413
+ agent_names:
2414
+ - etl-chief
2415
+ - etl-transformer
2416
+ - etl-extractor
2417
+ has_readme: true
2418
+ has_changelog: false
2419
+ domain: _TO_BE_INFERRED_
2420
+ keywords: []
2421
+ highlights: []
2422
+ example_use: ''
2423
+ executor_capable_agents:
2424
+ - id: etl-extractor
2425
+ story_role: executor
2426
+ fw_type: Agent
2427
+ work_contexts:
2428
+ - data extraction
2429
+ - CLI execution
2430
+ - source fetching
2431
+ - file operations
2432
+ - batch processing
2433
+ core_replaces: '@data-engineer'
2434
+ can_review: []
2435
+ - id: etl-transformer
2436
+ story_role: executor
2437
+ fw_type: Agent
2438
+ work_contexts:
2439
+ - data transformation
2440
+ - cleaning
2441
+ - enrichment
2442
+ - format conversion
2443
+ - schema mapping
2444
+ core_replaces: '@data-engineer'
2445
+ can_review: []
2446
+ executor_reviewers:
2447
+ - id: etl-chief
2448
+ can_review:
2449
+ - etl-pipeline
2450
+ - data-quality
2451
+ - checkpoint-compliance
2452
+ aggregated_work_contexts:
2453
+ - CLI execution
2454
+ - batch processing
2455
+ - cleaning
2456
+ - data extraction
2457
+ - data transformation
2458
+ - enrichment
2459
+ - file operations
2460
+ - format conversion
2461
+ - schema mapping
2462
+ - source fetching
2463
+ google-workspace-squad:
2464
+ path: squads/google-workspace-squad/
2465
+ version: unknown
2466
+ description: ''
2467
+ slashPrefix: ''
2468
+ counts:
2469
+ agents: 6
2470
+ tasks: 3
2471
+ workflows: 2
2472
+ templates: 5
2473
+ checklists: 2
2474
+ data_files: 5
2475
+ agent_names:
2476
+ - drive-automator
2477
+ - drive-watcher
2478
+ - lisa-welchman
2479
+ - gws-chief
2480
+ - peter-morville
2481
+ - abby-covert
2482
+ has_readme: true
2483
+ has_changelog: false
2484
+ domain: _TO_BE_INFERRED_
2485
+ keywords: []
2486
+ highlights: []
2487
+ example_use: ''
2488
+ executor_capable_agents:
2489
+ - id: peter-morville
2490
+ story_role: executor
2491
+ fw_type: Agent
2492
+ work_contexts:
2493
+ - information-architecture
2494
+ - taxonomia
2495
+ - findability
2496
+ - UX-Honeycomb
2497
+ - navegação
2498
+ - labeling
2499
+ core_replaces: '@architect'
2500
+ can_review:
2501
+ - information-architecture
2502
+ - taxonomia
2503
+ - findability
2504
+ - id: lisa-welchman
2505
+ story_role: executor
2506
+ fw_type: Agent
2507
+ work_contexts:
2508
+ - digital-governance
2509
+ - políticas
2510
+ - permissões
2511
+ - compliance
2512
+ - standards
2513
+ - accountability
2514
+ core_replaces: '@architect'
2515
+ can_review:
2516
+ - governance
2517
+ - políticas
2518
+ - compliance
2519
+ - id: drive-automator
2520
+ story_role: executor
2521
+ fw_type: Agent
2522
+ work_contexts:
2523
+ - Google-API
2524
+ - folders
2525
+ - forms
2526
+ - sheets
2527
+ - permissions
2528
+ - templates
2529
+ - batch-operations
2530
+ core_replaces: '@dev'
2531
+ can_review:
2532
+ - Google-API
2533
+ - operações
2534
+ - id: drive-watcher
2535
+ story_role: executor
2536
+ fw_type: Agent
2537
+ work_contexts:
2538
+ - monitoramento
2539
+ - TTL
2540
+ - cleanup
2541
+ - auditoria
2542
+ - compliance
2543
+ - alertas
2544
+ - Drive-changes
2545
+ core_replaces: '@devops'
2546
+ can_review:
2547
+ - monitoramento
2548
+ - TTL
2549
+ - compliance
2550
+ executor_reviewers:
2551
+ - id: gws-chief
2552
+ can_review:
2553
+ - Google-Workspace
2554
+ - Drive
2555
+ - governança
2556
+ - estrutura
2557
+ - id: abby-covert
2558
+ can_review:
2559
+ - sensemaking
2560
+ - taxonomia
2561
+ - organização
2562
+ aggregated_work_contexts:
2563
+ - Drive-changes
2564
+ - Google-API
2565
+ - TTL
2566
+ - UX-Honeycomb
2567
+ - accountability
2568
+ - alertas
2569
+ - auditoria
2570
+ - batch-operations
2571
+ - cleanup
2572
+ - compliance
2573
+ - digital-governance
2574
+ - findability
2575
+ - folders
2576
+ - forms
2577
+ - information-architecture
2578
+ - labeling
2579
+ - monitoramento
2580
+ - navegação
2581
+ - permissions
2582
+ - permissões
2583
+ - políticas
2584
+ - sheets
2585
+ - standards
2586
+ - taxonomia
2587
+ - templates
2588
+ hormozi:
2589
+ path: squads/hormozi/
2590
+ version: unknown
2591
+ description: ''
2592
+ slashPrefix: ''
2593
+ counts:
2594
+ agents: 16
2595
+ tasks: 57
2596
+ workflows: 9
2597
+ templates: 7
2598
+ checklists: 45
2599
+ data_files: 8
2600
+ agent_names:
2601
+ - hormozi-copy
2602
+ - hormozi-launch
2603
+ - hormozi-closer
2604
+ - hormozi-advisor
2605
+ - hormozi-ads
2606
+ - hormozi-hooks
2607
+ - hormozi-workshop
2608
+ - hormozi-audit
2609
+ - hormozi-scale
2610
+ - hormozi-models
2611
+ - hormozi-pricing
2612
+ - hormozi-retention
2613
+ - hormozi-leads
2614
+ - hormozi-chief
2615
+ - hormozi-offers
2616
+ - hormozi-content
2617
+ has_readme: true
2618
+ has_changelog: false
2619
+ domain: _TO_BE_INFERRED_
2620
+ keywords: []
2621
+ highlights: []
2622
+ example_use: ''
2623
+ executor_capable_agents:
2624
+ - id: hormozi-offers
2625
+ story_role: executor
2626
+ fw_type: Agent
2627
+ work_contexts:
2628
+ - grand slam offer
2629
+ - value equation
2630
+ - offer engineering
2631
+ - dream outcome
2632
+ - perceived likelihood
2633
+ - offer creation
2634
+ core_replaces: '@dev'
2635
+ can_review:
2636
+ - offer-structure
2637
+ - value-equation
2638
+ - id: hormozi-leads
2639
+ story_role: executor
2640
+ fw_type: Agent
2641
+ work_contexts:
2642
+ - core four
2643
+ - lead magnets
2644
+ - lead generation
2645
+ - content strategy
2646
+ - warm outreach
2647
+ - cold outreach
2648
+ core_replaces: '@dev'
2649
+ can_review:
2650
+ - lead-strategy
2651
+ - lead-magnet-quality
2652
+ - id: hormozi-models
2653
+ story_role: executor
2654
+ fw_type: Agent
2655
+ work_contexts:
2656
+ - money models
2657
+ - upsells
2658
+ - downsells
2659
+ - continuity
2660
+ - revenue structure
2661
+ - unit economics
2662
+ core_replaces: '@dev'
2663
+ can_review:
2664
+ - revenue-model
2665
+ - pricing-structure
2666
+ - id: hormozi-hooks
2667
+ story_role: executor
2668
+ fw_type: Agent
2669
+ work_contexts:
2670
+ - hook creation
2671
+ - 121 formulas
2672
+ - first 5 seconds
2673
+ - attention capture
2674
+ - scroll-stopping
2675
+ - hook frameworks
2676
+ core_replaces: '@dev'
2677
+ can_review:
2678
+ - hook-quality
2679
+ - attention-capture
2680
+ - id: hormozi-ads
2681
+ story_role: executor
2682
+ fw_type: Agent
2683
+ work_contexts:
2684
+ - GOATed ads
2685
+ - ad scripts
2686
+ - ad angles
2687
+ - creative strategy
2688
+ - paid media copy
2689
+ - video ads
2690
+ core_replaces: '@dev'
2691
+ can_review:
2692
+ - ad-script-quality
2693
+ - creative-angles
2694
+ - id: hormozi-pricing
2695
+ story_role: executor
2696
+ fw_type: Agent
2697
+ work_contexts:
2698
+ - pricing strategy
2699
+ - price anchoring
2700
+ - price raises
2701
+ - value-based pricing
2702
+ - offer pricing
2703
+ - margin optimization
2704
+ core_replaces: '@dev'
2705
+ can_review:
2706
+ - pricing-strategy
2707
+ - price-positioning
2708
+ - id: hormozi-copy
2709
+ story_role: executor
2710
+ fw_type: Agent
2711
+ work_contexts:
2712
+ - sales copy
2713
+ - landing pages
2714
+ - VSL scripts
2715
+ - conversion copy
2716
+ - direct response
2717
+ - sales pages
2718
+ core_replaces: '@dev'
2719
+ can_review:
2720
+ - copy-quality
2721
+ - conversion-copy
2722
+ - id: hormozi-launch
2723
+ story_role: executor
2724
+ fw_type: Agent
2725
+ work_contexts:
2726
+ - launch sequences
2727
+ - launch timelines
2728
+ - launch strategy
2729
+ - pre-launch
2730
+ - launch day
2731
+ - post-launch
2732
+ core_replaces: '@dev'
2733
+ can_review:
2734
+ - launch-sequence
2735
+ - launch-timeline
2736
+ - id: hormozi-retention
2737
+ story_role: executor
2738
+ fw_type: Agent
2739
+ work_contexts:
2740
+ - LTV optimization
2741
+ - retention strategy
2742
+ - lead nurture
2743
+ - continuity programs
2744
+ - churn reduction
2745
+ - lifetime value
2746
+ core_replaces: '@dev'
2747
+ can_review:
2748
+ - retention-strategy
2749
+ - LTV-metrics
2750
+ - id: hormozi-audit
2751
+ story_role: executor
2752
+ fw_type: Agent
2753
+ work_contexts:
2754
+ - offer audit
2755
+ - LP diagnostics
2756
+ - antipattern detection
2757
+ - proof stack
2758
+ - conversion audit
2759
+ - offer validation
2760
+ core_replaces: '@analyst'
2761
+ can_review:
2762
+ - offer-quality
2763
+ - landing-page-audit
2764
+ - id: hormozi-closer
2765
+ story_role: executor
2766
+ fw_type: Agent
2767
+ work_contexts:
2768
+ - sales scripts
2769
+ - objection handling
2770
+ - fechamento
2771
+ - closing techniques
2772
+ - sales conversation
2773
+ - rebuttals
2774
+ core_replaces: '@dev'
2775
+ can_review:
2776
+ - sales-script-quality
2777
+ - objection-handling
2778
+ - id: hormozi-scale
2779
+ story_role: executor
2780
+ fw_type: Agent
2781
+ work_contexts:
2782
+ - scaling strategy
2783
+ - 9-stage roadmap
2784
+ - growth scaling
2785
+ - business scaling
2786
+ - operational leverage
2787
+ core_replaces: '@dev'
2788
+ can_review:
2789
+ - scaling-readiness
2790
+ - growth-strategy
2791
+ - id: hormozi-workshop
2792
+ story_role: executor
2793
+ fw_type: Agent
2794
+ work_contexts:
2795
+ - workshop design
2796
+ - framework creation
2797
+ - group facilitation
2798
+ - workshop structure
2799
+ - interactive sessions
2800
+ core_replaces: '@dev'
2801
+ can_review:
2802
+ - workshop-quality
2803
+ - framework-design
2804
+ - id: hormozi-content
2805
+ story_role: executor
2806
+ fw_type: Agent
2807
+ work_contexts:
2808
+ - content strategy
2809
+ - content creation
2810
+ - free content
2811
+ - content pillars
2812
+ - distribution strategy
2813
+ - conteúdo gratuito
2814
+ core_replaces: '@dev'
2815
+ can_review:
2816
+ - content-strategy
2817
+ - content-quality
2818
+ executor_reviewers:
2819
+ - id: hormozi-chief
2820
+ can_review:
2821
+ - offer-quality
2822
+ - methodology-fidelity
2823
+ - business-strategy
2824
+ - id: hormozi-advisor
2825
+ can_review:
2826
+ - strategic-alignment
2827
+ - methodology-fidelity
2828
+ aggregated_work_contexts:
2829
+ - 121 formulas
2830
+ - 9-stage roadmap
2831
+ - GOATed ads
2832
+ - LP diagnostics
2833
+ - LTV optimization
2834
+ - VSL scripts
2835
+ - ad angles
2836
+ - ad scripts
2837
+ - antipattern detection
2838
+ - attention capture
2839
+ - business scaling
2840
+ - churn reduction
2841
+ - closing techniques
2842
+ - cold outreach
2843
+ - content creation
2844
+ - content pillars
2845
+ - content strategy
2846
+ - conteúdo gratuito
2847
+ - continuity
2848
+ - continuity programs
2849
+ - conversion audit
2850
+ - conversion copy
2851
+ - core four
2852
+ - creative strategy
2853
+ - direct response
2854
+ - distribution strategy
2855
+ - downsells
2856
+ - dream outcome
2857
+ - fechamento
2858
+ - first 5 seconds
2859
+ - framework creation
2860
+ - free content
2861
+ - grand slam offer
2862
+ - group facilitation
2863
+ - growth scaling
2864
+ - hook creation
2865
+ - hook frameworks
2866
+ - interactive sessions
2867
+ - landing pages
2868
+ - launch day
2869
+ - launch sequences
2870
+ - launch strategy
2871
+ - launch timelines
2872
+ - lead generation
2873
+ - lead magnets
2874
+ - lead nurture
2875
+ - lifetime value
2876
+ - margin optimization
2877
+ - money models
2878
+ - objection handling
2879
+ - offer audit
2880
+ - offer creation
2881
+ - offer engineering
2882
+ - offer pricing
2883
+ - offer validation
2884
+ - operational leverage
2885
+ - paid media copy
2886
+ - perceived likelihood
2887
+ - post-launch
2888
+ - pre-launch
2889
+ - price anchoring
2890
+ - price raises
2891
+ - pricing strategy
2892
+ - proof stack
2893
+ - rebuttals
2894
+ - retention strategy
2895
+ - revenue structure
2896
+ - sales conversation
2897
+ - sales copy
2898
+ - sales pages
2899
+ - sales scripts
2900
+ - scaling strategy
2901
+ - scroll-stopping
2902
+ - unit economics
2903
+ - upsells
2904
+ - value equation
2905
+ - value-based pricing
2906
+ - video ads
2907
+ - warm outreach
2908
+ - workshop design
2909
+ - workshop structure
2910
+ infra-ops:
2911
+ path: squads/infra-ops/
2912
+ version: unknown
2913
+ description: ''
2914
+ slashPrefix: ''
2915
+ counts:
2916
+ agents: 6
2917
+ tasks: 8
2918
+ workflows: 1
2919
+ templates: 5
2920
+ checklists: 0
2921
+ data_files: 8
2922
+ agent_names:
2923
+ - service-catalog
2924
+ - container-ops
2925
+ - db-ops
2926
+ - server-admin
2927
+ - infra-chief
2928
+ - lifecycle-ops
2929
+ has_readme: true
2930
+ has_changelog: false
2931
+ domain: _TO_BE_INFERRED_
2932
+ keywords: []
2933
+ highlights: []
2934
+ example_use: ''
2935
+ executor_capable_agents:
2936
+ - id: container-ops
2937
+ story_role: executor
2938
+ fw_type: Agent
2939
+ work_contexts:
2940
+ - Docker
2941
+ - containers
2942
+ - stacks
2943
+ - Portainer
2944
+ - Swarm
2945
+ - deploy
2946
+ - rollback
2947
+ - scaling
2948
+ core_replaces: '@devops'
2949
+ can_review:
2950
+ - containers
2951
+ - Docker
2952
+ - stacks
2953
+ - id: server-admin
2954
+ story_role: executor
2955
+ fw_type: Agent
2956
+ work_contexts:
2957
+ - Hetzner
2958
+ - cloud
2959
+ - servidores
2960
+ - firewall
2961
+ - snapshots
2962
+ - provisionamento
2963
+ - SSH
2964
+ core_replaces: '@devops'
2965
+ can_review:
2966
+ - servidores
2967
+ - cloud
2968
+ - firewall
2969
+ - id: db-ops
2970
+ story_role: executor
2971
+ fw_type: Agent
2972
+ work_contexts:
2973
+ - PostgreSQL
2974
+ - Supabase
2975
+ - database
2976
+ - migrations
2977
+ - backup
2978
+ - replicação
2979
+ - performance
2980
+ core_replaces: '@data-engineer'
2981
+ can_review:
2982
+ - database
2983
+ - migrations
2984
+ - backup
2985
+ - id: service-catalog
2986
+ story_role: executor
2987
+ fw_type: Agent
2988
+ work_contexts:
2989
+ - service-catalog
2990
+ - registro
2991
+ - dependências
2992
+ - TTL
2993
+ - governança
2994
+ - schema
2995
+ - inventário
2996
+ core_replaces: '@architect'
2997
+ can_review:
2998
+ - service-catalog
2999
+ - dependências
3000
+ - registro
3001
+ - id: lifecycle-ops
3002
+ story_role: executor
3003
+ fw_type: Agent
3004
+ work_contexts:
3005
+ - lifecycle
3006
+ - provisionamento
3007
+ - decommission
3008
+ - deprecação
3009
+ - migração
3010
+ - compliance
3011
+ core_replaces: '@devops'
3012
+ can_review:
3013
+ - lifecycle
3014
+ - decommission
3015
+ - compliance
3016
+ executor_reviewers:
3017
+ - id: infra-steward
3018
+ can_review:
3019
+ - deploy
3020
+ - scale
3021
+ - secrets
3022
+ - lifecycle
3023
+ - id: infra-reviewer
3024
+ can_review:
3025
+ - deploy
3026
+ - catalog
3027
+ - health-check
3028
+ - lifecycle
3029
+ - id: infra-chief
3030
+ can_review:
3031
+ - infrastructure
3032
+ - servidores
3033
+ - containers
3034
+ - deploy
3035
+ aggregated_work_contexts:
3036
+ - Docker
3037
+ - Hetzner
3038
+ - Portainer
3039
+ - PostgreSQL
3040
+ - SSH
3041
+ - Supabase
3042
+ - Swarm
3043
+ - TTL
3044
+ - backup
3045
+ - cloud
3046
+ - compliance
3047
+ - containers
3048
+ - database
3049
+ - decommission
3050
+ - dependências
3051
+ - deploy
3052
+ - deprecação
3053
+ - firewall
3054
+ - governança
3055
+ - inventário
3056
+ - lifecycle
3057
+ - migrations
3058
+ - migração
3059
+ - performance
3060
+ - provisionamento
3061
+ - registro
3062
+ - replicação
3063
+ - rollback
3064
+ - scaling
3065
+ - schema
3066
+ - service-catalog
3067
+ - servidores
3068
+ - snapshots
3069
+ - stacks
3070
+ innerlens:
3071
+ path: squads/innerlens/
3072
+ version: unknown
3073
+ description: ''
3074
+ slashPrefix: ''
3075
+ counts:
3076
+ agents: 4
3077
+ tasks: 7
3078
+ workflows: 2
3079
+ templates: 2
3080
+ checklists: 3
3081
+ data_files: 0
3082
+ agent_names:
3083
+ - innerlens-orchestrator
3084
+ - fragment-extractor
3085
+ - psychologist
3086
+ - quality-assurance
3087
+ has_readme: true
3088
+ has_changelog: false
3089
+ domain: _TO_BE_INFERRED_
3090
+ keywords: []
3091
+ highlights: []
3092
+ example_use: ''
3093
+ executor_capable_agents:
3094
+ - id: innerlens-orchestrator
3095
+ story_role: executor
3096
+ fw_type: Agent
3097
+ work_contexts:
3098
+ - general
3099
+ core_replaces: null
3100
+ can_review: []
3101
+ - id: fragment-extractor
3102
+ story_role: executor
3103
+ fw_type: Agent
3104
+ work_contexts:
3105
+ - general
3106
+ core_replaces: null
3107
+ can_review: []
3108
+ - id: psychologist
3109
+ story_role: executor
3110
+ fw_type: Agent
3111
+ work_contexts:
3112
+ - general
3113
+ core_replaces: null
3114
+ can_review: []
3115
+ - id: quality-assurance
3116
+ story_role: executor
3117
+ fw_type: Agent
3118
+ work_contexts:
3119
+ - general
3120
+ core_replaces: null
3121
+ can_review: []
3122
+ aggregated_work_contexts:
3123
+ - general
3124
+ ip-shield-squad:
3125
+ path: squads/ip-shield-squad/
3126
+ version: unknown
3127
+ description: ''
3128
+ slashPrefix: ''
3129
+ counts:
3130
+ agents: 7
3131
+ tasks: 6
3132
+ workflows: 2
3133
+ templates: 4
3134
+ checklists: 2
3135
+ data_files: 3
3136
+ agent_names:
3137
+ - nicholas-carlini
3138
+ - barton-whaley
3139
+ - shield-chief
3140
+ - christian-collberg
3141
+ - simon-willison
3142
+ - jessica-fridrich
3143
+ - kristin-heckman
3144
+ has_readme: false
3145
+ has_changelog: false
3146
+ domain: _TO_BE_INFERRED_
3147
+ keywords: []
3148
+ highlights: []
3149
+ example_use: ''
3150
+ executor_capable_agents:
3151
+ - id: kristin-heckman
3152
+ story_role: executor
3153
+ fw_type: Agent
3154
+ work_contexts:
3155
+ - cyber-deception
3156
+ - operations-planning
3157
+ - maturity-model
3158
+ - digital-security
3159
+ - deception-chain
3160
+ core_replaces: '@architect'
3161
+ can_review:
3162
+ - deception
3163
+ - cyber-security
3164
+ - id: christian-collberg
3165
+ story_role: executor
3166
+ fw_type: Agent
3167
+ work_contexts:
3168
+ - obfuscation
3169
+ - code-protection
3170
+ - reverse-engineering-defense
3171
+ - potency-resilience
3172
+ - stealth
3173
+ core_replaces: '@dev'
3174
+ can_review:
3175
+ - obfuscation
3176
+ - code-protection
3177
+ - id: simon-willison
3178
+ story_role: executor
3179
+ fw_type: Agent
3180
+ work_contexts:
3181
+ - prompt-injection
3182
+ - llm-defense
3183
+ - system-prompt-protection
3184
+ - dual-llm
3185
+ - pipeline-security
3186
+ core_replaces: '@dev'
3187
+ can_review:
3188
+ - prompt-security
3189
+ - llm-defense
3190
+ - id: jessica-fridrich
3191
+ story_role: executor
3192
+ fw_type: Agent
3193
+ work_contexts:
3194
+ - steganography
3195
+ - canary-tokens
3196
+ - leak-detection
3197
+ - watermarking
3198
+ - content-embedding
3199
+ core_replaces: '@dev'
3200
+ can_review:
3201
+ - steganography
3202
+ - watermarking
3203
+ - id: nicholas-carlini
3204
+ story_role: executor
3205
+ fw_type: Agent
3206
+ work_contexts:
3207
+ - red-teaming
3208
+ - adversarial-attacks
3209
+ - defense-evaluation
3210
+ - penetration-testing
3211
+ - adaptive-attacks
3212
+ core_replaces: '@dev'
3213
+ can_review:
3214
+ - red-teaming
3215
+ - security-testing
3216
+ executor_reviewers:
3217
+ - id: shield-chief
3218
+ can_review:
3219
+ - ip-protection
3220
+ - deception
3221
+ - security
3222
+ - id: barton-whaley
3223
+ can_review:
3224
+ - deception
3225
+ - strategy
3226
+ aggregated_work_contexts:
3227
+ - adaptive-attacks
3228
+ - adversarial-attacks
3229
+ - canary-tokens
3230
+ - code-protection
3231
+ - content-embedding
3232
+ - cyber-deception
3233
+ - deception-chain
3234
+ - defense-evaluation
3235
+ - digital-security
3236
+ - dual-llm
3237
+ - leak-detection
3238
+ - llm-defense
3239
+ - maturity-model
3240
+ - obfuscation
3241
+ - operations-planning
3242
+ - penetration-testing
3243
+ - pipeline-security
3244
+ - potency-resilience
3245
+ - prompt-injection
3246
+ - red-teaming
3247
+ - reverse-engineering-defense
3248
+ - stealth
3249
+ - steganography
3250
+ - system-prompt-protection
3251
+ - watermarking
3252
+ kaizen:
3253
+ path: squads/squad-creator/
3254
+ version: unknown
3255
+ description: 'Archived — absorbed into squad-creator per EPIC-108 (2026-04-05)'
3256
+ archived_at: '2026-04-05'
3257
+ archived_reason: 'Fused into squad-creator per EPIC-108'
3258
+ successor: squad-creator
3259
+ slashPrefix: ''
3260
+ counts:
3261
+ agents: 7
3262
+ tasks: 8
3263
+ workflows: 3
3264
+ templates: 8
3265
+ checklists: 3
3266
+ data_files: 5
3267
+ agent_names:
3268
+ - performance-tracker
3269
+ - capability-mapper
3270
+ - tech-radar
3271
+ - cost-analyst
3272
+ - bottleneck-hunter
3273
+ - kaizen-chief
3274
+ - topology-analyst
3275
+ has_readme: true
3276
+ has_changelog: true
3277
+ domain: _TO_BE_INFERRED_
3278
+ keywords: []
3279
+ highlights: []
3280
+ example_use: ''
3281
+ executor_capable_agents:
3282
+ - id: ecosystem-operator
3283
+ story_role: executor
3284
+ fw_type: Agent
3285
+ work_contexts: []
3286
+ core_replaces: null
3287
+ can_review: []
3288
+ - id: kaizen-chief
3289
+ story_role: executor
3290
+ fw_type: Agent
3291
+ work_contexts: []
3292
+ core_replaces: null
3293
+ can_review: []
3294
+ - id: topology-analyst
3295
+ story_role: executor
3296
+ fw_type: Agent
3297
+ work_contexts: []
3298
+ core_replaces: null
3299
+ can_review: []
3300
+ - id: performance-tracker
3301
+ story_role: executor
3302
+ fw_type: Agent
3303
+ work_contexts: []
3304
+ core_replaces: null
3305
+ can_review: []
3306
+ - id: bottleneck-hunter
3307
+ story_role: executor
3308
+ fw_type: Agent
3309
+ work_contexts: []
3310
+ core_replaces: null
3311
+ can_review: []
3312
+ - id: capability-mapper
3313
+ story_role: executor
3314
+ fw_type: Agent
3315
+ work_contexts: []
3316
+ core_replaces: null
3317
+ can_review: []
3318
+ - id: tech-radar
3319
+ story_role: executor
3320
+ fw_type: Agent
3321
+ work_contexts: []
3322
+ core_replaces: null
3323
+ can_review: []
3324
+ - id: cost-analyst
3325
+ story_role: executor
3326
+ fw_type: Agent
3327
+ work_contexts: []
3328
+ core_replaces: null
3329
+ can_review: []
3330
+ - id: ecosystem-runtime
3331
+ story_role: executor
3332
+ fw_type: Agent
3333
+ work_contexts: []
3334
+ core_replaces: null
3335
+ can_review: []
3336
+ - id: reference-mind-library
3337
+ story_role: executor
3338
+ fw_type: Agent
3339
+ work_contexts: []
3340
+ core_replaces: null
3341
+ can_review: []
3342
+ mega-brain:
3343
+ path: squads/mega-brain/
3344
+ version: unknown
3345
+ description: ''
3346
+ slashPrefix: ''
3347
+ counts:
3348
+ agents: 7
3349
+ tasks: 8
3350
+ workflows: 3
3351
+ templates: 4
3352
+ checklists: 0
3353
+ data_files: 7
3354
+ agent_names:
3355
+ - synthesizer
3356
+ - sintetizador-conclave
3357
+ - ingestor
3358
+ - mega-brain-chief
3359
+ - advogado-diabo
3360
+ - extractor
3361
+ - critico
3362
+ has_readme: true
3363
+ has_changelog: false
3364
+ domain: _TO_BE_INFERRED_
3365
+ keywords: []
3366
+ highlights: []
3367
+ example_use: ''
3368
+ executor_capable_agents:
3369
+ - id: mega-brain-operator
3370
+ story_role: executor
3371
+ fw_type: Agent
3372
+ work_contexts: []
3373
+ core_replaces: null
3374
+ can_review: []
3375
+ - id: mega-brain-runtime
3376
+ story_role: executor
3377
+ fw_type: Agent
3378
+ work_contexts: []
3379
+ core_replaces: null
3380
+ can_review: []
3381
+ - id: mega-brain-chief
3382
+ story_role: executor
3383
+ fw_type: Agent
3384
+ work_contexts: []
3385
+ core_replaces: null
3386
+ can_review: []
3387
+ - id: ingestor
3388
+ story_role: executor
3389
+ fw_type: Agent
3390
+ work_contexts: []
3391
+ core_replaces: null
3392
+ can_review: []
3393
+ - id: extractor
3394
+ story_role: executor
3395
+ fw_type: Agent
3396
+ work_contexts: []
3397
+ core_replaces: null
3398
+ can_review: []
3399
+ - id: synthesizer
3400
+ story_role: executor
3401
+ fw_type: Agent
3402
+ work_contexts: []
3403
+ core_replaces: null
3404
+ can_review: []
3405
+ - id: critico
3406
+ story_role: executor
3407
+ fw_type: Agent
3408
+ work_contexts: []
3409
+ core_replaces: null
3410
+ can_review: []
3411
+ - id: advogado-diabo
3412
+ story_role: executor
3413
+ fw_type: Agent
3414
+ work_contexts: []
3415
+ core_replaces: null
3416
+ can_review: []
3417
+ - id: sintetizador-conclave
3418
+ story_role: executor
3419
+ fw_type: Agent
3420
+ work_contexts: []
3421
+ core_replaces: null
3422
+ can_review: []
3423
+ mmos:
3424
+ path: squads/mmos/
3425
+ version: unknown
3426
+ description: ''
3427
+ slashPrefix: ''
3428
+ counts:
3429
+ agents: 10
3430
+ tasks: 46
3431
+ workflows: 4
3432
+ templates: 73
3433
+ checklists: 20
3434
+ data_files: 26
3435
+ agent_names:
3436
+ - research-specialist
3437
+ - barbara-cognitive-architect
3438
+ - victoria-viability-specialist
3439
+ - mind-pm
3440
+ - quinn-quality-specialist
3441
+ - daniel-behavioral-analyst
3442
+ - identity-analyst
3443
+ - constantin-implementation-architect
3444
+ - charlie-synthesis-expert
3445
+ has_readme: true
3446
+ has_changelog: false
3447
+ domain: _TO_BE_INFERRED_
3448
+ keywords: []
3449
+ highlights: []
3450
+ example_use: ''
3451
+ executor_capable_agents:
3452
+ - id: mind-pm
3453
+ story_role: executor
3454
+ fw_type: Agent
3455
+ work_contexts: []
3456
+ core_replaces: null
3457
+ can_review: []
3458
+ - id: research-specialist
3459
+ story_role: executor
3460
+ fw_type: Agent
3461
+ work_contexts: []
3462
+ core_replaces: null
3463
+ can_review: []
3464
+ - id: behavioral-analyst
3465
+ story_role: executor
3466
+ fw_type: Agent
3467
+ work_contexts: []
3468
+ core_replaces: null
3469
+ can_review: []
3470
+ - id: cognitive-architect
3471
+ story_role: executor
3472
+ fw_type: Agent
3473
+ work_contexts: []
3474
+ core_replaces: null
3475
+ can_review: []
3476
+ - id: identity-analyst
3477
+ story_role: executor
3478
+ fw_type: Agent
3479
+ work_contexts: []
3480
+ core_replaces: null
3481
+ can_review: []
3482
+ - id: synthesis-expert
3483
+ story_role: executor
3484
+ fw_type: Agent
3485
+ work_contexts: []
3486
+ core_replaces: null
3487
+ can_review: []
3488
+ - id: implementation-architect
3489
+ story_role: executor
3490
+ fw_type: Agent
3491
+ work_contexts: []
3492
+ core_replaces: null
3493
+ can_review: []
3494
+ - id: quality-specialist
3495
+ story_role: executor
3496
+ fw_type: Agent
3497
+ work_contexts: []
3498
+ core_replaces: null
3499
+ can_review: []
3500
+ - id: viability-specialist
3501
+ story_role: executor
3502
+ fw_type: Agent
3503
+ work_contexts: []
3504
+ core_replaces: null
3505
+ can_review: []
3506
+ movement:
3507
+ path: squads/movement/
3508
+ version: 1.0.0
3509
+ description: Squad multiagente para Marketing Ideologico (N1..N8)
3510
+ slashPrefix: ''
3511
+ counts:
3512
+ agents: 8
3513
+ tasks: 49
3514
+ workflows: 3
3515
+ templates: 25
3516
+ checklists: 5
3517
+ data_files: 10
3518
+ agent_names:
3519
+ - analista-de-impacto
3520
+ - estrategista-de-ciclo
3521
+ - movement-architect
3522
+ - identitario
3523
+ - manifestador
3524
+ - fenomenologo
3525
+ - entrevistador
3526
+ - movement-chief
3527
+ has_readme: true
3528
+ has_changelog: false
3529
+ domain: _TO_BE_INFERRED_
3530
+ keywords: []
3531
+ highlights: []
3532
+ example_use: ''
3533
+ executor_capable_agents:
3534
+ - id: movement-chief
3535
+ story_role: executor
3536
+ fw_type: Agent
3537
+ work_contexts:
3538
+ - general
3539
+ core_replaces: null
3540
+ can_review: []
3541
+ - id: entrevistador
3542
+ story_role: executor
3543
+ fw_type: Agent
3544
+ work_contexts:
3545
+ - general
3546
+ core_replaces: null
3547
+ can_review: []
3548
+ - id: fenomenologo
3549
+ story_role: executor
3550
+ fw_type: Agent
3551
+ work_contexts:
3552
+ - general
3553
+ core_replaces: null
3554
+ can_review: []
3555
+ - id: identitario
3556
+ story_role: executor
3557
+ fw_type: Agent
3558
+ work_contexts:
3559
+ - general
3560
+ core_replaces: null
3561
+ can_review: []
3562
+ - id: movement-architect
3563
+ story_role: executor
3564
+ fw_type: Agent
3565
+ work_contexts:
3566
+ - general
3567
+ core_replaces: null
3568
+ can_review: []
3569
+ - id: estrategista-de-ciclo
3570
+ story_role: executor
3571
+ fw_type: Agent
3572
+ work_contexts:
3573
+ - general
3574
+ core_replaces: null
3575
+ can_review: []
3576
+ - id: manifestador
3577
+ story_role: executor
3578
+ fw_type: Agent
3579
+ work_contexts:
3580
+ - general
3581
+ core_replaces: null
3582
+ can_review: []
3583
+ - id: analista-de-impacto
3584
+ story_role: executor
3585
+ fw_type: Agent
3586
+ work_contexts:
3587
+ - general
3588
+ core_replaces: null
3589
+ can_review: []
3590
+ aggregated_work_contexts:
3591
+ - general
3592
+ process-excellence-squad:
3593
+ path: squads/process-excellence-squad/
3594
+ version: unknown
3595
+ description: ''
3596
+ slashPrefix: ''
3597
+ counts:
3598
+ agents: 6
3599
+ tasks: 6
3600
+ workflows: 3
3601
+ templates: 4
3602
+ checklists: 0
3603
+ data_files: 2
3604
+ agent_names:
3605
+ - james-womack
3606
+ - michael-hammer
3607
+ - geary-rummler
3608
+ - eliyahu-goldratt
3609
+ - masaaki-imai
3610
+ - process-chief
3611
+ has_readme: true
3612
+ has_changelog: false
3613
+ domain: _TO_BE_INFERRED_
3614
+ keywords: []
3615
+ highlights: []
3616
+ example_use: ''
3617
+ executor_capable_agents:
3618
+ - id: james-womack
3619
+ story_role: executor
3620
+ fw_type: Agent
3621
+ work_contexts:
3622
+ - lean-thinking
3623
+ - value-stream-mapping
3624
+ - waste-elimination
3625
+ - vsm
3626
+ - lean-principles
3627
+ core_replaces: '@architect'
3628
+ can_review:
3629
+ - lean
3630
+ - value-stream
3631
+ - id: geary-rummler
3632
+ story_role: executor
3633
+ fw_type: Agent
3634
+ work_contexts:
3635
+ - swimlane-mapping
3636
+ - 9-box-matrix
3637
+ - white-space-analysis
3638
+ - process-architecture
3639
+ - rummler-brache
3640
+ core_replaces: '@architect'
3641
+ can_review:
3642
+ - process-architecture
3643
+ - swimlane
3644
+ - id: masaaki-imai
3645
+ story_role: executor
3646
+ fw_type: Agent
3647
+ work_contexts:
3648
+ - kaizen
3649
+ - gemba-discovery
3650
+ - sdca-pdca
3651
+ - continuous-improvement
3652
+ - warusa-kagen
3653
+ core_replaces: '@architect'
3654
+ can_review:
3655
+ - kaizen
3656
+ - process-validation
3657
+ - id: michael-hammer
3658
+ story_role: executor
3659
+ fw_type: Agent
3660
+ work_contexts:
3661
+ - bpr
3662
+ - radical-redesign
3663
+ - pemm-assessment
3664
+ - handoff-elimination
3665
+ - process-reengineering
3666
+ core_replaces: '@architect'
3667
+ can_review:
3668
+ - reengineering
3669
+ - process-redesign
3670
+ executor_reviewers:
3671
+ - id: process-chief
3672
+ can_review:
3673
+ - process-management
3674
+ - pipeline
3675
+ - orchestration
3676
+ - id: eliyahu-goldratt
3677
+ can_review:
3678
+ - constraints
3679
+ - process-diagnosis
3680
+ aggregated_work_contexts:
3681
+ - 9-box-matrix
3682
+ - bpr
3683
+ - continuous-improvement
3684
+ - gemba-discovery
3685
+ - handoff-elimination
3686
+ - kaizen
3687
+ - lean-principles
3688
+ - lean-thinking
3689
+ - pemm-assessment
3690
+ - process-architecture
3691
+ - process-reengineering
3692
+ - radical-redesign
3693
+ - rummler-brache
3694
+ - sdca-pdca
3695
+ - swimlane-mapping
3696
+ - value-stream-mapping
3697
+ - vsm
3698
+ - warusa-kagen
3699
+ - waste-elimination
3700
+ - white-space-analysis
3701
+ project-ops:
3702
+ path: squads/project-ops/
3703
+ version: unknown
3704
+ description: 'Squad responsável por MATERIALIZAR processos mapeados pelo SINKRA
3705
+ em estruturas
3706
+
3707
+ concretas no CRM do spoke via CRMAdapter. Consome composições SINKRA e cria
3708
+
3709
+ Projects, Boards, Tasks, Custom Fields, Automations, Views.
3710
+
3711
+
3712
+ Pipeline: sinkra-squad (mapeia) → CSO (valida) → project-ops (materializa)
3713
+
3714
+
3715
+ Princípio: SINKRA define O QUÊ. Este squad executa O COMO via CRMAdapter.
3716
+
3717
+
3718
+ Adapters disponíveis: ClickUp (referência), Linear, Jira, GitHub Projects, Notion
3719
+ (planejados).
3720
+
3721
+ '
3722
+ slashPrefix: ''
3723
+ counts:
3724
+ agents: 5
3725
+ tasks: 2
3726
+ workflows: 2
3727
+ templates: 4
3728
+ checklists: 2
3729
+ data_files: 4
3730
+ agent_names:
3731
+ - auditor
3732
+ - playwright-ops
3733
+ - api-builder
3734
+ - project-chief
3735
+ - materializer
3736
+ has_readme: false
3737
+ has_changelog: false
3738
+ domain: _TO_BE_INFERRED_
3739
+ keywords: []
3740
+ highlights: []
3741
+ example_use: ''
3742
+ executor_capable_agents:
3743
+ - id: materializer
3744
+ story_role: executor
3745
+ fw_type: Agent
3746
+ work_contexts:
3747
+ - CRM-API
3748
+ - Projects
3749
+ - Boards
3750
+ - Tasks
3751
+ - Custom-Fields
3752
+ - Views
3753
+ - tokenização
3754
+ core_replaces: '@dev'
3755
+ can_review:
3756
+ - CRM-API
3757
+ - estrutura
3758
+ - Custom-Fields
3759
+ - id: api-builder
3760
+ story_role: executor
3761
+ fw_type: Agent
3762
+ work_contexts:
3763
+ - API
3764
+ - services
3765
+ - CRM
3766
+ - adapter
3767
+ - JavaScript
3768
+ - integração
3769
+ - gaps
3770
+ core_replaces: '@dev'
3771
+ can_review:
3772
+ - API
3773
+ - services
3774
+ - CRM
3775
+ - id: playwright-ops
3776
+ story_role: executor
3777
+ fw_type: Agent
3778
+ work_contexts:
3779
+ - Playwright
3780
+ - browser-automation
3781
+ - UI
3782
+ - automações
3783
+ - dashboards
3784
+ - forms
3785
+ - scraping
3786
+ core_replaces: '@dev'
3787
+ can_review:
3788
+ - Playwright
3789
+ - browser-automation
3790
+ - UI
3791
+ - id: auditor
3792
+ story_role: executor
3793
+ fw_type: Agent
3794
+ work_contexts:
3795
+ - auditoria
3796
+ - validação
3797
+ - CRM
3798
+ - SINKRA
3799
+ - coerência
3800
+ - tokenização
3801
+ - compliance
3802
+ core_replaces: '@analyst'
3803
+ can_review:
3804
+ - auditoria
3805
+ - CRM
3806
+ - SINKRA
3807
+ - coerência
3808
+ executor_reviewers:
3809
+ - id: project-chief
3810
+ can_review:
3811
+ - CRM
3812
+ - materialização
3813
+ - estrutura
3814
+ - SINKRA
3815
+ aggregated_work_contexts:
3816
+ - API
3817
+ - Boards
3818
+ - CRM
3819
+ - CRM-API
3820
+ - Custom-Fields
3821
+ - JavaScript
3822
+ - Playwright
3823
+ - Projects
3824
+ - SINKRA
3825
+ - Tasks
3826
+ - UI
3827
+ - Views
3828
+ - adapter
3829
+ - auditoria
3830
+ - automações
3831
+ - browser-automation
3832
+ - coerência
3833
+ - compliance
3834
+ - dashboards
3835
+ - forms
3836
+ - gaps
3837
+ - integração
3838
+ - scraping
3839
+ - services
3840
+ - tokenização
3841
+ - validação
3842
+ sinkra-squad:
3843
+ path: squads/sinkra-squad/
3844
+ version: unknown
3845
+ description: 'Squad que implementa a metodologia SINKRA para mapeamento de processos
3846
+ na era da
3847
+
3848
+ sincronizacao Human-AI. Opera em DOIS modos:
3849
+
3850
+ - Modo Process: mapeia processos recorrentes usando hierarquia composicional
3851
+ (Token->Instance)
3852
+
3853
+ - Modo Mission: mapeia projetos one-time (Ponto A→B) usando DAG, Appetite e
3854
+ Circuit Breaker
3855
+
3856
+
3857
+ 4 tipos de executores (Human/Agent/Worker/Clone), 9 tipos de tokens.
3858
+
3859
+ 3 Organism Patterns: Linear (sequencial), Cyclic/Flywheel (rotações), Mission
3860
+ (DAG one-time).
3861
+
3862
+
3863
+ Outputs alimentam o Squad Creator (modo Process) ou clickup-ops-squad (modo
3864
+ Mission).
3865
+
3866
+ Pipeline Process: SINKRA (mapeia) -> Squad Creator (cria) -> Architect (desenvolve)
3867
+
3868
+ Pipeline Mission: SINKRA (mapeia) -> clickup-ops-squad (materializa no ClickUp)
3869
+
3870
+ '
3871
+ slashPrefix: ''
3872
+ counts:
3873
+ agents: 8
3874
+ tasks: 24
3875
+ workflows: 4
3876
+ templates: 10
3877
+ checklists: 2
3878
+ data_files: 8
3879
+ agent_names:
3880
+ - infrastructure-mapper
3881
+ - composition-engineer
3882
+ - executor-classifier
3883
+ - sinkra-chief
3884
+ - quality-gatekeeper
3885
+ - architecture-designer
3886
+ - process-discoverer
3887
+ - sinkra-qa
3888
+ has_readme: true
3889
+ has_changelog: false
3890
+ domain: _TO_BE_INFERRED_
3891
+ keywords: []
3892
+ highlights: []
3893
+ example_use: ''
3894
+ executor_capable_agents:
3895
+ - id: process-discoverer
3896
+ story_role: executor
3897
+ fw_type: Agent
3898
+ work_contexts:
3899
+ - discovery
3900
+ - AS-IS
3901
+ - mapeamento
3902
+ - stakeholders
3903
+ - processos
3904
+ - entrevistas
3905
+ - documentação
3906
+ core_replaces: '@analyst'
3907
+ can_review:
3908
+ - discovery
3909
+ - processos
3910
+ - mapeamento
3911
+ - id: architecture-designer
3912
+ story_role: executor
3913
+ fw_type: Agent
3914
+ work_contexts:
3915
+ - arquitetura
3916
+ - TO-BE
3917
+ - design
3918
+ - composição
3919
+ - hierarquia
3920
+ - DAG
3921
+ - diagramas
3922
+ core_replaces: '@architect'
3923
+ can_review:
3924
+ - arquitetura
3925
+ - design
3926
+ - composição
3927
+ - id: executor-classifier
3928
+ story_role: executor
3929
+ fw_type: Agent
3930
+ work_contexts:
3931
+ - classificação
3932
+ - executores
3933
+ - Human
3934
+ - Agent
3935
+ - Worker
3936
+ - Clone
3937
+ - RACI
3938
+ - capability-gaps
3939
+ core_replaces: '@analyst'
3940
+ can_review:
3941
+ - classificação
3942
+ - executores
3943
+ - RACI
3944
+ - id: composition-engineer
3945
+ story_role: executor
3946
+ fw_type: Agent
3947
+ work_contexts:
3948
+ - composição
3949
+ - Token
3950
+ - Atom
3951
+ - Molecule
3952
+ - Organism
3953
+ - Template
3954
+ - workflows
3955
+ - task-definitions
3956
+ core_replaces: '@architect'
3957
+ can_review:
3958
+ - composição
3959
+ - hierarquia
3960
+ - workflows
3961
+ - id: quality-gatekeeper
3962
+ story_role: executor
3963
+ fw_type: Agent
3964
+ work_contexts:
3965
+ - quality-gates
3966
+ - Meta-Axiomas
3967
+ - compliance
3968
+ - validação
3969
+ - thresholds
3970
+ - métricas
3971
+ core_replaces: '@analyst'
3972
+ can_review:
3973
+ - quality-gates
3974
+ - compliance
3975
+ - validação
3976
+ - métricas
3977
+ - id: infrastructure-mapper
3978
+ story_role: executor
3979
+ fw_type: Agent
3980
+ work_contexts:
3981
+ - infraestrutura
3982
+ - service-catalog
3983
+ - integração
3984
+ - mapeamento
3985
+ - serviços
3986
+ - APIs
3987
+ core_replaces: '@devops'
3988
+ can_review:
3989
+ - infraestrutura
3990
+ - integração
3991
+ - id: sinkra-qa
3992
+ story_role: executor
3993
+ fw_type: Agent
3994
+ work_contexts:
3995
+ - validação
3996
+ - compliance
3997
+ - SINKRA
3998
+ - squad-outputs
3999
+ - auditoria
4000
+ - consistência
4001
+ core_replaces: '@analyst'
4002
+ can_review:
4003
+ - compliance
4004
+ - SINKRA
4005
+ - validação
4006
+ executor_reviewers:
4007
+ - id: sinkra-chief
4008
+ can_review:
4009
+ - SINKRA
4010
+ - pipeline
4011
+ - processos
4012
+ - handoff
4013
+ aggregated_work_contexts:
4014
+ - APIs
4015
+ - AS-IS
4016
+ - Agent
4017
+ - Atom
4018
+ - Clone
4019
+ - DAG
4020
+ - Human
4021
+ - Meta-Axiomas
4022
+ - Molecule
4023
+ - Organism
4024
+ - RACI
4025
+ - SINKRA
4026
+ - TO-BE
4027
+ - Template
4028
+ - Token
4029
+ - Worker
4030
+ - arquitetura
4031
+ - auditoria
4032
+ - capability-gaps
4033
+ - classificação
4034
+ - compliance
4035
+ - composição
4036
+ - consistência
4037
+ - design
4038
+ - diagramas
4039
+ - discovery
4040
+ - documentação
4041
+ - entrevistas
4042
+ - executores
4043
+ - hierarquia
4044
+ - infraestrutura
4045
+ - integração
4046
+ - mapeamento
4047
+ - métricas
4048
+ - processos
4049
+ - quality-gates
4050
+ - service-catalog
4051
+ - serviços
4052
+ - squad-outputs
4053
+ - stakeholders
4054
+ - task-definitions
4055
+ - thresholds
4056
+ - validação
4057
+ - workflows
4058
+ skill-creator-ops:
4059
+ path: squads/skill-creator-ops/
4060
+ version: unknown
4061
+ description: ''
4062
+ slashPrefix: ''
4063
+ counts:
4064
+ agents: 3
4065
+ tasks: 6
4066
+ workflows: 0
4067
+ templates: 2
4068
+ checklists: 1
4069
+ data_files: 0
4070
+ agent_names:
4071
+ - skill-validator
4072
+ - skill-ops-chief
4073
+ - skill-tester
4074
+ has_readme: false
4075
+ has_changelog: false
4076
+ domain: _TO_BE_INFERRED_
4077
+ keywords: []
4078
+ highlights: []
4079
+ example_use: ''
4080
+ executor_capable_agents:
4081
+ - id: skill-ops-chief
4082
+ story_role: executor
4083
+ fw_type: Agent
4084
+ work_contexts:
4085
+ - general
4086
+ core_replaces: null
4087
+ can_review: []
4088
+ - id: skill-validator
4089
+ story_role: executor
4090
+ fw_type: Agent
4091
+ work_contexts:
4092
+ - general
4093
+ core_replaces: null
4094
+ can_review: []
4095
+ - id: skill-tester
4096
+ story_role: executor
4097
+ fw_type: Agent
4098
+ work_contexts:
4099
+ - general
4100
+ core_replaces: null
4101
+ can_review: []
4102
+ aggregated_work_contexts:
4103
+ - general
4104
+ slides-creator:
4105
+ path: squads/slides-creator/
4106
+ version: unknown
4107
+ description: ''
4108
+ slashPrefix: ''
4109
+ counts:
4110
+ agents: 6
4111
+ tasks: 7
4112
+ workflows: 1
4113
+ templates: 1
4114
+ checklists: 1
4115
+ data_files: 13
4116
+ agent_names:
4117
+ - qa-inspector
4118
+ - visual-scout
4119
+ - content-architect
4120
+ - slide-chief
4121
+ - design-renderer
4122
+ - template-curator
4123
+ has_readme: true
4124
+ has_changelog: true
4125
+ domain: _TO_BE_INFERRED_
4126
+ keywords: []
4127
+ highlights: []
4128
+ example_use: ''
4129
+ executor_capable_agents:
4130
+ - id: slide-chief
4131
+ story_role: executor
4132
+ fw_type: Agent
4133
+ work_contexts:
4134
+ - general
4135
+ core_replaces: null
4136
+ can_review: []
4137
+ - id: content-architect
4138
+ story_role: executor
4139
+ fw_type: Agent
4140
+ work_contexts:
4141
+ - general
4142
+ core_replaces: null
4143
+ can_review: []
4144
+ - id: template-curator
4145
+ story_role: executor
4146
+ fw_type: Agent
4147
+ work_contexts:
4148
+ - general
4149
+ core_replaces: null
4150
+ can_review: []
4151
+ - id: design-renderer
4152
+ story_role: executor
4153
+ fw_type: Agent
4154
+ work_contexts:
4155
+ - general
4156
+ core_replaces: null
4157
+ can_review: []
4158
+ - id: visual-scout
4159
+ story_role: executor
4160
+ fw_type: Agent
4161
+ work_contexts:
4162
+ - general
4163
+ core_replaces: null
4164
+ can_review: []
4165
+ - id: qa-inspector
4166
+ story_role: executor
4167
+ fw_type: Agent
4168
+ work_contexts:
4169
+ - general
4170
+ core_replaces: null
4171
+ can_review: []
4172
+ aggregated_work_contexts:
4173
+ - general
4174
+ spy:
4175
+ path: squads/spy/
4176
+ version: 3.0.0
4177
+ description: 'Competitive intelligence: universal benchmarking (codebase, LLM,
4178
+ product, company, technology) + content analysis (YouTube/Instagram)'
4179
+ slashPrefix: ''
4180
+ counts:
4181
+ agents: 3
4182
+ tasks: 41
4183
+ workflows: 1
4184
+ templates: 14
4185
+ checklists: 2
4186
+ data_files: 11
4187
+ agent_names:
4188
+ - research-head
4189
+ - bench-analyst
4190
+ - spy
4191
+ has_readme: true
4192
+ has_changelog: false
4193
+ domain: _TO_BE_INFERRED_
4194
+ keywords: []
4195
+ highlights: []
4196
+ example_use: ''
4197
+ executor_capable_agents:
4198
+ - id: research-head
4199
+ story_role: executor
4200
+ fw_type: Agent
4201
+ work_contexts:
4202
+ - deep-research
4203
+ - data-analysis
4204
+ - strategic-insights
4205
+ - competitive-benchmarking
4206
+ - content-analysis
4207
+ core_replaces: '@analyst'
4208
+ can_review:
4209
+ - research-quality
4210
+ - data-validation
4211
+ - id: bench-analyst
4212
+ story_role: executor
4213
+ fw_type: Agent
4214
+ work_contexts:
4215
+ - codebase-benchmarking
4216
+ - llm-benchmarking
4217
+ - product-comparison
4218
+ - company-analysis
4219
+ - technology-evaluation
4220
+ core_replaces: '@analyst'
4221
+ can_review:
4222
+ - benchmark-quality
4223
+ - competitive-benchmark
4224
+ executor_reviewers:
4225
+ - id: spy
4226
+ can_review:
4227
+ - competitive-intelligence
4228
+ - market-analysis
4229
+ aggregated_work_contexts:
4230
+ - codebase-benchmarking
4231
+ - company-analysis
4232
+ - competitive-benchmarking
4233
+ - content-analysis
4234
+ - data-analysis
4235
+ - deep-research
4236
+ - llm-benchmarking
4237
+ - product-comparison
4238
+ - strategic-insights
4239
+ - technology-evaluation
4240
+ squad-creator:
4241
+ path: squads/squad-creator/
4242
+ version: unknown
4243
+ description: ''
4244
+ slashPrefix: ''
4245
+ counts:
4246
+ agents: 1
4247
+ tasks: 131
4248
+ workflows: 21
4249
+ templates: 23
4250
+ checklists: 14
4251
+ data_files: 19
4252
+ agent_names:
4253
+ - squad-chief
4254
+ has_readme: true
4255
+ has_changelog: true
4256
+ domain: _TO_BE_INFERRED_
4257
+ keywords: []
4258
+ highlights: []
4259
+ example_use: ''
4260
+ executor_capable_agents:
4261
+ - id: squad-operator
4262
+ story_role: executor
4263
+ fw_type: Agent
4264
+ work_contexts: []
4265
+ core_replaces: null
4266
+ can_review: []
4267
+ - id: squad-chief
4268
+ story_role: executor
4269
+ fw_type: Agent
4270
+ work_contexts: []
4271
+ core_replaces: null
4272
+ can_review: []
4273
+ - id: squad-runtime-worker
4274
+ story_role: executor
4275
+ fw_type: Agent
4276
+ work_contexts: []
4277
+ core_replaces: null
4278
+ can_review: []
4279
+ - id: reference-pattern-clone
4280
+ story_role: executor
4281
+ fw_type: Agent
4282
+ work_contexts: []
4283
+ core_replaces: null
4284
+ can_review: []
4285
+ squad-creator-pro:
4286
+ path: squads/squad-creator-pro/
4287
+ version: unknown
4288
+ description: ''
4289
+ slashPrefix: ''
4290
+ counts:
4291
+ agents: 4
4292
+ tasks: 189
4293
+ workflows: 47
4294
+ templates: 19
4295
+ checklists: 12
4296
+ data_files: 32
4297
+ agent_names:
4298
+ - pedro-valerio
4299
+ - oalanicolas
4300
+ - squad-chief
4301
+ - thiago_finch
4302
+ has_readme: true
4303
+ has_changelog: true
4304
+ domain: _TO_BE_INFERRED_
4305
+ keywords: []
4306
+ highlights: []
4307
+ example_use: ''
4308
+ executor_capable_agents:
4309
+ - id: squad-operator
4310
+ story_role: executor
4311
+ fw_type: Agent
4312
+ work_contexts: []
4313
+ core_replaces: null
4314
+ can_review: []
4315
+ - id: squad-chief
4316
+ story_role: executor
4317
+ fw_type: Agent
4318
+ work_contexts: []
4319
+ core_replaces: null
4320
+ can_review: []
4321
+ - id: oalanicolas
4322
+ story_role: executor
4323
+ fw_type: Agent
4324
+ work_contexts: []
4325
+ core_replaces: null
4326
+ can_review: []
4327
+ - id: pedro-valerio
4328
+ story_role: executor
4329
+ fw_type: Agent
4330
+ work_contexts: []
4331
+ core_replaces: null
4332
+ can_review: []
4333
+ - id: thiago_finch
4334
+ story_role: executor
4335
+ fw_type: Agent
4336
+ work_contexts: []
4337
+ core_replaces: null
4338
+ can_review: []
4339
+ - id: deterministic-runtime
4340
+ story_role: executor
4341
+ fw_type: Agent
4342
+ work_contexts: []
4343
+ core_replaces: null
4344
+ can_review: []
4345
+ storytelling:
4346
+ path: squads/storytelling/
4347
+ version: unknown
4348
+ description: ''
4349
+ slashPrefix: ''
4350
+ counts:
4351
+ agents: 13
4352
+ tasks: 13
4353
+ workflows: 1
4354
+ templates: 0
4355
+ checklists: 1
4356
+ data_files: 1
4357
+ agent_names:
4358
+ - kindra-hall
4359
+ - keith-johnstone
4360
+ - matthew-dicks
4361
+ - park-howell
4362
+ - marshall-ganz
4363
+ - blake-snyder
4364
+ - nancy-duarte
4365
+ - joseph-campbell
4366
+ - shawn-coyne
4367
+ - donald-miller
4368
+ - story-chief
4369
+ - dan-harmon
4370
+ - oren-klaff
4371
+ has_readme: true
4372
+ has_changelog: true
4373
+ domain: _TO_BE_INFERRED_
4374
+ keywords: []
4375
+ highlights: []
4376
+ example_use: ''
4377
+ executor_capable_agents:
4378
+ - id: joseph-campbell
4379
+ story_role: executor
4380
+ fw_type: Agent
4381
+ work_contexts:
4382
+ - hero's journey
4383
+ - monomyth
4384
+ - narrative archetype
4385
+ - storytelling framework
4386
+ - mythological structure
4387
+ core_replaces: null
4388
+ can_review:
4389
+ - narrative-structure
4390
+ - story-archetype
4391
+ - id: shawn-coyne
4392
+ story_role: executor
4393
+ fw_type: Agent
4394
+ work_contexts:
4395
+ - story grid
4396
+ - genre analysis
4397
+ - narrative diagnosis
4398
+ - story structure
4399
+ - editorial analysis
4400
+ core_replaces: null
4401
+ can_review:
4402
+ - genre-classification
4403
+ - story-structure
4404
+ - id: donald-miller
4405
+ story_role: executor
4406
+ fw_type: Agent
4407
+ work_contexts:
4408
+ - StoryBrand
4409
+ - SB7
4410
+ - business narrative
4411
+ - brand messaging
4412
+ - customer journey
4413
+ - hero positioning
4414
+ core_replaces: null
4415
+ can_review:
4416
+ - brand-narrative
4417
+ - messaging
4418
+ - storybrand
4419
+ - id: nancy-duarte
4420
+ story_role: executor
4421
+ fw_type: Agent
4422
+ work_contexts:
4423
+ - presentation storytelling
4424
+ - sparkline
4425
+ - resonate
4426
+ - pitch narrative
4427
+ - slide structure
4428
+ - visual narrative
4429
+ core_replaces: null
4430
+ can_review:
4431
+ - presentation-narrative
4432
+ - pitch-storytelling
4433
+ - id: dan-harmon
4434
+ story_role: executor
4435
+ fw_type: Agent
4436
+ work_contexts:
4437
+ - story circle
4438
+ - 8 beats
4439
+ - TV writing
4440
+ - episodic narrative
4441
+ - character arc
4442
+ - circular structure
4443
+ core_replaces: null
4444
+ can_review:
4445
+ - story-circle
4446
+ - episodic-structure
4447
+ - id: blake-snyder
4448
+ story_role: executor
4449
+ fw_type: Agent
4450
+ work_contexts:
4451
+ - save the cat
4452
+ - 15 beats
4453
+ - screenwriting
4454
+ - beat sheet
4455
+ - script structure
4456
+ - movie narrative
4457
+ core_replaces: null
4458
+ can_review:
4459
+ - beat-sheet
4460
+ - script-structure
4461
+ - id: oren-klaff
4462
+ story_role: executor
4463
+ fw_type: Agent
4464
+ work_contexts:
4465
+ - pitch storytelling
4466
+ - STRONG method
4467
+ - neurofinance
4468
+ - frame control
4469
+ - pitch persuasion
4470
+ core_replaces: null
4471
+ can_review:
4472
+ - pitch-narrative
4473
+ - persuasion
4474
+ - id: kindra-hall
4475
+ story_role: executor
4476
+ fw_type: Agent
4477
+ work_contexts:
4478
+ - strategic storytelling
4479
+ - business stories
4480
+ - stories that stick
4481
+ - brand story
4482
+ - customer story
4483
+ core_replaces: null
4484
+ can_review:
4485
+ - business-storytelling
4486
+ - brand-story
4487
+ - id: matthew-dicks
4488
+ story_role: executor
4489
+ fw_type: Agent
4490
+ work_contexts:
4491
+ - personal storytelling
4492
+ - storyworthy
4493
+ - moth
4494
+ - 5-second moment
4495
+ - vulnerability
4496
+ - authentic narrative
4497
+ core_replaces: null
4498
+ can_review:
4499
+ - personal-narrative
4500
+ - authenticity
4501
+ - id: marshall-ganz
4502
+ story_role: executor
4503
+ fw_type: Agent
4504
+ work_contexts:
4505
+ - public narrative
4506
+ - leadership storytelling
4507
+ - story of self
4508
+ - social movement
4509
+ - collective narrative
4510
+ core_replaces: null
4511
+ can_review:
4512
+ - public-narrative
4513
+ - leadership-storytelling
4514
+ - id: park-howell
4515
+ story_role: executor
4516
+ fw_type: Agent
4517
+ work_contexts:
4518
+ - brand storytelling
4519
+ - ABT framework
4520
+ - business of story
4521
+ - narrative branding
4522
+ - and-but-therefore
4523
+ core_replaces: null
4524
+ can_review:
4525
+ - brand-storytelling
4526
+ - ABT-framework
4527
+ - id: keith-johnstone
4528
+ story_role: executor
4529
+ fw_type: Agent
4530
+ work_contexts:
4531
+ - improvisational storytelling
4532
+ - impro
4533
+ - status theory
4534
+ - spontaneous narrative
4535
+ - theatrical improvisation
4536
+ core_replaces: null
4537
+ can_review:
4538
+ - improvisation
4539
+ - status-dynamics
4540
+ aggregated_work_contexts:
4541
+ - 15 beats
4542
+ - 5-second moment
4543
+ - 8 beats
4544
+ - ABT framework
4545
+ - SB7
4546
+ - STRONG method
4547
+ - StoryBrand
4548
+ - TV writing
4549
+ - and-but-therefore
4550
+ - authentic narrative
4551
+ - beat sheet
4552
+ - brand messaging
4553
+ - brand story
4554
+ - brand storytelling
4555
+ - business narrative
4556
+ - business of story
4557
+ - business stories
4558
+ - character arc
4559
+ - circular structure
4560
+ - collective narrative
4561
+ - customer journey
4562
+ - customer story
4563
+ - editorial analysis
4564
+ - episodic narrative
4565
+ - frame control
4566
+ - genre analysis
4567
+ - hero positioning
4568
+ - hero's journey
4569
+ - impro
4570
+ - improvisational storytelling
4571
+ - leadership storytelling
4572
+ - monomyth
4573
+ - moth
4574
+ - movie narrative
4575
+ - mythological structure
4576
+ - narrative archetype
4577
+ - narrative branding
4578
+ - narrative diagnosis
4579
+ - neurofinance
4580
+ - personal storytelling
4581
+ - pitch narrative
4582
+ - pitch persuasion
4583
+ - pitch storytelling
4584
+ - presentation storytelling
4585
+ - public narrative
4586
+ - resonate
4587
+ - save the cat
4588
+ - screenwriting
4589
+ - script structure
4590
+ - slide structure
4591
+ - social movement
4592
+ - sparkline
4593
+ - spontaneous narrative
4594
+ - status theory
4595
+ - stories that stick
4596
+ - story circle
4597
+ - story grid
4598
+ - story of self
4599
+ - story structure
4600
+ - storytelling framework
4601
+ - storyworthy
4602
+ - strategic storytelling
4603
+ - theatrical improvisation
4604
+ - visual narrative
4605
+ - vulnerability
4606
+ tools-squad:
4607
+ path: squads/tools-squad/
4608
+ version: unknown
4609
+ description: ''
4610
+ slashPrefix: ''
4611
+ counts:
4612
+ agents: 7
4613
+ tasks: 1
4614
+ workflows: 0
4615
+ templates: 2
4616
+ checklists: 2
4617
+ data_files: 2
4618
+ agent_names:
4619
+ - tools-extractor
4620
+ - tools-database-manager
4621
+ - tools-validator
4622
+ - tools-creator
4623
+ - mental-model-analyzer
4624
+ - tools-reviewer
4625
+ - tools-orchestrator
4626
+ has_readme: true
4627
+ has_changelog: false
4628
+ domain: _TO_BE_INFERRED_
4629
+ keywords: []
4630
+ highlights: []
4631
+ example_use: ''
4632
+ executor_capable_agents:
4633
+ - id: tools-reviewer
4634
+ story_role: executor
4635
+ fw_type: Agent
4636
+ work_contexts:
4637
+ - framework review
4638
+ - expansion
4639
+ - deep analysis
4640
+ - quality improvement
4641
+ core_replaces: '@dev'
4642
+ can_review:
4643
+ - framework-depth
4644
+ - quality-score
4645
+ - id: tools-creator
4646
+ story_role: executor
4647
+ fw_type: Agent
4648
+ work_contexts:
4649
+ - framework creation
4650
+ - cognitive tool design
4651
+ - mental model creation
4652
+ core_replaces: '@dev'
4653
+ can_review: []
4654
+ - id: tools-extractor
4655
+ story_role: executor
4656
+ fw_type: Agent
4657
+ work_contexts:
4658
+ - framework extraction
4659
+ - source analysis
4660
+ - knowledge extraction
4661
+ core_replaces: '@dev'
4662
+ can_review: []
4663
+ - id: tools-validator
4664
+ story_role: executor
4665
+ fw_type: Agent
4666
+ work_contexts:
4667
+ - framework validation
4668
+ - quality checks
4669
+ - 300+ checks
4670
+ - AI executability
4671
+ core_replaces: '@dev'
4672
+ can_review:
4673
+ - validation-score
4674
+ - quality-compliance
4675
+ - id: tools-database-manager
4676
+ story_role: executor
4677
+ fw_type: Agent
4678
+ work_contexts:
4679
+ - database management
4680
+ - SQL output
4681
+ - framework storage
4682
+ - catalog management
4683
+ core_replaces: '@dev'
4684
+ can_review: []
4685
+ - id: mental-model-analyzer
4686
+ story_role: executor
4687
+ fw_type: Agent
4688
+ work_contexts:
4689
+ - mental model analysis
4690
+ - cognitive framework analysis
4691
+ - domain alignment
4692
+ core_replaces: '@dev'
4693
+ can_review:
4694
+ - model-quality
4695
+ - domain-alignment
4696
+ executor_reviewers:
4697
+ - id: tools-orchestrator
4698
+ can_review:
4699
+ - framework-quality
4700
+ - workflow-routing
4701
+ aggregated_work_contexts:
4702
+ - 300+ checks
4703
+ - AI executability
4704
+ - SQL output
4705
+ - catalog management
4706
+ - cognitive framework analysis
4707
+ - cognitive tool design
4708
+ - database management
4709
+ - deep analysis
4710
+ - domain alignment
4711
+ - expansion
4712
+ - framework creation
4713
+ - framework extraction
4714
+ - framework review
4715
+ - framework storage
4716
+ - framework validation
4717
+ - knowledge extraction
4718
+ - mental model analysis
4719
+ - mental model creation
4720
+ - quality checks
4721
+ - quality improvement
4722
+ - source analysis
4723
+ visual-knowledge-squad:
4724
+ path: squads/visual-knowledge-squad/
4725
+ version: unknown
4726
+ description: ''
4727
+ slashPrefix: ''
4728
+ counts:
4729
+ agents: 9
4730
+ tasks: 7
4731
+ workflows: 2
4732
+ templates: 7
4733
+ checklists: 2
4734
+ data_files: 6
4735
+ agent_names:
4736
+ - visual-knowledge-chief
4737
+ - dave-gray
4738
+ - martin-haussmann
4739
+ - holger-nils-pohl
4740
+ - jim-kalbach
4741
+ - nancy-duarte
4742
+ - alexander-osterwalder
4743
+ - david-sibbet
4744
+ - dan-roam
4745
+ has_readme: true
4746
+ has_changelog: false
4747
+ domain: _TO_BE_INFERRED_
4748
+ keywords: []
4749
+ highlights: []
4750
+ example_use: ''
4751
+ executor_capable_agents:
4752
+ - id: dan-roam
4753
+ story_role: executor
4754
+ fw_type: Agent
4755
+ work_contexts:
4756
+ - visual-diagnosis
4757
+ - 6ws
4758
+ - sqvid
4759
+ - visual-problem-solving
4760
+ core_replaces: '@ux-design-expert'
4761
+ can_review:
4762
+ - visual-diagnosis
4763
+ - problem-framing
4764
+ - id: david-sibbet
4765
+ story_role: executor
4766
+ fw_type: Agent
4767
+ work_contexts:
4768
+ - group-graphics
4769
+ - visual-facilitation
4770
+ - team-visuals
4771
+ core_replaces: '@ux-design-expert'
4772
+ can_review:
4773
+ - graphic-facilitation
4774
+ - group-visuals
4775
+ - id: alexander-osterwalder
4776
+ story_role: executor
4777
+ fw_type: Agent
4778
+ work_contexts:
4779
+ - canvas-design
4780
+ - business-model-canvas
4781
+ - visual-frameworks
4782
+ core_replaces: '@ux-design-expert'
4783
+ can_review:
4784
+ - canvas-design
4785
+ - business-modeling
4786
+ - id: dave-gray
4787
+ story_role: executor
4788
+ fw_type: Agent
4789
+ work_contexts:
4790
+ - gamestorming
4791
+ - workshop-design
4792
+ - collaborative-games
4793
+ core_replaces: '@ux-design-expert'
4794
+ can_review:
4795
+ - workshop-design
4796
+ - gamestorming
4797
+ - id: nancy-duarte
4798
+ story_role: executor
4799
+ fw_type: Agent
4800
+ work_contexts:
4801
+ - presentation-design
4802
+ - sparkline
4803
+ - visual-storytelling
4804
+ core_replaces: '@ux-design-expert'
4805
+ can_review:
4806
+ - presentation
4807
+ - visual-storytelling
4808
+ - id: martin-haussmann
4809
+ story_role: executor
4810
+ fw_type: Agent
4811
+ work_contexts:
4812
+ - bikablo
4813
+ - icon-design
4814
+ - visual-vocabulary
4815
+ core_replaces: '@ux-design-expert'
4816
+ can_review:
4817
+ - visual-vocabulary
4818
+ - icon-design
4819
+ - id: holger-nils-pohl
4820
+ story_role: executor
4821
+ fw_type: Agent
4822
+ work_contexts:
4823
+ - digital-facilitation
4824
+ - miro-boards
4825
+ - visual-collaboration
4826
+ core_replaces: '@ux-design-expert'
4827
+ can_review:
4828
+ - digital-facilitation
4829
+ - visual-collaboration
4830
+ - id: jim-kalbach
4831
+ story_role: executor
4832
+ fw_type: Agent
4833
+ work_contexts:
4834
+ - alignment-diagrams
4835
+ - service-blueprints
4836
+ - journey-mapping
4837
+ core_replaces: '@ux-design-expert'
4838
+ can_review:
4839
+ - alignment-diagrams
4840
+ - experience-mapping
4841
+ - id: visual-production-worker
4842
+ story_role: executor
4843
+ fw_type: Agent
4844
+ work_contexts:
4845
+ - rendering
4846
+ - packaging
4847
+ - asset-export
4848
+ - format-conversion
4849
+ core_replaces: '@dev'
4850
+ can_review:
4851
+ - asset-packaging
4852
+ - export-quality
4853
+ executor_reviewers:
4854
+ - id: visual-steward
4855
+ can_review:
4856
+ - visual-design
4857
+ - facilitation
4858
+ - storytelling
4859
+ - id: visual-knowledge-chief
4860
+ can_review:
4861
+ - visual-design
4862
+ - knowledge-visualization
4863
+ - facilitation
4864
+ aggregated_work_contexts:
4865
+ - 6ws
4866
+ - alignment-diagrams
4867
+ - asset-export
4868
+ - bikablo
4869
+ - business-model-canvas
4870
+ - canvas-design
4871
+ - collaborative-games
4872
+ - digital-facilitation
4873
+ - format-conversion
4874
+ - gamestorming
4875
+ - group-graphics
4876
+ - icon-design
4877
+ - journey-mapping
4878
+ - miro-boards
4879
+ - packaging
4880
+ - presentation-design
4881
+ - rendering
4882
+ - service-blueprints
4883
+ - sparkline
4884
+ - sqvid
4885
+ - team-visuals
4886
+ - visual-collaboration
4887
+ - visual-diagnosis
4888
+ - visual-facilitation
4889
+ - visual-frameworks
4890
+ - visual-problem-solving
4891
+ - visual-storytelling
4892
+ - visual-vocabulary
4893
+ - workshop-design
4894
+ summary:
4895
+ total_agents: 322
4896
+ total_tasks: 1276
4897
+ total_workflows: 229
4898
+ total_templates: 402
4899
+ total_checklists: 279
4900
+ total_data_files: 400