grimoire-framework 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1174) hide show
  1. package/.claude/CLAUDE.md +318 -0
  2. package/.claude/hooks/README.md +170 -0
  3. package/.claude/hooks/enforce-architecture-first.py +198 -0
  4. package/.claude/hooks/install-hooks.sh +43 -0
  5. package/.claude/hooks/mind-clone-governance.py +192 -0
  6. package/.claude/hooks/pre-commit-version-check.sh +157 -0
  7. package/.claude/hooks/precompact-session-digest.js +47 -0
  8. package/.claude/hooks/read-protection.py +153 -0
  9. package/.claude/hooks/slug-validation.py +176 -0
  10. package/.claude/hooks/sql-governance.py +182 -0
  11. package/.claude/hooks/synapse-engine.js +77 -0
  12. package/.claude/hooks/write-path-validation.py +196 -0
  13. package/.claude/rules/mcp-usage.md +177 -0
  14. package/.grimoire/cli/commands/config/index.js +609 -0
  15. package/.grimoire/cli/commands/generate/index.js +222 -0
  16. package/.grimoire/cli/commands/manifest/index.js +47 -0
  17. package/.grimoire/cli/commands/manifest/regenerate.js +97 -0
  18. package/.grimoire/cli/commands/manifest/validate.js +66 -0
  19. package/.grimoire/cli/commands/mcp/add.js +235 -0
  20. package/.grimoire/cli/commands/mcp/index.js +77 -0
  21. package/.grimoire/cli/commands/mcp/link.js +218 -0
  22. package/.grimoire/cli/commands/mcp/setup.js +165 -0
  23. package/.grimoire/cli/commands/mcp/status.js +184 -0
  24. package/.grimoire/cli/commands/metrics/cleanup.js +91 -0
  25. package/.grimoire/cli/commands/metrics/index.js +66 -0
  26. package/.grimoire/cli/commands/metrics/record.js +154 -0
  27. package/.grimoire/cli/commands/metrics/seed.js +127 -0
  28. package/.grimoire/cli/commands/metrics/show.js +209 -0
  29. package/.grimoire/cli/commands/migrate/analyze.js +355 -0
  30. package/.grimoire/cli/commands/migrate/backup.js +354 -0
  31. package/.grimoire/cli/commands/migrate/execute.js +294 -0
  32. package/.grimoire/cli/commands/migrate/index.js +443 -0
  33. package/.grimoire/cli/commands/migrate/rollback.js +325 -0
  34. package/.grimoire/cli/commands/migrate/update-imports.js +398 -0
  35. package/.grimoire/cli/commands/migrate/validate.js +454 -0
  36. package/.grimoire/cli/commands/pro/index.js +705 -0
  37. package/.grimoire/cli/commands/qa/index.js +57 -0
  38. package/.grimoire/cli/commands/qa/run.js +163 -0
  39. package/.grimoire/cli/commands/qa/status.js +195 -0
  40. package/.grimoire/cli/commands/validate/index.js +431 -0
  41. package/.grimoire/cli/commands/workers/formatters/info-formatter.js +275 -0
  42. package/.grimoire/cli/commands/workers/formatters/list-table.js +265 -0
  43. package/.grimoire/cli/commands/workers/formatters/list-tree.js +160 -0
  44. package/.grimoire/cli/commands/workers/index.js +57 -0
  45. package/.grimoire/cli/commands/workers/info.js +195 -0
  46. package/.grimoire/cli/commands/workers/list.js +215 -0
  47. package/.grimoire/cli/commands/workers/search-filters.js +185 -0
  48. package/.grimoire/cli/commands/workers/search-keyword.js +310 -0
  49. package/.grimoire/cli/commands/workers/search-semantic.js +294 -0
  50. package/.grimoire/cli/commands/workers/search.js +155 -0
  51. package/.grimoire/cli/commands/workers/utils/pagination.js +102 -0
  52. package/.grimoire/cli/index.js +150 -0
  53. package/.grimoire/cli/utils/output-formatter-cli.js +233 -0
  54. package/.grimoire/cli/utils/score-calculator.js +221 -0
  55. package/.grimoire/constitution.md +172 -0
  56. package/.grimoire/core/README.md +231 -0
  57. package/.grimoire/core/code-intel/code-intel-client.js +280 -0
  58. package/.grimoire/core/code-intel/code-intel-enricher.js +160 -0
  59. package/.grimoire/core/code-intel/index.js +137 -0
  60. package/.grimoire/core/code-intel/providers/code-graph-provider.js +201 -0
  61. package/.grimoire/core/code-intel/providers/provider-interface.js +108 -0
  62. package/.grimoire/core/config/config-cache.js +233 -0
  63. package/.grimoire/core/config/config-loader.js +281 -0
  64. package/.grimoire/core/config/config-resolver.js +609 -0
  65. package/.grimoire/core/config/env-interpolator.js +122 -0
  66. package/.grimoire/core/config/merge-utils.js +101 -0
  67. package/.grimoire/core/config/migrate-config.js +293 -0
  68. package/.grimoire/core/config/schemas/framework-config.schema.json +19 -0
  69. package/.grimoire/core/config/schemas/local-config.schema.json +20 -0
  70. package/.grimoire/core/config/schemas/project-config.schema.json +32 -0
  71. package/.grimoire/core/config/schemas/user-config.schema.json +33 -0
  72. package/.grimoire/core/config/templates/user-config.yaml +24 -0
  73. package/.grimoire/core/docs/SHARD-TRANSLATION-GUIDE.md +337 -0
  74. package/.grimoire/core/docs/component-creation-guide.md +459 -0
  75. package/.grimoire/core/docs/session-update-pattern.md +316 -0
  76. package/.grimoire/core/docs/template-syntax.md +267 -0
  77. package/.grimoire/core/docs/troubleshooting-guide.md +626 -0
  78. package/.grimoire/core/elicitation/agent-elicitation.js +272 -0
  79. package/.grimoire/core/elicitation/elicitation-engine.js +486 -0
  80. package/.grimoire/core/elicitation/session-manager.js +322 -0
  81. package/.grimoire/core/elicitation/task-elicitation.js +281 -0
  82. package/.grimoire/core/elicitation/workflow-elicitation.js +349 -0
  83. package/.grimoire/core/events/dashboard-emitter.js +369 -0
  84. package/.grimoire/core/events/index.js +17 -0
  85. package/.grimoire/core/events/types.js +52 -0
  86. package/.grimoire/core/execution/autonomous-build-loop.js +1068 -0
  87. package/.grimoire/core/execution/build-orchestrator.js +1055 -0
  88. package/.grimoire/core/execution/build-state-manager.js +1530 -0
  89. package/.grimoire/core/execution/context-injector.js +537 -0
  90. package/.grimoire/core/execution/parallel-executor.js +292 -0
  91. package/.grimoire/core/execution/parallel-monitor.js +429 -0
  92. package/.grimoire/core/execution/rate-limit-manager.js +314 -0
  93. package/.grimoire/core/execution/result-aggregator.js +486 -0
  94. package/.grimoire/core/execution/semantic-merge-engine.js +1736 -0
  95. package/.grimoire/core/execution/subagent-dispatcher.js +848 -0
  96. package/.grimoire/core/execution/wave-executor.js +397 -0
  97. package/.grimoire/core/health-check/base-check.js +224 -0
  98. package/.grimoire/core/health-check/check-registry.js +253 -0
  99. package/.grimoire/core/health-check/checks/deployment/build-config.js +111 -0
  100. package/.grimoire/core/health-check/checks/deployment/ci-config.js +125 -0
  101. package/.grimoire/core/health-check/checks/deployment/deployment-readiness.js +152 -0
  102. package/.grimoire/core/health-check/checks/deployment/docker-config.js +122 -0
  103. package/.grimoire/core/health-check/checks/deployment/env-file.js +111 -0
  104. package/.grimoire/core/health-check/checks/deployment/index.js +29 -0
  105. package/.grimoire/core/health-check/checks/index.js +56 -0
  106. package/.grimoire/core/health-check/checks/local/disk-space.js +214 -0
  107. package/.grimoire/core/health-check/checks/local/environment-vars.js +136 -0
  108. package/.grimoire/core/health-check/checks/local/git-install.js +158 -0
  109. package/.grimoire/core/health-check/checks/local/ide-detection.js +148 -0
  110. package/.grimoire/core/health-check/checks/local/index.js +35 -0
  111. package/.grimoire/core/health-check/checks/local/memory.js +138 -0
  112. package/.grimoire/core/health-check/checks/local/network.js +170 -0
  113. package/.grimoire/core/health-check/checks/local/npm-install.js +149 -0
  114. package/.grimoire/core/health-check/checks/local/shell-environment.js +120 -0
  115. package/.grimoire/core/health-check/checks/project/agent-config.js +167 -0
  116. package/.grimoire/core/health-check/checks/project/dependencies.js +150 -0
  117. package/.grimoire/core/health-check/checks/project/framework-config.js +133 -0
  118. package/.grimoire/core/health-check/checks/project/grimoire-directory.js +143 -0
  119. package/.grimoire/core/health-check/checks/project/index.js +35 -0
  120. package/.grimoire/core/health-check/checks/project/node-version.js +163 -0
  121. package/.grimoire/core/health-check/checks/project/package-json.js +107 -0
  122. package/.grimoire/core/health-check/checks/project/task-definitions.js +192 -0
  123. package/.grimoire/core/health-check/checks/project/workflow-dependencies.js +214 -0
  124. package/.grimoire/core/health-check/checks/repository/branch-protection.js +107 -0
  125. package/.grimoire/core/health-check/checks/repository/commit-history.js +144 -0
  126. package/.grimoire/core/health-check/checks/repository/conflicts.js +152 -0
  127. package/.grimoire/core/health-check/checks/repository/git-repo.js +159 -0
  128. package/.grimoire/core/health-check/checks/repository/git-status.js +149 -0
  129. package/.grimoire/core/health-check/checks/repository/gitignore.js +194 -0
  130. package/.grimoire/core/health-check/checks/repository/index.js +35 -0
  131. package/.grimoire/core/health-check/checks/repository/large-files.js +183 -0
  132. package/.grimoire/core/health-check/checks/repository/lockfile-integrity.js +144 -0
  133. package/.grimoire/core/health-check/checks/services/api-endpoints.js +168 -0
  134. package/.grimoire/core/health-check/checks/services/claude-code.js +139 -0
  135. package/.grimoire/core/health-check/checks/services/gemini-cli.js +241 -0
  136. package/.grimoire/core/health-check/checks/services/github-cli.js +117 -0
  137. package/.grimoire/core/health-check/checks/services/index.js +29 -0
  138. package/.grimoire/core/health-check/checks/services/mcp-integration.js +125 -0
  139. package/.grimoire/core/health-check/engine.js +407 -0
  140. package/.grimoire/core/health-check/healers/backup-manager.js +340 -0
  141. package/.grimoire/core/health-check/healers/index.js +330 -0
  142. package/.grimoire/core/health-check/index.js +370 -0
  143. package/.grimoire/core/health-check/reporters/console.js +331 -0
  144. package/.grimoire/core/health-check/reporters/index.js +117 -0
  145. package/.grimoire/core/health-check/reporters/json.js +301 -0
  146. package/.grimoire/core/health-check/reporters/markdown.js +323 -0
  147. package/.grimoire/core/ideation/ideation-engine.js +834 -0
  148. package/.grimoire/core/ids/README.md +123 -0
  149. package/.grimoire/core/ids/circuit-breaker.js +156 -0
  150. package/.grimoire/core/ids/framework-governor.js +567 -0
  151. package/.grimoire/core/ids/gates/g1-epic-creation.js +101 -0
  152. package/.grimoire/core/ids/gates/g2-story-creation.js +133 -0
  153. package/.grimoire/core/ids/gates/g3-story-validation.js +166 -0
  154. package/.grimoire/core/ids/gates/g4-dev-context.js +155 -0
  155. package/.grimoire/core/ids/incremental-decision-engine.js +651 -0
  156. package/.grimoire/core/ids/index.js +157 -0
  157. package/.grimoire/core/ids/registry-healer.js +868 -0
  158. package/.grimoire/core/ids/registry-loader.js +281 -0
  159. package/.grimoire/core/ids/registry-updater.js +703 -0
  160. package/.grimoire/core/ids/verification-gate.js +306 -0
  161. package/.grimoire/core/index.esm.js +44 -0
  162. package/.grimoire/core/index.js +90 -0
  163. package/.grimoire/core/manifest/manifest-generator.js +388 -0
  164. package/.grimoire/core/manifest/manifest-validator.js +431 -0
  165. package/.grimoire/core/mcp/config-migrator.js +341 -0
  166. package/.grimoire/core/mcp/global-config-manager.js +370 -0
  167. package/.grimoire/core/mcp/index.js +34 -0
  168. package/.grimoire/core/mcp/os-detector.js +189 -0
  169. package/.grimoire/core/mcp/symlink-manager.js +415 -0
  170. package/.grimoire/core/memory/__tests__/active-modules.verify.js +254 -0
  171. package/.grimoire/core/memory/gotchas-memory.js +1154 -0
  172. package/.grimoire/core/migration/migration-config.yaml +85 -0
  173. package/.grimoire/core/migration/module-mapping.yaml +91 -0
  174. package/.grimoire/core/orchestration/agent-invoker.js +612 -0
  175. package/.grimoire/core/orchestration/bob-orchestrator.js +1032 -0
  176. package/.grimoire/core/orchestration/bob-status-writer.js +482 -0
  177. package/.grimoire/core/orchestration/bob-surface-criteria.yaml +272 -0
  178. package/.grimoire/core/orchestration/brownfield-handler.js +741 -0
  179. package/.grimoire/core/orchestration/checklist-runner.js +328 -0
  180. package/.grimoire/core/orchestration/cli-commands.js +581 -0
  181. package/.grimoire/core/orchestration/condition-evaluator.js +379 -0
  182. package/.grimoire/core/orchestration/context-manager.js +616 -0
  183. package/.grimoire/core/orchestration/dashboard-integration.js +520 -0
  184. package/.grimoire/core/orchestration/data-lifecycle-manager.js +357 -0
  185. package/.grimoire/core/orchestration/epic-context-accumulator.js +396 -0
  186. package/.grimoire/core/orchestration/execution-profile-resolver.js +107 -0
  187. package/.grimoire/core/orchestration/executor-assignment.js +413 -0
  188. package/.grimoire/core/orchestration/executors/epic-3-executor.js +223 -0
  189. package/.grimoire/core/orchestration/executors/epic-4-executor.js +269 -0
  190. package/.grimoire/core/orchestration/executors/epic-5-executor.js +329 -0
  191. package/.grimoire/core/orchestration/executors/epic-6-executor.js +265 -0
  192. package/.grimoire/core/orchestration/executors/epic-executor.js +237 -0
  193. package/.grimoire/core/orchestration/executors/index.js +86 -0
  194. package/.grimoire/core/orchestration/gate-evaluator.js +495 -0
  195. package/.grimoire/core/orchestration/gemini-model-selector.js +161 -0
  196. package/.grimoire/core/orchestration/greenfield-handler.js +890 -0
  197. package/.grimoire/core/orchestration/index.js +323 -0
  198. package/.grimoire/core/orchestration/lock-manager.js +327 -0
  199. package/.grimoire/core/orchestration/master-orchestrator.js +1544 -0
  200. package/.grimoire/core/orchestration/message-formatter.js +279 -0
  201. package/.grimoire/core/orchestration/parallel-executor.js +225 -0
  202. package/.grimoire/core/orchestration/recovery-handler.js +721 -0
  203. package/.grimoire/core/orchestration/session-state.js +876 -0
  204. package/.grimoire/core/orchestration/skill-dispatcher.js +364 -0
  205. package/.grimoire/core/orchestration/subagent-prompt-builder.js +370 -0
  206. package/.grimoire/core/orchestration/surface-checker.js +403 -0
  207. package/.grimoire/core/orchestration/task-complexity-classifier.js +123 -0
  208. package/.grimoire/core/orchestration/tech-stack-detector.js +599 -0
  209. package/.grimoire/core/orchestration/terminal-spawner.js +1044 -0
  210. package/.grimoire/core/orchestration/workflow-executor.js +1182 -0
  211. package/.grimoire/core/orchestration/workflow-orchestrator.js +907 -0
  212. package/.grimoire/core/permissions/__tests__/permission-mode.test.js +293 -0
  213. package/.grimoire/core/permissions/index.js +140 -0
  214. package/.grimoire/core/permissions/operation-guard.js +395 -0
  215. package/.grimoire/core/permissions/permission-mode.js +271 -0
  216. package/.grimoire/core/quality-gates/base-layer.js +134 -0
  217. package/.grimoire/core/quality-gates/checklist-generator.js +329 -0
  218. package/.grimoire/core/quality-gates/focus-area-recommender.js +361 -0
  219. package/.grimoire/core/quality-gates/human-review-orchestrator.js +530 -0
  220. package/.grimoire/core/quality-gates/layer1-precommit.js +336 -0
  221. package/.grimoire/core/quality-gates/layer2-pr-automation.js +331 -0
  222. package/.grimoire/core/quality-gates/layer3-human-review.js +350 -0
  223. package/.grimoire/core/quality-gates/notification-manager.js +551 -0
  224. package/.grimoire/core/quality-gates/quality-gate-config.yaml +87 -0
  225. package/.grimoire/core/quality-gates/quality-gate-manager.js +603 -0
  226. package/.grimoire/core/registry/README.md +181 -0
  227. package/.grimoire/core/registry/build-registry.js +454 -0
  228. package/.grimoire/core/registry/registry-loader.js +331 -0
  229. package/.grimoire/core/registry/registry-schema.json +168 -0
  230. package/.grimoire/core/registry/service-registry.json +6468 -0
  231. package/.grimoire/core/registry/validate-registry.js +341 -0
  232. package/.grimoire/core/session/context-detector.js +233 -0
  233. package/.grimoire/core/session/context-loader.js +443 -0
  234. package/.grimoire/core/synapse/context/context-builder.js +34 -0
  235. package/.grimoire/core/synapse/context/context-tracker.js +190 -0
  236. package/.grimoire/core/synapse/diagnostics/collectors/consistency-collector.js +168 -0
  237. package/.grimoire/core/synapse/diagnostics/collectors/hook-collector.js +129 -0
  238. package/.grimoire/core/synapse/diagnostics/collectors/manifest-collector.js +82 -0
  239. package/.grimoire/core/synapse/diagnostics/collectors/output-analyzer.js +134 -0
  240. package/.grimoire/core/synapse/diagnostics/collectors/pipeline-collector.js +75 -0
  241. package/.grimoire/core/synapse/diagnostics/collectors/quality-collector.js +252 -0
  242. package/.grimoire/core/synapse/diagnostics/collectors/relevance-matrix.js +174 -0
  243. package/.grimoire/core/synapse/diagnostics/collectors/safe-read-json.js +31 -0
  244. package/.grimoire/core/synapse/diagnostics/collectors/session-collector.js +102 -0
  245. package/.grimoire/core/synapse/diagnostics/collectors/timing-collector.js +126 -0
  246. package/.grimoire/core/synapse/diagnostics/collectors/uap-collector.js +83 -0
  247. package/.grimoire/core/synapse/diagnostics/report-formatter.js +485 -0
  248. package/.grimoire/core/synapse/diagnostics/synapse-diagnostics.js +95 -0
  249. package/.grimoire/core/synapse/domain/domain-loader.js +322 -0
  250. package/.grimoire/core/synapse/engine.js +380 -0
  251. package/.grimoire/core/synapse/layers/l0-constitution.js +80 -0
  252. package/.grimoire/core/synapse/layers/l1-global.js +102 -0
  253. package/.grimoire/core/synapse/layers/l2-agent.js +94 -0
  254. package/.grimoire/core/synapse/layers/l3-workflow.js +94 -0
  255. package/.grimoire/core/synapse/layers/l4-task.js +83 -0
  256. package/.grimoire/core/synapse/layers/l5-squad.js +244 -0
  257. package/.grimoire/core/synapse/layers/l6-keyword.js +154 -0
  258. package/.grimoire/core/synapse/layers/l7-star-command.js +169 -0
  259. package/.grimoire/core/synapse/layers/layer-processor.js +82 -0
  260. package/.grimoire/core/synapse/memory/memory-bridge.js +246 -0
  261. package/.grimoire/core/synapse/output/formatter.js +561 -0
  262. package/.grimoire/core/synapse/runtime/hook-runtime.js +61 -0
  263. package/.grimoire/core/synapse/scripts/generate-constitution.js +205 -0
  264. package/.grimoire/core/synapse/session/session-manager.js +403 -0
  265. package/.grimoire/core/synapse/utils/paths.js +57 -0
  266. package/.grimoire/core/synapse/utils/tokens.js +25 -0
  267. package/.grimoire/core/ui/index.js +43 -0
  268. package/.grimoire/core/ui/observability-panel.js +394 -0
  269. package/.grimoire/core/ui/panel-renderer.js +337 -0
  270. package/.grimoire/core/utils/output-formatter.js +299 -0
  271. package/.grimoire/core/utils/security-utils.js +336 -0
  272. package/.grimoire/core/utils/yaml-validator.js +416 -0
  273. package/.grimoire/core-config.yaml +357 -0
  274. package/.grimoire/data/agent-config-requirements.yaml +409 -0
  275. package/.grimoire/data/entity-registry.yaml +9219 -0
  276. package/.grimoire/data/grimoire-kb.md +918 -0
  277. package/.grimoire/data/learned-patterns.yaml +3 -0
  278. package/.grimoire/data/tech-presets/_template.md +259 -0
  279. package/.grimoire/data/tech-presets/nextjs-react.md +933 -0
  280. package/.grimoire/data/technical-preferences.md +85 -0
  281. package/.grimoire/data/workflow-patterns.yaml +836 -0
  282. package/.grimoire/data/workflow-state-schema.yaml +203 -0
  283. package/.grimoire/development/README.md +143 -0
  284. package/.grimoire/development/agent-teams/team-all.yaml +16 -0
  285. package/.grimoire/development/agent-teams/team-fullstack.yaml +19 -0
  286. package/.grimoire/development/agent-teams/team-ide-minimal.yaml +10 -0
  287. package/.grimoire/development/agent-teams/team-no-ui.yaml +14 -0
  288. package/.grimoire/development/agent-teams/team-qa-focused.yaml +155 -0
  289. package/.grimoire/development/agents/analyst.md +261 -0
  290. package/.grimoire/development/agents/architect.md +461 -0
  291. package/.grimoire/development/agents/caravaggio.md +31 -0
  292. package/.grimoire/development/agents/data-engineer.md +482 -0
  293. package/.grimoire/development/agents/dev.md +548 -0
  294. package/.grimoire/development/agents/devops.md +500 -0
  295. package/.grimoire/development/agents/frida.md +31 -0
  296. package/.grimoire/development/agents/grimoire-master.md +447 -0
  297. package/.grimoire/development/agents/picasso.md +31 -0
  298. package/.grimoire/development/agents/pm.md +365 -0
  299. package/.grimoire/development/agents/po.md +323 -0
  300. package/.grimoire/development/agents/qa.md +437 -0
  301. package/.grimoire/development/agents/salvador.md +31 -0
  302. package/.grimoire/development/agents/sm.md +275 -0
  303. package/.grimoire/development/agents/squad-creator.md +330 -0
  304. package/.grimoire/development/agents/tarsila.md +31 -0
  305. package/.grimoire/development/agents/ux-design-expert.md +482 -0
  306. package/.grimoire/development/agents/van-gogh.md +31 -0
  307. package/.grimoire/development/agents/warhol.md +31 -0
  308. package/.grimoire/development/checklists/agent-quality-gate.md +560 -0
  309. package/.grimoire/development/checklists/brownfield-compatibility-checklist.md +116 -0
  310. package/.grimoire/development/checklists/self-critique-checklist.md +274 -0
  311. package/.grimoire/development/data/decision-heuristics-framework.md +622 -0
  312. package/.grimoire/development/data/quality-dimensions-framework.md +427 -0
  313. package/.grimoire/development/data/tier-system-framework.md +476 -0
  314. package/.grimoire/development/scripts/activation-runtime.js +64 -0
  315. package/.grimoire/development/scripts/agent-assignment-resolver.js +231 -0
  316. package/.grimoire/development/scripts/agent-config-loader.js +628 -0
  317. package/.grimoire/development/scripts/agent-exit-hooks.js +97 -0
  318. package/.grimoire/development/scripts/apply-inline-greeting-all-agents.js +147 -0
  319. package/.grimoire/development/scripts/approval-workflow.js +643 -0
  320. package/.grimoire/development/scripts/audit-agent-config.js +382 -0
  321. package/.grimoire/development/scripts/backlog-manager.js +409 -0
  322. package/.grimoire/development/scripts/backup-manager.js +607 -0
  323. package/.grimoire/development/scripts/batch-update-agents-session-context.js +97 -0
  324. package/.grimoire/development/scripts/branch-manager.js +390 -0
  325. package/.grimoire/development/scripts/code-quality-improver.js +1312 -0
  326. package/.grimoire/development/scripts/commit-message-generator.js +850 -0
  327. package/.grimoire/development/scripts/conflict-resolver.js +675 -0
  328. package/.grimoire/development/scripts/decision-context.js +229 -0
  329. package/.grimoire/development/scripts/decision-log-generator.js +294 -0
  330. package/.grimoire/development/scripts/decision-log-indexer.js +285 -0
  331. package/.grimoire/development/scripts/decision-recorder.js +169 -0
  332. package/.grimoire/development/scripts/dependency-analyzer.js +639 -0
  333. package/.grimoire/development/scripts/dev-context-loader.js +298 -0
  334. package/.grimoire/development/scripts/diff-generator.js +352 -0
  335. package/.grimoire/development/scripts/elicitation-engine.js +385 -0
  336. package/.grimoire/development/scripts/elicitation-session-manager.js +300 -0
  337. package/.grimoire/development/scripts/generate-greeting.js +109 -0
  338. package/.grimoire/development/scripts/git-wrapper.js +462 -0
  339. package/.grimoire/development/scripts/greeting-builder.js +1406 -0
  340. package/.grimoire/development/scripts/greeting-config-cli.js +86 -0
  341. package/.grimoire/development/scripts/greeting-preference-manager.js +170 -0
  342. package/.grimoire/development/scripts/manifest-preview.js +245 -0
  343. package/.grimoire/development/scripts/metrics-tracker.js +776 -0
  344. package/.grimoire/development/scripts/migrate-task-to-v2.js +379 -0
  345. package/.grimoire/development/scripts/modification-validator.js +555 -0
  346. package/.grimoire/development/scripts/pattern-learner.js +1225 -0
  347. package/.grimoire/development/scripts/performance-analyzer.js +758 -0
  348. package/.grimoire/development/scripts/populate-entity-registry.js +281 -0
  349. package/.grimoire/development/scripts/refactoring-suggester.js +1139 -0
  350. package/.grimoire/development/scripts/rollback-handler.js +532 -0
  351. package/.grimoire/development/scripts/security-checker.js +359 -0
  352. package/.grimoire/development/scripts/skill-validator.js +343 -0
  353. package/.grimoire/development/scripts/squad/README.md +114 -0
  354. package/.grimoire/development/scripts/squad/index.js +124 -0
  355. package/.grimoire/development/scripts/squad/squad-analyzer.js +638 -0
  356. package/.grimoire/development/scripts/squad/squad-designer.js +1010 -0
  357. package/.grimoire/development/scripts/squad/squad-downloader.js +511 -0
  358. package/.grimoire/development/scripts/squad/squad-extender.js +872 -0
  359. package/.grimoire/development/scripts/squad/squad-generator.js +1406 -0
  360. package/.grimoire/development/scripts/squad/squad-loader.js +359 -0
  361. package/.grimoire/development/scripts/squad/squad-migrator.js +628 -0
  362. package/.grimoire/development/scripts/squad/squad-publisher.js +630 -0
  363. package/.grimoire/development/scripts/squad/squad-validator.js +857 -0
  364. package/.grimoire/development/scripts/story-index-generator.js +339 -0
  365. package/.grimoire/development/scripts/story-manager.js +375 -0
  366. package/.grimoire/development/scripts/story-update-hook.js +259 -0
  367. package/.grimoire/development/scripts/task-identifier-resolver.js +145 -0
  368. package/.grimoire/development/scripts/template-engine.js +240 -0
  369. package/.grimoire/development/scripts/template-validator.js +279 -0
  370. package/.grimoire/development/scripts/test-generator.js +844 -0
  371. package/.grimoire/development/scripts/test-greeting-system.js +143 -0
  372. package/.grimoire/development/scripts/transaction-manager.js +591 -0
  373. package/.grimoire/development/scripts/unified-activation-pipeline.js +796 -0
  374. package/.grimoire/development/scripts/usage-tracker.js +675 -0
  375. package/.grimoire/development/scripts/validate-filenames.js +228 -0
  376. package/.grimoire/development/scripts/validate-task-v2.js +320 -0
  377. package/.grimoire/development/scripts/verify-workflow-gaps.js +1034 -0
  378. package/.grimoire/development/scripts/version-tracker.js +527 -0
  379. package/.grimoire/development/scripts/workflow-navigator.js +328 -0
  380. package/.grimoire/development/scripts/workflow-state-manager.js +652 -0
  381. package/.grimoire/development/scripts/workflow-validator.js +697 -0
  382. package/.grimoire/development/scripts/yaml-validator.js +397 -0
  383. package/.grimoire/development/tasks/add-mcp.md +437 -0
  384. package/.grimoire/development/tasks/advanced-elicitation.md +320 -0
  385. package/.grimoire/development/tasks/analyst-facilitate-brainstorming.md +343 -0
  386. package/.grimoire/development/tasks/analyze-brownfield.md +458 -0
  387. package/.grimoire/development/tasks/analyze-cross-artifact.md +358 -0
  388. package/.grimoire/development/tasks/analyze-framework.md +698 -0
  389. package/.grimoire/development/tasks/analyze-performance.md +639 -0
  390. package/.grimoire/development/tasks/analyze-project-structure.md +623 -0
  391. package/.grimoire/development/tasks/apply-qa-fixes.md +342 -0
  392. package/.grimoire/development/tasks/architect-analyze-impact.md +828 -0
  393. package/.grimoire/development/tasks/audit-codebase.md +431 -0
  394. package/.grimoire/development/tasks/audit-tailwind-config.md +272 -0
  395. package/.grimoire/development/tasks/audit-utilities.md +360 -0
  396. package/.grimoire/development/tasks/blocks/README.md +180 -0
  397. package/.grimoire/development/tasks/blocks/agent-prompt-template.md +117 -0
  398. package/.grimoire/development/tasks/blocks/context-loading.md +110 -0
  399. package/.grimoire/development/tasks/blocks/execution-pattern.md +122 -0
  400. package/.grimoire/development/tasks/blocks/finalization.md +123 -0
  401. package/.grimoire/development/tasks/bootstrap-shadcn-library.md +288 -0
  402. package/.grimoire/development/tasks/brownfield-create-epic.md +533 -0
  403. package/.grimoire/development/tasks/brownfield-create-story.md +358 -0
  404. package/.grimoire/development/tasks/build-autonomous.md +186 -0
  405. package/.grimoire/development/tasks/build-component.md +480 -0
  406. package/.grimoire/development/tasks/build-resume.md +125 -0
  407. package/.grimoire/development/tasks/build-status.md +155 -0
  408. package/.grimoire/development/tasks/build.md +142 -0
  409. package/.grimoire/development/tasks/calculate-roi.md +457 -0
  410. package/.grimoire/development/tasks/check-docs-links.md +114 -0
  411. package/.grimoire/development/tasks/ci-cd-configuration.md +766 -0
  412. package/.grimoire/development/tasks/cleanup-utilities.md +672 -0
  413. package/.grimoire/development/tasks/cleanup-worktrees.md +39 -0
  414. package/.grimoire/development/tasks/collaborative-edit.md +1110 -0
  415. package/.grimoire/development/tasks/compose-molecule.md +286 -0
  416. package/.grimoire/development/tasks/consolidate-patterns.md +416 -0
  417. package/.grimoire/development/tasks/correct-course.md +281 -0
  418. package/.grimoire/development/tasks/create-agent.md +1199 -0
  419. package/.grimoire/development/tasks/create-brownfield-story.md +728 -0
  420. package/.grimoire/development/tasks/create-deep-research-prompt.md +500 -0
  421. package/.grimoire/development/tasks/create-doc.md +318 -0
  422. package/.grimoire/development/tasks/create-next-story.md +776 -0
  423. package/.grimoire/development/tasks/create-service.md +393 -0
  424. package/.grimoire/development/tasks/create-suite.md +285 -0
  425. package/.grimoire/development/tasks/create-task.md +391 -0
  426. package/.grimoire/development/tasks/create-workflow.md +429 -0
  427. package/.grimoire/development/tasks/create-worktree.md +439 -0
  428. package/.grimoire/development/tasks/db-analyze-hotpaths.md +574 -0
  429. package/.grimoire/development/tasks/db-apply-migration.md +383 -0
  430. package/.grimoire/development/tasks/db-bootstrap.md +644 -0
  431. package/.grimoire/development/tasks/db-domain-modeling.md +695 -0
  432. package/.grimoire/development/tasks/db-dry-run.md +295 -0
  433. package/.grimoire/development/tasks/db-env-check.md +262 -0
  434. package/.grimoire/development/tasks/db-explain.md +633 -0
  435. package/.grimoire/development/tasks/db-impersonate.md +497 -0
  436. package/.grimoire/development/tasks/db-load-csv.md +595 -0
  437. package/.grimoire/development/tasks/db-policy-apply.md +655 -0
  438. package/.grimoire/development/tasks/db-rls-audit.md +413 -0
  439. package/.grimoire/development/tasks/db-rollback.md +741 -0
  440. package/.grimoire/development/tasks/db-run-sql.md +615 -0
  441. package/.grimoire/development/tasks/db-schema-audit.md +1013 -0
  442. package/.grimoire/development/tasks/db-seed.md +392 -0
  443. package/.grimoire/development/tasks/db-smoke-test.md +353 -0
  444. package/.grimoire/development/tasks/db-snapshot.md +571 -0
  445. package/.grimoire/development/tasks/db-squad-integration.md +665 -0
  446. package/.grimoire/development/tasks/db-supabase-setup.md +714 -0
  447. package/.grimoire/development/tasks/db-verify-order.md +517 -0
  448. package/.grimoire/development/tasks/deprecate-component.md +958 -0
  449. package/.grimoire/development/tasks/dev-apply-qa-fixes.md +320 -0
  450. package/.grimoire/development/tasks/dev-backlog-debt.md +471 -0
  451. package/.grimoire/development/tasks/dev-develop-story.md +912 -0
  452. package/.grimoire/development/tasks/dev-improve-code-quality.md +874 -0
  453. package/.grimoire/development/tasks/dev-optimize-performance.md +1035 -0
  454. package/.grimoire/development/tasks/dev-suggest-refactoring.md +872 -0
  455. package/.grimoire/development/tasks/dev-validate-next-story.md +350 -0
  456. package/.grimoire/development/tasks/document-gotchas.md +479 -0
  457. package/.grimoire/development/tasks/document-project.md +554 -0
  458. package/.grimoire/development/tasks/environment-bootstrap.md +1391 -0
  459. package/.grimoire/development/tasks/execute-checklist.md +303 -0
  460. package/.grimoire/development/tasks/execute-epic-plan.md +887 -0
  461. package/.grimoire/development/tasks/export-design-tokens-dtcg.md +276 -0
  462. package/.grimoire/development/tasks/extend-pattern.md +271 -0
  463. package/.grimoire/development/tasks/extract-patterns.md +399 -0
  464. package/.grimoire/development/tasks/extract-tokens.md +469 -0
  465. package/.grimoire/development/tasks/facilitate-brainstorming-session.md +520 -0
  466. package/.grimoire/development/tasks/generate-ai-frontend-prompt.md +262 -0
  467. package/.grimoire/development/tasks/generate-documentation.md +286 -0
  468. package/.grimoire/development/tasks/generate-migration-strategy.md +524 -0
  469. package/.grimoire/development/tasks/generate-shock-report.md +503 -0
  470. package/.grimoire/development/tasks/github-devops-github-pr-automation.md +666 -0
  471. package/.grimoire/development/tasks/github-devops-pre-push-quality-gate.md +791 -0
  472. package/.grimoire/development/tasks/github-devops-repository-cleanup.md +376 -0
  473. package/.grimoire/development/tasks/github-devops-version-management.md +485 -0
  474. package/.grimoire/development/tasks/gotcha.md +138 -0
  475. package/.grimoire/development/tasks/gotchas.md +155 -0
  476. package/.grimoire/development/tasks/health-check.yaml +227 -0
  477. package/.grimoire/development/tasks/ids-governor.md +96 -0
  478. package/.grimoire/development/tasks/ids-health.md +91 -0
  479. package/.grimoire/development/tasks/ids-query.md +156 -0
  480. package/.grimoire/development/tasks/improve-self.md +824 -0
  481. package/.grimoire/development/tasks/index-docs.md +389 -0
  482. package/.grimoire/development/tasks/init-project-status.md +508 -0
  483. package/.grimoire/development/tasks/integrate-squad.md +316 -0
  484. package/.grimoire/development/tasks/kb-mode-interaction.md +285 -0
  485. package/.grimoire/development/tasks/learn-patterns.md +902 -0
  486. package/.grimoire/development/tasks/list-mcps.md +33 -0
  487. package/.grimoire/development/tasks/list-worktrees.md +344 -0
  488. package/.grimoire/development/tasks/mcp-workflow.md +438 -0
  489. package/.grimoire/development/tasks/merge-worktree.md +42 -0
  490. package/.grimoire/development/tasks/modify-agent.md +399 -0
  491. package/.grimoire/development/tasks/modify-task.md +442 -0
  492. package/.grimoire/development/tasks/modify-workflow.md +511 -0
  493. package/.grimoire/development/tasks/next.md +327 -0
  494. package/.grimoire/development/tasks/orchestrate-resume.md +60 -0
  495. package/.grimoire/development/tasks/orchestrate-status.md +64 -0
  496. package/.grimoire/development/tasks/orchestrate-stop.md +55 -0
  497. package/.grimoire/development/tasks/orchestrate.md +66 -0
  498. package/.grimoire/development/tasks/patterns.md +336 -0
  499. package/.grimoire/development/tasks/plan-create-context.md +812 -0
  500. package/.grimoire/development/tasks/plan-create-implementation.md +797 -0
  501. package/.grimoire/development/tasks/plan-execute-subtask.md +962 -0
  502. package/.grimoire/development/tasks/po-backlog-add.md +372 -0
  503. package/.grimoire/development/tasks/po-close-story.md +428 -0
  504. package/.grimoire/development/tasks/po-manage-story-backlog.md +525 -0
  505. package/.grimoire/development/tasks/po-pull-story-from-clickup.md +542 -0
  506. package/.grimoire/development/tasks/po-pull-story.md +318 -0
  507. package/.grimoire/development/tasks/po-stories-index.md +353 -0
  508. package/.grimoire/development/tasks/po-sync-story-to-clickup.md +459 -0
  509. package/.grimoire/development/tasks/po-sync-story.md +305 -0
  510. package/.grimoire/development/tasks/pr-automation.md +703 -0
  511. package/.grimoire/development/tasks/propose-modification.md +844 -0
  512. package/.grimoire/development/tasks/publish-npm.md +259 -0
  513. package/.grimoire/development/tasks/qa-after-creation.md +519 -0
  514. package/.grimoire/development/tasks/qa-backlog-add-followup.md +427 -0
  515. package/.grimoire/development/tasks/qa-browser-console-check.md +343 -0
  516. package/.grimoire/development/tasks/qa-create-fix-request.md +625 -0
  517. package/.grimoire/development/tasks/qa-evidence-requirements.md +314 -0
  518. package/.grimoire/development/tasks/qa-false-positive-detection.md +374 -0
  519. package/.grimoire/development/tasks/qa-fix-issues.md +686 -0
  520. package/.grimoire/development/tasks/qa-gate.md +375 -0
  521. package/.grimoire/development/tasks/qa-generate-tests.md +1176 -0
  522. package/.grimoire/development/tasks/qa-library-validation.md +497 -0
  523. package/.grimoire/development/tasks/qa-migration-validation.md +584 -0
  524. package/.grimoire/development/tasks/qa-nfr-assess.md +559 -0
  525. package/.grimoire/development/tasks/qa-review-build.md +1225 -0
  526. package/.grimoire/development/tasks/qa-review-proposal.md +1159 -0
  527. package/.grimoire/development/tasks/qa-review-story.md +684 -0
  528. package/.grimoire/development/tasks/qa-risk-profile.md +568 -0
  529. package/.grimoire/development/tasks/qa-run-tests.md +279 -0
  530. package/.grimoire/development/tasks/qa-security-checklist.md +552 -0
  531. package/.grimoire/development/tasks/qa-test-design.md +389 -0
  532. package/.grimoire/development/tasks/qa-trace-requirements.md +478 -0
  533. package/.grimoire/development/tasks/release-management.md +754 -0
  534. package/.grimoire/development/tasks/remove-mcp.md +35 -0
  535. package/.grimoire/development/tasks/remove-worktree.md +435 -0
  536. package/.grimoire/development/tasks/run-design-system-pipeline.md +642 -0
  537. package/.grimoire/development/tasks/run-workflow-engine.md +861 -0
  538. package/.grimoire/development/tasks/run-workflow.md +389 -0
  539. package/.grimoire/development/tasks/search-mcp.md +309 -0
  540. package/.grimoire/development/tasks/security-audit.md +556 -0
  541. package/.grimoire/development/tasks/security-scan.md +792 -0
  542. package/.grimoire/development/tasks/session-resume.md +193 -0
  543. package/.grimoire/development/tasks/setup-database.md +743 -0
  544. package/.grimoire/development/tasks/setup-design-system.md +464 -0
  545. package/.grimoire/development/tasks/setup-github.md +876 -0
  546. package/.grimoire/development/tasks/setup-llm-routing.md +231 -0
  547. package/.grimoire/development/tasks/setup-mcp-docker.md +628 -0
  548. package/.grimoire/development/tasks/setup-project-docs.md +442 -0
  549. package/.grimoire/development/tasks/shard-doc.md +539 -0
  550. package/.grimoire/development/tasks/sm-create-next-story.md +482 -0
  551. package/.grimoire/development/tasks/spec-assess-complexity.md +461 -0
  552. package/.grimoire/development/tasks/spec-critique.md +595 -0
  553. package/.grimoire/development/tasks/spec-gather-requirements.md +545 -0
  554. package/.grimoire/development/tasks/spec-research-dependencies.md +446 -0
  555. package/.grimoire/development/tasks/spec-write-spec.md +531 -0
  556. package/.grimoire/development/tasks/squad-creator-analyze.md +318 -0
  557. package/.grimoire/development/tasks/squad-creator-create.md +314 -0
  558. package/.grimoire/development/tasks/squad-creator-design.md +335 -0
  559. package/.grimoire/development/tasks/squad-creator-download.md +169 -0
  560. package/.grimoire/development/tasks/squad-creator-extend.md +413 -0
  561. package/.grimoire/development/tasks/squad-creator-list.md +226 -0
  562. package/.grimoire/development/tasks/squad-creator-migrate.md +245 -0
  563. package/.grimoire/development/tasks/squad-creator-publish.md +231 -0
  564. package/.grimoire/development/tasks/squad-creator-sync-grimoire.md +317 -0
  565. package/.grimoire/development/tasks/squad-creator-sync-ide-command.md +403 -0
  566. package/.grimoire/development/tasks/squad-creator-validate.md +160 -0
  567. package/.grimoire/development/tasks/story-checkpoint.md +361 -0
  568. package/.grimoire/development/tasks/sync-documentation.md +866 -0
  569. package/.grimoire/development/tasks/tailwind-upgrade.md +296 -0
  570. package/.grimoire/development/tasks/test-as-user.md +623 -0
  571. package/.grimoire/development/tasks/test-validation-task.md +172 -0
  572. package/.grimoire/development/tasks/undo-last.md +348 -0
  573. package/.grimoire/development/tasks/update-grimoire.md +153 -0
  574. package/.grimoire/development/tasks/update-manifest.md +411 -0
  575. package/.grimoire/development/tasks/update-source-tree.md +138 -0
  576. package/.grimoire/development/tasks/ux-create-wireframe.md +619 -0
  577. package/.grimoire/development/tasks/ux-ds-scan-artifact.md +674 -0
  578. package/.grimoire/development/tasks/ux-user-research.md +561 -0
  579. package/.grimoire/development/tasks/validate-agents.md +117 -0
  580. package/.grimoire/development/tasks/validate-next-story.md +456 -0
  581. package/.grimoire/development/tasks/validate-tech-preset.md +187 -0
  582. package/.grimoire/development/tasks/validate-workflow.md +323 -0
  583. package/.grimoire/development/tasks/verify-subtask.md +237 -0
  584. package/.grimoire/development/tasks/waves.md +206 -0
  585. package/.grimoire/development/tasks/yolo-toggle.md +115 -0
  586. package/.grimoire/development/templates/grimoire-doc-template.md +496 -0
  587. package/.grimoire/development/templates/research-prompt-tmpl.md +486 -0
  588. package/.grimoire/development/templates/service-template/README.md.hbs +159 -0
  589. package/.grimoire/development/templates/service-template/__tests__/index.test.ts.hbs +238 -0
  590. package/.grimoire/development/templates/service-template/client.ts.hbs +404 -0
  591. package/.grimoire/development/templates/service-template/errors.ts.hbs +183 -0
  592. package/.grimoire/development/templates/service-template/index.ts.hbs +121 -0
  593. package/.grimoire/development/templates/service-template/jest.config.js +89 -0
  594. package/.grimoire/development/templates/service-template/package.json.hbs +88 -0
  595. package/.grimoire/development/templates/service-template/tsconfig.json +45 -0
  596. package/.grimoire/development/templates/service-template/types.ts.hbs +146 -0
  597. package/.grimoire/development/templates/squad/agent-template.md +69 -0
  598. package/.grimoire/development/templates/squad/checklist-template.md +82 -0
  599. package/.grimoire/development/templates/squad/data-template.yaml +105 -0
  600. package/.grimoire/development/templates/squad/script-template.js +179 -0
  601. package/.grimoire/development/templates/squad/task-template.md +125 -0
  602. package/.grimoire/development/templates/squad/template-template.md +98 -0
  603. package/.grimoire/development/templates/squad/tool-template.js +103 -0
  604. package/.grimoire/development/templates/squad/workflow-template.yaml +108 -0
  605. package/.grimoire/development/templates/squad-template/LICENSE +21 -0
  606. package/.grimoire/development/templates/squad-template/README.md +37 -0
  607. package/.grimoire/development/templates/squad-template/agents/example-agent.yaml +36 -0
  608. package/.grimoire/development/templates/squad-template/package.json +20 -0
  609. package/.grimoire/development/templates/squad-template/squad.yaml +26 -0
  610. package/.grimoire/development/templates/squad-template/tasks/example-task.yaml +46 -0
  611. package/.grimoire/development/templates/squad-template/templates/example-template.md +24 -0
  612. package/.grimoire/development/templates/squad-template/tests/example-agent.test.js +54 -0
  613. package/.grimoire/development/templates/squad-template/workflows/example-workflow.yaml +54 -0
  614. package/.grimoire/development/templates/subagent-step-prompt.md +122 -0
  615. package/.grimoire/development/workflows/README.md +82 -0
  616. package/.grimoire/development/workflows/auto-worktree.yaml +423 -0
  617. package/.grimoire/development/workflows/brownfield-discovery.yaml +933 -0
  618. package/.grimoire/development/workflows/brownfield-fullstack.yaml +369 -0
  619. package/.grimoire/development/workflows/brownfield-service.yaml +246 -0
  620. package/.grimoire/development/workflows/brownfield-ui.yaml +260 -0
  621. package/.grimoire/development/workflows/design-system-build-quality.yaml +228 -0
  622. package/.grimoire/development/workflows/development-cycle.yaml +427 -0
  623. package/.grimoire/development/workflows/epic-orchestration.yaml +328 -0
  624. package/.grimoire/development/workflows/greenfield-fullstack.yaml +386 -0
  625. package/.grimoire/development/workflows/greenfield-service.yaml +278 -0
  626. package/.grimoire/development/workflows/greenfield-ui.yaml +284 -0
  627. package/.grimoire/development/workflows/qa-loop.yaml +444 -0
  628. package/.grimoire/development/workflows/spec-pipeline.yaml +577 -0
  629. package/.grimoire/development/workflows/story-development-cycle.yaml +285 -0
  630. package/.grimoire/docs/standards/AGENT-PERSONALIZATION-STANDARD-V1.md +574 -0
  631. package/.grimoire/docs/standards/EXECUTOR-DECISION-TREE.md +698 -0
  632. package/.grimoire/docs/standards/OPEN-SOURCE-VS-SERVICE-DIFFERENCES.md +513 -0
  633. package/.grimoire/docs/standards/QUALITY-GATES-SPECIFICATION.md +558 -0
  634. package/.grimoire/docs/standards/STANDARDS-INDEX.md +212 -0
  635. package/.grimoire/docs/standards/STORY-TEMPLATE-V2-SPECIFICATION.md +551 -0
  636. package/.grimoire/docs/standards/TASK-FORMAT-SPECIFICATION-V1.md +1415 -0
  637. package/.grimoire/docs/standards/grimoire-COLOR-PALETTE-QUICK-REFERENCE.md +186 -0
  638. package/.grimoire/docs/standards/grimoire-COLOR-PALETTE-V2.1.md +354 -0
  639. package/.grimoire/docs/standards/grimoire-LIVRO-DE-OURO-V2.1-COMPLETE.md +839 -0
  640. package/.grimoire/docs/standards/grimoire-LIVRO-DE-OURO-V2.2-SUMMARY.md +1341 -0
  641. package/.grimoire/elicitation/agent-elicitation.js +272 -0
  642. package/.grimoire/elicitation/task-elicitation.js +281 -0
  643. package/.grimoire/elicitation/workflow-elicitation.js +315 -0
  644. package/.grimoire/framework-config.yaml +152 -0
  645. package/.grimoire/hooks/gemini/after-tool.js +78 -0
  646. package/.grimoire/hooks/gemini/before-agent.js +80 -0
  647. package/.grimoire/hooks/gemini/before-tool.js +115 -0
  648. package/.grimoire/hooks/gemini/rewind-handler.js +69 -0
  649. package/.grimoire/hooks/gemini/session-end.js +91 -0
  650. package/.grimoire/hooks/gemini/session-start.js +91 -0
  651. package/.grimoire/hooks/ids-post-commit.js +118 -0
  652. package/.grimoire/hooks/ids-pre-push.js +125 -0
  653. package/.grimoire/hooks/unified/README.md +309 -0
  654. package/.grimoire/hooks/unified/hook-interface.js +161 -0
  655. package/.grimoire/hooks/unified/hook-registry.js +143 -0
  656. package/.grimoire/hooks/unified/index.js +36 -0
  657. package/.grimoire/hooks/unified/runners/precompact-runner.js +98 -0
  658. package/.grimoire/index.esm.js +17 -0
  659. package/.grimoire/index.js +17 -0
  660. package/.grimoire/infrastructure/README.md +128 -0
  661. package/.grimoire/infrastructure/contracts/compatibility/grimoire-4.0.4.yaml +46 -0
  662. package/.grimoire/infrastructure/index.js +200 -0
  663. package/.grimoire/infrastructure/integrations/ai-providers/README.md +103 -0
  664. package/.grimoire/infrastructure/integrations/ai-providers/ai-provider-factory.js +286 -0
  665. package/.grimoire/infrastructure/integrations/ai-providers/ai-provider.js +145 -0
  666. package/.grimoire/infrastructure/integrations/ai-providers/claude-provider.js +170 -0
  667. package/.grimoire/infrastructure/integrations/ai-providers/gemini-provider.js +365 -0
  668. package/.grimoire/infrastructure/integrations/ai-providers/index.js +45 -0
  669. package/.grimoire/infrastructure/integrations/gemini-extensions/cloudrun-adapter.js +129 -0
  670. package/.grimoire/infrastructure/integrations/gemini-extensions/index.js +41 -0
  671. package/.grimoire/infrastructure/integrations/gemini-extensions/policy-sync.js +74 -0
  672. package/.grimoire/infrastructure/integrations/gemini-extensions/security-adapter.js +159 -0
  673. package/.grimoire/infrastructure/integrations/gemini-extensions/supabase-adapter.js +88 -0
  674. package/.grimoire/infrastructure/integrations/gemini-extensions/workspace-adapter.js +100 -0
  675. package/.grimoire/infrastructure/integrations/pm-adapters/README.md +60 -0
  676. package/.grimoire/infrastructure/integrations/pm-adapters/clickup-adapter.js +345 -0
  677. package/.grimoire/infrastructure/integrations/pm-adapters/github-adapter.js +393 -0
  678. package/.grimoire/infrastructure/integrations/pm-adapters/jira-adapter.js +449 -0
  679. package/.grimoire/infrastructure/integrations/pm-adapters/local-adapter.js +176 -0
  680. package/.grimoire/infrastructure/schemas/agent-v3-schema.json +160 -0
  681. package/.grimoire/infrastructure/schemas/build-state.schema.json +158 -0
  682. package/.grimoire/infrastructure/schemas/task-v3-schema.json +152 -0
  683. package/.grimoire/infrastructure/scripts/approach-manager.js +1005 -0
  684. package/.grimoire/infrastructure/scripts/approval-workflow.js +644 -0
  685. package/.grimoire/infrastructure/scripts/asset-inventory.js +622 -0
  686. package/.grimoire/infrastructure/scripts/atomic-layer-classifier.js +309 -0
  687. package/.grimoire/infrastructure/scripts/backup-manager.js +607 -0
  688. package/.grimoire/infrastructure/scripts/batch-creator.js +609 -0
  689. package/.grimoire/infrastructure/scripts/branch-manager.js +391 -0
  690. package/.grimoire/infrastructure/scripts/capability-analyzer.js +535 -0
  691. package/.grimoire/infrastructure/scripts/changelog-generator.js +554 -0
  692. package/.grimoire/infrastructure/scripts/cicd-discovery.js +1269 -0
  693. package/.grimoire/infrastructure/scripts/clickup-helpers.js +227 -0
  694. package/.grimoire/infrastructure/scripts/code-quality-improver.js +1312 -0
  695. package/.grimoire/infrastructure/scripts/codebase-mapper.js +1288 -0
  696. package/.grimoire/infrastructure/scripts/codex-skills-sync/index.js +184 -0
  697. package/.grimoire/infrastructure/scripts/codex-skills-sync/validate.js +174 -0
  698. package/.grimoire/infrastructure/scripts/commit-message-generator.js +850 -0
  699. package/.grimoire/infrastructure/scripts/component-generator.js +738 -0
  700. package/.grimoire/infrastructure/scripts/component-metadata.js +628 -0
  701. package/.grimoire/infrastructure/scripts/component-search.js +278 -0
  702. package/.grimoire/infrastructure/scripts/config-cache.js +322 -0
  703. package/.grimoire/infrastructure/scripts/config-loader.js +351 -0
  704. package/.grimoire/infrastructure/scripts/conflict-resolver.js +675 -0
  705. package/.grimoire/infrastructure/scripts/coverage-analyzer.js +882 -0
  706. package/.grimoire/infrastructure/scripts/dashboard-status-writer.js +310 -0
  707. package/.grimoire/infrastructure/scripts/dependency-analyzer.js +639 -0
  708. package/.grimoire/infrastructure/scripts/dependency-impact-analyzer.js +704 -0
  709. package/.grimoire/infrastructure/scripts/diff-generator.js +129 -0
  710. package/.grimoire/infrastructure/scripts/documentation-integrity/brownfield-analyzer.js +502 -0
  711. package/.grimoire/infrastructure/scripts/documentation-integrity/config-generator.js +369 -0
  712. package/.grimoire/infrastructure/scripts/documentation-integrity/deployment-config-loader.js +309 -0
  713. package/.grimoire/infrastructure/scripts/documentation-integrity/doc-generator.js +331 -0
  714. package/.grimoire/infrastructure/scripts/documentation-integrity/gitignore-generator.js +314 -0
  715. package/.grimoire/infrastructure/scripts/documentation-integrity/index.js +75 -0
  716. package/.grimoire/infrastructure/scripts/documentation-integrity/mode-detector.js +391 -0
  717. package/.grimoire/infrastructure/scripts/documentation-synchronizer.js +1432 -0
  718. package/.grimoire/infrastructure/scripts/framework-analyzer.js +763 -0
  719. package/.grimoire/infrastructure/scripts/git-config-detector.js +293 -0
  720. package/.grimoire/infrastructure/scripts/git-hooks/post-commit.js +75 -0
  721. package/.grimoire/infrastructure/scripts/git-wrapper.js +444 -0
  722. package/.grimoire/infrastructure/scripts/gotchas-documenter.js +1296 -0
  723. package/.grimoire/infrastructure/scripts/grimoire-validator.js +295 -0
  724. package/.grimoire/infrastructure/scripts/ide-sync/README.md +220 -0
  725. package/.grimoire/infrastructure/scripts/ide-sync/agent-parser.js +295 -0
  726. package/.grimoire/infrastructure/scripts/ide-sync/gemini-commands.js +207 -0
  727. package/.grimoire/infrastructure/scripts/ide-sync/index.js +540 -0
  728. package/.grimoire/infrastructure/scripts/ide-sync/redirect-generator.js +179 -0
  729. package/.grimoire/infrastructure/scripts/ide-sync/transformers/antigravity.js +107 -0
  730. package/.grimoire/infrastructure/scripts/ide-sync/transformers/claude-code.js +86 -0
  731. package/.grimoire/infrastructure/scripts/ide-sync/transformers/cursor.js +96 -0
  732. package/.grimoire/infrastructure/scripts/ide-sync/validator.js +273 -0
  733. package/.grimoire/infrastructure/scripts/improvement-engine.js +758 -0
  734. package/.grimoire/infrastructure/scripts/improvement-validator.js +710 -0
  735. package/.grimoire/infrastructure/scripts/llm-routing/install-llm-routing.js +282 -0
  736. package/.grimoire/infrastructure/scripts/llm-routing/templates/claude-free-tracked.cmd +129 -0
  737. package/.grimoire/infrastructure/scripts/llm-routing/templates/claude-free-tracked.sh +108 -0
  738. package/.grimoire/infrastructure/scripts/llm-routing/templates/claude-free.cmd +80 -0
  739. package/.grimoire/infrastructure/scripts/llm-routing/templates/claude-free.sh +62 -0
  740. package/.grimoire/infrastructure/scripts/llm-routing/templates/claude-max.cmd +26 -0
  741. package/.grimoire/infrastructure/scripts/llm-routing/templates/claude-max.sh +18 -0
  742. package/.grimoire/infrastructure/scripts/llm-routing/templates/deepseek-proxy.cmd +73 -0
  743. package/.grimoire/infrastructure/scripts/llm-routing/templates/deepseek-proxy.sh +65 -0
  744. package/.grimoire/infrastructure/scripts/llm-routing/templates/deepseek-usage.cmd +53 -0
  745. package/.grimoire/infrastructure/scripts/llm-routing/templates/deepseek-usage.sh +16 -0
  746. package/.grimoire/infrastructure/scripts/llm-routing/usage-tracker/index.js +551 -0
  747. package/.grimoire/infrastructure/scripts/migrate-agent.js +528 -0
  748. package/.grimoire/infrastructure/scripts/modification-risk-assessment.js +970 -0
  749. package/.grimoire/infrastructure/scripts/modification-validator.js +555 -0
  750. package/.grimoire/infrastructure/scripts/output-formatter.js +298 -0
  751. package/.grimoire/infrastructure/scripts/path-analyzer.js +476 -0
  752. package/.grimoire/infrastructure/scripts/pattern-extractor.js +1563 -0
  753. package/.grimoire/infrastructure/scripts/performance-analyzer.js +758 -0
  754. package/.grimoire/infrastructure/scripts/performance-and-error-resolver.js +258 -0
  755. package/.grimoire/infrastructure/scripts/performance-optimizer.js +1902 -0
  756. package/.grimoire/infrastructure/scripts/performance-tracker.js +454 -0
  757. package/.grimoire/infrastructure/scripts/plan-tracker.js +922 -0
  758. package/.grimoire/infrastructure/scripts/pm-adapter-factory.js +182 -0
  759. package/.grimoire/infrastructure/scripts/pm-adapter.js +134 -0
  760. package/.grimoire/infrastructure/scripts/pr-review-ai.js +1062 -0
  761. package/.grimoire/infrastructure/scripts/project-status-loader.js +850 -0
  762. package/.grimoire/infrastructure/scripts/qa-loop-orchestrator.js +1264 -0
  763. package/.grimoire/infrastructure/scripts/qa-report-generator.js +1154 -0
  764. package/.grimoire/infrastructure/scripts/recovery-tracker.js +965 -0
  765. package/.grimoire/infrastructure/scripts/refactoring-suggester.js +1139 -0
  766. package/.grimoire/infrastructure/scripts/repository-detector.js +66 -0
  767. package/.grimoire/infrastructure/scripts/rollback-manager.js +734 -0
  768. package/.grimoire/infrastructure/scripts/sandbox-tester.js +618 -0
  769. package/.grimoire/infrastructure/scripts/security-checker.js +359 -0
  770. package/.grimoire/infrastructure/scripts/spot-check-validator.js +149 -0
  771. package/.grimoire/infrastructure/scripts/status-mapper.js +116 -0
  772. package/.grimoire/infrastructure/scripts/story-worktree-hooks.js +426 -0
  773. package/.grimoire/infrastructure/scripts/stuck-detector.js +1251 -0
  774. package/.grimoire/infrastructure/scripts/subtask-verifier.js +793 -0
  775. package/.grimoire/infrastructure/scripts/template-engine.js +240 -0
  776. package/.grimoire/infrastructure/scripts/template-validator.js +279 -0
  777. package/.grimoire/infrastructure/scripts/test-discovery.js +1259 -0
  778. package/.grimoire/infrastructure/scripts/test-generator.js +845 -0
  779. package/.grimoire/infrastructure/scripts/test-quality-assessment.js +1082 -0
  780. package/.grimoire/infrastructure/scripts/test-utilities-fast.js +126 -0
  781. package/.grimoire/infrastructure/scripts/test-utilities.js +201 -0
  782. package/.grimoire/infrastructure/scripts/tool-resolver.js +362 -0
  783. package/.grimoire/infrastructure/scripts/transaction-manager.js +590 -0
  784. package/.grimoire/infrastructure/scripts/usage-analytics.js +636 -0
  785. package/.grimoire/infrastructure/scripts/validate-agents.js +527 -0
  786. package/.grimoire/infrastructure/scripts/validate-claude-integration.js +103 -0
  787. package/.grimoire/infrastructure/scripts/validate-codex-integration.js +143 -0
  788. package/.grimoire/infrastructure/scripts/validate-gemini-integration.js +153 -0
  789. package/.grimoire/infrastructure/scripts/validate-output-pattern.js +213 -0
  790. package/.grimoire/infrastructure/scripts/validate-parity.js +357 -0
  791. package/.grimoire/infrastructure/scripts/validate-paths.js +144 -0
  792. package/.grimoire/infrastructure/scripts/validate-user-profile.js +251 -0
  793. package/.grimoire/infrastructure/scripts/visual-impact-generator.js +1056 -0
  794. package/.grimoire/infrastructure/scripts/worktree-manager.js +704 -0
  795. package/.grimoire/infrastructure/scripts/yaml-validator.js +397 -0
  796. package/.grimoire/infrastructure/templates/coderabbit.yaml.template +280 -0
  797. package/.grimoire/infrastructure/templates/core-config/core-config-brownfield.tmpl.yaml +177 -0
  798. package/.grimoire/infrastructure/templates/core-config/core-config-greenfield.tmpl.yaml +169 -0
  799. package/.grimoire/infrastructure/templates/github-workflows/README.md +110 -0
  800. package/.grimoire/infrastructure/templates/github-workflows/ci.yml.template +170 -0
  801. package/.grimoire/infrastructure/templates/github-workflows/pr-automation.yml.template +331 -0
  802. package/.grimoire/infrastructure/templates/github-workflows/release.yml.template +197 -0
  803. package/.grimoire/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +20 -0
  804. package/.grimoire/infrastructure/templates/gitignore/gitignore-grimoire-base.tmpl +65 -0
  805. package/.grimoire/infrastructure/templates/gitignore/gitignore-node.tmpl +86 -0
  806. package/.grimoire/infrastructure/templates/gitignore/gitignore-python.tmpl +146 -0
  807. package/.grimoire/infrastructure/templates/grimoire-sync.yaml.template +183 -0
  808. package/.grimoire/infrastructure/templates/project-docs/coding-standards-tmpl.md +347 -0
  809. package/.grimoire/infrastructure/templates/project-docs/source-tree-tmpl.md +179 -0
  810. package/.grimoire/infrastructure/templates/project-docs/tech-stack-tmpl.md +269 -0
  811. package/.grimoire/infrastructure/tests/project-status-loader.test.js +569 -0
  812. package/.grimoire/infrastructure/tests/regression-suite-v2.md +622 -0
  813. package/.grimoire/infrastructure/tests/validate-module.js +98 -0
  814. package/.grimoire/infrastructure/tests/worktree-manager.test.js +620 -0
  815. package/.grimoire/infrastructure/tools/README.md +224 -0
  816. package/.grimoire/infrastructure/tools/cli/github-cli.yaml +200 -0
  817. package/.grimoire/infrastructure/tools/cli/llm-routing.yaml +128 -0
  818. package/.grimoire/infrastructure/tools/cli/railway-cli.yaml +260 -0
  819. package/.grimoire/infrastructure/tools/cli/supabase-cli.yaml +224 -0
  820. package/.grimoire/infrastructure/tools/local/ffmpeg.yaml +261 -0
  821. package/.grimoire/infrastructure/tools/mcp/21st-dev-magic.yaml +127 -0
  822. package/.grimoire/infrastructure/tools/mcp/browser.yaml +103 -0
  823. package/.grimoire/infrastructure/tools/mcp/clickup.yaml +535 -0
  824. package/.grimoire/infrastructure/tools/mcp/context7.yaml +78 -0
  825. package/.grimoire/infrastructure/tools/mcp/desktop-commander.yaml +180 -0
  826. package/.grimoire/infrastructure/tools/mcp/exa.yaml +103 -0
  827. package/.grimoire/infrastructure/tools/mcp/google-workspace.yaml +930 -0
  828. package/.grimoire/infrastructure/tools/mcp/n8n.yaml +551 -0
  829. package/.grimoire/infrastructure/tools/mcp/supabase.yaml +808 -0
  830. package/.grimoire/install-manifest.yaml +4058 -0
  831. package/.grimoire/local-config.yaml.template +73 -0
  832. package/.grimoire/manifests/schema/manifest-schema.json +191 -0
  833. package/.grimoire/monitor/hooks/lib/__init__.py +2 -0
  834. package/.grimoire/monitor/hooks/lib/enrich.py +59 -0
  835. package/.grimoire/monitor/hooks/lib/send_event.py +48 -0
  836. package/.grimoire/monitor/hooks/notification.py +30 -0
  837. package/.grimoire/monitor/hooks/post_tool_use.py +46 -0
  838. package/.grimoire/monitor/hooks/pre_compact.py +30 -0
  839. package/.grimoire/monitor/hooks/pre_tool_use.py +41 -0
  840. package/.grimoire/monitor/hooks/stop.py +30 -0
  841. package/.grimoire/monitor/hooks/subagent_stop.py +30 -0
  842. package/.grimoire/monitor/hooks/user_prompt_submit.py +39 -0
  843. package/.grimoire/package.json +104 -0
  844. package/.grimoire/presets/README.md +359 -0
  845. package/.grimoire/product/README.md +57 -0
  846. package/.grimoire/product/checklists/accessibility-wcag-checklist.md +80 -0
  847. package/.grimoire/product/checklists/architect-checklist.md +444 -0
  848. package/.grimoire/product/checklists/change-checklist.md +183 -0
  849. package/.grimoire/product/checklists/component-quality-checklist.md +74 -0
  850. package/.grimoire/product/checklists/database-design-checklist.md +119 -0
  851. package/.grimoire/product/checklists/dba-predeploy-checklist.md +97 -0
  852. package/.grimoire/product/checklists/dba-rollback-checklist.md +99 -0
  853. package/.grimoire/product/checklists/migration-readiness-checklist.md +75 -0
  854. package/.grimoire/product/checklists/pattern-audit-checklist.md +88 -0
  855. package/.grimoire/product/checklists/pm-checklist.md +376 -0
  856. package/.grimoire/product/checklists/po-master-checklist.md +442 -0
  857. package/.grimoire/product/checklists/pre-push-checklist.md +108 -0
  858. package/.grimoire/product/checklists/release-checklist.md +122 -0
  859. package/.grimoire/product/checklists/self-critique-checklist.md +387 -0
  860. package/.grimoire/product/checklists/story-dod-checklist.md +102 -0
  861. package/.grimoire/product/checklists/story-draft-checklist.md +216 -0
  862. package/.grimoire/product/data/atomic-design-principles.md +108 -0
  863. package/.grimoire/product/data/brainstorming-techniques.md +37 -0
  864. package/.grimoire/product/data/consolidation-algorithms.md +142 -0
  865. package/.grimoire/product/data/database-best-practices.md +182 -0
  866. package/.grimoire/product/data/design-token-best-practices.md +107 -0
  867. package/.grimoire/product/data/elicitation-methods.md +135 -0
  868. package/.grimoire/product/data/integration-patterns.md +207 -0
  869. package/.grimoire/product/data/migration-safety-guide.md +329 -0
  870. package/.grimoire/product/data/mode-selection-best-practices.md +471 -0
  871. package/.grimoire/product/data/postgres-tuning-guide.md +300 -0
  872. package/.grimoire/product/data/rls-security-patterns.md +333 -0
  873. package/.grimoire/product/data/roi-calculation-guide.md +142 -0
  874. package/.grimoire/product/data/supabase-patterns.md +330 -0
  875. package/.grimoire/product/data/test-levels-framework.md +149 -0
  876. package/.grimoire/product/data/test-priorities-matrix.md +175 -0
  877. package/.grimoire/product/data/wcag-compliance-guide.md +267 -0
  878. package/.grimoire/product/templates/activation-instructions-inline-greeting.yaml +64 -0
  879. package/.grimoire/product/templates/activation-instructions-template.md +260 -0
  880. package/.grimoire/product/templates/adr.hbs +126 -0
  881. package/.grimoire/product/templates/agent-template.yaml +122 -0
  882. package/.grimoire/product/templates/architecture-tmpl.yaml +651 -0
  883. package/.grimoire/product/templates/brainstorming-output-tmpl.yaml +156 -0
  884. package/.grimoire/product/templates/brownfield-architecture-tmpl.yaml +476 -0
  885. package/.grimoire/product/templates/brownfield-prd-tmpl.yaml +280 -0
  886. package/.grimoire/product/templates/brownfield-risk-report-tmpl.yaml +278 -0
  887. package/.grimoire/product/templates/changelog-template.md +134 -0
  888. package/.grimoire/product/templates/command-rationalization-matrix.md +154 -0
  889. package/.grimoire/product/templates/competitor-analysis-tmpl.yaml +293 -0
  890. package/.grimoire/product/templates/component-react-tmpl.tsx +98 -0
  891. package/.grimoire/product/templates/current-approach-tmpl.md +56 -0
  892. package/.grimoire/product/templates/dbdr.hbs +242 -0
  893. package/.grimoire/product/templates/design-story-tmpl.yaml +588 -0
  894. package/.grimoire/product/templates/ds-artifact-analysis.md +70 -0
  895. package/.grimoire/product/templates/engine/elicitation.js +298 -0
  896. package/.grimoire/product/templates/engine/index.js +310 -0
  897. package/.grimoire/product/templates/engine/loader.js +232 -0
  898. package/.grimoire/product/templates/engine/renderer.js +343 -0
  899. package/.grimoire/product/templates/engine/schemas/adr.schema.json +102 -0
  900. package/.grimoire/product/templates/engine/schemas/dbdr.schema.json +205 -0
  901. package/.grimoire/product/templates/engine/schemas/epic.schema.json +175 -0
  902. package/.grimoire/product/templates/engine/schemas/pmdr.schema.json +175 -0
  903. package/.grimoire/product/templates/engine/schemas/prd-v2.schema.json +300 -0
  904. package/.grimoire/product/templates/engine/schemas/prd.schema.json +152 -0
  905. package/.grimoire/product/templates/engine/schemas/story.schema.json +222 -0
  906. package/.grimoire/product/templates/engine/schemas/task.schema.json +154 -0
  907. package/.grimoire/product/templates/engine/validator.js +295 -0
  908. package/.grimoire/product/templates/epic.hbs +213 -0
  909. package/.grimoire/product/templates/eslintrc-security.json +32 -0
  910. package/.grimoire/product/templates/front-end-architecture-tmpl.yaml +206 -0
  911. package/.grimoire/product/templates/front-end-spec-tmpl.yaml +349 -0
  912. package/.grimoire/product/templates/fullstack-architecture-tmpl.yaml +805 -0
  913. package/.grimoire/product/templates/gemini/settings.json +81 -0
  914. package/.grimoire/product/templates/github-actions-cd.yml +213 -0
  915. package/.grimoire/product/templates/github-actions-ci.yml +173 -0
  916. package/.grimoire/product/templates/github-pr-template.md +68 -0
  917. package/.grimoire/product/templates/gordon-mcp.yaml +141 -0
  918. package/.grimoire/product/templates/grimoire-ai-config.yaml +107 -0
  919. package/.grimoire/product/templates/ide-rules/antigravity-rules.md +117 -0
  920. package/.grimoire/product/templates/ide-rules/claude-rules.md +233 -0
  921. package/.grimoire/product/templates/ide-rules/codex-rules.md +67 -0
  922. package/.grimoire/product/templates/ide-rules/copilot-rules.md +94 -0
  923. package/.grimoire/product/templates/ide-rules/cursor-rules.md +116 -0
  924. package/.grimoire/product/templates/ide-rules/gemini-rules.md +89 -0
  925. package/.grimoire/product/templates/index-strategy-tmpl.yaml +53 -0
  926. package/.grimoire/product/templates/market-research-tmpl.yaml +252 -0
  927. package/.grimoire/product/templates/mcp-workflow.js +273 -0
  928. package/.grimoire/product/templates/migration-plan-tmpl.yaml +1022 -0
  929. package/.grimoire/product/templates/migration-strategy-tmpl.md +524 -0
  930. package/.grimoire/product/templates/personalized-agent-template.md +260 -0
  931. package/.grimoire/product/templates/personalized-checklist-template.md +341 -0
  932. package/.grimoire/product/templates/personalized-task-template-v2.md +907 -0
  933. package/.grimoire/product/templates/personalized-task-template.md +345 -0
  934. package/.grimoire/product/templates/personalized-template-file.yaml +323 -0
  935. package/.grimoire/product/templates/personalized-workflow-template.yaml +461 -0
  936. package/.grimoire/product/templates/pmdr.hbs +187 -0
  937. package/.grimoire/product/templates/prd-tmpl.yaml +202 -0
  938. package/.grimoire/product/templates/prd-v2.0.hbs +217 -0
  939. package/.grimoire/product/templates/prd.hbs +202 -0
  940. package/.grimoire/product/templates/project-brief-tmpl.yaml +221 -0
  941. package/.grimoire/product/templates/qa-gate-tmpl.yaml +240 -0
  942. package/.grimoire/product/templates/qa-report-tmpl.md +235 -0
  943. package/.grimoire/product/templates/rls-policies-tmpl.yaml +1203 -0
  944. package/.grimoire/product/templates/schema-design-tmpl.yaml +428 -0
  945. package/.grimoire/product/templates/shock-report-tmpl.html +502 -0
  946. package/.grimoire/product/templates/spec-tmpl.md +235 -0
  947. package/.grimoire/product/templates/state-persistence-tmpl.yaml +219 -0
  948. package/.grimoire/product/templates/statusline/statusline-script.js +190 -0
  949. package/.grimoire/product/templates/statusline/track-agent.sh +70 -0
  950. package/.grimoire/product/templates/story-tmpl.yaml +369 -0
  951. package/.grimoire/product/templates/story.hbs +264 -0
  952. package/.grimoire/product/templates/task-execution-report.md +496 -0
  953. package/.grimoire/product/templates/task-template.md +123 -0
  954. package/.grimoire/product/templates/task.hbs +171 -0
  955. package/.grimoire/product/templates/tmpl-comment-on-examples.sql +158 -0
  956. package/.grimoire/product/templates/tmpl-migration-script.sql +91 -0
  957. package/.grimoire/product/templates/tmpl-rls-granular-policies.sql +104 -0
  958. package/.grimoire/product/templates/tmpl-rls-kiss-policy.sql +10 -0
  959. package/.grimoire/product/templates/tmpl-rls-roles.sql +135 -0
  960. package/.grimoire/product/templates/tmpl-rls-simple.sql +77 -0
  961. package/.grimoire/product/templates/tmpl-rls-tenant.sql +152 -0
  962. package/.grimoire/product/templates/tmpl-rollback-script.sql +77 -0
  963. package/.grimoire/product/templates/tmpl-seed-data.sql +140 -0
  964. package/.grimoire/product/templates/tmpl-smoke-test.sql +16 -0
  965. package/.grimoire/product/templates/tmpl-staging-copy-merge.sql +139 -0
  966. package/.grimoire/product/templates/tmpl-stored-proc.sql +140 -0
  967. package/.grimoire/product/templates/tmpl-trigger.sql +152 -0
  968. package/.grimoire/product/templates/tmpl-view-materialized.sql +133 -0
  969. package/.grimoire/product/templates/tmpl-view.sql +177 -0
  970. package/.grimoire/product/templates/token-exports-css-tmpl.css +240 -0
  971. package/.grimoire/product/templates/token-exports-tailwind-tmpl.js +395 -0
  972. package/.grimoire/product/templates/tokens-schema-tmpl.yaml +305 -0
  973. package/.grimoire/product/templates/workflow-template.yaml +152 -0
  974. package/.grimoire/project-config.yaml +166 -0
  975. package/.grimoire/quality/metrics-collector.js +601 -0
  976. package/.grimoire/quality/metrics-hook.js +261 -0
  977. package/.grimoire/quality/schemas/quality-metrics.schema.json +234 -0
  978. package/.grimoire/quality/seed-metrics.js +336 -0
  979. package/.grimoire/schemas/README.md +405 -0
  980. package/.grimoire/schemas/agent-v3-schema.json +395 -0
  981. package/.grimoire/schemas/squad-design-schema.json +300 -0
  982. package/.grimoire/schemas/squad-schema.json +187 -0
  983. package/.grimoire/schemas/task-v3-schema.json +354 -0
  984. package/.grimoire/schemas/validate-v3-schema.js +431 -0
  985. package/.grimoire/scripts/README.md +124 -0
  986. package/.grimoire/scripts/batch-migrate-phase1.ps1 +37 -0
  987. package/.grimoire/scripts/batch-migrate-phase2.ps1 +89 -0
  988. package/.grimoire/scripts/batch-migrate-phase3.ps1 +46 -0
  989. package/.grimoire/scripts/command-execution-hook.js +202 -0
  990. package/.grimoire/scripts/diagnostics/diagnose-installation.js +276 -0
  991. package/.grimoire/scripts/diagnostics/diagnose-npx-issue.ps1 +98 -0
  992. package/.grimoire/scripts/diagnostics/health-dashboard/README.md +123 -0
  993. package/.grimoire/scripts/diagnostics/health-dashboard/index.html +14 -0
  994. package/.grimoire/scripts/diagnostics/health-dashboard/package-lock.json +5262 -0
  995. package/.grimoire/scripts/diagnostics/health-dashboard/package.json +25 -0
  996. package/.grimoire/scripts/diagnostics/health-dashboard/public/favicon.svg +10 -0
  997. package/.grimoire/scripts/diagnostics/health-dashboard/src/App.jsx +22 -0
  998. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/AutoFixLog.css +122 -0
  999. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/AutoFixLog.jsx +72 -0
  1000. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/DomainCard.css +121 -0
  1001. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/DomainCard.jsx +116 -0
  1002. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/HealthScore.css +80 -0
  1003. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/HealthScore.jsx +81 -0
  1004. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/IssuesList.css +184 -0
  1005. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/IssuesList.jsx +145 -0
  1006. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/TechDebtList.css +114 -0
  1007. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/TechDebtList.jsx +72 -0
  1008. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/index.js +9 -0
  1009. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/shared/Card.css +44 -0
  1010. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/shared/Card.jsx +25 -0
  1011. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/shared/Chart.css +14 -0
  1012. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/shared/Chart.jsx +138 -0
  1013. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/shared/Header.css +54 -0
  1014. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/shared/Header.jsx +22 -0
  1015. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/shared/StatusBadge.css +77 -0
  1016. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/shared/StatusBadge.jsx +45 -0
  1017. package/.grimoire/scripts/diagnostics/health-dashboard/src/components/shared/index.js +4 -0
  1018. package/.grimoire/scripts/diagnostics/health-dashboard/src/hooks/index.js +2 -0
  1019. package/.grimoire/scripts/diagnostics/health-dashboard/src/hooks/useAutoRefresh.js +89 -0
  1020. package/.grimoire/scripts/diagnostics/health-dashboard/src/hooks/useHealthData.js +308 -0
  1021. package/.grimoire/scripts/diagnostics/health-dashboard/src/main.jsx +13 -0
  1022. package/.grimoire/scripts/diagnostics/health-dashboard/src/pages/Dashboard.css +238 -0
  1023. package/.grimoire/scripts/diagnostics/health-dashboard/src/pages/Dashboard.jsx +154 -0
  1024. package/.grimoire/scripts/diagnostics/health-dashboard/src/pages/DomainDetail.css +259 -0
  1025. package/.grimoire/scripts/diagnostics/health-dashboard/src/pages/DomainDetail.jsx +164 -0
  1026. package/.grimoire/scripts/diagnostics/health-dashboard/src/pages/index.js +2 -0
  1027. package/.grimoire/scripts/diagnostics/health-dashboard/src/styles/App.css +19 -0
  1028. package/.grimoire/scripts/diagnostics/health-dashboard/src/styles/index.css +67 -0
  1029. package/.grimoire/scripts/diagnostics/health-dashboard/vite.config.js +23 -0
  1030. package/.grimoire/scripts/diagnostics/quick-diagnose.cmd +86 -0
  1031. package/.grimoire/scripts/diagnostics/quick-diagnose.ps1 +118 -0
  1032. package/.grimoire/scripts/grimoire-doc-template.md +326 -0
  1033. package/.grimoire/scripts/migrate-framework-docs.sh +302 -0
  1034. package/.grimoire/scripts/pm.sh +455 -0
  1035. package/.grimoire/scripts/session-context-loader.js +46 -0
  1036. package/.grimoire/scripts/test-template-system.js +942 -0
  1037. package/.grimoire/scripts/update-grimoire.sh +176 -0
  1038. package/.grimoire/scripts/validate-phase1.ps1 +36 -0
  1039. package/.grimoire/scripts/workflow-management.md +70 -0
  1040. package/.grimoire/user-guide.md +1411 -0
  1041. package/.grimoire/utils/format-duration.js +95 -0
  1042. package/.grimoire/utils/grimoire-validator.js +27 -0
  1043. package/.grimoire/workflow-intelligence/__tests__/confidence-scorer.test.js +334 -0
  1044. package/.grimoire/workflow-intelligence/__tests__/integration.test.js +339 -0
  1045. package/.grimoire/workflow-intelligence/__tests__/suggestion-engine.test.js +437 -0
  1046. package/.grimoire/workflow-intelligence/__tests__/wave-analyzer.test.js +447 -0
  1047. package/.grimoire/workflow-intelligence/__tests__/workflow-registry.test.js +302 -0
  1048. package/.grimoire/workflow-intelligence/engine/confidence-scorer.js +306 -0
  1049. package/.grimoire/workflow-intelligence/engine/output-formatter.js +299 -0
  1050. package/.grimoire/workflow-intelligence/engine/suggestion-engine.js +798 -0
  1051. package/.grimoire/workflow-intelligence/engine/wave-analyzer.js +683 -0
  1052. package/.grimoire/workflow-intelligence/index.js +330 -0
  1053. package/.grimoire/workflow-intelligence/learning/capture-hook.js +148 -0
  1054. package/.grimoire/workflow-intelligence/learning/gotcha-registry.js +654 -0
  1055. package/.grimoire/workflow-intelligence/learning/index.js +306 -0
  1056. package/.grimoire/workflow-intelligence/learning/pattern-capture.js +330 -0
  1057. package/.grimoire/workflow-intelligence/learning/pattern-store.js +497 -0
  1058. package/.grimoire/workflow-intelligence/learning/pattern-validator.js +310 -0
  1059. package/.grimoire/workflow-intelligence/learning/qa-feedback.js +586 -0
  1060. package/.grimoire/workflow-intelligence/learning/semantic-search.js +521 -0
  1061. package/.grimoire/workflow-intelligence/registry/workflow-registry.js +357 -0
  1062. package/.grimoire/working-in-the-brownfield.md +362 -0
  1063. package/LICENSE +25 -0
  1064. package/README.md +59 -0
  1065. package/bin/grimoire-ids.js +560 -0
  1066. package/bin/grimoire-init.js +1232 -0
  1067. package/bin/grimoire-minimal.js +40 -0
  1068. package/bin/grimoire.js +1118 -0
  1069. package/bin/modules/env-config.js +436 -0
  1070. package/bin/modules/mcp-installer.js +384 -0
  1071. package/bin/utils/install-errors.js +340 -0
  1072. package/bin/utils/install-transaction.js +447 -0
  1073. package/bin/utils/pro-detector.js +110 -0
  1074. package/package.json +158 -0
  1075. package/packages/gemini-grimoire-extension/README.md +55 -0
  1076. package/packages/gemini-grimoire-extension/commands/grimoire-agent.js +7 -0
  1077. package/packages/gemini-grimoire-extension/commands/grimoire-agents.js +51 -0
  1078. package/packages/gemini-grimoire-extension/commands/grimoire-analyst.js +6 -0
  1079. package/packages/gemini-grimoire-extension/commands/grimoire-architect.js +6 -0
  1080. package/packages/gemini-grimoire-extension/commands/grimoire-data-engineer.js +6 -0
  1081. package/packages/gemini-grimoire-extension/commands/grimoire-dev.js +6 -0
  1082. package/packages/gemini-grimoire-extension/commands/grimoire-devops.js +6 -0
  1083. package/packages/gemini-grimoire-extension/commands/grimoire-master.js +7 -0
  1084. package/packages/gemini-grimoire-extension/commands/grimoire-menu.js +6 -0
  1085. package/packages/gemini-grimoire-extension/commands/grimoire-pm.js +6 -0
  1086. package/packages/gemini-grimoire-extension/commands/grimoire-po.js +6 -0
  1087. package/packages/gemini-grimoire-extension/commands/grimoire-qa.js +6 -0
  1088. package/packages/gemini-grimoire-extension/commands/grimoire-sm.js +6 -0
  1089. package/packages/gemini-grimoire-extension/commands/grimoire-squad-creator.js +6 -0
  1090. package/packages/gemini-grimoire-extension/commands/grimoire-status.js +68 -0
  1091. package/packages/gemini-grimoire-extension/commands/grimoire-ux-design-expert.js +6 -0
  1092. package/packages/gemini-grimoire-extension/commands/grimoire-validate.js +35 -0
  1093. package/packages/gemini-grimoire-extension/commands/lib/agent-launcher.js +147 -0
  1094. package/packages/gemini-grimoire-extension/extension.json +149 -0
  1095. package/packages/gemini-grimoire-extension/gemini-extension.json +149 -0
  1096. package/packages/gemini-grimoire-extension/hooks/hooks.json +72 -0
  1097. package/packages/grimoire-install/.releaserc.json +39 -0
  1098. package/packages/grimoire-install/CHANGELOG.md +33 -0
  1099. package/packages/grimoire-install/README.md +119 -0
  1100. package/packages/grimoire-install/bin/edmcp.js +80 -0
  1101. package/packages/grimoire-install/bin/grimoire-install.js +51 -0
  1102. package/packages/grimoire-install/jest.config.js +27 -0
  1103. package/packages/grimoire-install/package.json +68 -0
  1104. package/packages/grimoire-install/src/dep-checker.js +306 -0
  1105. package/packages/grimoire-install/src/edmcp/index.js +382 -0
  1106. package/packages/grimoire-install/src/installer.js +487 -0
  1107. package/packages/grimoire-install/src/os-detector.js +280 -0
  1108. package/packages/grimoire-pro-cli/bin/grimoire-pro.js +233 -0
  1109. package/packages/grimoire-pro-cli/package.json +38 -0
  1110. package/packages/grimoire-pro-cli/src/recover.js +101 -0
  1111. package/packages/installer/package.json +40 -0
  1112. package/packages/installer/src/__tests__/performance-benchmark.js +384 -0
  1113. package/packages/installer/src/config/configure-environment.js +373 -0
  1114. package/packages/installer/src/config/ide-configs.js +161 -0
  1115. package/packages/installer/src/config/templates/core-config-template.js +199 -0
  1116. package/packages/installer/src/config/templates/env-template.js +272 -0
  1117. package/packages/installer/src/config/validation/config-validator.js +244 -0
  1118. package/packages/installer/src/detection/detect-project-type.js +83 -0
  1119. package/packages/installer/src/installer/brownfield-upgrader.js +440 -0
  1120. package/packages/installer/src/installer/dependency-installer.js +335 -0
  1121. package/packages/installer/src/installer/file-hasher.js +234 -0
  1122. package/packages/installer/src/installer/grimoire-core-installer.js +428 -0
  1123. package/packages/installer/src/installer/manifest-signature.js +380 -0
  1124. package/packages/installer/src/installer/post-install-validator.js +1524 -0
  1125. package/packages/installer/src/merger/index.js +72 -0
  1126. package/packages/installer/src/merger/parsers/env-parser.js +153 -0
  1127. package/packages/installer/src/merger/parsers/markdown-section-parser.js +199 -0
  1128. package/packages/installer/src/merger/strategies/base-merger.js +61 -0
  1129. package/packages/installer/src/merger/strategies/env-merger.js +138 -0
  1130. package/packages/installer/src/merger/strategies/index.js +105 -0
  1131. package/packages/installer/src/merger/strategies/markdown-merger.js +208 -0
  1132. package/packages/installer/src/merger/strategies/replace-merger.js +68 -0
  1133. package/packages/installer/src/merger/types.js +72 -0
  1134. package/packages/installer/src/pro/pro-scaffolder.js +387 -0
  1135. package/packages/installer/src/updater/index.js +814 -0
  1136. package/packages/installer/src/utils/grimoire-colors.js +235 -0
  1137. package/packages/installer/src/wizard/feedback.js +232 -0
  1138. package/packages/installer/src/wizard/i18n.js +230 -0
  1139. package/packages/installer/src/wizard/ide-config-generator.js +993 -0
  1140. package/packages/installer/src/wizard/ide-selector.js +86 -0
  1141. package/packages/installer/src/wizard/index.js +831 -0
  1142. package/packages/installer/src/wizard/pro-setup.js +1223 -0
  1143. package/packages/installer/src/wizard/questions.js +336 -0
  1144. package/packages/installer/src/wizard/validation/index.js +121 -0
  1145. package/packages/installer/src/wizard/validation/report-generator.js +254 -0
  1146. package/packages/installer/src/wizard/validation/troubleshooting-system.js +348 -0
  1147. package/packages/installer/src/wizard/validation/validators/config-validator.js +364 -0
  1148. package/packages/installer/src/wizard/validation/validators/dependency-validator.js +333 -0
  1149. package/packages/installer/src/wizard/validation/validators/file-structure-validator.js +175 -0
  1150. package/packages/installer/src/wizard/validation/validators/mcp-health-checker.js +310 -0
  1151. package/packages/installer/src/wizard/validators.js +274 -0
  1152. package/packages/installer/src/wizard/wizard.js +246 -0
  1153. package/packages/installer/tests/integration/environment-configuration.test.js +331 -0
  1154. package/packages/installer/tests/integration/wizard-detection.test.js +353 -0
  1155. package/packages/installer/tests/unit/config-validator.test.js +316 -0
  1156. package/packages/installer/tests/unit/detection/detect-project-type.test.js +403 -0
  1157. package/packages/installer/tests/unit/env-template.test.js +189 -0
  1158. package/packages/installer/tests/unit/merger/env-merger.test.js +192 -0
  1159. package/packages/installer/tests/unit/merger/markdown-merger.test.js +262 -0
  1160. package/packages/installer/tests/unit/merger/strategies.test.js +153 -0
  1161. package/scripts/check-markdown-links.py +353 -0
  1162. package/scripts/code-intel-health-check.js +344 -0
  1163. package/scripts/dashboard-parallel-dev.sh +184 -0
  1164. package/scripts/dashboard-parallel-phase3.sh +130 -0
  1165. package/scripts/dashboard-parallel-phase4.sh +131 -0
  1166. package/scripts/ensure-manifest.js +59 -0
  1167. package/scripts/generate-install-manifest.js +368 -0
  1168. package/scripts/install-monitor-hooks.sh +83 -0
  1169. package/scripts/package-synapse.js +325 -0
  1170. package/scripts/semantic-lint.js +191 -0
  1171. package/scripts/sign-manifest.ps1 +132 -0
  1172. package/scripts/sign-manifest.sh +122 -0
  1173. package/scripts/validate-manifest.js +267 -0
  1174. package/scripts/validate-package-completeness.js +319 -0
@@ -0,0 +1,4058 @@
1
+ # grimoire Install Manifest
2
+ # Auto-generated by scripts/generate-install-manifest.js
3
+ # DO NOT EDIT MANUALLY - regenerate with: npm run generate:manifest
4
+ #
5
+ # This manifest is used for brownfield upgrades to track:
6
+ # - Which files are part of the framework
7
+ # - SHA256 hashes for change detection
8
+ # - File types for categorization
9
+ #
10
+ version: 1.0.0
11
+ generated_at: "2026-02-21T21:47:03.972Z"
12
+ generator: scripts/generate-install-manifest.js
13
+ file_count: 1011
14
+ files:
15
+ - path: cli/commands/config/index.js
16
+ hash: sha256:718cbf512989b69e1341ce83574fe913fd43c461895ab100f355ae947dbe9fe9
17
+ type: cli
18
+ size: 20966
19
+ - path: cli/commands/generate/index.js
20
+ hash: sha256:36f8e38ab767fa5478d8dabac548c66dc2c0fc521c216e954ac33fcea0ba597b
21
+ type: cli
22
+ size: 6720
23
+ - path: cli/commands/manifest/index.js
24
+ hash: sha256:74dfaa5086d21863bb136f197d55951e0d8249fe32b13a86b79f02f738b347c6
25
+ type: cli
26
+ size: 1170
27
+ - path: cli/commands/manifest/regenerate.js
28
+ hash: sha256:4638f613eadf35599526116b2dbd65fcf992e606481d3536961f0f347c784057
29
+ type: cli
30
+ size: 2914
31
+ - path: cli/commands/manifest/validate.js
32
+ hash: sha256:762f775d92f13f56c4d487fddc624d6e102c747d1d75c13d24c59e208417b655
33
+ type: cli
34
+ size: 1776
35
+ - path: cli/commands/mcp/add.js
36
+ hash: sha256:24fb2a990ebb64950c64c0fba889eefe263c2008231fdd9b5d5cec958d542099
37
+ type: cli
38
+ size: 7236
39
+ - path: cli/commands/mcp/index.js
40
+ hash: sha256:8b73dfad65534216aa86026af8199546a3f9b30d4c18e9cd3c680589f23e3796
41
+ type: cli
42
+ size: 2233
43
+ - path: cli/commands/mcp/link.js
44
+ hash: sha256:3199fea74a7d28fa27df41e0c9d0cfa126499f2d2488131b913aeac059245982
45
+ type: cli
46
+ size: 6852
47
+ - path: cli/commands/mcp/setup.js
48
+ hash: sha256:fc2d38cc319cb368a445947039952d2f3d7e305e31fbc9d2d60939e6fa971aed
49
+ type: cli
50
+ size: 5012
51
+ - path: cli/commands/mcp/status.js
52
+ hash: sha256:168607b95430066f4e2e58b3c441aab6bf7c5f84246b4a058805b7864dd15dae
53
+ type: cli
54
+ size: 5384
55
+ - path: cli/commands/metrics/cleanup.js
56
+ hash: sha256:bd1670e7d17e5fd8f8c710d6c1ceb813e59143cf833b86f5f192b550d1dd6472
57
+ type: cli
58
+ size: 3064
59
+ - path: cli/commands/metrics/index.js
60
+ hash: sha256:6f8bb10d66cf700836bfe9bc18019eb0f771e18609e70b19a2f1ae48a39b2d61
61
+ type: cli
62
+ size: 1906
63
+ - path: cli/commands/metrics/record.js
64
+ hash: sha256:84234cb023bc96f22c3fcc90aa3e2275df9c9798111892a85e9d2893fff36013
65
+ type: cli
66
+ size: 5666
67
+ - path: cli/commands/metrics/seed.js
68
+ hash: sha256:ef62067e6e5e2ae902addce38f5cf04ee2951e88f6cecf5c20efe12a8347c7e4
69
+ type: cli
70
+ size: 4990
71
+ - path: cli/commands/metrics/show.js
72
+ hash: sha256:c2c1257ebddacdf6d15dc8b45a9cb3c3d2940a0cd3460fba94ab6fd8eeafd9dc
73
+ type: cli
74
+ size: 7182
75
+ - path: cli/commands/migrate/analyze.js
76
+ hash: sha256:4fe7383806091a078da3ca7e1fb0aaf341354c0145f836b5f26fe98d8a9694ee
77
+ type: cli
78
+ size: 9442
79
+ - path: cli/commands/migrate/backup.js
80
+ hash: sha256:f254d7278696f10b13912c2b26ac635fb24ac445992a15c84efdf4c824be6f01
81
+ type: cli
82
+ size: 9641
83
+ - path: cli/commands/migrate/execute.js
84
+ hash: sha256:0c8deefbf8ae2c6d012cf8d89be834072e83bbba9036f120e86a2ddd62fc9177
85
+ type: cli
86
+ size: 7881
87
+ - path: cli/commands/migrate/index.js
88
+ hash: sha256:df62b3a5e64da4967c1688b58caa205c07f16c55032064b43d0ef23063e2fdf6
89
+ type: cli
90
+ size: 12471
91
+ - path: cli/commands/migrate/rollback.js
92
+ hash: sha256:a0ad6aa957c889c51390974ed4ca4a56ac485ba9f972fe2803007f667ce6c924
93
+ type: cli
94
+ size: 8579
95
+ - path: cli/commands/migrate/update-imports.js
96
+ hash: sha256:44da0c859e8b4852c0d6ee0ac5b0bc662ead6784ae8624437ef36359928dcb77
97
+ type: cli
98
+ size: 11183
99
+ - path: cli/commands/migrate/validate.js
100
+ hash: sha256:1112d7cd84f5d973c833dda032a1a7b7fc4035ea4f27d66b1011af607c1a8690
101
+ type: cli
102
+ size: 12364
103
+ - path: cli/commands/pro/index.js
104
+ hash: sha256:9c9beae722081f1f6adfdb484f6254d690c7f23b844ce6d8985be4a647a0d84a
105
+ type: cli
106
+ size: 22214
107
+ - path: cli/commands/qa/index.js
108
+ hash: sha256:f97e7bb48fe90f4050d5860c44b51f786958bd1a8a9a5a41ead2b69edb510ef6
109
+ type: cli
110
+ size: 1535
111
+ - path: cli/commands/qa/run.js
112
+ hash: sha256:71877b9d4f1cd127eef2460a113176ed57a461b0f141b0a136106cff0d951f88
113
+ type: cli
114
+ size: 4579
115
+ - path: cli/commands/qa/status.js
116
+ hash: sha256:bc993858504617a233ce191ab44a438f675605022e43375d282f589a734b6c64
117
+ type: cli
118
+ size: 5320
119
+ - path: cli/commands/validate/index.js
120
+ hash: sha256:6974e58d0d72b1258da44f76fe1637fb85db5f4dc29a2134892c3ffa002f9fe5
121
+ type: cli
122
+ size: 12950
123
+ - path: cli/commands/workers/formatters/info-formatter.js
124
+ hash: sha256:2d8c8953ee154ed636a6a431bc0493b2e45d65550eb228611697fbc911423187
125
+ type: cli
126
+ size: 7496
127
+ - path: cli/commands/workers/formatters/list-table.js
128
+ hash: sha256:9f0e956499ba5a93387e11baff816a2908a4bd36ed93e092b18e963077a9e3cb
129
+ type: cli
130
+ size: 7476
131
+ - path: cli/commands/workers/formatters/list-tree.js
132
+ hash: sha256:f96cd5549da1aea9f721e69db1629e6adafcd4f63f7eb191f30e4e17d507f65f
133
+ type: cli
134
+ size: 4693
135
+ - path: cli/commands/workers/index.js
136
+ hash: sha256:43bb90236fccf37c9d4fa2aa533987485707d57641fe52d791c38450e8fcbccf
137
+ type: cli
138
+ size: 1582
139
+ - path: cli/commands/workers/info.js
140
+ hash: sha256:e14096945bdc8deb1b5fcc7422d91d4a012af804784eea49930b6b6fa0981b35
141
+ type: cli
142
+ size: 5652
143
+ - path: cli/commands/workers/list.js
144
+ hash: sha256:d61a2385e4f31ad0692ba6d027ffbb2b6cac5d56b7a69dc9f51b58cbb2447f6d
145
+ type: cli
146
+ size: 6387
147
+ - path: cli/commands/workers/search-filters.js
148
+ hash: sha256:c619df7a992ba4cebf572f4d6980d2b200608baa145c7ed35924d2453ef4cd50
149
+ type: cli
150
+ size: 5225
151
+ - path: cli/commands/workers/search-keyword.js
152
+ hash: sha256:bac9c1897d587039facc1247c1d0885d67940cd139a4c6cf35d48d7f5778af4c
153
+ type: cli
154
+ size: 8433
155
+ - path: cli/commands/workers/search-semantic.js
156
+ hash: sha256:865d30219559433b2201b06f084c751fd683b12fb899c77d77bcad6598c7d775
157
+ type: cli
158
+ size: 8383
159
+ - path: cli/commands/workers/search.js
160
+ hash: sha256:bc12ae313b91f2330141f532144218f36c97f1033d798d6c29044872e91b90e1
161
+ type: cli
162
+ size: 4828
163
+ - path: cli/commands/workers/utils/pagination.js
164
+ hash: sha256:9246ec001dea6c249ec05a56c776686bfdc057b80094a0b3e2284d00770aff98
165
+ type: cli
166
+ size: 2439
167
+ - path: cli/index.js
168
+ hash: sha256:e5bf397258840bed4da6284f28cd9410ba962cabcc20c248f568e8d70d5fd4d0
169
+ type: cli
170
+ size: 4541
171
+ - path: cli/utils/output-formatter-cli.js
172
+ hash: sha256:f252da79585d3f2412825b1c09524c92dc99703c56b0d6d650dfdcba997fcb39
173
+ type: cli
174
+ size: 6826
175
+ - path: cli/utils/score-calculator.js
176
+ hash: sha256:39e35395961404bdb255522b6fc8f9742f7b39e6f168ae68e9a165c2f057b158
177
+ type: cli
178
+ size: 5907
179
+ - path: core-config.yaml
180
+ hash: sha256:24096f0e404ca6a0be82e971faef914d42425539d3e30c702a8e3f18b8130ae3
181
+ type: config
182
+ size: 9408
183
+ - path: core/code-intel/code-intel-client.js
184
+ hash: sha256:bd88497c8c8f312e95f746121e627c088e93d27af093d411f0521712bd17ba94
185
+ type: core
186
+ size: 7541
187
+ - path: core/code-intel/code-intel-enricher.js
188
+ hash: sha256:6165e9095f473410ff6eb9d1a50f3b8f099ec78cd84be111caa65061e56cfcc1
189
+ type: core
190
+ size: 4326
191
+ - path: core/code-intel/index.js
192
+ hash: sha256:ca8c54c2decbf64183d890ab42dc8ca2deafa675d4433492cb6ce423a284ad4d
193
+ type: core
194
+ size: 3802
195
+ - path: core/code-intel/providers/code-graph-provider.js
196
+ hash: sha256:0c5ffd7b3faf82453ed1cb77f52ef10a3e67d3a1b2e2df5aac89a4fb2ac6583b
197
+ type: core
198
+ size: 6335
199
+ - path: core/code-intel/providers/provider-interface.js
200
+ hash: sha256:7d16aa715155e9c077720a6bffc7e9e5411b65f821b6b4e5e909f226796e7acb
201
+ type: core
202
+ size: 3079
203
+ - path: core/config/config-cache.js
204
+ hash: sha256:527a788cbe650aa6b13d1101ebc16419489bfef20b2ee93042f6eb6a51e898e9
205
+ type: core
206
+ size: 4704
207
+ - path: core/config/config-loader.js
208
+ hash: sha256:b26f4bd2389dc838d9d7f8c60af19578072c875e8a0437a7132d6817a10cdd73
209
+ type: core
210
+ size: 8467
211
+ - path: core/config/config-resolver.js
212
+ hash: sha256:9d0bca02bbbd3397ad2a194e113b92fcde201b81c49925a37963f8da11a20da9
213
+ type: core
214
+ size: 18964
215
+ - path: core/config/env-interpolator.js
216
+ hash: sha256:d9d9782d1c685fc1734034f656903ff35ac71665c0bedb3fc479544c89d1ece1
217
+ type: core
218
+ size: 3684
219
+ - path: core/config/merge-utils.js
220
+ hash: sha256:e25cb65f4c4e855cfeb4acced46d64a8c9cf7e55a97ac051ec3d985b8855c823
221
+ type: core
222
+ size: 2825
223
+ - path: core/config/migrate-config.js
224
+ hash: sha256:af8f785b9531f70515133268bc6214d3b1c8e1ffa00222ab156f2ab62ea78aeb
225
+ type: core
226
+ size: 8179
227
+ - path: core/config/schemas/framework-config.schema.json
228
+ hash: sha256:65bb334c697c9a1e45251779084de679284a6b3b74c61cb1203a4a49b41dc06f
229
+ type: core
230
+ size: 488
231
+ - path: core/config/schemas/local-config.schema.json
232
+ hash: sha256:75f51ba901c00ee7df92a57e8ff32f29c56b350868e5bcf3ff1dd4be5f2c96e7
233
+ type: core
234
+ size: 503
235
+ - path: core/config/schemas/project-config.schema.json
236
+ hash: sha256:2f2e43a85428cf9cd240908c86fd78c08c1c009d851471598af2c5a90491cce8
237
+ type: core
238
+ size: 841
239
+ - path: core/config/schemas/user-config.schema.json
240
+ hash: sha256:e60aa433b6bead1fd95bdae216cd2a6d37fa73e75902363386ada1f24361a835
241
+ type: core
242
+ size: 946
243
+ - path: core/config/templates/user-config.yaml
244
+ hash: sha256:b550d33eb6c24530acd7a23a1a28071a81454b70be3101b462a33669134fe3d6
245
+ type: template
246
+ size: 731
247
+ - path: core/elicitation/agent-elicitation.js
248
+ hash: sha256:ef13ebff1375279e7b8f0f0bbd3699a0d201f9a67127efa64c4142159a26f417
249
+ type: elicitation
250
+ size: 9482
251
+ - path: core/elicitation/elicitation-engine.js
252
+ hash: sha256:e4b218de498b6d0eba64ab31eb6373048b2e03f45005c36ea8f591c41681dc2a
253
+ type: elicitation
254
+ size: 13533
255
+ - path: core/elicitation/session-manager.js
256
+ hash: sha256:187359b24d3355f5cd9d248eea2ff4beca10705575135550920c7c96e2752850
257
+ type: elicitation
258
+ size: 8846
259
+ - path: core/elicitation/task-elicitation.js
260
+ hash: sha256:cc44ad635e60cbdb67d18209b4b50d1fb2824de2234ec607a6639eb1754bfc75
261
+ type: elicitation
262
+ size: 8296
263
+ - path: core/elicitation/workflow-elicitation.js
264
+ hash: sha256:ee61615ec27ad616f0e56144de90bbb66f2a80724abcf4265213d845020c3a25
265
+ type: elicitation
266
+ size: 10945
267
+ - path: core/events/dashboard-emitter.js
268
+ hash: sha256:64dcf84d9231a987f0832d873121f7f036582afb4d1bbcacb4488ab4311b3b46
269
+ type: core
270
+ size: 9199
271
+ - path: core/events/index.js
272
+ hash: sha256:962086cc1fa6f74a43979bbde74a48779b7606c5405634e1392fd4379f6ec3ff
273
+ type: core
274
+ size: 337
275
+ - path: core/events/types.js
276
+ hash: sha256:6a1c6a34a4fb5ae859347fd68d408b57fd11049ba4c852bb4ad7987e48e91c5f
277
+ type: core
278
+ size: 1714
279
+ - path: core/execution/autonomous-build-loop.js
280
+ hash: sha256:a42321164a62d64446a4324bf39933d559b24127e15af9a81f7fd45051d3da88
281
+ type: core
282
+ size: 34060
283
+ - path: core/execution/build-orchestrator.js
284
+ hash: sha256:6c26dac794f70250878e4446e585c5337b4b8a7070c668303cfdf7994a42620f
285
+ type: core
286
+ size: 31790
287
+ - path: core/execution/build-state-manager.js
288
+ hash: sha256:6866645483fda9dfe6572c09a07dfc28bbc15f0f9d7f91e0807c3776389d5143
289
+ type: core
290
+ size: 48954
291
+ - path: core/execution/context-injector.js
292
+ hash: sha256:4f4873282d99b7eb024dd2099a316830685a33ccd3e938f726230c829facde73
293
+ type: core
294
+ size: 14866
295
+ - path: core/execution/parallel-executor.js
296
+ hash: sha256:46870e5c8ff8db3ee0386e477d427cc98eeb008f630818b093a9524b410590ae
297
+ type: core
298
+ size: 8024
299
+ - path: core/execution/parallel-monitor.js
300
+ hash: sha256:58ecd92f5de9c688f28cf952ae6cc5ee07ddf14dc89fb0ea13b2f0a527e29fae
301
+ type: core
302
+ size: 11590
303
+ - path: core/execution/rate-limit-manager.js
304
+ hash: sha256:1b6e2ca99cf59a9dfa5a4e48109d0a47f36262efcc73e69f11a1c0c727d48abb
305
+ type: core
306
+ size: 9033
307
+ - path: core/execution/result-aggregator.js
308
+ hash: sha256:ef179a743ecdbf3e4e78efbed77c279a96554ea0c4e12b47e9102d9f65c65512
309
+ type: core
310
+ size: 14559
311
+ - path: core/execution/semantic-merge-engine.js
312
+ hash: sha256:42c23b944057c84fdcf3dd3c312995dd52245a172c1a9614ac71418b318c32bb
313
+ type: core
314
+ size: 51578
315
+ - path: core/execution/subagent-dispatcher.js
316
+ hash: sha256:b4895e4a6316fa3211a6fe0cc51f127a2884ac1b7439da540e1de21f393580ab
317
+ type: core
318
+ size: 25749
319
+ - path: core/execution/wave-executor.js
320
+ hash: sha256:4e2324edb37ae0729062b5ac029f2891e050e7efd3a48d0f4a1dc4f227a6716b
321
+ type: core
322
+ size: 11060
323
+ - path: core/health-check/base-check.js
324
+ hash: sha256:6ca1c89691cc66502a0785266bda0c376912e1128610c17ee35c3f57444cb51d
325
+ type: core
326
+ size: 6177
327
+ - path: core/health-check/check-registry.js
328
+ hash: sha256:18e852c744e83472b6d6744c203af6cfd6e00048bf970d9416364f4554965f91
329
+ type: core
330
+ size: 6923
331
+ - path: core/health-check/checks/deployment/build-config.js
332
+ hash: sha256:bbb135057deec58e8422efad17a6c8f7132f9d05f80a05f36d86b2ac47837be6
333
+ type: core
334
+ size: 3020
335
+ - path: core/health-check/checks/deployment/ci-config.js
336
+ hash: sha256:f10db302db0ee0472c9ec155bbd66e9a8489c4ec4f926c3209183142799a98a1
337
+ type: core
338
+ size: 3479
339
+ - path: core/health-check/checks/deployment/deployment-readiness.js
340
+ hash: sha256:daab50786f9a7dc50a207620dec6eb14e6b08f8cb90cf109941b7a01366ffda0
341
+ type: core
342
+ size: 4482
343
+ - path: core/health-check/checks/deployment/docker-config.js
344
+ hash: sha256:8724ad9188eccd2f5a018c03a29ba4d092b9e3dc267f9fedcd977b328d121101
345
+ type: core
346
+ size: 3178
347
+ - path: core/health-check/checks/deployment/env-file.js
348
+ hash: sha256:b4508e91c1cb3de1dc226bd3adbfdb19043e8c9e9ec4cc33c792a7d29b51d59d
349
+ type: core
350
+ size: 3236
351
+ - path: core/health-check/checks/deployment/index.js
352
+ hash: sha256:9e4c7aec8f5bc1148640cd470e132c45288e2cbbe8cff9f08170c1f0f2b31827
353
+ type: core
354
+ size: 698
355
+ - path: core/health-check/checks/index.js
356
+ hash: sha256:30362632f76a045e9ce05685a61db4b6de5a8679bf5a0b51ef76c989369ee470
357
+ type: core
358
+ size: 1405
359
+ - path: core/health-check/checks/local/disk-space.js
360
+ hash: sha256:0ad1f51e3e6c51361a4cec8361c0b85a27034ac26c4d0dcf2ac1e1adc7cfaeb4
361
+ type: core
362
+ size: 5997
363
+ - path: core/health-check/checks/local/environment-vars.js
364
+ hash: sha256:4af6afb80342cd09c2a921e1bc4ff1faa83ccab5ec91e7722b23a697306a7d2a
365
+ type: core
366
+ size: 3377
367
+ - path: core/health-check/checks/local/git-install.js
368
+ hash: sha256:a0374133b0bbb506549222f1fc6d11e1a4fb85757f5f6e7163e5fb1f903a020f
369
+ type: core
370
+ size: 4352
371
+ - path: core/health-check/checks/local/ide-detection.js
372
+ hash: sha256:285a0070264760fe51d442b130afa2f6c3b202d838aa9ddcf6b45eae5d14675c
373
+ type: core
374
+ size: 3750
375
+ - path: core/health-check/checks/local/index.js
376
+ hash: sha256:3ba27f30fc56bd10501fee37caac91967f70f053bccffad2bb6c52fe2f27cb3e
377
+ type: core
378
+ size: 885
379
+ - path: core/health-check/checks/local/memory.js
380
+ hash: sha256:6a453cec5e0db0ff9eac191cc3e8702bb1b29f05e57c60c0aad3976cfbc8833c
381
+ type: core
382
+ size: 3599
383
+ - path: core/health-check/checks/local/network.js
384
+ hash: sha256:94b55dd70fbbe6625a57747350195fb1c81838e473a7dc2d8687355bc8a23f6c
385
+ type: core
386
+ size: 4331
387
+ - path: core/health-check/checks/local/npm-install.js
388
+ hash: sha256:cc45509e10675a85dc8a6730c3880cecd4edd5efb6f77fa56bbbd2aee9dbd6f6
389
+ type: core
390
+ size: 3844
391
+ - path: core/health-check/checks/local/shell-environment.js
392
+ hash: sha256:da464ddde8be76e000c215780e889d8e56e146e3e26b9fa369215211c941307f
393
+ type: core
394
+ size: 3247
395
+ - path: core/health-check/checks/project/agent-config.js
396
+ hash: sha256:9b5e3340b11a6f86921f1f1ddf7ae2cc5954ef1973a510c913e447c016e55942
397
+ type: core
398
+ size: 4744
399
+ - path: core/health-check/checks/project/dependencies.js
400
+ hash: sha256:9fdd2b244b8a7de4d043af818ebd320c7d039a494e2b376ec9778bc376b33c87
401
+ type: core
402
+ size: 4383
403
+ - path: core/health-check/checks/project/framework-config.js
404
+ hash: sha256:98d2a9bccd40528db4f1654f0b671ccd1aa841343a279b4db443e2cb38d6997a
405
+ type: core
406
+ size: 4046
407
+ - path: core/health-check/checks/project/grimoire-directory.js
408
+ hash: sha256:ddef57703588daa185ba76c4106a866098351408a62ec284164fd4d589d99bb7
409
+ type: core
410
+ size: 4251
411
+ - path: core/health-check/checks/project/index.js
412
+ hash: sha256:41248adb3fbd1c70053d9b36a5f58ded7ca1fb38622046d20893f615cd5bb8ed
413
+ type: core
414
+ size: 960
415
+ - path: core/health-check/checks/project/node-version.js
416
+ hash: sha256:1427b22de48d8be3cc0e8772925554b7d99d46f11f379d5bcf774c85efb5d779
417
+ type: core
418
+ size: 4698
419
+ - path: core/health-check/checks/project/package-json.js
420
+ hash: sha256:4b2d67fc51d7d39ce7a439719aa70680f45547f914f125d2114c922d55a500fb
421
+ type: core
422
+ size: 2960
423
+ - path: core/health-check/checks/project/task-definitions.js
424
+ hash: sha256:92e11193b0124629251b0870840e4355613135378cd07346c4d10ec4ab030774
425
+ type: core
426
+ size: 5095
427
+ - path: core/health-check/checks/project/workflow-dependencies.js
428
+ hash: sha256:b48f705b15787ea6fe7bcb55041947478368856ec548bea88c48e882cf466ba1
429
+ type: core
430
+ size: 5797
431
+ - path: core/health-check/checks/repository/branch-protection.js
432
+ hash: sha256:1b5f25a97bfde65ef6d66fb19464b4ec4e77c3fdba4d446c860888adf526208e
433
+ type: core
434
+ size: 2976
435
+ - path: core/health-check/checks/repository/commit-history.js
436
+ hash: sha256:e858d88f9eae90ba8bfb8109b76d52a6f5e75f232765aa483c8e3f1d2098d70c
437
+ type: core
438
+ size: 3713
439
+ - path: core/health-check/checks/repository/conflicts.js
440
+ hash: sha256:698f6a319a4b65e25ee8ba035cb17c116d5d3558235c2c3d9634915b24a6c3b9
441
+ type: core
442
+ size: 3952
443
+ - path: core/health-check/checks/repository/git-repo.js
444
+ hash: sha256:7655c7fd8d61d6ea37f10198897fe4b648ec23dd85b69a4958cc0a10b4f1e0fb
445
+ type: core
446
+ size: 4119
447
+ - path: core/health-check/checks/repository/git-status.js
448
+ hash: sha256:2f1628506be7edd6bc318ddc51a75e19f328b40293f849436a74e1ed083fdc16
449
+ type: core
450
+ size: 4076
451
+ - path: core/health-check/checks/repository/gitignore.js
452
+ hash: sha256:18feb54ffc8df32311e5dce86675a48f969447f43e57a343ab8e0804dbdcb705
453
+ type: core
454
+ size: 5225
455
+ - path: core/health-check/checks/repository/index.js
456
+ hash: sha256:0ace3557d6498ebb2ed7bc2af7dbcd6e6e0b76dc51274f973c17b2590f0fcaa5
457
+ type: core
458
+ size: 906
459
+ - path: core/health-check/checks/repository/large-files.js
460
+ hash: sha256:363750499e41bdacd32391fcf6d845ec41e7633612113f5e9d5636c937119fdb
461
+ type: core
462
+ size: 5180
463
+ - path: core/health-check/checks/repository/lockfile-integrity.js
464
+ hash: sha256:87c4fed2cea82cdd54a9f13760332a19a8ad966e0e5f7b9ef9d35750d0d826e4
465
+ type: core
466
+ size: 4386
467
+ - path: core/health-check/checks/services/api-endpoints.js
468
+ hash: sha256:05c0f86aafa91e37b339f9de8ab613bb8014ad012398e11a85b3315ed5106eae
469
+ type: core
470
+ size: 4332
471
+ - path: core/health-check/checks/services/claude-code.js
472
+ hash: sha256:c2c7abbce907fdebc445d050495b7b5e18e49eb5e41badfcc7b6310b013b0f92
473
+ type: core
474
+ size: 3611
475
+ - path: core/health-check/checks/services/gemini-cli.js
476
+ hash: sha256:9ba5ec8ce48a274ec96c3da609c0d0beb835e7ed260f34bf6513bd83bb8e8897
477
+ type: core
478
+ size: 7230
479
+ - path: core/health-check/checks/services/github-cli.js
480
+ hash: sha256:02e17aa2a51552019e5c1d4b586fd7608c1b3adf78c496c8c16f92eb83c0c97d
481
+ type: core
482
+ size: 2896
483
+ - path: core/health-check/checks/services/index.js
484
+ hash: sha256:644e16228e6bb669749f7e850e6c54a4370a98e429d8ec72fa7a6a573227b1bc
485
+ type: core
486
+ size: 669
487
+ - path: core/health-check/checks/services/mcp-integration.js
488
+ hash: sha256:fe29f9b072315888fb794869766cc2f73158e13b460a77ba4c1da3f6302b6271
489
+ type: core
490
+ size: 3375
491
+ - path: core/health-check/engine.js
492
+ hash: sha256:266d7b4c9103f9555cb38b4b1f4aaa2fc36ca83267ab4f687e5d959c80aa91c1
493
+ type: core
494
+ size: 11028
495
+ - path: core/health-check/healers/backup-manager.js
496
+ hash: sha256:3ba22e4bbc482781b6f90770c58712c511eb605f1e1b5ed0cc8ed5b1656f2ca4
497
+ type: core
498
+ size: 8640
499
+ - path: core/health-check/healers/index.js
500
+ hash: sha256:e5707e3ab6f579f1b38ec8ec3f9180d2e467f9cdff6ba8072e78120ceb31beda
501
+ type: core
502
+ size: 8907
503
+ - path: core/health-check/index.js
504
+ hash: sha256:99f58b20f066b8d6c6a6f764ecd4f37972ca9214ee3947d438b180289077b927
505
+ type: core
506
+ size: 10283
507
+ - path: core/health-check/reporters/console.js
508
+ hash: sha256:3bb29b81db070265ba19db5d3db057a2e3661d803f877d7b4c457bda7b5f3d95
509
+ type: core
510
+ size: 7951
511
+ - path: core/health-check/reporters/index.js
512
+ hash: sha256:9353716ad283d72bda9f49fd629d3295b789d71f16da75f35dd88205c4a75edc
513
+ type: core
514
+ size: 3200
515
+ - path: core/health-check/reporters/json.js
516
+ hash: sha256:e64a5614646f0ec90235e94123969ca4fc5ac417850898213418c6e56f14b911
517
+ type: core
518
+ size: 7077
519
+ - path: core/health-check/reporters/markdown.js
520
+ hash: sha256:2fe654e98a420ffc3ae74c9eda670a8e39dfad9ee37ebe16f5665dd87a22fc4f
521
+ type: core
522
+ size: 7776
523
+ - path: core/ideation/ideation-engine.js
524
+ hash: sha256:0105758bf37d04f847d65276a62c8ca1c53c28d3d9e4ae4c95a0f56b2b628886
525
+ type: core
526
+ size: 22875
527
+ - path: core/ids/circuit-breaker.js
528
+ hash: sha256:1b35331ba71a6ce17869bab255e087fc540291243f9884fc21ed89f7efc122a4
529
+ type: core
530
+ size: 4235
531
+ - path: core/ids/framework-governor.js
532
+ hash: sha256:e588056ce04213b3ff41d6f9371bfaca30cd4612583e02afbecc8283cd7997b1
533
+ type: core
534
+ size: 18059
535
+ - path: core/ids/gates/g1-epic-creation.js
536
+ hash: sha256:ba7c342b176f38f2c80cb141fe820b9a963a1966e33fef3a4ec568363b011c5f
537
+ type: core
538
+ size: 2802
539
+ - path: core/ids/gates/g2-story-creation.js
540
+ hash: sha256:cb6312358a3d1c92a0094d25861e0747d0c1d63ffb08c82d8ed0a115a73ca1c5
541
+ type: core
542
+ size: 3807
543
+ - path: core/ids/gates/g3-story-validation.js
544
+ hash: sha256:7b24912d9e80c5ca52d11950b133df6782b1c0c0914127ccef0dc8384026b4ae
545
+ type: core
546
+ size: 5236
547
+ - path: core/ids/gates/g4-dev-context.js
548
+ hash: sha256:a0fdd59eb0c3a8a59862397b1af5af84971ce051929ae9d32361b7ca99a444fb
549
+ type: core
550
+ size: 4399
551
+ - path: core/ids/incremental-decision-engine.js
552
+ hash: sha256:257b1f67f6df8eb91fe0a95405563611b8bf2f836cbca2398a0a394e40d6c219
553
+ type: core
554
+ size: 21404
555
+ - path: core/ids/index.js
556
+ hash: sha256:0a74a3a50fdc4d56c8b107e1c1aa0cf9243a14f58435c74cf20fc3e5df0099d2
557
+ type: core
558
+ size: 3630
559
+ - path: core/ids/README.md
560
+ hash: sha256:06b7ef1756c069d9aee5150ad90a939321ce792f3401b575331117625a953fbb
561
+ type: core
562
+ size: 4435
563
+ - path: core/ids/registry-healer.js
564
+ hash: sha256:27c26b15d52bf7d14e73bffd422563dc1dba2f249da9a580399586d61f85ab66
565
+ type: core
566
+ size: 26189
567
+ - path: core/ids/registry-loader.js
568
+ hash: sha256:e98cee3af79091e972b379786345d15ae451afbcba968c10fb3da9bf981bb363
569
+ type: core
570
+ size: 7170
571
+ - path: core/ids/registry-updater.js
572
+ hash: sha256:79c73e0c5dfb8b3d69f9244bc993638f57a47f21c39ec1cec7c472da6efe74a8
573
+ type: core
574
+ size: 22361
575
+ - path: core/ids/verification-gate.js
576
+ hash: sha256:96050661c90fa52bfc755911d02c9194ec35c00e71fc6bbc92a13686dd53bb91
577
+ type: core
578
+ size: 8823
579
+ - path: core/index.esm.js
580
+ hash: sha256:da21e85373d96c2150b4ef6aec65429b2ea8586f26c87112a819108c573cfaf8
581
+ type: core
582
+ size: 1503
583
+ - path: core/index.js
584
+ hash: sha256:abcac5a40c2205d38f5e8e579ae3c72d65a78b2d8ab69bbbffcadcf013b76eab
585
+ type: core
586
+ size: 2602
587
+ - path: core/manifest/manifest-generator.js
588
+ hash: sha256:b9b098f3c0903f269bd44a1a12b35ba403f7a99b7ac31346f95bd3a681faf830
589
+ type: core
590
+ size: 11358
591
+ - path: core/manifest/manifest-validator.js
592
+ hash: sha256:9a220cd908c84214991a5642cec4807e5197404072e44d183a5df1ba543aaa7d
593
+ type: core
594
+ size: 11305
595
+ - path: core/mcp/config-migrator.js
596
+ hash: sha256:07fe3537e5c3803924962827c4b0d078beca498f1f00c357de037f3d8cec00df
597
+ type: core
598
+ size: 9867
599
+ - path: core/mcp/global-config-manager.js
600
+ hash: sha256:ac37bdf7246ee58536631af43c56816a62a1ffcbe8ea04c6cd538a188a15984b
601
+ type: core
602
+ size: 8934
603
+ - path: core/mcp/index.js
604
+ hash: sha256:4f9be6c05a2d6d305f6a3c0130e5e1eca18feb41de47245e51ebe1c9a32ffa7f
605
+ type: core
606
+ size: 716
607
+ - path: core/mcp/os-detector.js
608
+ hash: sha256:f9ac373c7183cd1f83ce386cbd2734e247710c74b56a675d8517e2d37ced12db
609
+ type: core
610
+ size: 3853
611
+ - path: core/mcp/symlink-manager.js
612
+ hash: sha256:5cbe12f9c3f4210a4e4eb69c6aec1afb0d780a57de70030da9b327c7fc82f306
613
+ type: core
614
+ size: 10398
615
+ - path: core/memory/__tests__/active-modules.verify.js
616
+ hash: sha256:614c281d45e02849fbad2672c8439556e4dced83945fe60eb4ea0280f346a499
617
+ type: core
618
+ size: 8868
619
+ - path: core/memory/gotchas-memory.js
620
+ hash: sha256:3c511391d99f9013d3013da2b4f06cb98e4fe28c0f8cc9414173572a0eed0006
621
+ type: core
622
+ size: 33108
623
+ - path: core/migration/migration-config.yaml
624
+ hash: sha256:64dbe75474f112612b5e85557b641a40b755de7648ea20437166031340759075
625
+ type: core
626
+ size: 1612
627
+ - path: core/migration/module-mapping.yaml
628
+ hash: sha256:2143550fbd67602745a4f98a0b73fc6bdfabd676965890465974e7ca7eb4f636
629
+ type: core
630
+ size: 1824
631
+ - path: core/orchestration/agent-invoker.js
632
+ hash: sha256:22421267ba4cdcfa73d8fabc3190c61abb064f75bf06ca444bfd1ec3f9b9965f
633
+ type: core
634
+ size: 16573
635
+ - path: core/orchestration/bob-orchestrator.js
636
+ hash: sha256:6071515348e5dd0a9b387463adb87863b3387443ba5986b2ccc12ebd67e507ce
637
+ type: core
638
+ size: 35863
639
+ - path: core/orchestration/bob-status-writer.js
640
+ hash: sha256:649f357d800348fa7bfa54c0bd0e73e94c63e8555d772eb106d001bee699d8d7
641
+ type: core
642
+ size: 13650
643
+ - path: core/orchestration/bob-surface-criteria.yaml
644
+ hash: sha256:9e248bc470f88e8aff85dc247567d0c91c7ea40204f32230817eca3505d53ef4
645
+ type: core
646
+ size: 8119
647
+ - path: core/orchestration/brownfield-handler.js
648
+ hash: sha256:67c8120eba4faeb92b7429122e60de7c160f692add2364fcb49f79938f1566bb
649
+ type: core
650
+ size: 26080
651
+ - path: core/orchestration/checklist-runner.js
652
+ hash: sha256:ece6606421c30bd58da2ce607ff3b30776d820346a5ed9ea960cc20f07788ff6
653
+ type: core
654
+ size: 10095
655
+ - path: core/orchestration/cli-commands.js
656
+ hash: sha256:43fa438429e810ebbe573f530dd9234cd20196e71ea29458e9bd8a2838661771
657
+ type: core
658
+ size: 19311
659
+ - path: core/orchestration/condition-evaluator.js
660
+ hash: sha256:8bf565cf56194340ff4e1d642647150775277bce649411d0338faa2c96106745
661
+ type: core
662
+ size: 10845
663
+ - path: core/orchestration/context-manager.js
664
+ hash: sha256:f58d4aac904ece74a06d42413dbc115993ee9c45c2ff22efeec103d9b9f0b098
665
+ type: core
666
+ size: 16852
667
+ - path: core/orchestration/dashboard-integration.js
668
+ hash: sha256:0bf1763b2fa6f4570268919f2b870fe8858c8675e85f5ccf7e94db874741df06
669
+ type: core
670
+ size: 15130
671
+ - path: core/orchestration/data-lifecycle-manager.js
672
+ hash: sha256:6202070c347d9e22540581353034b2b28eabb7bedbfb74ccb3cc974e6f9f5582
673
+ type: core
674
+ size: 10885
675
+ - path: core/orchestration/epic-context-accumulator.js
676
+ hash: sha256:4f342f7fc05f404de2b899358f86143106737b56d6c486c98e988a67d420078b
677
+ type: core
678
+ size: 12310
679
+ - path: core/orchestration/execution-profile-resolver.js
680
+ hash: sha256:bb35f1c16c47c9306128c5f3e6c90df3ed91f9358576ea97a59007b74f5e9927
681
+ type: core
682
+ size: 2696
683
+ - path: core/orchestration/executor-assignment.js
684
+ hash: sha256:0b53f25290fa50e30b70201cb917327024f3f0d8750cddfc7d73169a0deff103
685
+ type: core
686
+ size: 11371
687
+ - path: core/orchestration/executors/epic-3-executor.js
688
+ hash: sha256:a22e52b79cad68a265a9f638f9b7002164382da9d046471f129f4c071154f726
689
+ type: core
690
+ size: 6154
691
+ - path: core/orchestration/executors/epic-4-executor.js
692
+ hash: sha256:a17004bbff2fd10c6765294ce16150d3da28d2c8ba6210e89090476a5af62bdf
693
+ type: core
694
+ size: 6858
695
+ - path: core/orchestration/executors/epic-5-executor.js
696
+ hash: sha256:da79ad7e3b16966caf89e69f81c3273a2f8ca39c23b4d11471677910fa6079b4
697
+ type: core
698
+ size: 8545
699
+ - path: core/orchestration/executors/epic-6-executor.js
700
+ hash: sha256:b88e733210795b02a3f6760d58e3d9f7538790a2a542b29669fc934dc805851b
701
+ type: core
702
+ size: 6786
703
+ - path: core/orchestration/executors/epic-executor.js
704
+ hash: sha256:f2b20cd8cc4f3473bfcc7afdc0bc20e21665bab92274433ede58eabc4691a6b9
705
+ type: core
706
+ size: 5860
707
+ - path: core/orchestration/executors/index.js
708
+ hash: sha256:21f66b6d59c67079bfd6f30dcb675bab60d8a3b6283c24246497d641beed1f57
709
+ type: core
710
+ size: 1945
711
+ - path: core/orchestration/gate-evaluator.js
712
+ hash: sha256:4a6fc3af2384265ef637122a27b5957b9a1a5a60a40378ec45870be40959401c
713
+ type: core
714
+ size: 15815
715
+ - path: core/orchestration/gemini-model-selector.js
716
+ hash: sha256:2fe54c401ae60c0b5dc07f74c7a464992a0558b10c0b61f183c06943441d0d57
717
+ type: core
718
+ size: 4383
719
+ - path: core/orchestration/greenfield-handler.js
720
+ hash: sha256:408a12182f4192447caacfa4e5bd75bab9c0f0fd0a3c2b17af6b4ba7c29c0d80
721
+ type: core
722
+ size: 35280
723
+ - path: core/orchestration/index.js
724
+ hash: sha256:c974d4d2518ebcfe1092199442ebe3929978463e3638e71dc3c4bf0b3396e89e
725
+ type: core
726
+ size: 8841
727
+ - path: core/orchestration/lock-manager.js
728
+ hash: sha256:126370238f1402b9ef979aca74fbd6dbe419bdacd5f3b03f62679cf6a22b610d
729
+ type: core
730
+ size: 8669
731
+ - path: core/orchestration/master-orchestrator.js
732
+ hash: sha256:a2b36ba2ee6dbe54c09674aaa4af76f22da510f5a2abec0b349bce11df9316e5
733
+ type: core
734
+ size: 54436
735
+ - path: core/orchestration/message-formatter.js
736
+ hash: sha256:b7413c04fa22db1c5fc2f5c2aa47bb8ca0374e079894a44df21b733da6c258ae
737
+ type: core
738
+ size: 8343
739
+ - path: core/orchestration/parallel-executor.js
740
+ hash: sha256:17b9669337d080509cb270eb8564a0f5684b2abbad1056f81b6947bb0b2b594f
741
+ type: core
742
+ size: 5820
743
+ - path: core/orchestration/recovery-handler.js
744
+ hash: sha256:78ba30fb4f23fa71c6371bf2ed4897e9ed0268688049613ca6b4836077c35b00
745
+ type: core
746
+ size: 24361
747
+ - path: core/orchestration/session-state.js
748
+ hash: sha256:daa0d3f349174a66b4ff038ea01b95a78910e57c49ebb5e1d3fd388aaa9ad3b5
749
+ type: core
750
+ size: 24738
751
+ - path: core/orchestration/skill-dispatcher.js
752
+ hash: sha256:47d71cb6f82f18a59d62d7f4d9750ed96937d597f5e308931123881b92b2bc14
753
+ type: core
754
+ size: 10600
755
+ - path: core/orchestration/subagent-prompt-builder.js
756
+ hash: sha256:efd6769fac7a3408884e0e8410bf9e57ee3e6dae65a68c4045651890f6d8667e
757
+ type: core
758
+ size: 11422
759
+ - path: core/orchestration/surface-checker.js
760
+ hash: sha256:92e9d5bea78c3db4940c39f79e537821b36451cd524d69e6b738272aa63c08b6
761
+ type: core
762
+ size: 12849
763
+ - path: core/orchestration/task-complexity-classifier.js
764
+ hash: sha256:33b3b7c349352d607c156e0018c508f0869a1c7d233d107bed194a51bc608c93
765
+ type: core
766
+ size: 3365
767
+ - path: core/orchestration/tech-stack-detector.js
768
+ hash: sha256:074c52757e181cc1e344b26ae191ac67488d18e9da2b06b5def23abb6c64c056
769
+ type: core
770
+ size: 16494
771
+ - path: core/orchestration/terminal-spawner.js
772
+ hash: sha256:e2d0084622af8481444a58feef627cef04bbfa3632edb2e7887c39fbb3efdde0
773
+ type: core
774
+ size: 31523
775
+ - path: core/orchestration/workflow-executor.js
776
+ hash: sha256:079831a1c9fd4e86eafb24b5c4534a674e9646f5917d2d2cf79a05140d9abd58
777
+ type: core
778
+ size: 36356
779
+ - path: core/orchestration/workflow-orchestrator.js
780
+ hash: sha256:2ed1b6027e4ee085389648ddc3249ead47b1eef94b872abb8b53b7ed83b9a693
781
+ type: core
782
+ size: 30741
783
+ - path: core/permissions/__tests__/permission-mode.test.js
784
+ hash: sha256:5df2ebf76231c09c9fbe33eb1d7968d3c7da8b20fabe01bbe696a9184e8cd603
785
+ type: core
786
+ size: 8830
787
+ - path: core/permissions/index.js
788
+ hash: sha256:9d1132559a0af3bb868028636cdb9cfb9c16024b9f4cb47730895e39c1624877
789
+ type: core
790
+ size: 3985
791
+ - path: core/permissions/operation-guard.js
792
+ hash: sha256:f9b1b1bd547145c0d8a0f47534af0678ee852df6236acd05c53e479cb0e3f0bd
793
+ type: core
794
+ size: 9018
795
+ - path: core/permissions/permission-mode.js
796
+ hash: sha256:506b9abbb842b8f69d23d93805515c51492b159ca58fd18d527f585457f0caa0
797
+ type: core
798
+ size: 7211
799
+ - path: core/quality-gates/base-layer.js
800
+ hash: sha256:9a9a3921da08176b0bd44f338a59abc1f5107f3b1ee56571e840bf4e8ed233f4
801
+ type: core
802
+ size: 2982
803
+ - path: core/quality-gates/checklist-generator.js
804
+ hash: sha256:7f2800f6e2465a846c9bef8a73403e7b91bf18d1d1425804d31244bd883ec55a
805
+ type: core
806
+ size: 9003
807
+ - path: core/quality-gates/focus-area-recommender.js
808
+ hash: sha256:ea77eccdc2e7815d322a3cde86624eab910ac943c287d3ecf62a32adef886067
809
+ type: core
810
+ size: 10787
811
+ - path: core/quality-gates/human-review-orchestrator.js
812
+ hash: sha256:e6b19b222ccff9ab0cbbf58cced7f6c4b2c55a395df333d899353ee5abb73606
813
+ type: core
814
+ size: 16221
815
+ - path: core/quality-gates/layer1-precommit.js
816
+ hash: sha256:250b62740b473383e41b371bb59edddabd8a312f5f48a5a8e883e6196a48b8f3
817
+ type: core
818
+ size: 9393
819
+ - path: core/quality-gates/layer2-pr-automation.js
820
+ hash: sha256:af31e7ac60b74b52ee983d0fcff7457042eea553b6127538cab41eb94eaee8e0
821
+ type: core
822
+ size: 9176
823
+ - path: core/quality-gates/layer3-human-review.js
824
+ hash: sha256:82546d7a76d6a86d7caec812b287c55d7a41dfc9d0f42eeb0b52e18cc0db3f02
825
+ type: core
826
+ size: 9529
827
+ - path: core/quality-gates/notification-manager.js
828
+ hash: sha256:2849f9a32cc2b2cbd1a44ba3846423e714559d36465396a6f161e8bef68cea78
829
+ type: core
830
+ size: 16377
831
+ - path: core/quality-gates/quality-gate-config.yaml
832
+ hash: sha256:055ef0c8bffc4a91ff676c6830fc86a44cb999c6f473f203a79b9a5e85a38872
833
+ type: core
834
+ size: 1986
835
+ - path: core/quality-gates/quality-gate-manager.js
836
+ hash: sha256:5ae78d1099f6ba5df99551804f958208e9b1ed3f81acb1813eb4dae3e2756fa4
837
+ type: core
838
+ size: 17722
839
+ - path: core/README.md
840
+ hash: sha256:227b1c6b94c987e161d1adb08e8c6d4715d66ccd28e7ff99d5dae0e85c1f6fc8
841
+ type: core
842
+ size: 7405
843
+ - path: core/registry/build-registry.js
844
+ hash: sha256:02b474dfe83fda6b48475f706c635371df9a333cf5df5401ead5ee4e9fe07189
845
+ type: core
846
+ size: 13178
847
+ - path: core/registry/README.md
848
+ hash: sha256:146126cf16f5600368351328c0efe1d850eaa460f30d4b125729e849315a11ed
849
+ type: core
850
+ size: 4804
851
+ - path: core/registry/registry-loader.js
852
+ hash: sha256:9906e4f5fe8830587489861b6d135290a2c11bcd09637f7a2eb85afacf7a21de
853
+ type: core
854
+ size: 7989
855
+ - path: core/registry/registry-schema.json
856
+ hash: sha256:833d5e31060a2bfd53501973b2b58720be763ba0ea35b30fe8f69a93db04ac5b
857
+ type: core
858
+ size: 5294
859
+ - path: core/registry/service-registry.json
860
+ hash: sha256:5056528ba2d9eb4031375746cf6660e75f8488f774ebb8583ac009b81a8afb0d
861
+ type: core
862
+ size: 158175
863
+ - path: core/registry/validate-registry.js
864
+ hash: sha256:fdb3f9507024019d10d070f20908cccc2b62a5bc3361276fed1b3d7c122a14de
865
+ type: core
866
+ size: 9177
867
+ - path: core/session/context-detector.js
868
+ hash: sha256:d841e72deffb923029d99c7af0b661f53b22a9a01a623a9806d9efa096b6a12b
869
+ type: core
870
+ size: 7224
871
+ - path: core/session/context-loader.js
872
+ hash: sha256:b942f7fe318c744b4bf9ceb97e297e0f7f4b6c92a534dfdbc90cc5c7546b6c0c
873
+ type: core
874
+ size: 13735
875
+ - path: core/synapse/context/context-builder.js
876
+ hash: sha256:121cd0a1df8a44098831cd4335536e8facf4e65b8aec48f4ce9c2d432dc6252a
877
+ type: core
878
+ size: 1013
879
+ - path: core/synapse/context/context-tracker.js
880
+ hash: sha256:3b09f8323fab171e3aaa7a3a079b6cd65f6fd5775e661c24c295a4775cb31a68
881
+ type: core
882
+ size: 5581
883
+ - path: core/synapse/diagnostics/collectors/consistency-collector.js
884
+ hash: sha256:65f4255f87c9900400649dc8b9aedaac4851b5939d93e127778bd93cee99db12
885
+ type: core
886
+ size: 5933
887
+ - path: core/synapse/diagnostics/collectors/hook-collector.js
888
+ hash: sha256:9cd342cc0c2253296f931a977b20408370c1e1bebe02a22a757418d4d0630884
889
+ type: core
890
+ size: 3762
891
+ - path: core/synapse/diagnostics/collectors/manifest-collector.js
892
+ hash: sha256:3dc895eb94485320ecbaca3a1d29e3776cfb691dd7dcc71cf44b34af30e8ebb6
893
+ type: core
894
+ size: 2612
895
+ - path: core/synapse/diagnostics/collectors/output-analyzer.js
896
+ hash: sha256:e6846b1aba0a6cba17c297a871861d4f8199d7500220bff296a6a3291e32493e
897
+ type: core
898
+ size: 4968
899
+ - path: core/synapse/diagnostics/collectors/pipeline-collector.js
900
+ hash: sha256:8655b6240e2f54b70def1a8c2fae00d40e2615cb95fd7ca0d64c2e0a6dfe3b73
901
+ type: core
902
+ size: 2198
903
+ - path: core/synapse/diagnostics/collectors/quality-collector.js
904
+ hash: sha256:30ae299eab6d569d09afe3530a5b2f1ff35ef75366a1ab56a9e2a57d39d3611c
905
+ type: core
906
+ size: 8583
907
+ - path: core/synapse/diagnostics/collectors/relevance-matrix.js
908
+ hash: sha256:f92c4f7061dc82eed4310a27b69eade33d3015f9beb1bed688601a2dccbad22e
909
+ type: core
910
+ size: 4959
911
+ - path: core/synapse/diagnostics/collectors/safe-read-json.js
912
+ hash: sha256:dc7bcd13779207ad67b1c3929b7e1e0ccfa3563f3458c20cad28cb1922e9a74c
913
+ type: core
914
+ size: 748
915
+ - path: core/synapse/diagnostics/collectors/session-collector.js
916
+ hash: sha256:a116d884d6947ddc8e5f3def012d93696576c584c4fde1639b8d895924fc09ea
917
+ type: core
918
+ size: 2835
919
+ - path: core/synapse/diagnostics/collectors/timing-collector.js
920
+ hash: sha256:2523ce93f863a28f798d992c4f2fab041c91a09413b3186fd290e6035b391587
921
+ type: core
922
+ size: 3605
923
+ - path: core/synapse/diagnostics/collectors/uap-collector.js
924
+ hash: sha256:dd025894f8f0d3bd22a147dbc0debef8b83e96f3c59483653404b3cd5a01d5aa
925
+ type: core
926
+ size: 2378
927
+ - path: core/synapse/diagnostics/report-formatter.js
928
+ hash: sha256:7a318f18fbc7db8e45d4c3c29a1f8040a2c15c4331a2202dd9de3fa0d9b3e886
929
+ type: core
930
+ size: 16422
931
+ - path: core/synapse/diagnostics/synapse-diagnostics.js
932
+ hash: sha256:de9dffce0e380637027cbd64b062d3eeffc37e42a84a337e5758fbef39fe3a00
933
+ type: core
934
+ size: 3812
935
+ - path: core/synapse/domain/domain-loader.js
936
+ hash: sha256:af788f9da956b89eef1e5eb4ef4efdf05ca758c8969a2c375f568119495ebc05
937
+ type: core
938
+ size: 8122
939
+ - path: core/synapse/engine.js
940
+ hash: sha256:65e9c48d8ba7991fcd32bb1ea0bd087ce6d709ebf7f5bc4fd4b2e947ee5ddf0f
941
+ type: core
942
+ size: 12679
943
+ - path: core/synapse/layers/l0-constitution.js
944
+ hash: sha256:2123a6a44915aaac2a6bbd26c67c285c9d1e12b50fe42a8ada668306b07d1c4a
945
+ type: core
946
+ size: 2383
947
+ - path: core/synapse/layers/l1-global.js
948
+ hash: sha256:21f6969e6d64e9a85c876be6799db4ca7d090f0009057f4a06ead8da12392d45
949
+ type: core
950
+ size: 3131
951
+ - path: core/synapse/layers/l2-agent.js
952
+ hash: sha256:a8677dc58ae7927c5292a4b52883bbc905c8112573b8b8631f0b8bc01ea2b6e6
953
+ type: core
954
+ size: 2721
955
+ - path: core/synapse/layers/l3-workflow.js
956
+ hash: sha256:496cbd71d7dac9c1daa534ffac45c622d0c032f334fedf493e9322a565b2b181
957
+ type: core
958
+ size: 2782
959
+ - path: core/synapse/layers/l4-task.js
960
+ hash: sha256:30df70c04b16e3aff95899211ef6ae3d9f0a8097ebdc7de92599fc6cb792e5f0
961
+ type: core
962
+ size: 2140
963
+ - path: core/synapse/layers/l5-squad.js
964
+ hash: sha256:fabc2bcb01543ef7d249631da02297d67e42f4d0fcf9e159b79564793ce8f7bb
965
+ type: core
966
+ size: 7408
967
+ - path: core/synapse/layers/l6-keyword.js
968
+ hash: sha256:8e5405999a2ce2f3ca4e62e863cf702ba27448914241f5eb8f02760bc7477523
969
+ type: core
970
+ size: 4513
971
+ - path: core/synapse/layers/l7-star-command.js
972
+ hash: sha256:3b8372ac1c51830c1ef560b1012b112a3559651b0750e42f2037f7fe9e6787d6
973
+ type: core
974
+ size: 4672
975
+ - path: core/synapse/layers/layer-processor.js
976
+ hash: sha256:73cb0e5b4bada80d8e256009004679e483792077fac4358c6466cd77136f79fa
977
+ type: core
978
+ size: 2881
979
+ - path: core/synapse/memory/memory-bridge.js
980
+ hash: sha256:5f039ad6aa1ab15250efbb2eb20346b95ba545c6d9c270ee7abf96e18930db1e
981
+ type: core
982
+ size: 6771
983
+ - path: core/synapse/output/formatter.js
984
+ hash: sha256:fe4f6c2f6091defb6af66dad71db0640f919b983111087f8cc5821e3d44ca864
985
+ type: core
986
+ size: 16418
987
+ - path: core/synapse/runtime/hook-runtime.js
988
+ hash: sha256:86102a87c021c46310d16562123c4c47d98f2649631ec0817cf1b15de6b8ef42
989
+ type: core
990
+ size: 1529
991
+ - path: core/synapse/scripts/generate-constitution.js
992
+ hash: sha256:1ee17905853a5aef5146866f4bd0f88a1a87c63a92370d5be64aa4df403759f7
993
+ type: script
994
+ size: 6158
995
+ - path: core/synapse/session/session-manager.js
996
+ hash: sha256:6127c2ef1c6db83cfd5796443789964a8da72635b23b367fb351592c070d05dd
997
+ type: core
998
+ size: 11141
999
+ - path: core/synapse/utils/paths.js
1000
+ hash: sha256:bf8cf93c1a16295e7de055bee292e2778a152b6e7d6c648dbc054a4b04dffc10
1001
+ type: core
1002
+ size: 1464
1003
+ - path: core/synapse/utils/tokens.js
1004
+ hash: sha256:3b927daec51d0a791f3fe4ef9aafc362773450e7cf50eb4b6d8ae9011d70df9a
1005
+ type: core
1006
+ size: 573
1007
+ - path: core/ui/index.js
1008
+ hash: sha256:90f6a72040195d993846257fa68100d911e7847f02e866a0d78075acb6f5c8d3
1009
+ type: core
1010
+ size: 753
1011
+ - path: core/ui/observability-panel.js
1012
+ hash: sha256:f73bb7b80e60d8158c5044b13bb4dd4945270d3d44b8ac3e2c30635e5040f0f8
1013
+ type: core
1014
+ size: 8869
1015
+ - path: core/ui/panel-renderer.js
1016
+ hash: sha256:d51a8a9d1dd76ce6bc08d38eaf53f4f7df948cc4edc8e7f56d68c39522f64dc6
1017
+ type: core
1018
+ size: 9675
1019
+ - path: core/utils/output-formatter.js
1020
+ hash: sha256:8e0850a561866a1cbfa177d8325f400b0dde95f72eee80c1314e2589b45475e1
1021
+ type: core
1022
+ size: 8992
1023
+ - path: core/utils/security-utils.js
1024
+ hash: sha256:54fc94430cdd7489a1baef8164a7ff66ba19e4f2e3eecceaee99bae942c1cb6a
1025
+ type: core
1026
+ size: 9060
1027
+ - path: core/utils/yaml-validator.js
1028
+ hash: sha256:9a1ebf15ac8b1985b9f385603070b764e7744a02df863924a214f8a95c01f775
1029
+ type: core
1030
+ size: 10922
1031
+ - path: data/agent-config-requirements.yaml
1032
+ hash: sha256:24394a947bd960990ca658e2e7a251a3b167ba17607f8b533b15e5a18c5a4de8
1033
+ type: data
1034
+ size: 10982
1035
+ - path: data/entity-registry.yaml
1036
+ hash: sha256:4be19a86d98298fba120a9b36430e2a263ed1ba1a20993dd38db02b3b778c7d5
1037
+ type: data
1038
+ size: 289523
1039
+ - path: data/grimoire-kb.md
1040
+ hash: sha256:6d72c9e66094f3a92931b31a1e4f603cf71e4a47804689a6aff893ace958e105
1041
+ type: data
1042
+ size: 34392
1043
+ - path: data/learned-patterns.yaml
1044
+ hash: sha256:24ac0b160615583a0ff783d3da8af80b7f94191575d6db2054ec8e10a3f945dc
1045
+ type: data
1046
+ size: 68
1047
+ - path: data/tech-presets/_template.md
1048
+ hash: sha256:284b1cf07df1f1186ab426e240cdb344a99c28fd34f19ae02c7d6978b3979acb
1049
+ type: data
1050
+ size: 4468
1051
+ - path: data/tech-presets/nextjs-react.md
1052
+ hash: sha256:319f0a399effd3a2a91fe3c2a074d6f30d81fe55a7c41aed52ae5948f60c72aa
1053
+ type: data
1054
+ size: 22883
1055
+ - path: data/technical-preferences.md
1056
+ hash: sha256:c0ca32293bd65dc7d1a2f9e3f162693ed192d1bbed81e6b4c44456bd6b4fda8a
1057
+ type: data
1058
+ size: 2649
1059
+ - path: data/workflow-patterns.yaml
1060
+ hash: sha256:e6df98e1a0378dc6c1cf7fcff6b628630427275cacc2563294a17161d8f45bf6
1061
+ type: data
1062
+ size: 28062
1063
+ - path: data/workflow-state-schema.yaml
1064
+ hash: sha256:516035499047761473e3f32b5be6cb99df36af0383785f7cc8cfa09c0ecbfca1
1065
+ type: data
1066
+ size: 5359
1067
+ - path: development/agent-teams/team-all.yaml
1068
+ hash: sha256:54fb08a265beb58e8c50a0debfab7c4c9d62033f992ae0a7a244bdd0e72b81c6
1069
+ type: development
1070
+ size: 327
1071
+ - path: development/agent-teams/team-fullstack.yaml
1072
+ hash: sha256:887d87fd560c592a18619ea067e611b4fa75ea5359a954be31bd6502b12da038
1073
+ type: development
1074
+ size: 390
1075
+ - path: development/agent-teams/team-ide-minimal.yaml
1076
+ hash: sha256:600b6795116fd74e66f3544679667fa4b6a546c88eaf5e30b6182b77ba341692
1077
+ type: development
1078
+ size: 167
1079
+ - path: development/agent-teams/team-no-ui.yaml
1080
+ hash: sha256:fcc25359c0454dc3a6dd3acb35185956daa9cf17ac1a779e8c1f3a8506ac3d63
1081
+ type: development
1082
+ size: 230
1083
+ - path: development/agent-teams/team-qa-focused.yaml
1084
+ hash: sha256:1a1ba8e2816d801cbcce2013a9062d16713a09f70582ea399ed10751bc5b1557
1085
+ type: development
1086
+ size: 5012
1087
+ - path: development/agents/analyst.md
1088
+ hash: sha256:21e23f18634774adddac9d7ebdddaec378af3cc289c99509f59ab3f8eb6381e4
1089
+ type: agent
1090
+ size: 10439
1091
+ - path: development/agents/architect.md
1092
+ hash: sha256:f74e85225e2f7fe9e0cc55d78dbde47108a9ccc97c0d520dd8a5396e35f9f9a4
1093
+ type: agent
1094
+ size: 19439
1095
+ - path: development/agents/caravaggio.md
1096
+ hash: sha256:d20770d843793903b30be7a5c421c72677440e66fa866e7969be011aac4bad34
1097
+ type: agent
1098
+ size: 903
1099
+ - path: development/agents/data-engineer.md
1100
+ hash: sha256:8392aad3d9fd960664b0a5a7814889de6cffb976cf836bd710f8f23419ffa8b0
1101
+ type: agent
1102
+ size: 20766
1103
+ - path: development/agents/dev.md
1104
+ hash: sha256:491301a022202f31c32cf1f377b4347c4d27004db377abe053421815765b6cf1
1105
+ type: agent
1106
+ size: 23463
1107
+ - path: development/agents/devops.md
1108
+ hash: sha256:0b882600e11ec6128926996cd0446bac059a004071955ebe9bd8771705d7280c
1109
+ type: agent
1110
+ size: 20643
1111
+ - path: development/agents/frida.md
1112
+ hash: sha256:71d55d9d542989aa3aeeb1d6e700c428f5cd27f89e8ecfdadfbc6d3981c2703d
1113
+ type: agent
1114
+ size: 907
1115
+ - path: development/agents/grimoire-master.md
1116
+ hash: sha256:5309dfcdf17b7a451a575f4fe71375d29d9eb06339ed3340876039520ced5c88
1117
+ type: agent
1118
+ size: 18059
1119
+ - path: development/agents/picasso.md
1120
+ hash: sha256:5a2894a05d15db653ecaea15ddfe8811a761b7fe6bde51ef899e972c3291c4a2
1121
+ type: agent
1122
+ size: 934
1123
+ - path: development/agents/pm.md
1124
+ hash: sha256:c75dc0a6d4b60cf3c6d882efee13c409b1b23dbdb212ae10f6982522d44c9129
1125
+ type: agent
1126
+ size: 15495
1127
+ - path: development/agents/po.md
1128
+ hash: sha256:1b8ad7887f3fb7a70c8ea0ae597ff0379f30d7557035d1a3d488c607584fb489
1129
+ type: agent
1130
+ size: 13110
1131
+ - path: development/agents/qa.md
1132
+ hash: sha256:01c8f10190b38fb21e6a203cc7fba8b9ec6399c74ab35ae498e32b1914192969
1133
+ type: agent
1134
+ size: 17828
1135
+ - path: development/agents/salvador.md
1136
+ hash: sha256:39ee2af0e9959fe27f55fa89738a6608aba4e8062a67dbe66db1eb79fa59d691
1137
+ type: agent
1138
+ size: 975
1139
+ - path: development/agents/sm.md
1140
+ hash: sha256:cccb378a8c650210fb8374307151472069c986c13447313bc17bef05dc76bb8a
1141
+ type: agent
1142
+ size: 11375
1143
+ - path: development/agents/squad-creator.md
1144
+ hash: sha256:97d21526a685408f4268c29894338ae41a8c186d59514b237fc80bb58701ca3a
1145
+ type: agent
1146
+ size: 12473
1147
+ - path: development/agents/tarsila.md
1148
+ hash: sha256:e9cc4a64708b0136726e0a19f99d89c9e62c31a1f800be5fe4ede74ec973ee94
1149
+ type: agent
1150
+ size: 958
1151
+ - path: development/agents/ux-design-expert.md
1152
+ hash: sha256:0951c434634e2d81b71e11e7009354a1973817425efa606ccf356c42aec223a0
1153
+ type: agent
1154
+ size: 18839
1155
+ - path: development/agents/van-gogh.md
1156
+ hash: sha256:f2871e14956f98bbf4cf6b234a8051196fd427ace8c06c46de42a33db8159345
1157
+ type: agent
1158
+ size: 916
1159
+ - path: development/agents/warhol.md
1160
+ hash: sha256:3adac88c57a5c1d0dbf5192467b63f024234adc8698e6816979e8079f896c411
1161
+ type: agent
1162
+ size: 929
1163
+ - path: development/checklists/agent-quality-gate.md
1164
+ hash: sha256:6b9836b5d8b39e3b7f520728e8471c7df74fdd90154f78c7423150fe27bec6d7
1165
+ type: checklist
1166
+ size: 16154
1167
+ - path: development/checklists/brownfield-compatibility-checklist.md
1168
+ hash: sha256:bfa01393f3c6705d1ef24b86d453b70f571538bfa3029d46860928390a99bf3f
1169
+ type: checklist
1170
+ size: 3393
1171
+ - path: development/checklists/self-critique-checklist.md
1172
+ hash: sha256:b24363851e8c0f8dbf6ea33e419c6e4de21aa1f410a47ee68f5d1dd391a5539a
1173
+ type: checklist
1174
+ size: 9183
1175
+ - path: development/data/decision-heuristics-framework.md
1176
+ hash: sha256:940511334f614178dd4ff893230a04cb49df2e26a491a056e61c1715ff2b2b88
1177
+ type: data
1178
+ size: 16863
1179
+ - path: development/data/quality-dimensions-framework.md
1180
+ hash: sha256:82444251b47006c9e22344f0f8d1b7f1f7c75113410ffa814e08c39d938f4afb
1181
+ type: data
1182
+ size: 8769
1183
+ - path: development/data/tier-system-framework.md
1184
+ hash: sha256:3f3470f38ce3369c181c898b20ffc7935070197f4005a2e9018c8500528bec84
1185
+ type: data
1186
+ size: 11120
1187
+ - path: development/README.md
1188
+ hash: sha256:a65916a49380cb7330f91e39f9d4d17ad6b68f7d42d18a658f67c1f6d9802d45
1189
+ type: development
1190
+ size: 4439
1191
+ - path: development/scripts/activation-runtime.js
1192
+ hash: sha256:a9967bfd087dc197c0e0149f1add463a1318da122b37b4a2f5a38346d2c4ab3b
1193
+ type: script
1194
+ size: 1899
1195
+ - path: development/scripts/agent-assignment-resolver.js
1196
+ hash: sha256:ae8a89d038cd9af894d9ec45d8b97ed930f84f70e88f17dbf1a3c556e336c75e
1197
+ type: script
1198
+ size: 7534
1199
+ - path: development/scripts/agent-config-loader.js
1200
+ hash: sha256:97ccb679d0b171f8603c236afe54476da0dac5df17d8d1294f6b643195f80aa1
1201
+ type: script
1202
+ size: 18371
1203
+ - path: development/scripts/agent-exit-hooks.js
1204
+ hash: sha256:c8e399a177223698a8dedf63d0c2ebe94cca38e379db31da19a26f92717ebfb9
1205
+ type: script
1206
+ size: 3218
1207
+ - path: development/scripts/apply-inline-greeting-all-agents.js
1208
+ hash: sha256:5ee1f27080cf735f615c9ddbf45ab8f8745223b94e5172e87c0bb9e483f4a591
1209
+ type: script
1210
+ size: 4618
1211
+ - path: development/scripts/approval-workflow.js
1212
+ hash: sha256:82e05cc5875a72e92a062245fb8dd37b5fb6f0da530cb1e9bc4147b6e59fbc0d
1213
+ type: script
1214
+ size: 21563
1215
+ - path: development/scripts/audit-agent-config.js
1216
+ hash: sha256:63a47e4bd37efc68ba5f2cda07d242a1a009388f80b883cfbb70886bf14c7b54
1217
+ type: script
1218
+ size: 9841
1219
+ - path: development/scripts/backlog-manager.js
1220
+ hash: sha256:a5ef4a57b043c231b0826da4d18a0bc19696760df7f8ce1d3c69ba0dc010b3c8
1221
+ type: script
1222
+ size: 10022
1223
+ - path: development/scripts/backup-manager.js
1224
+ hash: sha256:ffbeefd2843ca7146685f90813dba797692d0414852e6914e58cbe2cb6e07b5c
1225
+ type: script
1226
+ size: 16668
1227
+ - path: development/scripts/batch-update-agents-session-context.js
1228
+ hash: sha256:209a6d6090ff73e21e61052ccdfe6b5b39fc41e76cbdfa7e901f9c31cc507932
1229
+ type: script
1230
+ size: 2930
1231
+ - path: development/scripts/branch-manager.js
1232
+ hash: sha256:0d970c5c54675e1d131597ecc9dd0bec274d6bee1c13a2c37333527c7ddac0e5
1233
+ type: script
1234
+ size: 11542
1235
+ - path: development/scripts/code-quality-improver.js
1236
+ hash: sha256:acdfea90590a2d0d566e720540a8aad4a360cd531c58ad4e67cc4126522b7455
1237
+ type: script
1238
+ size: 39827
1239
+ - path: development/scripts/commit-message-generator.js
1240
+ hash: sha256:37c16a5caf71411f4c72643db25369e004f9e8573185c555a860fb34d4077e60
1241
+ type: script
1242
+ size: 25383
1243
+ - path: development/scripts/conflict-resolver.js
1244
+ hash: sha256:8971b9aca2ab23a9478ac70e59710ec843f483fcbe088371444f4fc9b56c5278
1245
+ type: script
1246
+ size: 19188
1247
+ - path: development/scripts/decision-context.js
1248
+ hash: sha256:1f0ad78c56313bcc48592bb2eb5bd7879942dd13845b04b8902c6bec66b8a143
1249
+ type: script
1250
+ size: 6957
1251
+ - path: development/scripts/decision-log-generator.js
1252
+ hash: sha256:2020ed3a087fc5a420b5abcf14d2ccc11cd01a393dd9e0b324ff92d37e790070
1253
+ type: script
1254
+ size: 7737
1255
+ - path: development/scripts/decision-log-indexer.js
1256
+ hash: sha256:a5ceb4be094f1c3e8978c01547622bc900e69005686490ce928dcb64f362ac2d
1257
+ type: script
1258
+ size: 8584
1259
+ - path: development/scripts/decision-recorder.js
1260
+ hash: sha256:a81a07bc4493e5b062ac04a861cefd8b791650ac8e25ca19837b325455ad1db9
1261
+ type: script
1262
+ size: 5136
1263
+ - path: development/scripts/dependency-analyzer.js
1264
+ hash: sha256:8cef85fd0d63fb915c011eab44e9f49ffb184946373b70de9810d30674f6c405
1265
+ type: script
1266
+ size: 18032
1267
+ - path: development/scripts/dev-context-loader.js
1268
+ hash: sha256:214053e22dfc01aa104a891fad7fcea8376a7f7d32b278793f6a2364f8548cb5
1269
+ type: script
1270
+ size: 8234
1271
+ - path: development/scripts/diff-generator.js
1272
+ hash: sha256:cad97b0096fc034fa6ed6cbd14a963abe32d880c1ce8034b6aa62af2e2239833
1273
+ type: script
1274
+ size: 10667
1275
+ - path: development/scripts/elicitation-engine.js
1276
+ hash: sha256:911349588f3a22d213de0747373b9f7f7fa341752782a04d39320cbd738dbce9
1277
+ type: script
1278
+ size: 10593
1279
+ - path: development/scripts/elicitation-session-manager.js
1280
+ hash: sha256:9f622e7a9a89b8d5387eebafd22929704c0a4d7f6d4bcef72913f8da5a5ca8a4
1281
+ type: script
1282
+ size: 8117
1283
+ - path: development/scripts/generate-greeting.js
1284
+ hash: sha256:49b857fe36a0216a0df8395a6847f14608bd6a228817276201d22598a6862a4f
1285
+ type: script
1286
+ size: 3220
1287
+ - path: development/scripts/git-wrapper.js
1288
+ hash: sha256:33107f2a58dd945a177ec397cb774941596cb7a6b97ee4efd08978f20bdaa153
1289
+ type: script
1290
+ size: 11896
1291
+ - path: development/scripts/greeting-builder.js
1292
+ hash: sha256:039793faa0b10b1d002e040a7ea01f3a55f61a84d10492f1a99395799439f2df
1293
+ type: script
1294
+ size: 50235
1295
+ - path: development/scripts/greeting-config-cli.js
1296
+ hash: sha256:2502abf6405388a15a6ebd9cea9db5a3f5dab792f47edde5be98a19871d0ead0
1297
+ type: script
1298
+ size: 3294
1299
+ - path: development/scripts/greeting-preference-manager.js
1300
+ hash: sha256:5972d3d36551ca3eded3eed26f0daac2b0da9c10506fd282210a43a97c07e818
1301
+ type: script
1302
+ size: 5166
1303
+ - path: development/scripts/manifest-preview.js
1304
+ hash: sha256:2c30ed6c7ca5c5ff536bf5bd3d8f0b855366d5b2c1dc45b5593bd880697ff0f0
1305
+ type: script
1306
+ size: 7528
1307
+ - path: development/scripts/metrics-tracker.js
1308
+ hash: sha256:30acd63ba3f78993fc2b5083c3075015cd4f14ae2c0ed645320b44ad09767f61
1309
+ type: script
1310
+ size: 21732
1311
+ - path: development/scripts/migrate-task-to-v2.js
1312
+ hash: sha256:c68ad8c5d8721f5da34b1046632570443197ed126849ee464765d858af607957
1313
+ type: script
1314
+ size: 9457
1315
+ - path: development/scripts/modification-validator.js
1316
+ hash: sha256:a33290ff6b80a46d9658f1958cd7fd99664ca1fd826d9178f91a7d343716e6cb
1317
+ type: script
1318
+ size: 16486
1319
+ - path: development/scripts/pattern-learner.js
1320
+ hash: sha256:bcf5d4a680f93719a021793f4d32f363890ba4c36bc4c8fe22b79204495efd40
1321
+ type: script
1322
+ size: 35073
1323
+ - path: development/scripts/performance-analyzer.js
1324
+ hash: sha256:cfaca49050c047dd1fb57be116aff85e20e339be454d67eb53090c5c888896af
1325
+ type: script
1326
+ size: 23416
1327
+ - path: development/scripts/populate-entity-registry.js
1328
+ hash: sha256:1d752ce57b70a06c6779a448a9c5c211e6e0564ba388d8887362a534e83c78b2
1329
+ type: script
1330
+ size: 8383
1331
+ - path: development/scripts/refactoring-suggester.js
1332
+ hash: sha256:d5183f79fae9dc4bf4d3c9136b3622e43a63643a7df622742c350931e45f18f4
1333
+ type: script
1334
+ size: 34675
1335
+ - path: development/scripts/rollback-handler.js
1336
+ hash: sha256:fd8bfec3a94c8de93266f3c1f0b251d431f0c7d985f66cd3d9041227b85fc565
1337
+ type: script
1338
+ size: 16565
1339
+ - path: development/scripts/security-checker.js
1340
+ hash: sha256:d52d16e51d2cc0476056702aab83be94d555cfe8b2be562edb8de45f3d0d7b43
1341
+ type: script
1342
+ size: 9526
1343
+ - path: development/scripts/skill-validator.js
1344
+ hash: sha256:163391c9c9d6e07ff66ccc88b0787746faf3f0fa006fe14ee27f87642ae96c6b
1345
+ type: script
1346
+ size: 9939
1347
+ - path: development/scripts/squad/index.js
1348
+ hash: sha256:5c4590db1b3399248cc718995229bcc6a8a2c2af4579b30cc8c60841ca6b5663
1349
+ type: script
1350
+ size: 2663
1351
+ - path: development/scripts/squad/README.md
1352
+ hash: sha256:405b7679c217f46601d581f18c3b28694ec22b3c7fdc69fb292a8ef6c6b4cc9a
1353
+ type: script
1354
+ size: 3249
1355
+ - path: development/scripts/squad/squad-analyzer.js
1356
+ hash: sha256:799ee351a07e14e3cf0dd59a425bc6e702c6a4140957ab905e81e352c33ee716
1357
+ type: script
1358
+ size: 18205
1359
+ - path: development/scripts/squad/squad-designer.js
1360
+ hash: sha256:101cbb7d6ded0d6f991b29ac63dfee2c7bb86cbc8c4fefef728b7d12c3352829
1361
+ type: script
1362
+ size: 29548
1363
+ - path: development/scripts/squad/squad-downloader.js
1364
+ hash: sha256:56ada8a5bd87567a51ecef01c390124213a32766d0cef50ca2d281bf56feb7c1
1365
+ type: script
1366
+ size: 15379
1367
+ - path: development/scripts/squad/squad-extender.js
1368
+ hash: sha256:2bc28aef10b32dfc02f3f3d071e4612157ffe6eb9448304aa256b089edde4af1
1369
+ type: script
1370
+ size: 20647
1371
+ - path: development/scripts/squad/squad-generator.js
1372
+ hash: sha256:783d548526bb50a0f6ab8f71369dfc60a8a2384aa4f122f824407da1a736ccbb
1373
+ type: script
1374
+ size: 44122
1375
+ - path: development/scripts/squad/squad-loader.js
1376
+ hash: sha256:7093b9457c93da6845722bf7eac660164963d5007c459afae2149340a7979f1f
1377
+ type: script
1378
+ size: 10549
1379
+ - path: development/scripts/squad/squad-migrator.js
1380
+ hash: sha256:f52c8efdb6de21f10de90a86d02d715e17e1523ff017e2fa6f5bbcc669d4be04
1381
+ type: script
1382
+ size: 19516
1383
+ - path: development/scripts/squad/squad-publisher.js
1384
+ hash: sha256:0fc2f7f914cee16f0df4076ac0deb1a035719985f27f754c12b293665155af5e
1385
+ type: script
1386
+ size: 18774
1387
+ - path: development/scripts/squad/squad-validator.js
1388
+ hash: sha256:e5a650178be260e76b8b231e03b2eb8ee7a694f8fb360d467751e38df38ca2d6
1389
+ type: script
1390
+ size: 25157
1391
+ - path: development/scripts/story-index-generator.js
1392
+ hash: sha256:0f10e1cee91857e07bd4488baa801fccd7bfff5450b668b8290a71a74f59302e
1393
+ type: script
1394
+ size: 9517
1395
+ - path: development/scripts/story-manager.js
1396
+ hash: sha256:ba05c6dc3b29dad5ca57b0dafad8951d750bc30bdc04a9b083d4878c6f84f8f2
1397
+ type: script
1398
+ size: 11829
1399
+ - path: development/scripts/story-update-hook.js
1400
+ hash: sha256:554a162e434717f86858ef04d8fdfe3ac40decf060cdc3d4d4987959fb2c51df
1401
+ type: script
1402
+ size: 6890
1403
+ - path: development/scripts/task-identifier-resolver.js
1404
+ hash: sha256:ef63e5302a7393d4409e50fc437fdf33bd85f40b1907862ccfd507188f072d22
1405
+ type: script
1406
+ size: 3985
1407
+ - path: development/scripts/template-engine.js
1408
+ hash: sha256:e36561f9babfb91a87aea478ae2ad4a71d7139de8e0ab5b4118b3d0a8c0fcd33
1409
+ type: script
1410
+ size: 6963
1411
+ - path: development/scripts/template-validator.js
1412
+ hash: sha256:23bf278eae8a5eb5b7d5a7f7116eee33a66ecfa2b6b0d0d18d31b0852aa7169b
1413
+ type: script
1414
+ size: 8337
1415
+ - path: development/scripts/test-generator.js
1416
+ hash: sha256:b55cd8da7458617fcb25e53a663fb71fd0d1499fb312bbce5dbbf330aea9e45c
1417
+ type: script
1418
+ size: 24946
1419
+ - path: development/scripts/test-greeting-system.js
1420
+ hash: sha256:954296cccab6484aa48c98eb2d5e35668106118f470c4ab06d351f2296416f80
1421
+ type: script
1422
+ size: 5534
1423
+ - path: development/scripts/transaction-manager.js
1424
+ hash: sha256:c5db3847fbba50b99a72720f01c7dc8c0e4b32d558d6711071e7ddacdec2b207
1425
+ type: script
1426
+ size: 17612
1427
+ - path: development/scripts/unified-activation-pipeline.js
1428
+ hash: sha256:1b78fa7000fb0230b53f204f97fe511c24dab420bb09e1fbec6c4b59cbcb1a32
1429
+ type: script
1430
+ size: 29234
1431
+ - path: development/scripts/usage-tracker.js
1432
+ hash: sha256:7f9d4b8cfcc2c8d2c4fd9e5b4adc0ec32031ce7fca4e8082a74b5cf1050b8296
1433
+ type: script
1434
+ size: 19483
1435
+ - path: development/scripts/validate-filenames.js
1436
+ hash: sha256:5fc0ceb10b99ba0996ab4a022c78babad9f40abb21c1a60f6bec558237c18f14
1437
+ type: script
1438
+ size: 6252
1439
+ - path: development/scripts/validate-task-v2.js
1440
+ hash: sha256:19da820671940ee8e32b27f52307a43e1d61542953e4f026aad28294cf4b71ae
1441
+ type: script
1442
+ size: 9928
1443
+ - path: development/scripts/verify-workflow-gaps.js
1444
+ hash: sha256:74b13434e22965b796297cd0f818dc4d77c5eb06d541b64ca323368bae6bdead
1445
+ type: script
1446
+ size: 33436
1447
+ - path: development/scripts/version-tracker.js
1448
+ hash: sha256:b9a2c610db727500f1c3cc280c7c77a7ccd17776ad7ff94cd89a182a55e36d01
1449
+ type: script
1450
+ size: 15905
1451
+ - path: development/scripts/workflow-navigator.js
1452
+ hash: sha256:c5c9d6113059d027192808538b9006a33cf14e7779039be706d1e92aeb2968db
1453
+ type: script
1454
+ size: 9848
1455
+ - path: development/scripts/workflow-state-manager.js
1456
+ hash: sha256:c6ac54d008b60076d8603f6a35e05520bb982f0d7e8500f4742b75bffd1fb73b
1457
+ type: script
1458
+ size: 20143
1459
+ - path: development/scripts/workflow-validator.js
1460
+ hash: sha256:4cf3e9c0cecb88adebc0b5e90069c854ea5cfd4f9fbb4587136648816613a5e7
1461
+ type: script
1462
+ size: 22996
1463
+ - path: development/scripts/yaml-validator.js
1464
+ hash: sha256:bb4e2a648b65e6483212ff8d4497d50b05294f30c5cccffc1de5b1ec4a251f83
1465
+ type: script
1466
+ size: 10340
1467
+ - path: development/tasks/add-mcp.md
1468
+ hash: sha256:01bc80eac46a991355ad5548ccfac890d46fa6b25041d0479bd6be362bea5112
1469
+ type: task
1470
+ size: 10235
1471
+ - path: development/tasks/advanced-elicitation.md
1472
+ hash: sha256:6c52e8b403a3390c6a914b7980559eb2dd1c4779250b28699b72523efee0d8a5
1473
+ type: task
1474
+ size: 8746
1475
+ - path: development/tasks/analyst-facilitate-brainstorming.md
1476
+ hash: sha256:dd5a40329a74c76a07e525fbddbe97122f334f9573a451c08e28ae61b0fab9ec
1477
+ type: task
1478
+ size: 9174
1479
+ - path: development/tasks/analyze-brownfield.md
1480
+ hash: sha256:f67764fed487e281e3e3d214902fabb914b7e8d1d01bfa9fa9884f33e5d646a9
1481
+ type: task
1482
+ size: 13863
1483
+ - path: development/tasks/analyze-cross-artifact.md
1484
+ hash: sha256:9d4cd3975a693ca5526ce90dc919bcb8b422c6268285e6c4350158ee5874f99c
1485
+ type: task
1486
+ size: 7716
1487
+ - path: development/tasks/analyze-framework.md
1488
+ hash: sha256:c12f2381b36797154ef1b981aea9d3943219671dc939f56b1a69f4ff3141b958
1489
+ type: task
1490
+ size: 21872
1491
+ - path: development/tasks/analyze-performance.md
1492
+ hash: sha256:0218d53a17f43a00e06ff7b57b94d4a3cdf9b5ba4a9e66ca3e730cf125543aa0
1493
+ type: task
1494
+ size: 15470
1495
+ - path: development/tasks/analyze-project-structure.md
1496
+ hash: sha256:8c3ddfa95778743f14bfa46178aa76eee0e1d9d9b9dd93d1eb8c6e88d3348ed1
1497
+ type: task
1498
+ size: 14567
1499
+ - path: development/tasks/apply-qa-fixes.md
1500
+ hash: sha256:b70a1d0270faa34260710bf21217ddcda55e765482661d0c87a9d0d824a2bb45
1501
+ type: task
1502
+ size: 8902
1503
+ - path: development/tasks/architect-analyze-impact.md
1504
+ hash: sha256:53e55a4bef04801497626bff6c6b9f58c5070f75de75d7446423774957b1487d
1505
+ type: task
1506
+ size: 26421
1507
+ - path: development/tasks/audit-codebase.md
1508
+ hash: sha256:0d4956b264f9e3fc980aa5accae4cd182a82015f3b788f7f266500fd37f106e3
1509
+ type: task
1510
+ size: 10817
1511
+ - path: development/tasks/audit-tailwind-config.md
1512
+ hash: sha256:406929c3f11dff1fb1839b062c77ee679ec42d4e22dcf58c93a14af46675fcfb
1513
+ type: task
1514
+ size: 7689
1515
+ - path: development/tasks/audit-utilities.md
1516
+ hash: sha256:dbb2bbe94445bc409ca893bc65acb16003d7db3c2bf5c944cd2a43c269a7824a
1517
+ type: task
1518
+ size: 8411
1519
+ - path: development/tasks/blocks/agent-prompt-template.md
1520
+ hash: sha256:e1536a7e7095d51dd8568914bcca13d050b97d139740db170187be34a45a0378
1521
+ type: task
1522
+ size: 3442
1523
+ - path: development/tasks/blocks/context-loading.md
1524
+ hash: sha256:bb36c04bbf92e4d6fdfe94fa76b1fd7548f8c7a8649d246be0e9aa21ae885c73
1525
+ type: task
1526
+ size: 3020
1527
+ - path: development/tasks/blocks/execution-pattern.md
1528
+ hash: sha256:4735b3e1b0a1f2ace1c3db2d4771cc172229a516eac7a4c3d0ce172c2d0e7566
1529
+ type: task
1530
+ size: 3447
1531
+ - path: development/tasks/blocks/finalization.md
1532
+ hash: sha256:8414839ac579a6e25c8ad8cc3218bb5f216288ef30a0a995dde59d3d7dc9130e
1533
+ type: task
1534
+ size: 3359
1535
+ - path: development/tasks/blocks/README.md
1536
+ hash: sha256:71cbe0a7a387eeeb3624344bb2d88743a04e3133753fadfd90d090ba1746e7bf
1537
+ type: task
1538
+ size: 5303
1539
+ - path: development/tasks/bootstrap-shadcn-library.md
1540
+ hash: sha256:f104f078844e56f7e949fc96e5b0c2309034635d1c6d2ec0e9801da8dd92eaec
1541
+ type: task
1542
+ size: 7614
1543
+ - path: development/tasks/brownfield-create-epic.md
1544
+ hash: sha256:ca0f96be15fc67d7204fc69e9b47af54492639c40ad365f0fbdbc837035a07e3
1545
+ type: task
1546
+ size: 16439
1547
+ - path: development/tasks/brownfield-create-story.md
1548
+ hash: sha256:8df21b90d800036170a35db63eef2e55be48e624db8697eea1dc12b8b3f3bfdf
1549
+ type: task
1550
+ size: 9002
1551
+ - path: development/tasks/build-autonomous.md
1552
+ hash: sha256:8e39b1c89f7f24f180101d82b37628019a07e84b16e5683b10ab196c35bf7028
1553
+ type: task
1554
+ size: 5617
1555
+ - path: development/tasks/build-component.md
1556
+ hash: sha256:74b0e5bfb57a307d487e1140c0d43ee1843813e8d2820459e84739dfd26f1fd5
1557
+ type: task
1558
+ size: 14020
1559
+ - path: development/tasks/build-resume.md
1560
+ hash: sha256:920b1faa39d021fd7c0013b5d2ac4f66ac6de844723821b65dfaceba41d37885
1561
+ type: task
1562
+ size: 2711
1563
+ - path: development/tasks/build-status.md
1564
+ hash: sha256:47a5f95ab59ff99532adf442700f4b949e32bd5bd2131998d8f271327108e4e1
1565
+ type: task
1566
+ size: 3990
1567
+ - path: development/tasks/build.md
1568
+ hash: sha256:ba5b498e680a604acfbd432e00041a7da72417ce9379698c9e8837c0d18b59a1
1569
+ type: task
1570
+ size: 4396
1571
+ - path: development/tasks/calculate-roi.md
1572
+ hash: sha256:4b18dfb3ac088b8b0a0198ea0d59d1ca91f326de06ca9590c7149d298d624b62
1573
+ type: task
1574
+ size: 11533
1575
+ - path: development/tasks/check-docs-links.md
1576
+ hash: sha256:9a7e1400d894777caa607486ff78b77ea454e4ace1c16d54308533ecc7f2c015
1577
+ type: task
1578
+ size: 3082
1579
+ - path: development/tasks/ci-cd-configuration.md
1580
+ hash: sha256:e4cc0fa347392d3f21c516de4e5669fd682611f5a623867623287323dfcefaf8
1581
+ type: task
1582
+ size: 20873
1583
+ - path: development/tasks/cleanup-utilities.md
1584
+ hash: sha256:9e627efbc5dc9becc395a0aeaf24f208e7c8c730c286868f6d4db77fd4bff6b6
1585
+ type: task
1586
+ size: 17775
1587
+ - path: development/tasks/cleanup-worktrees.md
1588
+ hash: sha256:10d9fab42ba133a03f76094829ab467d2ef53b80bcc3de39245805679cedfbbd
1589
+ type: task
1590
+ size: 877
1591
+ - path: development/tasks/collaborative-edit.md
1592
+ hash: sha256:d7a4c325e9b1a5f0a6342c6fa91affe0b7dd26816926a40c0a47e6f63084ebd1
1593
+ type: task
1594
+ size: 32277
1595
+ - path: development/tasks/compose-molecule.md
1596
+ hash: sha256:ede3c4ba858c64d47df3f45661432c690894ed9eb0e2b9b034ba59882aecc38c
1597
+ type: task
1598
+ size: 6817
1599
+ - path: development/tasks/consolidate-patterns.md
1600
+ hash: sha256:6555fa55cd8c9921fef680b717553fc39b5e979a20ab6da5e8331d97fa73b7cc
1601
+ type: task
1602
+ size: 11316
1603
+ - path: development/tasks/correct-course.md
1604
+ hash: sha256:5dcb3d7f7c33d5651b1bd87ab57666354ed23f24a3a3b176c3f2b76d32d1cd3f
1605
+ type: task
1606
+ size: 11649
1607
+ - path: development/tasks/create-agent.md
1608
+ hash: sha256:8137f658adda25f10112d04aa37c70021745fdee4bc84cb32473bf045af52725
1609
+ type: task
1610
+ size: 32314
1611
+ - path: development/tasks/create-brownfield-story.md
1612
+ hash: sha256:64409b0b370beef0dd2581b84b5a0b1f40c14d82bf9f7c252ca51613b8b46fe3
1613
+ type: task
1614
+ size: 22387
1615
+ - path: development/tasks/create-deep-research-prompt.md
1616
+ hash: sha256:25f0454ec4010a5b713453cb18ddb672bab0f02eba0c27e66995fbd982922889
1617
+ type: task
1618
+ size: 12260
1619
+ - path: development/tasks/create-doc.md
1620
+ hash: sha256:b8aa5139274ac92cd478d0bfcd7bf3b43efbaab2883d2380987d5fab9c3b1bb6
1621
+ type: task
1622
+ size: 8685
1623
+ - path: development/tasks/create-next-story.md
1624
+ hash: sha256:80c5d6600f386e2f61402a070cd497963a1ae87d23aeea46259b384698edf5c6
1625
+ type: task
1626
+ size: 29548
1627
+ - path: development/tasks/create-service.md
1628
+ hash: sha256:67de7ba424ea30c5003cc9ccce77e5489749d88394e711f60b77459447b8a302
1629
+ type: task
1630
+ size: 8951
1631
+ - path: development/tasks/create-suite.md
1632
+ hash: sha256:bef70967af5f392c399840d22a8973ee3d219aeaf02e771effcd56a917be42c1
1633
+ type: task
1634
+ size: 7189
1635
+ - path: development/tasks/create-task.md
1636
+ hash: sha256:71299b8e00b11654276173f90e0920af97d49bb5d39629af4ae828cbeb991f6f
1637
+ type: task
1638
+ size: 9956
1639
+ - path: development/tasks/create-workflow.md
1640
+ hash: sha256:53b025c954ddba183b75544bf6e9d5120b2f47220748cb4088df66baa2f1e011
1641
+ type: task
1642
+ size: 11493
1643
+ - path: development/tasks/create-worktree.md
1644
+ hash: sha256:1c0a34101c774a8b69e09cd49426692c1917027eb1854500843e8ce0926b7168
1645
+ type: task
1646
+ size: 9221
1647
+ - path: development/tasks/db-analyze-hotpaths.md
1648
+ hash: sha256:af90fc97b818690a7ed5952378447d63ac9db57fbf25cae48879d84dc3178a7e
1649
+ type: task
1650
+ size: 12917
1651
+ - path: development/tasks/db-apply-migration.md
1652
+ hash: sha256:a69a2ae21c4ae238447749353d9bd56cf4a84bff3d1fa85204d799602f47af43
1653
+ type: task
1654
+ size: 8211
1655
+ - path: development/tasks/db-bootstrap.md
1656
+ hash: sha256:ff68c1f0b5845a605360f61cdb69ea355e1bb2f9f3c7fca1157968d78cdb763a
1657
+ type: task
1658
+ size: 13212
1659
+ - path: development/tasks/db-domain-modeling.md
1660
+ hash: sha256:5c867839666266be24b179d81da72c1755c128e9e1d9a0af70d145a8de703760
1661
+ type: task
1662
+ size: 15553
1663
+ - path: development/tasks/db-dry-run.md
1664
+ hash: sha256:1f909be761a41fa77a8fc6e70b849dc07e448f4521ec62834e7c9f501e9f730a
1665
+ type: task
1666
+ size: 6114
1667
+ - path: development/tasks/db-env-check.md
1668
+ hash: sha256:72a1eceaa8bfdf8dfa3a13cb18729173d73a2bc54b602d721e792aab4d0a1491
1669
+ type: task
1670
+ size: 5716
1671
+ - path: development/tasks/db-explain.md
1672
+ hash: sha256:f07447f39a1c96f4182bcd92169462b1522679c054d7ccec9742c8392096448f
1673
+ type: task
1674
+ size: 12444
1675
+ - path: development/tasks/db-impersonate.md
1676
+ hash: sha256:3c40212b1e53ac773e35aaf607577367f68cf6fb573b997d93390a089db13559
1677
+ type: task
1678
+ size: 10191
1679
+ - path: development/tasks/db-load-csv.md
1680
+ hash: sha256:567724207785a464459b0df6e5411be50688df0778225132a6831235e91cbcc6
1681
+ type: task
1682
+ size: 12213
1683
+ - path: development/tasks/db-policy-apply.md
1684
+ hash: sha256:8991da288a12608449beee3c7f7c0034f1deec1848dcb952d37d6479b390574a
1685
+ type: task
1686
+ size: 15041
1687
+ - path: development/tasks/db-rls-audit.md
1688
+ hash: sha256:1808aa8af99571a463689d32195db4358394064ae8fd80a03dcfa437bc67ed5a
1689
+ type: task
1690
+ size: 8903
1691
+ - path: development/tasks/db-rollback.md
1692
+ hash: sha256:d3527798f514b51c3a3966767e69391ed4162a667ab51f538cac6f02152a359b
1693
+ type: task
1694
+ size: 16419
1695
+ - path: development/tasks/db-run-sql.md
1696
+ hash: sha256:64453230b13354b6d92405602e17d706b11f05243b7112711743118c83347feb
1697
+ type: task
1698
+ size: 12134
1699
+ - path: development/tasks/db-schema-audit.md
1700
+ hash: sha256:1424f0e1dd58e888b6747befdb7ae8e4ff02ba46fa5bf02657a34fa251fcdbca
1701
+ type: task
1702
+ size: 25134
1703
+ - path: development/tasks/db-seed.md
1704
+ hash: sha256:9d6dafdc73651032222e5d0021d0765558291eb984aec62d5a963cd13c07f148
1705
+ type: task
1706
+ size: 8199
1707
+ - path: development/tasks/db-smoke-test.md
1708
+ hash: sha256:0ea924dc66d83e7d5cce7448ab1d9501126c0a612bb563d703bc133b0ccd14db
1709
+ type: task
1710
+ size: 7627
1711
+ - path: development/tasks/db-snapshot.md
1712
+ hash: sha256:50966b8d4fe3fca13c5dea485ba0e96a55b9b0027c1e2adf2cf4de3ddfcf64d9
1713
+ type: task
1714
+ size: 11719
1715
+ - path: development/tasks/db-squad-integration.md
1716
+ hash: sha256:a42ab79bb73f3d98771bb44a4e6642fd2bda5a2540f34d7caa2219fd6de08960
1717
+ type: task
1718
+ size: 16753
1719
+ - path: development/tasks/db-supabase-setup.md
1720
+ hash: sha256:20354a3f5537ed420e056140f76a665085c535fa8628ff42f9472090e72480ca
1721
+ type: task
1722
+ size: 15996
1723
+ - path: development/tasks/db-verify-order.md
1724
+ hash: sha256:dc48abaceccd15f35dd23eebaeba4762c4bfaf9ac6a496807f4803a6110bced4
1725
+ type: task
1726
+ size: 11494
1727
+ - path: development/tasks/deprecate-component.md
1728
+ hash: sha256:82a7ae1b067273b0e6b31d268bdbaec36e328f91b263a549af71d0559bbd5d1c
1729
+ type: task
1730
+ size: 29492
1731
+ - path: development/tasks/dev-apply-qa-fixes.md
1732
+ hash: sha256:327bc964c534c45ed8595a9b9b97a377463b38cad095546bb7a238455771c628
1733
+ type: task
1734
+ size: 8104
1735
+ - path: development/tasks/dev-backlog-debt.md
1736
+ hash: sha256:9ae7a7cd56d2bca0b5b38e743e7719cac317544c6453e9f14ea14dcf634c8cee
1737
+ type: task
1738
+ size: 11024
1739
+ - path: development/tasks/dev-develop-story.md
1740
+ hash: sha256:235e2d3880f732d5cfce8c51bb507c1245fcc48c357efbf151c64cecc03f439f
1741
+ type: task
1742
+ size: 26548
1743
+ - path: development/tasks/dev-improve-code-quality.md
1744
+ hash: sha256:fcd987bf4a7e82ff28c491a064db9a1463a8424c323721b2add29f11c3da0105
1745
+ type: task
1746
+ size: 24737
1747
+ - path: development/tasks/dev-optimize-performance.md
1748
+ hash: sha256:60c6e6a3c5b600478422c863bc3d0a375933b3df9283d49c8ba4c28b741e1904
1749
+ type: task
1750
+ size: 29281
1751
+ - path: development/tasks/dev-suggest-refactoring.md
1752
+ hash: sha256:3b5f90468ec371cc4c9127ed10a4a258c64931e6502793713e13af837845007d
1753
+ type: task
1754
+ size: 24204
1755
+ - path: development/tasks/dev-validate-next-story.md
1756
+ hash: sha256:c1d4d87cc9ac235477faf96bc927fdf24472cbb00e509b50c5daa7eac0846d91
1757
+ type: task
1758
+ size: 11366
1759
+ - path: development/tasks/document-gotchas.md
1760
+ hash: sha256:bbe412c2e466554056092bbc4705eb2700e48d548abcd1e9d0f9e728fb947d2f
1761
+ type: task
1762
+ size: 10436
1763
+ - path: development/tasks/document-project.md
1764
+ hash: sha256:9d0186e5980b1d8613111708a0b071db7a172400f3552e2228dd1ee457b33cc7
1765
+ type: task
1766
+ size: 18046
1767
+ - path: development/tasks/environment-bootstrap.md
1768
+ hash: sha256:7d94732612fb3806fcf2ac260e5afab52d824888ab32c60591a1fd174f1dbaae
1769
+ type: task
1770
+ size: 45748
1771
+ - path: development/tasks/execute-checklist.md
1772
+ hash: sha256:dbe286bb5019e57aba5dbc2f6b0355614f355475b22906b57c00ef7734d56ea8
1773
+ type: task
1774
+ size: 8579
1775
+ - path: development/tasks/execute-epic-plan.md
1776
+ hash: sha256:4b1adc2d9e2a426b9c1ca572e8be051be9237a9fa653c57f54c8ee35f7a906cb
1777
+ type: task
1778
+ size: 25544
1779
+ - path: development/tasks/export-design-tokens-dtcg.md
1780
+ hash: sha256:eb84e0c8aaed2dbfd569c43667e2399bc336d42dc6df26fa432da56da8960bdc
1781
+ type: task
1782
+ size: 7236
1783
+ - path: development/tasks/extend-pattern.md
1784
+ hash: sha256:38cd63ae6279d7758265abc90f6209bb0dd114b2883966f6540d49a822256a1c
1785
+ type: task
1786
+ size: 6133
1787
+ - path: development/tasks/extract-patterns.md
1788
+ hash: sha256:b0b1331f65fc534296089eb364829669fc56b59f115801a3929667a74dc766ac
1789
+ type: task
1790
+ size: 8915
1791
+ - path: development/tasks/extract-tokens.md
1792
+ hash: sha256:aa908b1e88c09ff98262d4fbf502b4abbaf7bc34ec872b9f1487dcd6405ee857
1793
+ type: task
1794
+ size: 13111
1795
+ - path: development/tasks/facilitate-brainstorming-session.md
1796
+ hash: sha256:77cbee59086d7500f2044667ad7b80c5f8705540df06a5ec354f09a1ad70e63a
1797
+ type: task
1798
+ size: 13940
1799
+ - path: development/tasks/generate-ai-frontend-prompt.md
1800
+ hash: sha256:756fcdcda1f6eb22f99123463fa358ff080021478bc97a61a5ce4ce2291fd86f
1801
+ type: task
1802
+ size: 9361
1803
+ - path: development/tasks/generate-documentation.md
1804
+ hash: sha256:6d5a355e989c0bec4b6000cfb37b1e8ac69ff829f92e486f61aa448e338a3456
1805
+ type: task
1806
+ size: 6794
1807
+ - path: development/tasks/generate-migration-strategy.md
1808
+ hash: sha256:26d7c8cfc5b373180ca7b25df0d78d2741274c8bcb9a9cf1c286d2305bcdf33c
1809
+ type: task
1810
+ size: 14109
1811
+ - path: development/tasks/generate-shock-report.md
1812
+ hash: sha256:7b2e45e7a35258512186332031a097a0fe43ddfe1464ac1c0fff665d1f42681a
1813
+ type: task
1814
+ size: 13665
1815
+ - path: development/tasks/github-devops-github-pr-automation.md
1816
+ hash: sha256:f3871fec4f437ba2983c8dc456f30505911610dd28d31a5988ccf91b39f1892b
1817
+ type: task
1818
+ size: 17720
1819
+ - path: development/tasks/github-devops-pre-push-quality-gate.md
1820
+ hash: sha256:a77a1849cb173d6aae5a75727b789fb021ceb4eb8942837e49c857c3e9735a84
1821
+ type: task
1822
+ size: 21617
1823
+ - path: development/tasks/github-devops-repository-cleanup.md
1824
+ hash: sha256:cbc14da2f06ce21315ba386256cda7965c6c69c65088783ec5913c8611d64ca2
1825
+ type: task
1826
+ size: 8762
1827
+ - path: development/tasks/github-devops-version-management.md
1828
+ hash: sha256:49b40c4e5d275bbdec5e6a5faa7cd62666bea43d48e30104e5d6dddc15d7728d
1829
+ type: task
1830
+ size: 11750
1831
+ - path: development/tasks/gotcha.md
1832
+ hash: sha256:32ae2a899f454bac10a7709f165b64eadae2cc5b787e645a0022b37fd31ab07d
1833
+ type: task
1834
+ size: 3439
1835
+ - path: development/tasks/gotchas.md
1836
+ hash: sha256:8c31dd743f7bc460205d75f3e1733cfcd8dcfde0bfaae33fb149e6ed39cdbff7
1837
+ type: task
1838
+ size: 3606
1839
+ - path: development/tasks/health-check.yaml
1840
+ hash: sha256:90752c3c7a245556aa52d350d32ae52de2400460e7bb341650f51d1072fd9eff
1841
+ type: task
1842
+ size: 5553
1843
+ - path: development/tasks/ids-governor.md
1844
+ hash: sha256:9b8c7fd713e0198fdd23734290cdf1377ba40d4f30a769155fa90db27309d19d
1845
+ type: task
1846
+ size: 3022
1847
+ - path: development/tasks/ids-health.md
1848
+ hash: sha256:48c5893455419e471a53e5e90c8804bfca10d77ffbc368c5b232abbeb2414240
1849
+ type: task
1850
+ size: 2089
1851
+ - path: development/tasks/ids-query.md
1852
+ hash: sha256:26c9dae9e21790a702f96f1921f8e60dd40b0bcfd637c59467c2802e6dcbbc2e
1853
+ type: task
1854
+ size: 3476
1855
+ - path: development/tasks/improve-self.md
1856
+ hash: sha256:9d2409cf5a4017aab9a44d14c4907fa3dc36edfc498e784f01e5465df77face1
1857
+ type: task
1858
+ size: 19610
1859
+ - path: development/tasks/index-docs.md
1860
+ hash: sha256:49ed2ef1eda75eece527f78c08588b708637662548cbc7fd6a1c13659da5a6e2
1861
+ type: task
1862
+ size: 9948
1863
+ - path: development/tasks/init-project-status.md
1864
+ hash: sha256:229a2bd290f93eb30ca1a0a43be7324523d6cd1f3e656a83b5fc3e2f248cbf11
1865
+ type: task
1866
+ size: 11060
1867
+ - path: development/tasks/integrate-squad.md
1868
+ hash: sha256:752063b3f1ea4cfb9039ef529e4461b50fb480179cc5bbc9b07bf4bac166b65d
1869
+ type: task
1870
+ size: 6825
1871
+ - path: development/tasks/kb-mode-interaction.md
1872
+ hash: sha256:442b152243e86b541799e64e17db0f41ac33d66d12a66c106c087b18d2c7e7dd
1873
+ type: task
1874
+ size: 7230
1875
+ - path: development/tasks/learn-patterns.md
1876
+ hash: sha256:c61c3c5925e3787e11e166f80663c5bb63b9f2ed164b979c18f102a4f1cc31af
1877
+ type: task
1878
+ size: 26903
1879
+ - path: development/tasks/list-mcps.md
1880
+ hash: sha256:c2eca1a9c8d0be7c83a3e2eea59b33155bf7955f534eb0b36b27ed3852ea7dd1
1881
+ type: task
1882
+ size: 521
1883
+ - path: development/tasks/list-worktrees.md
1884
+ hash: sha256:e0ad18d18c937d450cd08b5fd543fc5d8afc8b7ac9fae207ff204558a840c494
1885
+ type: task
1886
+ size: 6552
1887
+ - path: development/tasks/mcp-workflow.md
1888
+ hash: sha256:3e628a2ace20375a2b11fb2bdb904a9950fa0bdc6466ae251d290f75824ebe45
1889
+ type: task
1890
+ size: 8854
1891
+ - path: development/tasks/merge-worktree.md
1892
+ hash: sha256:e33a96e1961bbaba60f2258f4a98b8c9d384754a07eba705732f41d61ed2d4f4
1893
+ type: task
1894
+ size: 930
1895
+ - path: development/tasks/modify-agent.md
1896
+ hash: sha256:fdf367d4b930e04a2f4329588b2855ffdce5f78819e6952cae3e4fe8d7a281b5
1897
+ type: task
1898
+ size: 9849
1899
+ - path: development/tasks/modify-task.md
1900
+ hash: sha256:12daa7d10b598eaf476bcd214e4c6891d053d226cef60f1689ebe0da74c3bfb4
1901
+ type: task
1902
+ size: 10880
1903
+ - path: development/tasks/modify-workflow.md
1904
+ hash: sha256:487116fb8c0947bebe9d318fc260a12d03a3d17e89747933220aedc77a46fcf9
1905
+ type: task
1906
+ size: 13363
1907
+ - path: development/tasks/next.md
1908
+ hash: sha256:7960d70ac214bc7453da0aec1712612ce7d2d3bb2ede73a7f73e86f7eb019179
1909
+ type: task
1910
+ size: 7654
1911
+ - path: development/tasks/orchestrate-resume.md
1912
+ hash: sha256:9510ba5b29a567a4cf509713bbc31dc0d6a1f8b2944d70f17cc1598b1bf513a2
1913
+ type: task
1914
+ size: 1128
1915
+ - path: development/tasks/orchestrate-status.md
1916
+ hash: sha256:5777b0decd092bfec68d34d0a0a425fad0ed85caae75211d35938587407b8610
1917
+ type: task
1918
+ size: 1221
1919
+ - path: development/tasks/orchestrate-stop.md
1920
+ hash: sha256:8f6803fa62b352d320972060202eae3e47786a78f9bc4350adeed7ade7d8de79
1921
+ type: task
1922
+ size: 920
1923
+ - path: development/tasks/orchestrate.md
1924
+ hash: sha256:1d8d9beb50f3f2d457f16c188fc160ce269823348361165238d9cbd1bc087b59
1925
+ type: task
1926
+ size: 1302
1927
+ - path: development/tasks/patterns.md
1928
+ hash: sha256:20a5d8e80e043d1d56ba7691e9377aad65bf013db45f253e1ba7d5f6445a3802
1929
+ type: task
1930
+ size: 7376
1931
+ - path: development/tasks/plan-create-context.md
1932
+ hash: sha256:1404570964cd01a5ed0bef57da03e756c6390f1fef257d8941e343f152dc0d1f
1933
+ type: task
1934
+ size: 20209
1935
+ - path: development/tasks/plan-create-implementation.md
1936
+ hash: sha256:6d794e93bf32fcfdc601530ab9a09d435d34535e5964d01cd2b7388e52049c38
1937
+ type: task
1938
+ size: 18893
1939
+ - path: development/tasks/plan-execute-subtask.md
1940
+ hash: sha256:65637dcfba01eb9022cdd4f96670b3d78243bdd2bf41e38f9d5385a7ebab5155
1941
+ type: task
1942
+ size: 21378
1943
+ - path: development/tasks/po-backlog-add.md
1944
+ hash: sha256:be048af66baf8d10deda288e11ce0147e1a256579659d2601795bba3433ebbfa
1945
+ type: task
1946
+ size: 8306
1947
+ - path: development/tasks/po-close-story.md
1948
+ hash: sha256:8cda9a1c0fa13311956f92e3622cc4bb091816be216e6132ec91a62ba9cc3da6
1949
+ type: task
1950
+ size: 10692
1951
+ - path: development/tasks/po-manage-story-backlog.md
1952
+ hash: sha256:505e670fb82112d42047167dc07dfdbfd5b7394293fd9e03cddf58af05790eef
1953
+ type: task
1954
+ size: 14225
1955
+ - path: development/tasks/po-pull-story-from-clickup.md
1956
+ hash: sha256:1ce48ee2d2b0198dacd6114905699ccf8cec2b4691df604ac380aa438be554fd
1957
+ type: task
1958
+ size: 13481
1959
+ - path: development/tasks/po-pull-story.md
1960
+ hash: sha256:a9a13a84e61590c3e42ea06f5c62a78b46c5dcb8dae95375db289a2843396a75
1961
+ type: task
1962
+ size: 7226
1963
+ - path: development/tasks/po-stories-index.md
1964
+ hash: sha256:04a5c4603205e77f53a0d9b6c81536fe37f209e84736db42ae1fb2e38147608e
1965
+ type: task
1966
+ size: 7609
1967
+ - path: development/tasks/po-sync-story-to-clickup.md
1968
+ hash: sha256:243796b272da2d5fcc356bfeaabc2bd52d7ee6dd5e1eb228cde70fa118b769ca
1969
+ type: task
1970
+ size: 10979
1971
+ - path: development/tasks/po-sync-story.md
1972
+ hash: sha256:6c32305b5b9b81a773784b06d5e6ca5f063572463f8e6d75ef8ad4bb7848ce4e
1973
+ type: task
1974
+ size: 6907
1975
+ - path: development/tasks/pr-automation.md
1976
+ hash: sha256:4f9c042ca10d5c9029dd766841786a457e9c470588cece5fa793381ab894ca2b
1977
+ type: task
1978
+ size: 19111
1979
+ - path: development/tasks/propose-modification.md
1980
+ hash: sha256:bc245f53c1445fdf75b1b133acdcb622602514899621b381c5fe8320af6e1051
1981
+ type: task
1982
+ size: 23903
1983
+ - path: development/tasks/publish-npm.md
1984
+ hash: sha256:db366be6ce1a1f2af07c0baba3b9da9a207c9d07ad9f7bf794ad5e5a2191d77b
1985
+ type: task
1986
+ size: 6458
1987
+ - path: development/tasks/qa-after-creation.md
1988
+ hash: sha256:e9f6ceff7a0bc00d4fc035e890b7f1178c6ea43f447d135774b46a00713450e6
1989
+ type: task
1990
+ size: 13994
1991
+ - path: development/tasks/qa-backlog-add-followup.md
1992
+ hash: sha256:288c48084ae493c270ae1828549c1197ce07d2fd84bffea30b567fa56343ad43
1993
+ type: task
1994
+ size: 10180
1995
+ - path: development/tasks/qa-browser-console-check.md
1996
+ hash: sha256:deddbb5aed026e5b8b4d100a84baea6f4f85b3a249e56033f6e35e7ac08e2f80
1997
+ type: task
1998
+ size: 6827
1999
+ - path: development/tasks/qa-create-fix-request.md
2000
+ hash: sha256:99016caefa3529d742542b35c74e4ee389bc70819725b4a4ffe33ebf22f7867e
2001
+ type: task
2002
+ size: 13294
2003
+ - path: development/tasks/qa-evidence-requirements.md
2004
+ hash: sha256:cfa30b79bf1eac27511c94de213dbae761f3fb5544da07cc38563bcbd9187569
2005
+ type: task
2006
+ size: 6649
2007
+ - path: development/tasks/qa-false-positive-detection.md
2008
+ hash: sha256:f1a816365c588e7521617fc3aa7435e6f08d1ed06f4f51cce86f9529901d86ce
2009
+ type: task
2010
+ size: 9387
2011
+ - path: development/tasks/qa-fix-issues.md
2012
+ hash: sha256:e3e7dca92f3cd5254fce394c3eb2ffe1496c5363061583533be1920eea28fac0
2013
+ type: task
2014
+ size: 15581
2015
+ - path: development/tasks/qa-gate.md
2016
+ hash: sha256:2c8492f981f2b8f7384c7f02042d25e8d258f895d73fa9ec7e62e88a956fe365
2017
+ type: task
2018
+ size: 8450
2019
+ - path: development/tasks/qa-generate-tests.md
2020
+ hash: sha256:026f5c578a7ed19d2f413a1f16abc103e601921251beea425a179eba163a6eb4
2021
+ type: task
2022
+ size: 37114
2023
+ - path: development/tasks/qa-library-validation.md
2024
+ hash: sha256:8b9164cfe84a0f298ed9a14bdacdf05981717c1649dd4da766d1de4086b83eea
2025
+ type: task
2026
+ size: 11482
2027
+ - path: development/tasks/qa-migration-validation.md
2028
+ hash: sha256:bb1b52b9233dbc8da937b82f0f5776d70f33e4d8d34b88bc2b4edd9facc5cce3
2029
+ type: task
2030
+ size: 13066
2031
+ - path: development/tasks/qa-nfr-assess.md
2032
+ hash: sha256:014a22259f4260cf2f73e28fc5664eeed9d903bc8ea25cd5b754b5f36549696b
2033
+ type: task
2034
+ size: 12160
2035
+ - path: development/tasks/qa-review-build.md
2036
+ hash: sha256:34cf4494af2b7ff13f82e452368c5698d97ce115511aff7dffcfdc804118bbe3
2037
+ type: task
2038
+ size: 30695
2039
+ - path: development/tasks/qa-review-proposal.md
2040
+ hash: sha256:43cf0dc054b5191b5e3958372531c772e5458b58cb55abdbf66af2fe27fa65b3
2041
+ type: task
2042
+ size: 35304
2043
+ - path: development/tasks/qa-review-story.md
2044
+ hash: sha256:c4ec712e11d9534486d1014875fd42326fb314e765741dd2d04579ab860683b7
2045
+ type: task
2046
+ size: 23298
2047
+ - path: development/tasks/qa-risk-profile.md
2048
+ hash: sha256:0035a3e07cfe578829230749e22cbba390eabe9ac18d6393c30178d4f93007db
2049
+ type: task
2050
+ size: 13194
2051
+ - path: development/tasks/qa-run-tests.md
2052
+ hash: sha256:5ce5abf1104301320918e6b9bef1e3d8954b8284e4dbf4cffa68dd608f826981
2053
+ type: task
2054
+ size: 5840
2055
+ - path: development/tasks/qa-security-checklist.md
2056
+ hash: sha256:14262f57701f37e4c441cd1e56950302b0c71f368a1771fc61bc92fe16398bba
2057
+ type: task
2058
+ size: 12463
2059
+ - path: development/tasks/qa-test-design.md
2060
+ hash: sha256:d16d69b9f2a1e706057b1220e727f09b3d7a27a5f0d4e3ce6d3e41c1982fdde8
2061
+ type: task
2062
+ size: 9139
2063
+ - path: development/tasks/qa-trace-requirements.md
2064
+ hash: sha256:71ec5c812cc820c54aa0cb12108e584e2d146ce4b85de7f5263d471c1a2a83c0
2065
+ type: task
2066
+ size: 11421
2067
+ - path: development/tasks/release-management.md
2068
+ hash: sha256:2d163267aa5718c4308129cb2cf894b8bab756cbbcc3ac8c0d5864bfc09e524c
2069
+ type: task
2070
+ size: 18765
2071
+ - path: development/tasks/remove-mcp.md
2072
+ hash: sha256:3f4bf3f8d4d651109dc783e95598ab21569447295f22a7b868d3973f0848aa4c
2073
+ type: task
2074
+ size: 659
2075
+ - path: development/tasks/remove-worktree.md
2076
+ hash: sha256:03fc2ec265327b0f1d7b42d5f25f36fb0a230e9386fb8faa0d6cbe3f138aa3dc
2077
+ type: task
2078
+ size: 8693
2079
+ - path: development/tasks/run-design-system-pipeline.md
2080
+ hash: sha256:9aef4fe7e57a9344abb014f1109f4892fb2508ec9cf8f31d80e09eae917c6bfa
2081
+ type: task
2082
+ size: 16132
2083
+ - path: development/tasks/run-workflow-engine.md
2084
+ hash: sha256:95efd9ae20cbb8247031db2c9a5f925c46bd4dc0a0befe81ee989587fb74031b
2085
+ type: task
2086
+ size: 26171
2087
+ - path: development/tasks/run-workflow.md
2088
+ hash: sha256:d0490e96dac1999af71b1f24e803ba188884e2d239f33e6aa6d799ab958e3460
2089
+ type: task
2090
+ size: 10621
2091
+ - path: development/tasks/search-mcp.md
2092
+ hash: sha256:4c7d9239c740b250baf9d82a5aa3baf1cd0bb8c671f0889c9a6fc6c0a668ac9c
2093
+ type: task
2094
+ size: 7799
2095
+ - path: development/tasks/security-audit.md
2096
+ hash: sha256:511856ff238aebf91c19b7c421ee358e7c87605d782b2daff18e13ee40d2e76d
2097
+ type: task
2098
+ size: 13369
2099
+ - path: development/tasks/security-scan.md
2100
+ hash: sha256:54594c6919a46bc8e1bdedaf01ff530173c1e950f6e9e4ffc12083692213d407
2101
+ type: task
2102
+ size: 19078
2103
+ - path: development/tasks/session-resume.md
2104
+ hash: sha256:a0f566f45e73ce392439f6820036ecfb15219489004cdabdc566f85dbfced97e
2105
+ type: task
2106
+ size: 4278
2107
+ - path: development/tasks/setup-database.md
2108
+ hash: sha256:510a41e309c31fa451e16f4c7417f96f5b8ed58ce55633d2c7d8d2d05f12ade9
2109
+ type: task
2110
+ size: 16008
2111
+ - path: development/tasks/setup-design-system.md
2112
+ hash: sha256:f1ad5c4af5dabb04df989bf596c5d0034cb70a60577a9b444e831d53e3bd8c7d
2113
+ type: task
2114
+ size: 13047
2115
+ - path: development/tasks/setup-github.md
2116
+ hash: sha256:baab8b939a7481a60bfcb0373c79877741f824ad06ddf0a59d8d279a1c97c97f
2117
+ type: task
2118
+ size: 31257
2119
+ - path: development/tasks/setup-llm-routing.md
2120
+ hash: sha256:a8501ef0acec3134f8382640f23a9a20ff406ab48b3fb640485c44ae56f0ec0d
2121
+ type: task
2122
+ size: 4699
2123
+ - path: development/tasks/setup-mcp-docker.md
2124
+ hash: sha256:88749f696bce03d5ca3fb9355ac8f51d7afde3dc24d1ba381a546f8383d39ba4
2125
+ type: task
2126
+ size: 16338
2127
+ - path: development/tasks/setup-project-docs.md
2128
+ hash: sha256:c7eb31d949de8d48b770235e218bf3102702b2f4e332b23710536ad27d5fe5c5
2129
+ type: task
2130
+ size: 12311
2131
+ - path: development/tasks/shard-doc.md
2132
+ hash: sha256:ebad9fb1a10573f39e30e4fe4ec7c54a743fd4a09bae9ab136061f66a705128f
2133
+ type: task
2134
+ size: 14709
2135
+ - path: development/tasks/sm-create-next-story.md
2136
+ hash: sha256:c9b28c64740d27e4c7262f258edaac4fa238f9732c4ae9cc342749d28e54984a
2137
+ type: task
2138
+ size: 18066
2139
+ - path: development/tasks/spec-assess-complexity.md
2140
+ hash: sha256:860d6c4641282a426840ccea8bed766c8eddeb9806e4e0a806a330f70e5b6eca
2141
+ type: task
2142
+ size: 10448
2143
+ - path: development/tasks/spec-critique.md
2144
+ hash: sha256:01c88a49688139c15c568ae5d211914908c67b5781b56d0af34f696cd0b65941
2145
+ type: task
2146
+ size: 13309
2147
+ - path: development/tasks/spec-gather-requirements.md
2148
+ hash: sha256:1aa735b1b015f966ad16822c67a1b85b0ced310350c09f3f27eb508a38967382
2149
+ type: task
2150
+ size: 14265
2151
+ - path: development/tasks/spec-research-dependencies.md
2152
+ hash: sha256:59aec004a432753b81d92a0a429345ee0633aa67c18d08582297b086c95387e9
2153
+ type: task
2154
+ size: 9625
2155
+ - path: development/tasks/spec-write-spec.md
2156
+ hash: sha256:fe8f7d5ee6780b6b685f9f65f74f2b0e09d3d6bae116c8babbe02d1ed4587903
2157
+ type: task
2158
+ size: 11347
2159
+ - path: development/tasks/squad-creator-analyze.md
2160
+ hash: sha256:d64d7ff7b1155ca625493096bfefe9c0b7d6d9452647e8ced81191954fea4e41
2161
+ type: task
2162
+ size: 7070
2163
+ - path: development/tasks/squad-creator-create.md
2164
+ hash: sha256:502707a2812fffc3a0586ca87ab20e32f98e9a00237b0415abe00e8b070686c1
2165
+ type: task
2166
+ size: 8470
2167
+ - path: development/tasks/squad-creator-design.md
2168
+ hash: sha256:b007469ff5072e16a7732b5f4a997f4dc66ca59d98d080aa386c5cc405797070
2169
+ type: task
2170
+ size: 12699
2171
+ - path: development/tasks/squad-creator-download.md
2172
+ hash: sha256:5f3aea7ccc0b74eb7b98caa338b7631ddf1c69a0f385a8f9bd225640d59e5483
2173
+ type: task
2174
+ size: 3883
2175
+ - path: development/tasks/squad-creator-extend.md
2176
+ hash: sha256:b0530a405e5d03efee1521b15e4177a9be6a08ace094c4d173850fdb7f634340
2177
+ type: task
2178
+ size: 10221
2179
+ - path: development/tasks/squad-creator-list.md
2180
+ hash: sha256:4e4ffbe330eb1cfb4ea6f876a785449c89d593f8b16c651f28d171a3b3d30552
2181
+ type: task
2182
+ size: 6556
2183
+ - path: development/tasks/squad-creator-migrate.md
2184
+ hash: sha256:04c9801fef4f3eb9c3c9368f0da6385475a0d968d78010c851cdc1db6b16f2ca
2185
+ type: task
2186
+ size: 8747
2187
+ - path: development/tasks/squad-creator-publish.md
2188
+ hash: sha256:a623f5495440e27385e7e90b957fed83f3ed49ab4e4510fbaa1625dc78522140
2189
+ type: task
2190
+ size: 4953
2191
+ - path: development/tasks/squad-creator-sync-grimoire.md
2192
+ hash: sha256:d3a7ec6b0128d89ed42c175de07840cfa9ab0b22a269bf9c3cf81867913c91dd
2193
+ type: task
2194
+ size: 8704
2195
+ - path: development/tasks/squad-creator-sync-ide-command.md
2196
+ hash: sha256:e7484d6d7affc7614f6fd55b29c9c05f793f3a956b072cb801b17db66637ebde
2197
+ type: task
2198
+ size: 12386
2199
+ - path: development/tasks/squad-creator-validate.md
2200
+ hash: sha256:fa39ebc58268c75e093722f881cbb91e80c80feaac6a58c907b38ed9772ae87e
2201
+ type: task
2202
+ size: 5064
2203
+ - path: development/tasks/story-checkpoint.md
2204
+ hash: sha256:a803f6c45c6ffc50d4361c6ef836dff9dbf337f8d0512b52e369c3f96f417cf2
2205
+ type: task
2206
+ size: 11477
2207
+ - path: development/tasks/sync-documentation.md
2208
+ hash: sha256:65d9347003728c398aa95d49b63c16a90242ae752b25288f38be2aac4418700e
2209
+ type: task
2210
+ size: 23371
2211
+ - path: development/tasks/tailwind-upgrade.md
2212
+ hash: sha256:e8f84c0f79f1954da46ebe55b90dd679e948376290cf0d2cf9fdfc117c0b9e75
2213
+ type: task
2214
+ size: 8159
2215
+ - path: development/tasks/test-as-user.md
2216
+ hash: sha256:23f8056c631b296f5b4b47262cba19dcdb099db91507faf7737ef9bac630f67d
2217
+ type: task
2218
+ size: 14050
2219
+ - path: development/tasks/test-validation-task.md
2220
+ hash: sha256:205e6b4ee7da9c81be82119fd1ecfde819a3d2b59a63725ed73d56fcb8dc3ab3
2221
+ type: task
2222
+ size: 3347
2223
+ - path: development/tasks/undo-last.md
2224
+ hash: sha256:81da01a280f713e959d74f585a7f789acba30edc9b4c57dfe7a32911e32b6874
2225
+ type: task
2226
+ size: 7660
2227
+ - path: development/tasks/update-grimoire.md
2228
+ hash: sha256:0cd40f82746e483ea847433832c478dc205d86672f97b59bfd4d482a2c0cb07f
2229
+ type: task
2230
+ size: 4191
2231
+ - path: development/tasks/update-manifest.md
2232
+ hash: sha256:ab2acbd474bec3c709def9c6667a2fbd5c0bb3088c1e8c2bcfd4e3626124687d
2233
+ type: task
2234
+ size: 9751
2235
+ - path: development/tasks/update-source-tree.md
2236
+ hash: sha256:6ca4946c3b800cee1f238aaecdca385dd477f38f3bcfc89aab7a2329dc0f1909
2237
+ type: task
2238
+ size: 3119
2239
+ - path: development/tasks/ux-create-wireframe.md
2240
+ hash: sha256:6e0d6af3927884c19eaa8bcb818fe3f3e2accce76b2ae288e09bb571281a73e7
2241
+ type: task
2242
+ size: 15451
2243
+ - path: development/tasks/ux-ds-scan-artifact.md
2244
+ hash: sha256:f71df8491f25b0028b569924c6320de2a6226121b845f4df53f0035da85029eb
2245
+ type: task
2246
+ size: 16189
2247
+ - path: development/tasks/ux-user-research.md
2248
+ hash: sha256:f482dc5256904221d6e7df768add797b6af469dae42c298bae04354e8bd83109
2249
+ type: task
2250
+ size: 13280
2251
+ - path: development/tasks/validate-agents.md
2252
+ hash: sha256:6c8f4835d7859a3d38f572ce6be8ee6b5f5c6d19f90833fbb01772625ba22540
2253
+ type: task
2254
+ size: 3485
2255
+ - path: development/tasks/validate-next-story.md
2256
+ hash: sha256:b5ab9242fcef78de3ef72c26b1b5887598bea2e45956984d358e5e7692267a9c
2257
+ type: task
2258
+ size: 15878
2259
+ - path: development/tasks/validate-tech-preset.md
2260
+ hash: sha256:84893438d295c779480a574b9df7a2f6c09740a32654aa260b72eeac3812d082
2261
+ type: task
2262
+ size: 5993
2263
+ - path: development/tasks/validate-workflow.md
2264
+ hash: sha256:13ca82c605f28efece5cbac9a81a675475dff0dee4bca4247d26e43d3a7df4c9
2265
+ type: task
2266
+ size: 8286
2267
+ - path: development/tasks/verify-subtask.md
2268
+ hash: sha256:d0bb12050a5d2b9efddf768e138dcd2b6760e8a27948b361482e0f0a344b2162
2269
+ type: task
2270
+ size: 4931
2271
+ - path: development/tasks/waves.md
2272
+ hash: sha256:21787bac98c3239b58eb7573f6645b3817f6efced0363301b47519e818f797cf
2273
+ type: task
2274
+ size: 4687
2275
+ - path: development/tasks/yolo-toggle.md
2276
+ hash: sha256:6c9c2a3099c8fbdc5a2233081ebf64cf82594429fe8280f57fd2a09e0838457e
2277
+ type: task
2278
+ size: 2258
2279
+ - path: development/templates/grimoire-doc-template.md
2280
+ hash: sha256:31b8707590b5440b171babb7422ffe017207dd48e5cf95384062c1022bb67986
2281
+ type: template
2282
+ size: 8293
2283
+ - path: development/templates/research-prompt-tmpl.md
2284
+ hash: sha256:000676982a6f1a22559a673102949604d6b97354356ab1891815ba18e0e72c30
2285
+ type: template
2286
+ size: 13371
2287
+ - path: development/templates/service-template/__tests__/index.test.ts.hbs
2288
+ hash: sha256:5208baf72fe888b2a9cfc9b1054e2db667e142e00cd9df84934d8f823b0cb02c
2289
+ type: template
2290
+ size: 9579
2291
+ - path: development/templates/service-template/client.ts.hbs
2292
+ hash: sha256:607ab1ec0e469003aa34702d96310dc8a67b0364e2d7b60962efcec814597ddd
2293
+ type: template
2294
+ size: 11816
2295
+ - path: development/templates/service-template/errors.ts.hbs
2296
+ hash: sha256:502431ac6714439fcd0e6c807b10a9b2ab7cd7662b38eb067590498e93ee607a
2297
+ type: template
2298
+ size: 5219
2299
+ - path: development/templates/service-template/index.ts.hbs
2300
+ hash: sha256:58f0c2df59c4edd20def1cac6889e6ea26f61a84c0f8385c0eceb9e53a079880
2301
+ type: template
2302
+ size: 3092
2303
+ - path: development/templates/service-template/jest.config.js
2304
+ hash: sha256:1681bfd7fbc0d330d3487d3427515847c4d57ef300833f573af59e0ad69ed159
2305
+ type: template
2306
+ size: 1750
2307
+ - path: development/templates/service-template/package.json.hbs
2308
+ hash: sha256:b35e65b5de7255232d1cbf784b186df565167fa3919a2519af963e44a14f2d3a
2309
+ type: template
2310
+ size: 2257
2311
+ - path: development/templates/service-template/README.md.hbs
2312
+ hash: sha256:dad7c2bea0d5f9916462915ecd9f4328fe0aae2d94752a4d0d11c58c41384ce2
2313
+ type: template
2314
+ size: 3448
2315
+ - path: development/templates/service-template/tsconfig.json
2316
+ hash: sha256:8b465fcbdd45c4d6821ba99aea62f2bd7998b1bca8de80486a1525e77d43c9a1
2317
+ type: template
2318
+ size: 1135
2319
+ - path: development/templates/service-template/types.ts.hbs
2320
+ hash: sha256:122c4a82305c195a643fd9b46ed3372f8ade7865d32f21e9f35efe743aeb64b8
2321
+ type: template
2322
+ size: 2522
2323
+ - path: development/templates/squad-template/agents/example-agent.yaml
2324
+ hash: sha256:824a1b349965e5d4ae85458c231b78260dc65497da75dada25b271f2cabbbe67
2325
+ type: agent
2326
+ size: 736
2327
+ - path: development/templates/squad-template/LICENSE
2328
+ hash: sha256:ff7017aa403270cf2c440f5ccb4240d0b08e54d8bf8a0424d34166e8f3e10138
2329
+ type: template
2330
+ size: 1071
2331
+ - path: development/templates/squad-template/package.json
2332
+ hash: sha256:72d6453672e6ef67eb7e61eac19f2b1d3b8de328d0d3e8a3ab03ad0a0909c1d5
2333
+ type: template
2334
+ size: 414
2335
+ - path: development/templates/squad-template/README.md
2336
+ hash: sha256:611f4b3524cc2f022e31dcb9d0cba20d315a0509ffa23d0d70db69d947f4c1f1
2337
+ type: template
2338
+ size: 480
2339
+ - path: development/templates/squad-template/squad.yaml
2340
+ hash: sha256:8d36355aaf0bf019041775bfdb00ed9abc5ce2f296dd712e7505e8ede30aeb56
2341
+ type: template
2342
+ size: 345
2343
+ - path: development/templates/squad-template/tasks/example-task.yaml
2344
+ hash: sha256:2e6c03c6a8c3190eea22c865eb6bb2dc168b40a07baec461d48f65721584a2a0
2345
+ type: task
2346
+ size: 1056
2347
+ - path: development/templates/squad-template/templates/example-template.md
2348
+ hash: sha256:cdcf7510c827ec2506b66b4539d21f683efd9c67481014e6df1b56d5e1afea93
2349
+ type: template
2350
+ size: 206
2351
+ - path: development/templates/squad-template/tests/example-agent.test.js
2352
+ hash: sha256:4ff95cb1479bf287be9f5a421bfe86e1570ffa301c5684d201ace2fb88f75236
2353
+ type: template
2354
+ size: 1516
2355
+ - path: development/templates/squad-template/workflows/example-workflow.yaml
2356
+ hash: sha256:ae6b2e5eadba6625323b0e646fe9648ae8acf86c8bc6ea4ac35aa5a7c5265d5f
2357
+ type: workflow
2358
+ size: 1173
2359
+ - path: development/templates/squad/agent-template.md
2360
+ hash: sha256:b8ba4621f0bf03bf3612a683cebaa52e246cba19fb81197493ec4d682a1db14b
2361
+ type: template
2362
+ size: 1432
2363
+ - path: development/templates/squad/checklist-template.md
2364
+ hash: sha256:5c962f20d7d56ef8800f60dc32f8105b2669311664cfd330301f812dc67934af
2365
+ type: template
2366
+ size: 1317
2367
+ - path: development/templates/squad/data-template.yaml
2368
+ hash: sha256:d228821b39c7135e19f49405c10cae7ac43f5ffcd946d6363f053420a3a3019f
2369
+ type: template
2370
+ size: 2121
2371
+ - path: development/templates/squad/script-template.js
2372
+ hash: sha256:2d568171ef0c7ed2822d2b1d81a5f0d02c16bd2a2fb11665c8608dd7da7fc323
2373
+ type: template
2374
+ size: 3375
2375
+ - path: development/templates/squad/task-template.md
2376
+ hash: sha256:3f337082a14cd33dd4876d5dc487d0ec069dad5f54aeaac9853b2a13051a70db
2377
+ type: template
2378
+ size: 1882
2379
+ - path: development/templates/squad/template-template.md
2380
+ hash: sha256:412230ad0213def1a65c319cd73fe6e25ba824e182b16ca990d9a6095848b684
2381
+ type: template
2382
+ size: 1498
2383
+ - path: development/templates/squad/tool-template.js
2384
+ hash: sha256:31e026003459be51451d0ca6905847bab2d9e397d92dc9b521b563516d27b5cf
2385
+ type: template
2386
+ size: 1796
2387
+ - path: development/templates/squad/workflow-template.yaml
2388
+ hash: sha256:837991039c9dcb77ad4ded82035da96eac70ac2c4fd208833ace470a3ec32c0e
2389
+ type: template
2390
+ size: 2199
2391
+ - path: development/templates/subagent-step-prompt.md
2392
+ hash: sha256:a25bdf06d1ed0190c89a77c4f057307c186382da8dd4220de842bc4b8f1bf4e1
2393
+ type: template
2394
+ size: 4310
2395
+ - path: development/workflows/auto-worktree.yaml
2396
+ hash: sha256:91b4b290b3beb94a604f12b5d0ede240cec09256cca05cdfcdd7977ac7f597f2
2397
+ type: workflow
2398
+ size: 18557
2399
+ - path: development/workflows/brownfield-discovery.yaml
2400
+ hash: sha256:39eaf7a5855abcf751502800e86bdc7b1a4d8cc8c676ba2d8125cfa76a49ba36
2401
+ type: workflow
2402
+ size: 33253
2403
+ - path: development/workflows/brownfield-fullstack.yaml
2404
+ hash: sha256:64e4cfed7324bb1bbfcb83d912d43a6dc69794ffe4e79160ee8d5baba04504c2
2405
+ type: workflow
2406
+ size: 13268
2407
+ - path: development/workflows/brownfield-service.yaml
2408
+ hash: sha256:2a330763e34d39d7f55786f9c9f6e68a56c8e74f08f15ea27234435c97aea810
2409
+ type: workflow
2410
+ size: 8667
2411
+ - path: development/workflows/brownfield-ui.yaml
2412
+ hash: sha256:00fe04d14ee8f74219a72b8200e7e1f19a1690b15cf6aabe412b85fd0226c147
2413
+ type: workflow
2414
+ size: 9265
2415
+ - path: development/workflows/design-system-build-quality.yaml
2416
+ hash: sha256:95bbbf31e8868c9c941292f306c97e5ea8ba5ef66676e05809e64a3bc9d97bf7
2417
+ type: workflow
2418
+ size: 6951
2419
+ - path: development/workflows/development-cycle.yaml
2420
+ hash: sha256:e46299f89503345a926ccedea8a823ae9770a6dcd918df45dcd05fb87e632b91
2421
+ type: workflow
2422
+ size: 13545
2423
+ - path: development/workflows/epic-orchestration.yaml
2424
+ hash: sha256:7506806921027608699536e23ccbc98d26df34fe7f134997c03c82f8a1091dfa
2425
+ type: workflow
2426
+ size: 16920
2427
+ - path: development/workflows/greenfield-fullstack.yaml
2428
+ hash: sha256:ad480d2bb44b2f8a4eacefb77c3cea48de1365a4d7ed0c5512a3f18b25278504
2429
+ type: workflow
2430
+ size: 16506
2431
+ - path: development/workflows/greenfield-service.yaml
2432
+ hash: sha256:a9b5491a94ea65b9bfa0e392422fc760658a49cfdfcede6a267fa74c8c355cfb
2433
+ type: workflow
2434
+ size: 11242
2435
+ - path: development/workflows/greenfield-ui.yaml
2436
+ hash: sha256:be736452c9c4fd3a4900fe4ee98a05cabf6623b87c0c10aa1050e704a54db1aa
2437
+ type: workflow
2438
+ size: 10754
2439
+ - path: development/workflows/qa-loop.yaml
2440
+ hash: sha256:7cd5fda0ebba1c7189baf74e56952209b05bd2ffd29d246bf1ccf2f9a8ca5de0
2441
+ type: workflow
2442
+ size: 18753
2443
+ - path: development/workflows/README.md
2444
+ hash: sha256:ba6fa16b2ff69877058c2845a8aadc82c7991548398210387486c6cb5240a2f0
2445
+ type: workflow
2446
+ size: 2452
2447
+ - path: development/workflows/spec-pipeline.yaml
2448
+ hash: sha256:405116c579a7474391742537b47bce9d13b076383bd685848f8af146ff7201ab
2449
+ type: workflow
2450
+ size: 23736
2451
+ - path: development/workflows/story-development-cycle.yaml
2452
+ hash: sha256:4404d7da2d5735d046ef77025b6684ccf295a547a19350be92db1bbfdf09d1bc
2453
+ type: workflow
2454
+ size: 8016
2455
+ - path: docs/standards/AGENT-PERSONALIZATION-STANDARD-V1.md
2456
+ hash: sha256:66e52cf1cc13610dadc3995523e47fcb83d10a34c940cee8dbc7be4eb907e1bb
2457
+ type: documentation
2458
+ size: 16030
2459
+ - path: docs/standards/EXECUTOR-DECISION-TREE.md
2460
+ hash: sha256:74553a0a39f59e31bc62a4c9fed1ec73a553e3362710d32acaef2c46f8b571ce
2461
+ type: documentation
2462
+ size: 19278
2463
+ - path: docs/standards/grimoire-COLOR-PALETTE-QUICK-REFERENCE.md
2464
+ hash: sha256:1346d006a69a8b1ef27ed164b18e5ab7241492b85bd5992ff1f35cc7aab2343d
2465
+ type: documentation
2466
+ size: 4145
2467
+ - path: docs/standards/grimoire-COLOR-PALETTE-V2.1.md
2468
+ hash: sha256:58c925fb2ad92199bb049a68f7881ed27148e0045fb60dcb62206bcf6c551981
2469
+ type: documentation
2470
+ size: 9596
2471
+ - path: docs/standards/OPEN-SOURCE-VS-SERVICE-DIFFERENCES.md
2472
+ hash: sha256:9561045c2815c78547e87f81cdf48806973e069844071c788afaa5544e4a6a0a
2473
+ type: documentation
2474
+ size: 16462
2475
+ - path: docs/standards/QUALITY-GATES-SPECIFICATION.md
2476
+ hash: sha256:b2980295c308fe149b109adbbff1861a4072e8e1cca735ba89d002d1f8b8887d
2477
+ type: documentation
2478
+ size: 19765
2479
+ - path: docs/standards/STANDARDS-INDEX.md
2480
+ hash: sha256:2ae838a841b5b7a6753eaa1e79683b298ffdc8ecdb1e1e5a8a797eb0b25bbcea
2481
+ type: documentation
2482
+ size: 8544
2483
+ - path: docs/standards/STORY-TEMPLATE-V2-SPECIFICATION.md
2484
+ hash: sha256:f45cd51df0c46e98b737c0f2eba682b987831844d41bc213bd5969cd45e4d645
2485
+ type: documentation
2486
+ size: 11592
2487
+ - path: docs/standards/TASK-FORMAT-SPECIFICATION-V1.md
2488
+ hash: sha256:df6a5217ce37081b21c164641932ec86996cd6931485afde44cf12eb32d0467f
2489
+ type: documentation
2490
+ size: 34495
2491
+ - path: elicitation/agent-elicitation.js
2492
+ hash: sha256:ef13ebff1375279e7b8f0f0bbd3699a0d201f9a67127efa64c4142159a26f417
2493
+ type: elicitation
2494
+ size: 9482
2495
+ - path: elicitation/task-elicitation.js
2496
+ hash: sha256:cc44ad635e60cbdb67d18209b4b50d1fb2824de2234ec607a6639eb1754bfc75
2497
+ type: elicitation
2498
+ size: 8296
2499
+ - path: elicitation/workflow-elicitation.js
2500
+ hash: sha256:1107b7328b8694047e32eee17328241ce51d061e5c15ffdab9d1aa3340f3cd5d
2501
+ type: elicitation
2502
+ size: 9677
2503
+ - path: index.esm.js
2504
+ hash: sha256:a44f7b6100d482f92c95eccd0e4e1ec431c06f78b0bd2e108458d9e798bcfe9e
2505
+ type: code
2506
+ size: 634
2507
+ - path: index.js
2508
+ hash: sha256:9b9cb839baf94f76ccd373120918d796f33cb58c8ff8b236139abb74de1bb3b1
2509
+ type: code
2510
+ size: 758
2511
+ - path: infrastructure/contracts/compatibility/grimoire-4.0.4.yaml
2512
+ hash: sha256:a2fede6532d7f32dcced2f819dd329776219b596d95a6f46c60b89c740ea0cde
2513
+ type: infrastructure
2514
+ size: 1081
2515
+ - path: infrastructure/index.js
2516
+ hash: sha256:e213dd1411e8a07de38ed88f0d95da42486d7542ef48cf541fa268aaa8c30c50
2517
+ type: infrastructure
2518
+ size: 6904
2519
+ - path: infrastructure/integrations/ai-providers/ai-provider-factory.js
2520
+ hash: sha256:2c95660d11b4587ae80e5be5611946cd68bdb281280b8820c093c697beab0f98
2521
+ type: infrastructure
2522
+ size: 7000
2523
+ - path: infrastructure/integrations/ai-providers/ai-provider.js
2524
+ hash: sha256:78a9d55c187de61af315e3bc9ac74356cf2788d39f5c04682f5f4697fc38bca3
2525
+ type: infrastructure
2526
+ size: 4507
2527
+ - path: infrastructure/integrations/ai-providers/claude-provider.js
2528
+ hash: sha256:ae3c88afda09e599d15911be353efc0e68c1b1ec7797d8859711d9538a606637
2529
+ type: infrastructure
2530
+ size: 4796
2531
+ - path: infrastructure/integrations/ai-providers/gemini-provider.js
2532
+ hash: sha256:725fe6896b6b043c2122700049843b35432225ebda91455da7f2e5f6c4257eac
2533
+ type: infrastructure
2534
+ size: 10494
2535
+ - path: infrastructure/integrations/ai-providers/index.js
2536
+ hash: sha256:776452c54d5b5db90e29488873ff3cf41a4bd372ec6cd2ae887412ba0244ff5a
2537
+ type: infrastructure
2538
+ size: 975
2539
+ - path: infrastructure/integrations/ai-providers/README.md
2540
+ hash: sha256:8301dc462856788e60b6f10d97e613eeb2262128c1b5e274f280491c8d7e83f3
2541
+ type: infrastructure
2542
+ size: 2609
2543
+ - path: infrastructure/integrations/gemini-extensions/cloudrun-adapter.js
2544
+ hash: sha256:b895a1e305b5b13a3b7c73921962804f0720e0aced58f1acd47b3372cfb49c17
2545
+ type: infrastructure
2546
+ size: 3254
2547
+ - path: infrastructure/integrations/gemini-extensions/index.js
2548
+ hash: sha256:75f89bb3eb7a2967e9e6fa6ae3e955fc1fa9ad7b3d978f4b54d91ad40c396951
2549
+ type: infrastructure
2550
+ size: 951
2551
+ - path: infrastructure/integrations/gemini-extensions/policy-sync.js
2552
+ hash: sha256:d7f025142d82c6423426fe30c4d49f9bcf9dea0d72a1ea963bbd668ec8899a57
2553
+ type: infrastructure
2554
+ size: 1534
2555
+ - path: infrastructure/integrations/gemini-extensions/security-adapter.js
2556
+ hash: sha256:37b407bf263ad66f4bbd78b599718a92089588a9f7b495853a2ccebdf525d0a9
2557
+ type: infrastructure
2558
+ size: 4081
2559
+ - path: infrastructure/integrations/gemini-extensions/supabase-adapter.js
2560
+ hash: sha256:2708ff1eaa7bfa6bd61e7fa4357b84cdceb4c5944eecb03e8e1407f770e845bd
2561
+ type: infrastructure
2562
+ size: 1998
2563
+ - path: infrastructure/integrations/gemini-extensions/workspace-adapter.js
2564
+ hash: sha256:9eb9180e11ef39271e2a1e2a34f3d5d9d7cacec417150fa76003655fcc509c46
2565
+ type: infrastructure
2566
+ size: 3066
2567
+ - path: infrastructure/integrations/pm-adapters/clickup-adapter.js
2568
+ hash: sha256:86ab6ac2d764c90d0de5a6f6b9b15e6e95695d540eb4d7c06351407dd5026828
2569
+ type: infrastructure
2570
+ size: 9777
2571
+ - path: infrastructure/integrations/pm-adapters/github-adapter.js
2572
+ hash: sha256:f6d497813647743ce9341972acadfbf6f7fdd5938305845b63560e875c72319d
2573
+ type: infrastructure
2574
+ size: 10387
2575
+ - path: infrastructure/integrations/pm-adapters/jira-adapter.js
2576
+ hash: sha256:bde4885c4e634bff2a74543075d927adb973a1fb4dbddc3c88406016fb18c9d3
2577
+ type: infrastructure
2578
+ size: 12038
2579
+ - path: infrastructure/integrations/pm-adapters/local-adapter.js
2580
+ hash: sha256:2fb81b1f78f284f0dd88839f8784b87f623f3d10b583a5c3aa864329f6287bd6
2581
+ type: infrastructure
2582
+ size: 4788
2583
+ - path: infrastructure/integrations/pm-adapters/README.md
2584
+ hash: sha256:bf6864efb7d498308dea2ed0c2faabf0432d7bd465c56fd399bdc3bc76a1dc62
2585
+ type: infrastructure
2586
+ size: 1610
2587
+ - path: infrastructure/README.md
2588
+ hash: sha256:09a82b0acd326f7dacf8875e3257dedf129d9f985f07279d2b7a58341e638ce6
2589
+ type: infrastructure
2590
+ size: 3778
2591
+ - path: infrastructure/schemas/agent-v3-schema.json
2592
+ hash: sha256:3f81b04b081eab85a8658f8a192b2271da710024768ca3b9518434dd96a4261f
2593
+ type: infrastructure
2594
+ size: 6280
2595
+ - path: infrastructure/schemas/build-state.schema.json
2596
+ hash: sha256:a15b3733bcf61f23896ad8401e473901814fa8a7e1a574f6970c19073b74f961
2597
+ type: infrastructure
2598
+ size: 5119
2599
+ - path: infrastructure/schemas/task-v3-schema.json
2600
+ hash: sha256:5c606f6cee3a525c78988d5006861307b989c348e20365b454261aeb5c78e730
2601
+ type: infrastructure
2602
+ size: 4098
2603
+ - path: infrastructure/scripts/approach-manager.js
2604
+ hash: sha256:c773d8eaa0cda27fd1cf439ab3e87f6eafed383cc91b8674fffae5da5358fdcd
2605
+ type: script
2606
+ size: 32266
2607
+ - path: infrastructure/scripts/approval-workflow.js
2608
+ hash: sha256:c03df4f9aaae87a6410e3e9d55a47f6f7713dd47eb971c051104bb9b395dcb98
2609
+ type: script
2610
+ size: 21581
2611
+ - path: infrastructure/scripts/asset-inventory.js
2612
+ hash: sha256:7e037d79fc0349f066435568110627f80b29948c3defba3d05467845449b8321
2613
+ type: script
2614
+ size: 17513
2615
+ - path: infrastructure/scripts/atomic-layer-classifier.js
2616
+ hash: sha256:6047b12bfffb04a2622882714843b4e9dc9d715e7873c87a25211b17ed0ca670
2617
+ type: script
2618
+ size: 8470
2619
+ - path: infrastructure/scripts/backup-manager.js
2620
+ hash: sha256:913417a1d5c4dfb30aa8a0aacdba5cd1e3018bf8d851a62d6be10ea6f9dac2a8
2621
+ type: script
2622
+ size: 16681
2623
+ - path: infrastructure/scripts/batch-creator.js
2624
+ hash: sha256:0112a665e6275f4f5736ee2cc0f70bce9bdddb2cd556d0f7828344491c124f2b
2625
+ type: script
2626
+ size: 17808
2627
+ - path: infrastructure/scripts/branch-manager.js
2628
+ hash: sha256:7c74d421603a60934a3139ddee9d2d78f31e3d9bd6c077a1b8bd998db130ea9b
2629
+ type: script
2630
+ size: 11605
2631
+ - path: infrastructure/scripts/capability-analyzer.js
2632
+ hash: sha256:ae12d078e6a603175cb00c236582ad838f30fd12d3ba87b29aaa2c1e11ddd9b2
2633
+ type: script
2634
+ size: 16194
2635
+ - path: infrastructure/scripts/changelog-generator.js
2636
+ hash: sha256:cb77eb3e99ea8ec8e229e1d8ed1839ff001cfa20bcc0b52700ec06ae756891a4
2637
+ type: script
2638
+ size: 15338
2639
+ - path: infrastructure/scripts/cicd-discovery.js
2640
+ hash: sha256:0a02145746d470d96ef0eff06dbf3f01ad5302c2ae0501aa6f3ec816900f5d54
2641
+ type: script
2642
+ size: 33922
2643
+ - path: infrastructure/scripts/clickup-helpers.js
2644
+ hash: sha256:442668c3e8a2daefdafdb6b470d9cb7b1588fe5aff79acc589bdba9a487129fb
2645
+ type: script
2646
+ size: 6955
2647
+ - path: infrastructure/scripts/code-quality-improver.js
2648
+ hash: sha256:765dd10a367656b330a659b2245ef2eb9a947905fee71555198837743fc1483f
2649
+ type: script
2650
+ size: 39851
2651
+ - path: infrastructure/scripts/codebase-mapper.js
2652
+ hash: sha256:80d892a4a11f2ef868899e8af6a1a75fe5ba14d153aaa76b2600a7801d656542
2653
+ type: script
2654
+ size: 40750
2655
+ - path: infrastructure/scripts/codex-skills-sync/index.js
2656
+ hash: sha256:7d5c07d759cd4b578e862720478b46e5791a1d8910147668acf4a4745966ad3c
2657
+ type: script
2658
+ size: 5270
2659
+ - path: infrastructure/scripts/codex-skills-sync/validate.js
2660
+ hash: sha256:e5de5cd2cb47c70ebf345bc3ff9fefbf4d350db277aed51a689667c88228d982
2661
+ type: script
2662
+ size: 4578
2663
+ - path: infrastructure/scripts/commit-message-generator.js
2664
+ hash: sha256:c95533b2f7b580bd2363342b96ceae5d882a6648e40a2429f7ab8108b652b1a2
2665
+ type: script
2666
+ size: 25415
2667
+ - path: infrastructure/scripts/component-generator.js
2668
+ hash: sha256:61b495c1c7c9401219756693c410da00ba95b93d544d0b9ce5d94d736291f933
2669
+ type: script
2670
+ size: 25945
2671
+ - path: infrastructure/scripts/component-metadata.js
2672
+ hash: sha256:80660cd17bf047d42deb2c08f9149f12c766093c547470d227b463c542d20350
2673
+ type: script
2674
+ size: 18787
2675
+ - path: infrastructure/scripts/component-search.js
2676
+ hash: sha256:27523675accb9b767f513e47b4c08560d48ce317909953386b1353293df75ed5
2677
+ type: script
2678
+ size: 7799
2679
+ - path: infrastructure/scripts/config-cache.js
2680
+ hash: sha256:4f55401fee7010d01545808ed6f6c40a91ce43180d405f93d5073480512d30d5
2681
+ type: script
2682
+ size: 7473
2683
+ - path: infrastructure/scripts/config-loader.js
2684
+ hash: sha256:ab0b53f8816354eb394ccfa92f6e345ccca081e2375a17ae83009ec7a5328ca7
2685
+ type: script
2686
+ size: 10651
2687
+ - path: infrastructure/scripts/conflict-resolver.js
2688
+ hash: sha256:3d2794a66f16fcea95b096386dc9c2dcd31e5938d862030e7ac1f38c00a2c0bd
2689
+ type: script
2690
+ size: 19200
2691
+ - path: infrastructure/scripts/coverage-analyzer.js
2692
+ hash: sha256:b27b8e6b8362c88d121533ad069c40df1232d5b9f57ce767cfc35d105b6f3d69
2693
+ type: script
2694
+ size: 28266
2695
+ - path: infrastructure/scripts/dashboard-status-writer.js
2696
+ hash: sha256:0ebd139389b387e36c99bf9e9e80a1506b0901c54a150a4cab377424e9e93b68
2697
+ type: script
2698
+ size: 7890
2699
+ - path: infrastructure/scripts/dependency-analyzer.js
2700
+ hash: sha256:4cbd4ff4bd7611b3b21d0bded15e91d0dad403bc2cc117226bfad5dc58a0352d
2701
+ type: script
2702
+ size: 18056
2703
+ - path: infrastructure/scripts/dependency-impact-analyzer.js
2704
+ hash: sha256:8f69fcbe2c4f8e71d9960e852cd442fd0be2c01ed9dfb02461e804d21c89a0e5
2705
+ type: script
2706
+ size: 21945
2707
+ - path: infrastructure/scripts/diff-generator.js
2708
+ hash: sha256:569387c1dd8ee00d0ebc34b9f463438150ed9c96af2e5728fde83c36626211cf
2709
+ type: script
2710
+ size: 3134
2711
+ - path: infrastructure/scripts/documentation-integrity/brownfield-analyzer.js
2712
+ hash: sha256:81ce9f0014c44f97b17723b40ef7617ccff315426e03714a973d033ca0438940
2713
+ type: script
2714
+ size: 15067
2715
+ - path: infrastructure/scripts/documentation-integrity/config-generator.js
2716
+ hash: sha256:7448c629c579a4895d3e301761ee328e1c2c0657e3ade96856a57ec52f5dbaa1
2717
+ type: script
2718
+ size: 11298
2719
+ - path: infrastructure/scripts/documentation-integrity/deployment-config-loader.js
2720
+ hash: sha256:e98299e3f23459e9b4e141baf07a63dcd47112d0d4a83dcfc2b667eb7fb88cd9
2721
+ type: script
2722
+ size: 9141
2723
+ - path: infrastructure/scripts/documentation-integrity/doc-generator.js
2724
+ hash: sha256:6e58a80fc61b5af4780e98ac5c0c7070b1ed6281a776303d7550ad717b933afb
2725
+ type: script
2726
+ size: 9051
2727
+ - path: infrastructure/scripts/documentation-integrity/gitignore-generator.js
2728
+ hash: sha256:89354c969aa1b83c089e8244bbfaaa233a0d1e27ee7039a1b724cb038fccd435
2729
+ type: script
2730
+ size: 8186
2731
+ - path: infrastructure/scripts/documentation-integrity/index.js
2732
+ hash: sha256:e7ee42fdb64f986950310b322d071351cb6e071f36687f14299c8a5367ff2cd9
2733
+ type: script
2734
+ size: 3214
2735
+ - path: infrastructure/scripts/documentation-integrity/mode-detector.js
2736
+ hash: sha256:9d8138cab5607681343eae0b99510a7750ab1cd41b5611b61f495d499648b5f2
2737
+ type: script
2738
+ size: 12720
2739
+ - path: infrastructure/scripts/documentation-synchronizer.js
2740
+ hash: sha256:d3ecc2a02ca9c595f0687f6ac865270588a06c1ffb2522f254914575e4c603a8
2741
+ type: script
2742
+ size: 42443
2743
+ - path: infrastructure/scripts/framework-analyzer.js
2744
+ hash: sha256:2bfe9e7501e2eb4684e07c84a6f232f39eda11724aa0c6bda127611d992d155a
2745
+ type: script
2746
+ size: 24291
2747
+ - path: infrastructure/scripts/git-config-detector.js
2748
+ hash: sha256:4b63896ed38fd38e4d77f1e3c221fcd786396555d9e1e91337963a57fe5ef2d8
2749
+ type: script
2750
+ size: 6831
2751
+ - path: infrastructure/scripts/git-hooks/post-commit.js
2752
+ hash: sha256:04eef52e79c1a1c511d1b63f83a787b37a8ed5d8d5b4f69ebc02c8b13954adab
2753
+ type: script
2754
+ size: 1985
2755
+ - path: infrastructure/scripts/git-wrapper.js
2756
+ hash: sha256:6a940ef97139ede91e94c5d0c852cb837c4d0344f175d3286f4fd7ebaa4f4b49
2757
+ type: script
2758
+ size: 9741
2759
+ - path: infrastructure/scripts/gotchas-documenter.js
2760
+ hash: sha256:fee385d7ddb920dd38944cdad2fc5ce0ab5918b5d2f1206d6c650d629e408129
2761
+ type: script
2762
+ size: 38491
2763
+ - path: infrastructure/scripts/grimoire-validator.js
2764
+ hash: sha256:0dd70e819bb410ff1cc10a35c66c72d38157e891d52f7231af74f38f829dd378
2765
+ type: script
2766
+ size: 7282
2767
+ - path: infrastructure/scripts/ide-sync/agent-parser.js
2768
+ hash: sha256:b4dceac261653d85d791b6cd8b010ebfaa75cab179477b193a2448482b4aa4d4
2769
+ type: script
2770
+ size: 8846
2771
+ - path: infrastructure/scripts/ide-sync/gemini-commands.js
2772
+ hash: sha256:cb8be813945d7016abc6ea8ea5a3ccd6a0bb21befe1a7afe6f565dba5b769299
2773
+ type: script
2774
+ size: 5581
2775
+ - path: infrastructure/scripts/ide-sync/index.js
2776
+ hash: sha256:94e6cf194c6b247297a01fce6a9ef7e4d28727f1b50b9e391b35671db854778d
2777
+ type: script
2778
+ size: 14817
2779
+ - path: infrastructure/scripts/ide-sync/README.md
2780
+ hash: sha256:5d2b678700d25c1b297eb6f887bebb2132f6b7e7ea37ce0826c2d3e862df48ab
2781
+ type: script
2782
+ size: 5350
2783
+ - path: infrastructure/scripts/ide-sync/redirect-generator.js
2784
+ hash: sha256:7fec5491538e2518cee4ddf5e3e6f94295cc65486edeaaaa44c619e88651c3e7
2785
+ type: script
2786
+ size: 4243
2787
+ - path: infrastructure/scripts/ide-sync/transformers/antigravity.js
2788
+ hash: sha256:1594c4cb3fdebc85ceefc0b035db9f2a76825ead73c2825fc1509aa1241c3178
2789
+ type: script
2790
+ size: 2795
2791
+ - path: infrastructure/scripts/ide-sync/transformers/claude-code.js
2792
+ hash: sha256:1278991abe992a6361b18b6a8c5200c83eb8d2e0fbb082c5235811e2bce077f2
2793
+ type: script
2794
+ size: 2242
2795
+ - path: infrastructure/scripts/ide-sync/transformers/cursor.js
2796
+ hash: sha256:21b7f674c1312abd1c6f2020bde69c9a3f15ecae2e4715ff4d8930272447d481
2797
+ type: script
2798
+ size: 2438
2799
+ - path: infrastructure/scripts/ide-sync/validator.js
2800
+ hash: sha256:356c78125db7f88d14f4e521808e96593d729291c3d7a1c36cb02f78b4aef8fc
2801
+ type: script
2802
+ size: 7316
2803
+ - path: infrastructure/scripts/improvement-engine.js
2804
+ hash: sha256:58ace01a3054d93a1262e27b1eadc91e53b71112dfe9324a42499b5043a05da5
2805
+ type: script
2806
+ size: 24056
2807
+ - path: infrastructure/scripts/improvement-validator.js
2808
+ hash: sha256:0feccadc841f095b2f1a6f5346f661692c5c15d9cd803ad22f06b53ecedd5df4
2809
+ type: script
2810
+ size: 19320
2811
+ - path: infrastructure/scripts/llm-routing/install-llm-routing.js
2812
+ hash: sha256:b31901adae0e3334d277fec2b01e2af2f6503807eedff433a9d1a195756e7616
2813
+ type: script
2814
+ size: 8574
2815
+ - path: infrastructure/scripts/llm-routing/templates/claude-free-tracked.cmd
2816
+ hash: sha256:fb5c088eb37f15cc861b10c28f0ff7362118874c0388c9ab8002ca7d9dafac27
2817
+ type: template
2818
+ size: 4145
2819
+ - path: infrastructure/scripts/llm-routing/templates/claude-free-tracked.sh
2820
+ hash: sha256:be1904080b79ec25fbb9fad09465853ecc7c468dcbc005e4bc44af0e23dc6d46
2821
+ type: template
2822
+ size: 3315
2823
+ - path: infrastructure/scripts/llm-routing/templates/claude-free.cmd
2824
+ hash: sha256:1cc019c602f0b702fefa9b02e02fce5106539d05adb72c4e419e99f3e74bf24b
2825
+ type: template
2826
+ size: 2525
2827
+ - path: infrastructure/scripts/llm-routing/templates/claude-free.sh
2828
+ hash: sha256:d54871ac90dae47a1a67e8d168fc3f85b04e81c95bc8691829c72a0e520d3ce1
2829
+ type: template
2830
+ size: 1851
2831
+ - path: infrastructure/scripts/llm-routing/templates/claude-max.cmd
2832
+ hash: sha256:30d541178e3be5e2d1dc53976757c2e9dd1dc33b13f3b2a82f4f68a689db81b0
2833
+ type: template
2834
+ size: 834
2835
+ - path: infrastructure/scripts/llm-routing/templates/claude-max.sh
2836
+ hash: sha256:92c8a73d51d66c79264b889b52f7663be34e64d30bc9639cbe9ee0d9d757f427
2837
+ type: template
2838
+ size: 481
2839
+ - path: infrastructure/scripts/llm-routing/templates/deepseek-proxy.cmd
2840
+ hash: sha256:a827e0523517b3168dbb7727e05fb1db0c0c1ab30a26da112e70046e1b1bc44e
2841
+ type: template
2842
+ size: 2074
2843
+ - path: infrastructure/scripts/llm-routing/templates/deepseek-proxy.sh
2844
+ hash: sha256:c8c2fb5f5911be6d2b137558000637bd1bceef7fcf5849517a954920ab86f446
2845
+ type: template
2846
+ size: 2204
2847
+ - path: infrastructure/scripts/llm-routing/templates/deepseek-usage.cmd
2848
+ hash: sha256:1b3a4608e51ee2f958ae5e67401644db14c078639210c61cb7c23164d3d4de95
2849
+ type: template
2850
+ size: 1856
2851
+ - path: infrastructure/scripts/llm-routing/templates/deepseek-usage.sh
2852
+ hash: sha256:d38e07b3a1bbb4d36f6613376b155fec65bc6be45d1762e9502f18f79770565b
2853
+ type: template
2854
+ size: 449
2855
+ - path: infrastructure/scripts/llm-routing/usage-tracker/index.js
2856
+ hash: sha256:8d18853b85ef6c86ba92379bb4a677a37a1633057862d969af724be612661dec
2857
+ type: script
2858
+ size: 16187
2859
+ - path: infrastructure/scripts/migrate-agent.js
2860
+ hash: sha256:65fd097f5e02deb3871175c682cb1996c2a25ac05261b19416db3a2d8cfee2eb
2861
+ type: script
2862
+ size: 13732
2863
+ - path: infrastructure/scripts/modification-risk-assessment.js
2864
+ hash: sha256:a928ff11aeb3dbbf8ba12d6c751dc01be4c130cc63a255ce706ba47cd473c626
2865
+ type: script
2866
+ size: 31720
2867
+ - path: infrastructure/scripts/modification-validator.js
2868
+ hash: sha256:0098459a8325e8424a935a064ef6596a6d285c8fd289a1d3362805cd9bf8323f
2869
+ type: script
2870
+ size: 16492
2871
+ - path: infrastructure/scripts/output-formatter.js
2872
+ hash: sha256:f446ef7f432c412ae6d4405cd65323950a8a1e37c8ce0a2157866d8f5de88709
2873
+ type: script
2874
+ size: 8969
2875
+ - path: infrastructure/scripts/path-analyzer.js
2876
+ hash: sha256:3400ce7abb11f5e1cfb7e5554bbd5733ab807735f289534cacc16748e0cc85dd
2877
+ type: script
2878
+ size: 13092
2879
+ - path: infrastructure/scripts/pattern-extractor.js
2880
+ hash: sha256:36af0b85ba3689b5ab64a099102962325dea88d0ef08c0e7b68279f480920700
2881
+ type: script
2882
+ size: 45066
2883
+ - path: infrastructure/scripts/performance-analyzer.js
2884
+ hash: sha256:322322c1c9623807c2db65c1e3f305e401b5e3af70af7386435696924ef9dc4c
2885
+ type: script
2886
+ size: 23435
2887
+ - path: infrastructure/scripts/performance-and-error-resolver.js
2888
+ hash: sha256:de4246a4f01f6da08c8de8a3595505ad8837524db39458f4e6c163cb671b6097
2889
+ type: script
2890
+ size: 7303
2891
+ - path: infrastructure/scripts/performance-optimizer.js
2892
+ hash: sha256:dc322e8d369c4ff08037d8c8aa7bd5489ade6a3475d9a086e953d358389a9412
2893
+ type: script
2894
+ size: 61039
2895
+ - path: infrastructure/scripts/performance-tracker.js
2896
+ hash: sha256:ff09724d636e6253f646047ab2ee845c3f550399b3e56eaeb73137228f692b75
2897
+ type: script
2898
+ size: 13882
2899
+ - path: infrastructure/scripts/plan-tracker.js
2900
+ hash: sha256:d5846f754aee89a9abfd7f4439b76d174f481f79f0aced4e56fde49197ed5995
2901
+ type: script
2902
+ size: 27119
2903
+ - path: infrastructure/scripts/pm-adapter-factory.js
2904
+ hash: sha256:c671254cb322b2cfed4883b5c71a7023b064e6451868dba9c32f0dec9dbefc03
2905
+ type: script
2906
+ size: 5007
2907
+ - path: infrastructure/scripts/pm-adapter.js
2908
+ hash: sha256:d8383516f70e1641be210dd4b033541fb6bfafd39fd5976361b8e322cdcb1058
2909
+ type: script
2910
+ size: 4056
2911
+ - path: infrastructure/scripts/pr-review-ai.js
2912
+ hash: sha256:7ddb138edcba4bac9a287f1bd4c9f4b3a2fcdafb4d6bb5e9a9c573f1c7f83262
2913
+ type: script
2914
+ size: 31287
2915
+ - path: infrastructure/scripts/project-status-loader.js
2916
+ hash: sha256:66a3b0f6540b76e7f8c76d6fbfd360de02235cbd9f936bea270d25c44c5bb30a
2917
+ type: script
2918
+ size: 25160
2919
+ - path: infrastructure/scripts/qa-loop-orchestrator.js
2920
+ hash: sha256:4db971d1bc43e06577f497f0e2a46f314ed9a3dde7e9d482b0b8eb50dc42c227
2921
+ type: script
2922
+ size: 42733
2923
+ - path: infrastructure/scripts/qa-report-generator.js
2924
+ hash: sha256:6e053a22eee1b4201387090433afc697a22b15e5e6eb0ff55ae35d9f8bbf445a
2925
+ type: script
2926
+ size: 35788
2927
+ - path: infrastructure/scripts/recovery-tracker.js
2928
+ hash: sha256:d4d9d8aa452253304a92b8191308eb7d9d72b2add5571b1d39cb1f8f933df378
2929
+ type: script
2930
+ size: 31330
2931
+ - path: infrastructure/scripts/refactoring-suggester.js
2932
+ hash: sha256:118d4cdbc64cf3238065f2fb98958305ae81e1384bc68f5a6c7b768f1232cd1e
2933
+ type: script
2934
+ size: 34686
2935
+ - path: infrastructure/scripts/repository-detector.js
2936
+ hash: sha256:49275fa0c52a878ed8c7b5cc66dc9ccb0c8d9544357814a2ade132159f283003
2937
+ type: script
2938
+ size: 2188
2939
+ - path: infrastructure/scripts/rollback-manager.js
2940
+ hash: sha256:b5ae1e06d1e6be6487340e439f14ea1991d8080b65ec5004bf6d1275f1422c74
2941
+ type: script
2942
+ size: 22276
2943
+ - path: infrastructure/scripts/sandbox-tester.js
2944
+ hash: sha256:019af2e23de70d7dacb49faf031ba0c1f5553ecebe52f361bab74bfca73ba609
2945
+ type: script
2946
+ size: 15702
2947
+ - path: infrastructure/scripts/security-checker.js
2948
+ hash: sha256:d0b39002dba29ea4648927a5fe1e2d8f8aacf47f902cb377f3b5aa77adb19fe8
2949
+ type: script
2950
+ size: 9541
2951
+ - path: infrastructure/scripts/spot-check-validator.js
2952
+ hash: sha256:4bf2d20ded322312aef98291d2a23913da565e1622bc97366c476793c6792c81
2953
+ type: script
2954
+ size: 4430
2955
+ - path: infrastructure/scripts/status-mapper.js
2956
+ hash: sha256:c5650610c5a5e3b5ecc9eb7dbe20baa3ed88c57ea9936cf1e6f9643f797c99d2
2957
+ type: script
2958
+ size: 3091
2959
+ - path: infrastructure/scripts/story-worktree-hooks.js
2960
+ hash: sha256:b71eac2c64b2ecffe4bb11dbc569a2338216382749e03d2e52d84a63b025677b
2961
+ type: script
2962
+ size: 10787
2963
+ - path: infrastructure/scripts/stuck-detector.js
2964
+ hash: sha256:84e36eba56dceb0465fa28bb6d436f3e754188bb8159883f24eb16f4fa619d1b
2965
+ type: script
2966
+ size: 39116
2967
+ - path: infrastructure/scripts/subtask-verifier.js
2968
+ hash: sha256:ceb0450fa12fa48f0255bb4565858eb1a97b28c30b98d36cb61d52d72e08b054
2969
+ type: script
2970
+ size: 22394
2971
+ - path: infrastructure/scripts/template-engine.js
2972
+ hash: sha256:63db0b84cae12ca391335c32b36a128c079be1e3830a6e852963fda6a9b4547e
2973
+ type: script
2974
+ size: 6957
2975
+ - path: infrastructure/scripts/template-validator.js
2976
+ hash: sha256:f8daa2656a49af9961c7e1d82e94d58b70002688a83de696117d4302f246cd1c
2977
+ type: script
2978
+ size: 8333
2979
+ - path: infrastructure/scripts/test-discovery.js
2980
+ hash: sha256:04038aa49ae515697084fcdacaf0ef8bc36029fc114f5a1206065d7928870449
2981
+ type: script
2982
+ size: 34477
2983
+ - path: infrastructure/scripts/test-generator.js
2984
+ hash: sha256:c93b0eb44e24918d9ee6f0558564ba78c9e093b9c1620b77a688367284dad7ab
2985
+ type: script
2986
+ size: 24950
2987
+ - path: infrastructure/scripts/test-quality-assessment.js
2988
+ hash: sha256:5b2cd5fa4d203494e4c538ab0c56bc8f54fe8110dfb40599240c57ce2fa822ff
2989
+ type: script
2990
+ size: 36903
2991
+ - path: infrastructure/scripts/test-utilities-fast.js
2992
+ hash: sha256:70d87a74dac153c65d622afa4d62816e41d8d81eee6d42e1c0e498999bec7c40
2993
+ type: script
2994
+ size: 3743
2995
+ - path: infrastructure/scripts/test-utilities.js
2996
+ hash: sha256:0a2395b8e18d58a21f6523709ff1acf9114eb2ef3f54ad866d327cc2d2105dfc
2997
+ type: script
2998
+ size: 5859
2999
+ - path: infrastructure/scripts/tool-resolver.js
3000
+ hash: sha256:768e4d07a6e66c285d480e1af78cec54c860801db48a5341aa1a51caacf9dc2e
3001
+ type: script
3002
+ size: 11006
3003
+ - path: infrastructure/scripts/transaction-manager.js
3004
+ hash: sha256:065f4646d444aee417391aebbd384eede53c826046d14e9600ae27b8de4f01cc
3005
+ type: script
3006
+ size: 17621
3007
+ - path: infrastructure/scripts/usage-analytics.js
3008
+ hash: sha256:4dbb8925140b5adccca28a6c4928a0f156dd70def7a3e4185124034e2765c180
3009
+ type: script
3010
+ size: 18253
3011
+ - path: infrastructure/scripts/validate-agents.js
3012
+ hash: sha256:65e123c05f4f23f503ae656613228b5a9aa817018d06d31760594e0f1b268dbe
3013
+ type: script
3014
+ size: 14914
3015
+ - path: infrastructure/scripts/validate-claude-integration.js
3016
+ hash: sha256:cf0304d926976b96ec314fbbd9b488d20af9e51a0a2ed39afb3f9b43a03d5a3c
3017
+ type: script
3018
+ size: 2841
3019
+ - path: infrastructure/scripts/validate-codex-integration.js
3020
+ hash: sha256:f74ab1e598b134944818fec4d63abb5e90ed77dbcdbab7fa75ae37737d674b5a
3021
+ type: script
3022
+ size: 4128
3023
+ - path: infrastructure/scripts/validate-gemini-integration.js
3024
+ hash: sha256:671bb7290d852d40b4fd83b76b6b6133c22c0c4a0fd8ab214d405e5d675c5eba
3025
+ type: script
3026
+ size: 4864
3027
+ - path: infrastructure/scripts/validate-output-pattern.js
3028
+ hash: sha256:91111d656e8d7b38a20a1bda753e663b74318f75cdab2025c7e0b84c775fc83d
3029
+ type: script
3030
+ size: 6692
3031
+ - path: infrastructure/scripts/validate-parity.js
3032
+ hash: sha256:71583a713ac94a7228db5347960c46c4ef499016f876259df9c05d7000959fb8
3033
+ type: script
3034
+ size: 12689
3035
+ - path: infrastructure/scripts/validate-paths.js
3036
+ hash: sha256:957cc3558d36131271b9a0e3a266d6fd1546d65230f7d39f26b4823580dd7bc7
3037
+ type: script
3038
+ size: 3776
3039
+ - path: infrastructure/scripts/validate-user-profile.js
3040
+ hash: sha256:6dd9f33258e544c82c014e6977d58cfcc385d6b2bb91277317be846248d8e0b2
3041
+ type: script
3042
+ size: 6696
3043
+ - path: infrastructure/scripts/visual-impact-generator.js
3044
+ hash: sha256:ea98036f01a1ac5f8a0815efc6eb1bd150be5a93f3f3e290617bc14e4485468e
3045
+ type: script
3046
+ size: 32826
3047
+ - path: infrastructure/scripts/worktree-manager.js
3048
+ hash: sha256:87ef6ad051daceb916d59950566481f7d97eeaeabfeab8c37fe31df02ebb4458
3049
+ type: script
3050
+ size: 21695
3051
+ - path: infrastructure/scripts/yaml-validator.js
3052
+ hash: sha256:44a571e00abb79e7a3d85154841766a1a3bef791abcdce8b0559ca2087dfc7f9
3053
+ type: script
3054
+ size: 10368
3055
+ - path: infrastructure/templates/coderabbit.yaml.template
3056
+ hash: sha256:162a99509797dfcc6bfeb3887454fb314e8e1e0b68db27b8cd61f58ba7c01ac5
3057
+ type: template
3058
+ size: 8048
3059
+ - path: infrastructure/templates/core-config/core-config-brownfield.tmpl.yaml
3060
+ hash: sha256:b1416b72004fec390282c630c320cd1b860162535e7ddb5b94ca43fbb845b6ec
3061
+ type: template
3062
+ size: 5844
3063
+ - path: infrastructure/templates/core-config/core-config-greenfield.tmpl.yaml
3064
+ hash: sha256:59233c83c4030b1361aa7fcdee776d26102cca3abc672dd5db336e879d99eb71
3065
+ type: template
3066
+ size: 5129
3067
+ - path: infrastructure/templates/github-workflows/ci.yml.template
3068
+ hash: sha256:9a4de17487f2f6a34232751f0fc12c4ee3b293c4679c3cd7e0d15c8142321254
3069
+ type: template
3070
+ size: 4930
3071
+ - path: infrastructure/templates/github-workflows/pr-automation.yml.template
3072
+ hash: sha256:0b2e9de61cb022aa675eec1a998157e5494f3156ef9fdb84481b4a6916bb20de
3073
+ type: template
3074
+ size: 10623
3075
+ - path: infrastructure/templates/github-workflows/README.md
3076
+ hash: sha256:11cb97cea240aab6577b4cd543d8914ffc0b375a20f6cfbb84405e0c239d9aba
3077
+ type: template
3078
+ size: 2655
3079
+ - path: infrastructure/templates/github-workflows/release.yml.template
3080
+ hash: sha256:c81848d0fa6a8d8050f61106c24eb8d23b80ccee36a845cb1e10afcea26f4992
3081
+ type: template
3082
+ size: 6609
3083
+ - path: infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl
3084
+ hash: sha256:7d797e2577deb530218d1f993124d10675ec4596cf1b3fd60ffc14b25d986203
3085
+ type: template
3086
+ size: 507
3087
+ - path: infrastructure/templates/gitignore/gitignore-grimoire-base.tmpl
3088
+ hash: sha256:203b9f8439d6e5f460ac91d3704faa01e388445d21f815613fb98e09f8e84232
3089
+ type: template
3090
+ size: 800
3091
+ - path: infrastructure/templates/gitignore/gitignore-node.tmpl
3092
+ hash: sha256:77f058b273d24b0ac1f7f4fbcb3b1dd2fe2d3d137ba52d3beee0775e4d725e55
3093
+ type: template
3094
+ size: 957
3095
+ - path: infrastructure/templates/gitignore/gitignore-python.tmpl
3096
+ hash: sha256:f71c6a8708c350ebc911c80b28f64508b8d962097cf4fe8929d24ac9b19ae4c9
3097
+ type: template
3098
+ size: 1586
3099
+ - path: infrastructure/templates/grimoire-sync.yaml.template
3100
+ hash: sha256:4a37d3682486a1c8ff069512a809c21d52b828f0bee7afb5f4f991faedf64fa6
3101
+ type: template
3102
+ size: 8405
3103
+ - path: infrastructure/templates/project-docs/coding-standards-tmpl.md
3104
+ hash: sha256:9baaa1db3aeee8240a169fc33aa6c3c00a4652691f16d9d4ee66351b6f551967
3105
+ type: template
3106
+ size: 6766
3107
+ - path: infrastructure/templates/project-docs/source-tree-tmpl.md
3108
+ hash: sha256:3077059bf588eed58dab8680e51a153481aa61b66ce957dd2d371f4c81d97466
3109
+ type: template
3110
+ size: 6465
3111
+ - path: infrastructure/templates/project-docs/tech-stack-tmpl.md
3112
+ hash: sha256:5c48b670106df403194041ad3c92d3985c8af6bba9eb8fe42f0dd32d99046ca4
3113
+ type: template
3114
+ size: 5572
3115
+ - path: infrastructure/tests/project-status-loader.test.js
3116
+ hash: sha256:f3e8d44ba56c5b40ca79911f817525947ef41711304ccf77ab6ba55c655bd951
3117
+ type: infrastructure
3118
+ size: 19753
3119
+ - path: infrastructure/tests/regression-suite-v2.md
3120
+ hash: sha256:a3f32e0e91ffaf7944cd4567613646120738784f08b25572a3f8f02464f4d1ac
3121
+ type: infrastructure
3122
+ size: 14046
3123
+ - path: infrastructure/tests/validate-module.js
3124
+ hash: sha256:85a6a5ed94a72ba162606980a357bffb5a6c62b396be456662ee4b6d12270150
3125
+ type: infrastructure
3126
+ size: 4178
3127
+ - path: infrastructure/tests/worktree-manager.test.js
3128
+ hash: sha256:bf1aebeb03cf3383885b11f403538cd800e4f7dfccb47c1f0bf4bff1a9152e60
3129
+ type: infrastructure
3130
+ size: 21462
3131
+ - path: infrastructure/tools/cli/github-cli.yaml
3132
+ hash: sha256:222ca6016e9487d2da13bead0af5cee6099885ea438b359ff5fa5a73c7cd4820
3133
+ type: tool
3134
+ size: 6073
3135
+ - path: infrastructure/tools/cli/llm-routing.yaml
3136
+ hash: sha256:c3cfcce70322316b4c597df59bbcebb3e0f0466cb44b35db746e657b51bc757e
3137
+ type: tool
3138
+ size: 3543
3139
+ - path: infrastructure/tools/cli/railway-cli.yaml
3140
+ hash: sha256:cab769df07cfd0a65bfed0e7140dfde3bf3c54cd6940452d2d18e18f99a63e4a
3141
+ type: tool
3142
+ size: 8135
3143
+ - path: infrastructure/tools/cli/supabase-cli.yaml
3144
+ hash: sha256:659fefd3d8b182dd06fc5be560fcf386a028156386b2029cd51bbd7d3b5e6bfd
3145
+ type: tool
3146
+ size: 7871
3147
+ - path: infrastructure/tools/local/ffmpeg.yaml
3148
+ hash: sha256:d481a548e0eb327513412c7ac39e4a92ac27a283f4b9e6c43211fed52281df44
3149
+ type: tool
3150
+ size: 8171
3151
+ - path: infrastructure/tools/mcp/21st-dev-magic.yaml
3152
+ hash: sha256:5e1b575bdb51c6b5d446a2255fa068194d2010bce56c8c0dd0b2e98e3cf61f18
3153
+ type: tool
3154
+ size: 5359
3155
+ - path: infrastructure/tools/mcp/browser.yaml
3156
+ hash: sha256:c28206d92a6127d299ca60955cd6f6d03c940ac8b221f1e9fc620dd7efd7b471
3157
+ type: tool
3158
+ size: 3712
3159
+ - path: infrastructure/tools/mcp/clickup.yaml
3160
+ hash: sha256:cb8158c254682f507195a42502ed1e6ea80b9d675157f7d7686fbe03ffed4788
3161
+ type: tool
3162
+ size: 17838
3163
+ - path: infrastructure/tools/mcp/context7.yaml
3164
+ hash: sha256:321e0e23a787c36260efdbb1a3953235fa7dc57e77b211610ffaf33bc21fca02
3165
+ type: tool
3166
+ size: 3271
3167
+ - path: infrastructure/tools/mcp/desktop-commander.yaml
3168
+ hash: sha256:ec1a5db7def48d1762e68d4477ad0574bbb54a6783256870f5451c666ebdc213
3169
+ type: tool
3170
+ size: 6001
3171
+ - path: infrastructure/tools/mcp/exa.yaml
3172
+ hash: sha256:02576ff68b8de8a2d4e6aaffaeade78d5c208b95380feeacb37e2105c6f83541
3173
+ type: tool
3174
+ size: 4028
3175
+ - path: infrastructure/tools/mcp/google-workspace.yaml
3176
+ hash: sha256:f017c3154e9d480f37d94c7ddd7c3d24766b4fa7e0ee9e722600e85da75734b4
3177
+ type: tool
3178
+ size: 32396
3179
+ - path: infrastructure/tools/mcp/n8n.yaml
3180
+ hash: sha256:f9d9536ec47f9911e634083c3ac15cb920214ea0f052e78d4c6a27a17e9ec408
3181
+ type: tool
3182
+ size: 17446
3183
+ - path: infrastructure/tools/mcp/supabase.yaml
3184
+ hash: sha256:350bd31537dfef9c3df55bd477434ccbe644cdf0dd3408bf5a8a6d0c5ba78aa2
3185
+ type: tool
3186
+ size: 27989
3187
+ - path: infrastructure/tools/README.md
3188
+ hash: sha256:35737ab0d6dd3133fa9a2a42d76b68866771743777baa86288147df525fa42a5
3189
+ type: tool
3190
+ size: 5170
3191
+ - path: manifests/schema/manifest-schema.json
3192
+ hash: sha256:4658a61a6cb1d24f618201810ef560d3245820029fdc54cf3946f05e678517b2
3193
+ type: manifest
3194
+ size: 5301
3195
+ - path: monitor/hooks/lib/__init__.py
3196
+ hash: sha256:d9be7aa71ad2258ea5827f453f73047cab1ba33fec16559bc9365bd131e4c000
3197
+ type: monitor
3198
+ size: 35
3199
+ - path: monitor/hooks/lib/enrich.py
3200
+ hash: sha256:aad6ca2749f9e22477b4bf6a3aed8d02f94090dd8a2cf59603aed4b2eda61609
3201
+ type: monitor
3202
+ size: 1714
3203
+ - path: monitor/hooks/lib/send_event.py
3204
+ hash: sha256:3b6e48630cf5dc6445d29d0adda7b804728cb0096c76416868b8868331d28b6a
3205
+ type: monitor
3206
+ size: 1208
3207
+ - path: monitor/hooks/notification.py
3208
+ hash: sha256:bebbe507fa110a09d84733d11a780071c676b52c01d91db525b476831017b7bd
3209
+ type: monitor
3210
+ size: 505
3211
+ - path: monitor/hooks/post_tool_use.py
3212
+ hash: sha256:c1afc535bf296a854f81f7a938a0c216b4e448ba8a4cdea9e0a74ad926eba982
3213
+ type: monitor
3214
+ size: 1146
3215
+ - path: monitor/hooks/pre_compact.py
3216
+ hash: sha256:79cf30e8a293d895651227f717cc3c3dbce30067d1bffcca43e275201a792aae
3217
+ type: monitor
3218
+ size: 506
3219
+ - path: monitor/hooks/pre_tool_use.py
3220
+ hash: sha256:8fef54b1094ce4396032fc45f22614a5e11ed56c6fbb9da223bb71bbc64746bd
3221
+ type: monitor
3222
+ size: 987
3223
+ - path: monitor/hooks/stop.py
3224
+ hash: sha256:9ad0a58feca0084e42f7035fcec96ef0824a8a6caf84e24d49a1369eca8a6116
3225
+ type: monitor
3226
+ size: 496
3227
+ - path: monitor/hooks/subagent_stop.py
3228
+ hash: sha256:3fce5ce06e92927d8ebcd2093db6709953fde03e2504c67b0fe7b054bfc4ce89
3229
+ type: monitor
3230
+ size: 518
3231
+ - path: monitor/hooks/user_prompt_submit.py
3232
+ hash: sha256:dbd369c46d8135c36cfb098c813e66900b1a350ac0a56c4be2ed85c7c28394bd
3233
+ type: monitor
3234
+ size: 824
3235
+ - path: package.json
3236
+ hash: sha256:caf4b5e034acf5594b6af1d9c5203cae018918d5e4e4e9d1a48674a5f1b139d7
3237
+ type: other
3238
+ size: 2454
3239
+ - path: product/checklists/accessibility-wcag-checklist.md
3240
+ hash: sha256:56126182b25e9b7bdde43f75315e33167eb49b1f9a9cb0e9a37bc068af40aeab
3241
+ type: checklist
3242
+ size: 1963
3243
+ - path: product/checklists/architect-checklist.md
3244
+ hash: sha256:ecbcc8e6b34f813bc73ebcc28482c045ef12c6b17808ee6f70a808eee1818911
3245
+ type: checklist
3246
+ size: 18858
3247
+ - path: product/checklists/change-checklist.md
3248
+ hash: sha256:c593cf38a36b1c4192e691efbcf9b2dfff1c077a8b7ca3e42a41f34761432fe4
3249
+ type: checklist
3250
+ size: 8412
3251
+ - path: product/checklists/component-quality-checklist.md
3252
+ hash: sha256:ec4e34a3fc4a071d346a8ba473f521d2a38e5eb07d1656fee6ff108e5cd7b62f
3253
+ type: checklist
3254
+ size: 2397
3255
+ - path: product/checklists/database-design-checklist.md
3256
+ hash: sha256:6d3cf038f0320db0e6daf9dba61e4c29269ed73c793df5618e155ebd07b6c200
3257
+ type: checklist
3258
+ size: 4104
3259
+ - path: product/checklists/dba-predeploy-checklist.md
3260
+ hash: sha256:482136936a2414600b59d4d694526c008287e3376ed73c9a93de78d7d7bd3285
3261
+ type: checklist
3262
+ size: 3518
3263
+ - path: product/checklists/dba-rollback-checklist.md
3264
+ hash: sha256:060847cba7ef223591c2c1830c65994fd6cf8135625d6953a3a5b874301129c5
3265
+ type: checklist
3266
+ size: 3268
3267
+ - path: product/checklists/migration-readiness-checklist.md
3268
+ hash: sha256:6231576966f24b30c00fe7cc836359e10c870c266a30e5d88c6b3349ad2f1d17
3269
+ type: checklist
3270
+ size: 1970
3271
+ - path: product/checklists/pattern-audit-checklist.md
3272
+ hash: sha256:2eb28cb0e7abd8900170123c1d080c1bbb81ccb857eeb162c644f40616b0875e
3273
+ type: checklist
3274
+ size: 2126
3275
+ - path: product/checklists/pm-checklist.md
3276
+ hash: sha256:6828efd3acf32638e31b8081ca0c6f731aa5710c8413327db5a8096b004aeb2b
3277
+ type: checklist
3278
+ size: 13028
3279
+ - path: product/checklists/po-master-checklist.md
3280
+ hash: sha256:506a3032f461c7ae96c338600208575be4f4823d2fe7c92fe304a4ff07cc5390
3281
+ type: checklist
3282
+ size: 16585
3283
+ - path: product/checklists/pre-push-checklist.md
3284
+ hash: sha256:8b96f7216101676b86b314c347fa8c6d616cde21dbc77ef8f77b8d0b5770af2a
3285
+ type: checklist
3286
+ size: 3345
3287
+ - path: product/checklists/release-checklist.md
3288
+ hash: sha256:a5e66e27d115abd544834a70f3dda429bc486fbcb569870031c4f79fd8ac6187
3289
+ type: checklist
3290
+ size: 3731
3291
+ - path: product/checklists/self-critique-checklist.md
3292
+ hash: sha256:6f63e67b9d07d04843640b8361bcab1b37eb22b70538354149cd68831e105f1f
3293
+ type: checklist
3294
+ size: 10519
3295
+ - path: product/checklists/story-dod-checklist.md
3296
+ hash: sha256:725b60a16a41886a92794e54b9efa8359eab5f09813cd584fa9e8e1519c78dc4
3297
+ type: checklist
3298
+ size: 5154
3299
+ - path: product/checklists/story-draft-checklist.md
3300
+ hash: sha256:e8988046885d0e9327163faee77ace2a7d8af759869b482d6d2d7eebea734e00
3301
+ type: checklist
3302
+ size: 8497
3303
+ - path: product/data/atomic-design-principles.md
3304
+ hash: sha256:66153135e28394178c4f8f33441c45a2404587c2f07d25ad09dde54f3f5e1746
3305
+ type: data
3306
+ size: 2296
3307
+ - path: product/data/brainstorming-techniques.md
3308
+ hash: sha256:4c5a558d21eb620a8c820d8ca9807b2d12c299375764289482838f81ef63dbce
3309
+ type: data
3310
+ size: 1888
3311
+ - path: product/data/consolidation-algorithms.md
3312
+ hash: sha256:2f2561be9e6281f6352f05e1c672954001f919c4664e3fecd6fcde24fdd4d240
3313
+ type: data
3314
+ size: 3517
3315
+ - path: product/data/database-best-practices.md
3316
+ hash: sha256:8331f001e903283633f0123d123546ef3d4682ed0e0f9516b4df391fe57b9b7d
3317
+ type: data
3318
+ size: 4789
3319
+ - path: product/data/design-token-best-practices.md
3320
+ hash: sha256:10cf3c824bba452ee598e2325b8bfb2068f188d9ac3058b9e034ddf34bf4791a
3321
+ type: data
3322
+ size: 2258
3323
+ - path: product/data/elicitation-methods.md
3324
+ hash: sha256:f8e46f90bd0acc1e9697086d7a2008c7794bc767e99d0037c64e6800e9d17ef4
3325
+ type: data
3326
+ size: 5046
3327
+ - path: product/data/integration-patterns.md
3328
+ hash: sha256:b771f999fb452dcabf835d5f5e5ae3982c48cece5941cc5a276b6f280062db43
3329
+ type: data
3330
+ size: 4808
3331
+ - path: product/data/migration-safety-guide.md
3332
+ hash: sha256:42200ca180d4586447304dfc7f8035ccd09860b6ac34c72b63d284e57c94d2db
3333
+ type: data
3334
+ size: 7896
3335
+ - path: product/data/mode-selection-best-practices.md
3336
+ hash: sha256:4ed5ee7aaeadb2e3c12029b7cae9a6063f3a7b016fdd0d53f9319d461ddf3ea1
3337
+ type: data
3338
+ size: 10531
3339
+ - path: product/data/postgres-tuning-guide.md
3340
+ hash: sha256:4715262241ae6ba2da311865506781bd7273fa6ee1bd55e15968dfda542c2bec
3341
+ type: data
3342
+ size: 6359
3343
+ - path: product/data/rls-security-patterns.md
3344
+ hash: sha256:e3e12a06b483c1bda645e7eb361a230bdef106cc5d1140a69b443a4fc2ad70ef
3345
+ type: data
3346
+ size: 7329
3347
+ - path: product/data/roi-calculation-guide.md
3348
+ hash: sha256:f00a3c039297b3cb6e00f68d5feb6534a27c2a0ad02afd14df50e4e0cf285aa4
3349
+ type: data
3350
+ size: 2775
3351
+ - path: product/data/supabase-patterns.md
3352
+ hash: sha256:9ed119bc89f859125a0489036d747ff13b6c475a9db53946fdb7f3be02b41e0a
3353
+ type: data
3354
+ size: 6926
3355
+ - path: product/data/test-levels-framework.md
3356
+ hash: sha256:13b8d817f7b87f357b1029a841cbda3ea6de907466f596b866cfe35c54942dd0
3357
+ type: data
3358
+ size: 3440
3359
+ - path: product/data/test-priorities-matrix.md
3360
+ hash: sha256:fb4b62f3b8ad3395b8bebe5f7f45a64728f08c61110db6f2a65a002a2d6c0c9c
3361
+ type: data
3362
+ size: 3972
3363
+ - path: product/data/wcag-compliance-guide.md
3364
+ hash: sha256:8f5a97e1522da2193e2a2eae18dc68c4477acf3e2471b50b46885163cefa40e6
3365
+ type: data
3366
+ size: 4994
3367
+ - path: product/README.md
3368
+ hash: sha256:1fb25906dd4ceeb81f456cececa90677a4f35827040bce4badda3e9492b372b5
3369
+ type: product
3370
+ size: 1706
3371
+ - path: product/templates/activation-instructions-inline-greeting.yaml
3372
+ hash: sha256:f465f22d523d5dbce6efd018f74ae475b8d4f74365a54f7caebe490427814712
3373
+ type: template
3374
+ size: 2510
3375
+ - path: product/templates/activation-instructions-template.md
3376
+ hash: sha256:c156a64a8bc6c9422876fcda4e859d1efc9d3efcc3fa4413af21c527668bb17e
3377
+ type: template
3378
+ size: 9085
3379
+ - path: product/templates/adr.hbs
3380
+ hash: sha256:4b26da7f2d3f7bdde207a7b4c078752aa57b3ee80f5a359816c0ba15c091e493
3381
+ type: template
3382
+ size: 2218
3383
+ - path: product/templates/agent-template.yaml
3384
+ hash: sha256:f545425624524da1b99e24eaf9c6e835c46efe4a11db601b0c6e4db71e0124f0
3385
+ type: template
3386
+ size: 3215
3387
+ - path: product/templates/architecture-tmpl.yaml
3388
+ hash: sha256:917362c1ea3f14ec760d9e69d5b8cce70db4e708faf2da6cf5ef89e205616f0a
3389
+ type: template
3390
+ size: 28282
3391
+ - path: product/templates/brainstorming-output-tmpl.yaml
3392
+ hash: sha256:e67762fc5a1d76896c5ae5fb1e2ca12ec7d548369139db1807071202f9347464
3393
+ type: template
3394
+ size: 4883
3395
+ - path: product/templates/brownfield-architecture-tmpl.yaml
3396
+ hash: sha256:5d399d93a42b674758515e5cf70ffb21cd77befc9f54a8fe0b9dba0773bbbf66
3397
+ type: template
3398
+ size: 21186
3399
+ - path: product/templates/brownfield-prd-tmpl.yaml
3400
+ hash: sha256:bc1852d15e3a383c7519e5976094de3055c494fdd467acd83137700c900c4c61
3401
+ type: template
3402
+ size: 14755
3403
+ - path: product/templates/brownfield-risk-report-tmpl.yaml
3404
+ hash: sha256:432ffa9653865b195d51d2b1073e909956c3ad15bab2fee011957db7eb72269c
3405
+ type: template
3406
+ size: 12221
3407
+ - path: product/templates/changelog-template.md
3408
+ hash: sha256:af44d857c9bf8808e89419d1d859557c3c827de143be3c0f36f2a053c9ee9197
3409
+ type: template
3410
+ size: 2462
3411
+ - path: product/templates/command-rationalization-matrix.md
3412
+ hash: sha256:265c995586cc2787813421e466bea864e316e27e74d551239331d803b8332961
3413
+ type: template
3414
+ size: 4878
3415
+ - path: product/templates/competitor-analysis-tmpl.yaml
3416
+ hash: sha256:690cde6406250883a765eddcbad415c737268525340cf2c8679c8f3074c9d507
3417
+ type: template
3418
+ size: 11659
3419
+ - path: product/templates/component-react-tmpl.tsx
3420
+ hash: sha256:bfbfab502da2064527948f70c9a59174f20b81472ac2ea6eb999f02c9bcaf3df
3421
+ type: template
3422
+ size: 2588
3423
+ - path: product/templates/current-approach-tmpl.md
3424
+ hash: sha256:ec258049a5cda587b24523faf6b26ed0242765f4e732af21c4f42e42cf326714
3425
+ type: template
3426
+ size: 803
3427
+ - path: product/templates/dbdr.hbs
3428
+ hash: sha256:c229636d75823eefb29216c5d28b7432a6bbe822d857ee550c394636cdf5ed10
3429
+ type: template
3430
+ size: 4145
3431
+ - path: product/templates/design-story-tmpl.yaml
3432
+ hash: sha256:96283db786acaf4c48c37fab75e878dacdd5ea3b8a223fee82483f6071b59d8e
3433
+ type: template
3434
+ size: 19359
3435
+ - path: product/templates/ds-artifact-analysis.md
3436
+ hash: sha256:2ef1866841e4dcd55f9510f7ca14fd1f754f1e9c8a66cdc74d37ebcee13ede5d
3437
+ type: template
3438
+ size: 890
3439
+ - path: product/templates/engine/elicitation.js
3440
+ hash: sha256:01e327bee674ff9d01ed0f4f553b42a3cf178780811c6f88bbd86c30ffaeb6cc
3441
+ type: template
3442
+ size: 9310
3443
+ - path: product/templates/engine/index.js
3444
+ hash: sha256:d64136057383827526b46b5445b868dcbe4d01384b1020667d3c46beece2d50b
3445
+ type: template
3446
+ size: 9310
3447
+ - path: product/templates/engine/loader.js
3448
+ hash: sha256:423e5307150d743bada7737e112aae97fb4c4973ef0f8aaf41cad6423a56b0c0
3449
+ type: template
3450
+ size: 6500
3451
+ - path: product/templates/engine/renderer.js
3452
+ hash: sha256:9b1de0f583462b72215f24e0b02e635110e75459cffeab165a03c7f91088ae39
3453
+ type: template
3454
+ size: 9898
3455
+ - path: product/templates/engine/schemas/adr.schema.json
3456
+ hash: sha256:2cd4c78d9c2664695df163d033709122b0b37c70fd4f92c9bf4ea17503d4db0b
3457
+ type: template
3458
+ size: 2915
3459
+ - path: product/templates/engine/schemas/dbdr.schema.json
3460
+ hash: sha256:9d5f4e3774830f545617e801ec24ea6649afb2ab217fffda4f6fa3ec5136f2ea
3461
+ type: template
3462
+ size: 5731
3463
+ - path: product/templates/engine/schemas/epic.schema.json
3464
+ hash: sha256:c2e898276cf89338b9fa8d619c18c40d1ed1e4390d63cc779b439c37380a5317
3465
+ type: template
3466
+ size: 4491
3467
+ - path: product/templates/engine/schemas/pmdr.schema.json
3468
+ hash: sha256:3e3883d552f2fa0f1b9cd6d1621e9788858d81f2c9faa66fbdfc20744cddf855
3469
+ type: template
3470
+ size: 4789
3471
+ - path: product/templates/engine/schemas/prd-v2.schema.json
3472
+ hash: sha256:b6a5fcb6aa6ba4417f55673f2432fdc96d3b178ccd494b56796b74271cbe9ebe
3473
+ type: template
3474
+ size: 7822
3475
+ - path: product/templates/engine/schemas/prd.schema.json
3476
+ hash: sha256:a68c16308518ee12339d63659bef8b145d0101dcf7fe1e4e06ccad1c20a4b61a
3477
+ type: template
3478
+ size: 4306
3479
+ - path: product/templates/engine/schemas/story.schema.json
3480
+ hash: sha256:23d037e35a7ebecc6af86ef30223b2c20e3a938a4c9f4b6ca18a8cec6646a005
3481
+ type: template
3482
+ size: 5884
3483
+ - path: product/templates/engine/schemas/task.schema.json
3484
+ hash: sha256:01ed077417b76d54bb2aa93f94d3ca4b9587bb957dd269ff31f7f707f1efda37
3485
+ type: template
3486
+ size: 3856
3487
+ - path: product/templates/engine/validator.js
3488
+ hash: sha256:f3c081d285be3e794f2e7e7fe1613000b17e958642308868b2769e560550e8f0
3489
+ type: template
3490
+ size: 7979
3491
+ - path: product/templates/epic.hbs
3492
+ hash: sha256:bcf308e2142c9bc3912159c304b2791e3a592d76de8bbac66e3c541a86f66089
3493
+ type: template
3494
+ size: 3878
3495
+ - path: product/templates/eslintrc-security.json
3496
+ hash: sha256:657d40117261d6a52083984d29f9f88e79040926a64aa4c2058a602bfe91e0d5
3497
+ type: template
3498
+ size: 909
3499
+ - path: product/templates/front-end-architecture-tmpl.yaml
3500
+ hash: sha256:de0432b4f98236c3a1d6cc9975b90fbc57727653bdcf6132355c0bcf0b4dbb9c
3501
+ type: template
3502
+ size: 10241
3503
+ - path: product/templates/front-end-spec-tmpl.yaml
3504
+ hash: sha256:9033c7cccbd0893c11545c680f29c6743de8e7ad8e761c6c2487e2985b0a4411
3505
+ type: template
3506
+ size: 13997
3507
+ - path: product/templates/fullstack-architecture-tmpl.yaml
3508
+ hash: sha256:1ac74304138be53d87808b8e4afe6f870936a1f3a9e35e18c3321b3d42145215
3509
+ type: template
3510
+ size: 33326
3511
+ - path: product/templates/gemini/settings.json
3512
+ hash: sha256:c0f80c366eb7138c05771081553c979b5d005fe34f071c1ab981e012e9c0cf6d
3513
+ type: template
3514
+ size: 1801
3515
+ - path: product/templates/github-actions-cd.yml
3516
+ hash: sha256:8f11ca7494184afc4ed014e643f12eef3a14fd347ec13553fad09319fe518c5e
3517
+ type: template
3518
+ size: 6998
3519
+ - path: product/templates/github-actions-ci.yml
3520
+ hash: sha256:b7589da788398ad04e6c83fd971af8f6c4db8337d84c944146234e9ae501fce5
3521
+ type: template
3522
+ size: 4498
3523
+ - path: product/templates/github-pr-template.md
3524
+ hash: sha256:3171268fc40d6c95f0ff821c72f3f4460184b8cc4ebf44d8ab6182588bef1008
3525
+ type: template
3526
+ size: 1727
3527
+ - path: product/templates/gordon-mcp.yaml
3528
+ hash: sha256:c9ce381279c24f9b51fec779ef5ced7c6f7934f110055b3184ae2d2381cd731c
3529
+ type: template
3530
+ size: 3694
3531
+ - path: product/templates/grimoire-ai-config.yaml
3532
+ hash: sha256:31d3cd4c6ccbde9942bf8a910ceeea2343dd359ef5b3bce21d51b959632260b4
3533
+ type: template
3534
+ size: 3177
3535
+ - path: product/templates/ide-rules/antigravity-rules.md
3536
+ hash: sha256:b750be8ce2d34e8ea56830aa34b7e3fb0b1c6c9a51130fc7497e5a436b7fd5e0
3537
+ type: template
3538
+ size: 3083
3539
+ - path: product/templates/ide-rules/claude-rules.md
3540
+ hash: sha256:aa895e4a32eaef61c0249697cdb3e26e75b8f074f43007684c96c9e97be4e0d4
3541
+ type: template
3542
+ size: 6856
3543
+ - path: product/templates/ide-rules/codex-rules.md
3544
+ hash: sha256:ac7c991857f80255ced5bdeac4980fb9faf7c039c5bac7e38a89907c4e9f5e37
3545
+ type: template
3546
+ size: 2752
3547
+ - path: product/templates/ide-rules/copilot-rules.md
3548
+ hash: sha256:245950adff945eeb271e7d727a4cb92a1a30a1be4bdfe1ae9e6753177e5f7b94
3549
+ type: template
3550
+ size: 3116
3551
+ - path: product/templates/ide-rules/cursor-rules.md
3552
+ hash: sha256:5484215e74b46b6e7404aaa4afdca994e7f57f4e52dc2c509b15bfe4bd6983b7
3553
+ type: template
3554
+ size: 3073
3555
+ - path: product/templates/ide-rules/gemini-rules.md
3556
+ hash: sha256:99515bd21ab26ca10bde3d14b61a0dfc3cd4d31a3f7b98729b8ebfba3d9de1d5
3557
+ type: template
3558
+ size: 2551
3559
+ - path: product/templates/index-strategy-tmpl.yaml
3560
+ hash: sha256:6db2b40f6eef47f4faa31ce513ee7b0d5f04d9a5e081a72e0cdbad402eb444ae
3561
+ type: template
3562
+ size: 1469
3563
+ - path: product/templates/market-research-tmpl.yaml
3564
+ hash: sha256:a908f070009aa0403f9db542585401912aabe7913726bd2fa26b7954f162b674
3565
+ type: template
3566
+ size: 10183
3567
+ - path: product/templates/mcp-workflow.js
3568
+ hash: sha256:9fd26293b32f246eb52c4128e1709e1c576b9f4ec0a587acd592789d9839413b
3569
+ type: template
3570
+ size: 8106
3571
+ - path: product/templates/migration-plan-tmpl.yaml
3572
+ hash: sha256:d0b8580cab768484a2730b7a7f1032e2bab9643940d29dd3c351b7ac930e8ea1
3573
+ type: template
3574
+ size: 30624
3575
+ - path: product/templates/migration-strategy-tmpl.md
3576
+ hash: sha256:957ffccbe9eb1f1ea90a8951ef9eb187d22e50c2f95c2ff048580892d2f2e25b
3577
+ type: template
3578
+ size: 14442
3579
+ - path: product/templates/personalized-agent-template.md
3580
+ hash: sha256:43cdc40dffaa985bf48f8b6faadba0ef9361a04c75aae8b2d1d36e86bb3379cd
3581
+ type: template
3582
+ size: 9359
3583
+ - path: product/templates/personalized-checklist-template.md
3584
+ hash: sha256:d2313614b7abb12236e6b22245ec601471b67834a3d5f5c3507cf35e26f19677
3585
+ type: template
3586
+ size: 8284
3587
+ - path: product/templates/personalized-task-template-v2.md
3588
+ hash: sha256:54150fd68b58ef147a6d016992a5115d930617fb555e3c903d3c7e704a650b98
3589
+ type: template
3590
+ size: 23673
3591
+ - path: product/templates/personalized-task-template.md
3592
+ hash: sha256:eb17e40e79d1fe6d824d53e2fd9302ea7b2b90b18e9f26066bb33e00d4d5a101
3593
+ type: template
3594
+ size: 7931
3595
+ - path: product/templates/personalized-template-file.yaml
3596
+ hash: sha256:aa46d4e27d733b7500753bb2ab0e0a2254ed4c1ecf144bc81d1e8b4717f32133
3597
+ type: template
3598
+ size: 8970
3599
+ - path: product/templates/personalized-workflow-template.yaml
3600
+ hash: sha256:4cb8397faffaaf15fe9a372aec7e593bfd1ea368a739bb11d23ea19eca84ca6c
3601
+ type: template
3602
+ size: 11266
3603
+ - path: product/templates/pmdr.hbs
3604
+ hash: sha256:424657ee09b79929cd2ac53180306911767b1ea995d5da88ee50892c79965081
3605
+ type: template
3606
+ size: 3245
3607
+ - path: product/templates/prd-tmpl.yaml
3608
+ hash: sha256:69d372d78c1df06aa6a5dda305457920147d51c965476b29c96f2ab9959055b2
3609
+ type: template
3610
+ size: 11953
3611
+ - path: product/templates/prd-v2.0.hbs
3612
+ hash: sha256:270abaf0a639c461cc6d37342aaf0e90525966eef307a29a9f885e1b6aeb2d55
3613
+ type: template
3614
+ size: 4518
3615
+ - path: product/templates/prd.hbs
3616
+ hash: sha256:87a34e42e08ef26a78afb8e1bee7752968e386e749a28fd109a7e7dc24264c39
3617
+ type: template
3618
+ size: 3431
3619
+ - path: product/templates/project-brief-tmpl.yaml
3620
+ hash: sha256:b8d388268c24dc5018f48a87036d591b11cb122fafe9b59c17809b06ea5d9d58
3621
+ type: template
3622
+ size: 8297
3623
+ - path: product/templates/qa-gate-tmpl.yaml
3624
+ hash: sha256:a0d3e4a37ee8f719aacb8a31949522bfa239982198d0f347ea7d3f44ad8003ca
3625
+ type: template
3626
+ size: 6876
3627
+ - path: product/templates/qa-report-tmpl.md
3628
+ hash: sha256:a54a69a41c7a84a071e0124c459010900ece711c7764f0a28c869cfa4d78b759
3629
+ type: template
3630
+ size: 3846
3631
+ - path: product/templates/rls-policies-tmpl.yaml
3632
+ hash: sha256:3c303ab5a5f95c89f0caf9c632296e8ca43e29a921484523016c1c5bc320428f
3633
+ type: template
3634
+ size: 33739
3635
+ - path: product/templates/schema-design-tmpl.yaml
3636
+ hash: sha256:7c5b7dfc67e1332e1fbf39657169094e2b92cd4fd6c7b441c3586981c732af95
3637
+ type: template
3638
+ size: 11950
3639
+ - path: product/templates/shock-report-tmpl.html
3640
+ hash: sha256:f6b3984683b9c0e22550aaab63f002c01d6d9d3fe2af0e344f7dafbd444e4a19
3641
+ type: template
3642
+ size: 16665
3643
+ - path: product/templates/spec-tmpl.md
3644
+ hash: sha256:064f49fa381e225d63b16a63fd55bce17bb9d015c1c6e62b279583ef32a8648b
3645
+ type: template
3646
+ size: 3405
3647
+ - path: product/templates/state-persistence-tmpl.yaml
3648
+ hash: sha256:7ff9caabce83ccc14acb05e9d06eaf369a8ebd54c2ddf4988efcc942f6c51037
3649
+ type: template
3650
+ size: 6763
3651
+ - path: product/templates/statusline/statusline-script.js
3652
+ hash: sha256:8ce770826ddae4d0473ba33866a21d0fab4ab5c90e19ceee951b8f7f86a81c5e
3653
+ type: template
3654
+ size: 6196
3655
+ - path: product/templates/statusline/track-agent.sh
3656
+ hash: sha256:016b7ee61e664b49c5570b88740bcfb0500fd6ae21711ec320d20eb848ceecd6
3657
+ type: template
3658
+ size: 1806
3659
+ - path: product/templates/story-tmpl.yaml
3660
+ hash: sha256:f6ae08b7b40ca4199431fc0ca5507a088b252b4b890a122584c4dd3cecac64ce
3661
+ type: template
3662
+ size: 13776
3663
+ - path: product/templates/story.hbs
3664
+ hash: sha256:1326de8ef36a73cb411047959f3bdccf9f83e81037a568e560a9c980eee45771
3665
+ type: template
3666
+ size: 5593
3667
+ - path: product/templates/task-execution-report.md
3668
+ hash: sha256:625d1554c8d6810af7d5894ca8a41c81082fc90451b4f1124d2eb8fedf9a3318
3669
+ type: template
3670
+ size: 10135
3671
+ - path: product/templates/task-template.md
3672
+ hash: sha256:d167b89dedd1b5d37b60627ec24db7bc07d46d548176d3528ea499a3b590e104
3673
+ type: template
3674
+ size: 2472
3675
+ - path: product/templates/task.hbs
3676
+ hash: sha256:f75ee07b7a25af40022a06e54e7c19bb75a0cb98125b23e5f69c545a67718f46
3677
+ type: template
3678
+ size: 2711
3679
+ - path: product/templates/tmpl-comment-on-examples.sql
3680
+ hash: sha256:254002c3fbc63cfcc5848b1d4b15822ce240bf5f57e6a1c8bb984e797edc2691
3681
+ type: template
3682
+ size: 6215
3683
+ - path: product/templates/tmpl-migration-script.sql
3684
+ hash: sha256:44ef63ea475526d21a11e3c667c9fdb78a9fddace80fdbaa2312b7f2724fbbb5
3685
+ type: template
3686
+ size: 2947
3687
+ - path: product/templates/tmpl-rls-granular-policies.sql
3688
+ hash: sha256:36c2fd8c6d9eebb5d164acb0fb0c87bc384d389264b4429ce21e77e06318f5f3
3689
+ type: template
3690
+ size: 3322
3691
+ - path: product/templates/tmpl-rls-kiss-policy.sql
3692
+ hash: sha256:5210d37fce62e5a9a00e8d5366f5f75653cd518be73fbf96333ed8a6712453c7
3693
+ type: template
3694
+ size: 299
3695
+ - path: product/templates/tmpl-rls-roles.sql
3696
+ hash: sha256:2d032a608a8e87440c3a430c7d69ddf9393d8813d8d4129270f640dd847425c3
3697
+ type: template
3698
+ size: 4592
3699
+ - path: product/templates/tmpl-rls-simple.sql
3700
+ hash: sha256:f67af0fa1cdd2f2af9eab31575ac3656d82457421208fd9ccb8b57ca9785275e
3701
+ type: template
3702
+ size: 2915
3703
+ - path: product/templates/tmpl-rls-tenant.sql
3704
+ hash: sha256:36629ed87a2c72311809cc3fb96298b6f38716bba35bc56c550ac39d3321757a
3705
+ type: template
3706
+ size: 4978
3707
+ - path: product/templates/tmpl-rollback-script.sql
3708
+ hash: sha256:8b84046a98f1163faf7350322f43831447617c5a63a94c88c1a71b49804e022b
3709
+ type: template
3710
+ size: 2657
3711
+ - path: product/templates/tmpl-seed-data.sql
3712
+ hash: sha256:a65e73298f46cd6a8e700f29b9d8d26e769e12a57751a943a63fd0fe15768615
3713
+ type: template
3714
+ size: 5576
3715
+ - path: product/templates/tmpl-smoke-test.sql
3716
+ hash: sha256:aee7e48bb6d9c093769dee215cacc9769939501914e20e5ea8435b25fad10f3c
3717
+ type: template
3718
+ size: 723
3719
+ - path: product/templates/tmpl-staging-copy-merge.sql
3720
+ hash: sha256:55988caeb47cc04261665ba7a37f4caa2aa5fac2e776fdbc5964e0587af24450
3721
+ type: template
3722
+ size: 4081
3723
+ - path: product/templates/tmpl-stored-proc.sql
3724
+ hash: sha256:2b205ff99dc0adfade6047a4d79f5b50109e50ceb45386e5c886437692c7a2a3
3725
+ type: template
3726
+ size: 3839
3727
+ - path: product/templates/tmpl-trigger.sql
3728
+ hash: sha256:93abdc92e1b475d1370094e69a9d1b18afd804da6acb768b878355c798bd8e0e
3729
+ type: template
3730
+ size: 5272
3731
+ - path: product/templates/tmpl-view-materialized.sql
3732
+ hash: sha256:47935510f03d4ad9b2200748e65441ce6c2d6a7c74750395eca6831d77c48e91
3733
+ type: template
3734
+ size: 4363
3735
+ - path: product/templates/tmpl-view.sql
3736
+ hash: sha256:22557b076003a856b32397f05fa44245a126521de907058a95e14dd02da67aff
3737
+ type: template
3738
+ size: 4916
3739
+ - path: product/templates/token-exports-css-tmpl.css
3740
+ hash: sha256:d937b8d61cdc9e5b10fdff871c6cb41c9f756004d060d671e0ae26624a047f62
3741
+ type: template
3742
+ size: 5798
3743
+ - path: product/templates/token-exports-tailwind-tmpl.js
3744
+ hash: sha256:1e99f1be493b4b3dac1b2a9abc1ae1dd9146f26f86bed229c232690114c3a377
3745
+ type: template
3746
+ size: 10293
3747
+ - path: product/templates/tokens-schema-tmpl.yaml
3748
+ hash: sha256:66a7c164278cbe8b41dcc8525e382bdf5c59673a6694930aa33b857f199b4c2b
3749
+ type: template
3750
+ size: 8004
3751
+ - path: product/templates/workflow-template.yaml
3752
+ hash: sha256:949b59f0e6225997d8951ff0916ddb60cc0bc540b8389a2cdd2c13aa4d03930e
3753
+ type: template
3754
+ size: 4048
3755
+ - path: scripts/batch-migrate-phase1.ps1
3756
+ hash: sha256:bb7c06dcf4daafec0821f042a21adcaaf43cb6494df3f5a04f29a41a3f28298d
3757
+ type: script
3758
+ size: 974
3759
+ - path: scripts/batch-migrate-phase2.ps1
3760
+ hash: sha256:5942afb33f426ed8b0d43506269dd392ef1dd25591b26b536fb9c64efe61cc40
3761
+ type: script
3762
+ size: 2591
3763
+ - path: scripts/batch-migrate-phase3.ps1
3764
+ hash: sha256:7d729b9e112373fa289853fb38eeff7677299e80ce6ec8ca0db43b1f2d5f7b32
3765
+ type: script
3766
+ size: 1489
3767
+ - path: scripts/command-execution-hook.js
3768
+ hash: sha256:b815ea759b32848f884e3b4e8c44ee5993f3222739cac3996830f5ba10babda8
3769
+ type: script
3770
+ size: 5048
3771
+ - path: scripts/diagnostics/diagnose-installation.js
3772
+ hash: sha256:69dd4a188902a5032a5f4e1bd75b8b0a8082ef266155320e03c0e5f29b5644da
3773
+ type: script
3774
+ size: 11140
3775
+ - path: scripts/diagnostics/diagnose-npx-issue.ps1
3776
+ hash: sha256:47e11b210950d8e8bbd5342cdec656d3ce07f9ae3ac18669e252e7edc9a9fca6
3777
+ type: script
3778
+ size: 3615
3779
+ - path: scripts/diagnostics/health-dashboard/index.html
3780
+ hash: sha256:633622be1b73eb1fceeab8c4dee31eb162e002fed761f7d7e17b0ce61fb743f3
3781
+ type: script
3782
+ size: 379
3783
+ - path: scripts/diagnostics/health-dashboard/package-lock.json
3784
+ hash: sha256:55fcd0dd8968c468a1a048e3bb8ad822bb76bb999f049046249229e8b569e768
3785
+ type: script
3786
+ size: 181775
3787
+ - path: scripts/diagnostics/health-dashboard/package.json
3788
+ hash: sha256:3ea6c61e9eb02a9310681e41aeed7c1e457128ca40afe0b83abf42f51858d053
3789
+ type: script
3790
+ size: 569
3791
+ - path: scripts/diagnostics/health-dashboard/public/favicon.svg
3792
+ hash: sha256:80b16c17240e9f625b25572c7254d89fab1277905c02a6baf593b659cf8723f8
3793
+ type: script
3794
+ size: 473
3795
+ - path: scripts/diagnostics/health-dashboard/README.md
3796
+ hash: sha256:a7a072d2b296a57453ba75e7eda6552d3087040d4b99edea9ff6d211ef64577c
3797
+ type: script
3798
+ size: 3325
3799
+ - path: scripts/diagnostics/health-dashboard/src/App.jsx
3800
+ hash: sha256:df78d85545abf8506c0ae763354ed98f4c3836f47258ad5d649bcebb3e40eabf
3801
+ type: script
3802
+ size: 568
3803
+ - path: scripts/diagnostics/health-dashboard/src/components/AutoFixLog.css
3804
+ hash: sha256:f77463d451350b8435c409dc5f512fe7c7c05ea651c369e9333425f13ec917ed
3805
+ type: script
3806
+ size: 2356
3807
+ - path: scripts/diagnostics/health-dashboard/src/components/AutoFixLog.jsx
3808
+ hash: sha256:8346355c3dd73662e1a63de7bbd72546786c8500ae19531995ff929c4f719bf3
3809
+ type: script
3810
+ size: 1948
3811
+ - path: scripts/diagnostics/health-dashboard/src/components/DomainCard.css
3812
+ hash: sha256:fcb50fd9bd740bb96b36eeea260a007170a91a8be67e9f7220194c0bb8735d96
3813
+ type: script
3814
+ size: 2092
3815
+ - path: scripts/diagnostics/health-dashboard/src/components/DomainCard.jsx
3816
+ hash: sha256:fa247c1a03db4673e8d477a8c2e6fef33fe3f3d3aee55918625ed2de42e7f795
3817
+ type: script
3818
+ size: 3596
3819
+ - path: scripts/diagnostics/health-dashboard/src/components/HealthScore.css
3820
+ hash: sha256:be603c6f2af559943f66dd52353569b6b8ddc4b0d6f83ffd0c339d1f112ff1e7
3821
+ type: script
3822
+ size: 1317
3823
+ - path: scripts/diagnostics/health-dashboard/src/components/HealthScore.jsx
3824
+ hash: sha256:e52324aab05e3d55d3c5e593a771114cfae746fc2720dfc391ff8445c2bdb838
3825
+ type: script
3826
+ size: 2514
3827
+ - path: scripts/diagnostics/health-dashboard/src/components/index.js
3828
+ hash: sha256:9b72d494c14310eb09e59e29212d7c4c012c15ff922d08366cb92860107ac4d0
3829
+ type: script
3830
+ size: 394
3831
+ - path: scripts/diagnostics/health-dashboard/src/components/IssuesList.css
3832
+ hash: sha256:e32b7e59a772604407ae87749ca227199827ce0f37a6e323e4f4839e9bb5c5d4
3833
+ type: script
3834
+ size: 3370
3835
+ - path: scripts/diagnostics/health-dashboard/src/components/IssuesList.jsx
3836
+ hash: sha256:c9d117aa8f48a79d5a0ff2bad6938610d547aeb8e1df37ff6599d348fd55566c
3837
+ type: script
3838
+ size: 4584
3839
+ - path: scripts/diagnostics/health-dashboard/src/components/shared/Card.css
3840
+ hash: sha256:771bf84ee1280983e4fb5efda4bc7dc32b03e562cedd3e61d109618e091bc145
3841
+ type: script
3842
+ size: 781
3843
+ - path: scripts/diagnostics/health-dashboard/src/components/shared/Card.jsx
3844
+ hash: sha256:22c76b233c3a85bd52cbe46fbe2dbcbbc0872c23455c859df019f3a4f0bab2d0
3845
+ type: script
3846
+ size: 687
3847
+ - path: scripts/diagnostics/health-dashboard/src/components/shared/Chart.css
3848
+ hash: sha256:dc3e5d055568511e04d66affce42966453eec7ec5e6869f297fa5241a19897f3
3849
+ type: script
3850
+ size: 272
3851
+ - path: scripts/diagnostics/health-dashboard/src/components/shared/Chart.jsx
3852
+ hash: sha256:550bb7ecfb638121c60419a1ef60158827cd8b5d0b77b939c9bd694193a011ae
3853
+ type: script
3854
+ size: 4061
3855
+ - path: scripts/diagnostics/health-dashboard/src/components/shared/Header.css
3856
+ hash: sha256:a32d09ad552efbc4655cfccbc3532c1649dd8f10a6656f9a062a10c7bf2baada
3857
+ type: script
3858
+ size: 1020
3859
+ - path: scripts/diagnostics/health-dashboard/src/components/shared/Header.jsx
3860
+ hash: sha256:4d2f1387a3afbe09d4ed8a2f14d5143301fe91e39463cef39b645a93d6e64d83
3861
+ type: script
3862
+ size: 537
3863
+ - path: scripts/diagnostics/health-dashboard/src/components/shared/index.js
3864
+ hash: sha256:0f10256312b455be313f78d2c03a44058ecc96b1318acae7eb61f3062e1e9833
3865
+ type: script
3866
+ size: 193
3867
+ - path: scripts/diagnostics/health-dashboard/src/components/shared/StatusBadge.css
3868
+ hash: sha256:b0c1b630dab59cbf7323ab44e0d2a4613fd3826065d5eedf8be47f3f404d5820
3869
+ type: script
3870
+ size: 1492
3871
+ - path: scripts/diagnostics/health-dashboard/src/components/shared/StatusBadge.jsx
3872
+ hash: sha256:5727624e24697e6b515db4a77f09dfc0a27c4d679b501a304bb31bb3ace4ff2c
3873
+ type: script
3874
+ size: 1367
3875
+ - path: scripts/diagnostics/health-dashboard/src/components/TechDebtList.css
3876
+ hash: sha256:f9da717fbef3775d4e620de72f59e2e42d40fb678af2c98e60eddc550b193f50
3877
+ type: script
3878
+ size: 2123
3879
+ - path: scripts/diagnostics/health-dashboard/src/components/TechDebtList.jsx
3880
+ hash: sha256:03f7279d0f78be2e77bac6c8a8f2529efed432dab6e3cf1046c15120a50dc591
3881
+ type: script
3882
+ size: 2116
3883
+ - path: scripts/diagnostics/health-dashboard/src/hooks/index.js
3884
+ hash: sha256:8873c96eb9def440cff602cc8143dddc4fc351f353377dc0683f4e2373662986
3885
+ type: script
3886
+ size: 122
3887
+ - path: scripts/diagnostics/health-dashboard/src/hooks/useAutoRefresh.js
3888
+ hash: sha256:f8dbf187f413424041207aa35bf7c8ad2df0f701952aec5cb3386c2311513c3b
3889
+ type: script
3890
+ size: 2090
3891
+ - path: scripts/diagnostics/health-dashboard/src/hooks/useHealthData.js
3892
+ hash: sha256:3a84646f7eff092923f330bf7f919630cdffb5af601546b7c5627a3a1ffa437a
3893
+ type: script
3894
+ size: 9505
3895
+ - path: scripts/diagnostics/health-dashboard/src/main.jsx
3896
+ hash: sha256:85b7cbf7d9a0ca6b984aada57871797680d81404bdd90ca9c43ec4231d42699f
3897
+ type: script
3898
+ size: 335
3899
+ - path: scripts/diagnostics/health-dashboard/src/pages/Dashboard.css
3900
+ hash: sha256:1a5fd97f59329e52c6ab7e1e250dd18f62766dc97d162e31b9f9597036c97d28
3901
+ type: script
3902
+ size: 4138
3903
+ - path: scripts/diagnostics/health-dashboard/src/pages/Dashboard.jsx
3904
+ hash: sha256:4bf5c190da50b4570375a33408cbca0d09f6ec8fdfaff1148145e82ba023ebd1
3905
+ type: script
3906
+ size: 4636
3907
+ - path: scripts/diagnostics/health-dashboard/src/pages/DomainDetail.css
3908
+ hash: sha256:4833c1470c86f84266b0b25c38bbc80bb62a5d9f5d70e83011441ed8c2d25b09
3909
+ type: script
3910
+ size: 4503
3911
+ - path: scripts/diagnostics/health-dashboard/src/pages/DomainDetail.jsx
3912
+ hash: sha256:ec15b159c02f8cbd2e0f332b4855dfba2f1b6c5e8fef7a0538985eb7ca315078
3913
+ type: script
3914
+ size: 5738
3915
+ - path: scripts/diagnostics/health-dashboard/src/pages/index.js
3916
+ hash: sha256:52a22fa5651e7d6930a685c691e5e13c5245faa34cd4c17a0be25b4ae8668043
3917
+ type: script
3918
+ size: 110
3919
+ - path: scripts/diagnostics/health-dashboard/src/styles/App.css
3920
+ hash: sha256:eab588caa6f791cd9e491e510c37642b958d139aadceba4ff60c016dbac6f768
3921
+ type: script
3922
+ size: 272
3923
+ - path: scripts/diagnostics/health-dashboard/src/styles/index.css
3924
+ hash: sha256:998ec17773fd9a32d25c0e44285ff7e0d3819503be5ee7396e0fbc75d35c6543
3925
+ type: script
3926
+ size: 1381
3927
+ - path: scripts/diagnostics/health-dashboard/vite.config.js
3928
+ hash: sha256:e87c88a741e4fc88d0e7a52b67968fe59e0e8a7bae467ffb99fc55e8956af75e
3929
+ type: script
3930
+ size: 528
3931
+ - path: scripts/diagnostics/quick-diagnose.cmd
3932
+ hash: sha256:a78364d8c22580657018e6d3404867ef1a4db791cb122dc15e0863285be0ca4b
3933
+ type: script
3934
+ size: 1968
3935
+ - path: scripts/diagnostics/quick-diagnose.ps1
3936
+ hash: sha256:2c0db7a049470d44ba7b4a6bcf35f81486bd83ebb288e411498c405cdcaa8164
3937
+ type: script
3938
+ size: 4462
3939
+ - path: scripts/grimoire-doc-template.md
3940
+ hash: sha256:affbd6f17adf4bc41ad9ffa02e053e794879d166ddd9d052df5adc7b85cab7fe
3941
+ type: script
3942
+ size: 8771
3943
+ - path: scripts/migrate-framework-docs.sh
3944
+ hash: sha256:e676f1603f9e5f4b97dfdf4529d11d256b9e07b03d76935cfdd92172473aab2e
3945
+ type: script
3946
+ size: 9540
3947
+ - path: scripts/pm.sh
3948
+ hash: sha256:3a3a973ee12206a3a618c88b582e2855e03d64052365406ef910e953f1eb413e
3949
+ type: script
3950
+ size: 12084
3951
+ - path: scripts/README.md
3952
+ hash: sha256:ea525cd279785a3e81e60521c8e32912b9e9eac8424d18350560aeab710697a5
3953
+ type: script
3954
+ size: 4506
3955
+ - path: scripts/session-context-loader.js
3956
+ hash: sha256:36536cb77054f9d14834495869be69751d41796f691df5a6c79585ea81d62fff
3957
+ type: script
3958
+ size: 1584
3959
+ - path: scripts/test-template-system.js
3960
+ hash: sha256:f53a6484ae60399190d6a2adb74ea2783dd04d3ac72d5718ab8a03817bda28c3
3961
+ type: script
3962
+ size: 26033
3963
+ - path: scripts/update-grimoire.sh
3964
+ hash: sha256:b4305dea1c58f6657d4191fd578cf3ce39384f20d7406c6a051483a145e7d93f
3965
+ type: script
3966
+ size: 6080
3967
+ - path: scripts/validate-phase1.ps1
3968
+ hash: sha256:39780fbf13b1b581fc958417089ff2a6af5e9d13aeee5e4f4bc82910858735c1
3969
+ type: script
3970
+ size: 768
3971
+ - path: scripts/workflow-management.md
3972
+ hash: sha256:a177c85e0ab83ef1e04b318ec8ebdc1541fe50e5a4c84186ab1deabccb9d8aa5
3973
+ type: script
3974
+ size: 1714
3975
+ - path: user-guide.md
3976
+ hash: sha256:386671a7a559e454f718780ff74b02c07bac1ad904f3ec5e4067a15d7802e47f
3977
+ type: documentation
3978
+ size: 38479
3979
+ - path: workflow-intelligence/__tests__/confidence-scorer.test.js
3980
+ hash: sha256:237216842d3eb710ae33f3aba6c7b2a6a353cccc1dea6d4b927d8d063d9cb635
3981
+ type: workflow-intelligence
3982
+ size: 10679
3983
+ - path: workflow-intelligence/__tests__/integration.test.js
3984
+ hash: sha256:8f7eb4cff6d36493b49322b3221231db6d6b4259aaa2da4a2c5cdd6d61effded
3985
+ type: workflow-intelligence
3986
+ size: 11101
3987
+ - path: workflow-intelligence/__tests__/suggestion-engine.test.js
3988
+ hash: sha256:993741ed68c63db9bb50e58133b47159dd9fb1c4844e2fc99a5e618adb8fa12f
3989
+ type: workflow-intelligence
3990
+ size: 12788
3991
+ - path: workflow-intelligence/__tests__/wave-analyzer.test.js
3992
+ hash: sha256:617a099d4be72f8711a4be734ed0a600d97f7e84bec24edf8b97d68b6c5a2b51
3993
+ type: workflow-intelligence
3994
+ size: 15055
3995
+ - path: workflow-intelligence/__tests__/workflow-registry.test.js
3996
+ hash: sha256:fee70788995d95180f647eea86a012d1f90d8157405c9abf3d8004e1e347a424
3997
+ type: workflow-intelligence
3998
+ size: 9967
3999
+ - path: workflow-intelligence/engine/confidence-scorer.js
4000
+ hash: sha256:6ab69ac846e0f3b49fd7d76a720ab1dc305f402b54518bbcf8ce876f269d0c18
4001
+ type: workflow-intelligence
4002
+ size: 8822
4003
+ - path: workflow-intelligence/engine/output-formatter.js
4004
+ hash: sha256:f15086c91ed86daa4d48b0acf2f3dc6c319ff36415c24594b7232e4e5581b4bc
4005
+ type: workflow-intelligence
4006
+ size: 8436
4007
+ - path: workflow-intelligence/engine/suggestion-engine.js
4008
+ hash: sha256:f7c26ff19d19d0f6a48fea8d93983470ecf682de7ca8ec51e506f80a77231f30
4009
+ type: workflow-intelligence
4010
+ size: 23451
4011
+ - path: workflow-intelligence/engine/wave-analyzer.js
4012
+ hash: sha256:0d017b70213584a11cad354d54d442be977b183353e6a5e31cc1de4291d0afb9
4013
+ type: workflow-intelligence
4014
+ size: 19797
4015
+ - path: workflow-intelligence/index.js
4016
+ hash: sha256:c4f3b3f99d7ab5e148b343716e824ced6f72a52a7302d7dd8f5ac53f23615a59
4017
+ type: workflow-intelligence
4018
+ size: 8193
4019
+ - path: workflow-intelligence/learning/capture-hook.js
4020
+ hash: sha256:228e696f37ee1ed4f1ac367e82cf49078a3f21ed79574cff3ff83e663fac03c5
4021
+ type: workflow-intelligence
4022
+ size: 3276
4023
+ - path: workflow-intelligence/learning/gotcha-registry.js
4024
+ hash: sha256:b8712fbbf9e96a8edf733e9d2bc46d9194345575d4e3da9c4a75e08879cf4583
4025
+ type: workflow-intelligence
4026
+ size: 21123
4027
+ - path: workflow-intelligence/learning/index.js
4028
+ hash: sha256:347f0c857208ed537d74a9bfea0774e2e8b10af802fec5ff196a8e227001ddd7
4029
+ type: workflow-intelligence
4030
+ size: 7322
4031
+ - path: workflow-intelligence/learning/pattern-capture.js
4032
+ hash: sha256:f37dda38d03e66cdee2d92ab903567716171dda005e6416e00b01614e6c5acc1
4033
+ type: workflow-intelligence
4034
+ size: 9365
4035
+ - path: workflow-intelligence/learning/pattern-store.js
4036
+ hash: sha256:36fa074ebe287ae22d70c48c708cf3083efee4d966f5cfdf21ab5b408406ce98
4037
+ type: workflow-intelligence
4038
+ size: 13682
4039
+ - path: workflow-intelligence/learning/pattern-validator.js
4040
+ hash: sha256:9f0ebc7d1f4cffcfe616867bdbb91b4aca8721052ca4958e5cd6cb06b4f833c4
4041
+ type: workflow-intelligence
4042
+ size: 8563
4043
+ - path: workflow-intelligence/learning/qa-feedback.js
4044
+ hash: sha256:f6f762e38411c2f60b8e64c1adc29f99d15ff71b58905be441b7f7583771f352
4045
+ type: workflow-intelligence
4046
+ size: 18413
4047
+ - path: workflow-intelligence/learning/semantic-search.js
4048
+ hash: sha256:f9ba491acf310e479d467f1a5990e4d3656b0c06a6fc50f52d26853325071976
4049
+ type: workflow-intelligence
4050
+ size: 16680
4051
+ - path: workflow-intelligence/registry/workflow-registry.js
4052
+ hash: sha256:721c825278255db427e9f3704073f8d221e75ac13bffb944927343e03923e8ae
4053
+ type: workflow-intelligence
4054
+ size: 9399
4055
+ - path: working-in-the-brownfield.md
4056
+ hash: sha256:d567c63b736370a33d5bcca86a0bed6e1b444ec746e7ba2fd2b38a23bca8ca68
4057
+ type: documentation
4058
+ size: 10311