sinapse-ai 9.3.0 → 9.5.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.
- package/.claude/CLAUDE.md +60 -341
- package/.claude/hooks/enforce-architecture-first.py +197 -197
- package/.claude/hooks/enforce-git-push-authority.sh +25 -4
- package/.claude/hooks/mind-clone-governance.py +193 -193
- package/.claude/hooks/read-protection.py +152 -152
- package/.claude/hooks/sql-governance.py +183 -183
- package/.claude/hooks/verify-packages.cjs +83 -0
- package/.claude/hooks/write-path-validation.py +195 -195
- package/.claude/rules/agent-authority.md +6 -0
- package/.claude/rules/agent-handoff.md +5 -0
- package/.claude/rules/cross-squad-routing.md +5 -0
- package/.claude/rules/hook-governance.md +7 -0
- package/.claude/rules/mandatory-delegation.md +24 -0
- package/.claude/rules/mcp-usage.md +3 -1
- package/.claude/rules/project-intelligence.md +63 -0
- package/.claude/rules/response-format.md +4 -0
- package/.claude/rules/safe-collaboration.md +14 -2
- package/.claude/rules/security-data-protection.md +27 -0
- package/.claude/rules/squad-awareness.md +96 -68
- package/.claude/rules/token-economy.md +148 -0
- package/.claude/rules/tool-examples.md +6 -0
- package/.claude/rules/workflow-execution.md +7 -0
- package/.codex/agents/analyst.md +342 -71
- package/.codex/agents/architect.md +533 -68
- package/.codex/agents/data-engineer.md +530 -106
- package/.codex/agents/developer.md +657 -0
- package/.codex/agents/devops.md +639 -69
- package/.codex/agents/product-lead.md +362 -0
- package/.codex/agents/project-lead.md +405 -0
- package/.codex/agents/quality-gate.md +538 -0
- package/.codex/agents/sinapse-orqx.md +9 -7
- package/.codex/agents/sprint-lead.md +315 -0
- package/.codex/agents/squad-creator.md +402 -0
- package/.codex/agents/ux-design-expert.md +523 -0
- package/.codex/delegation-matrix.json +756 -44
- package/.codex/handoff-packet.schema.json +30 -6
- package/.sinapse-ai/core/code-intel/registry-syncer.js +56 -3
- package/.sinapse-ai/core/doctor/checks/agent-memory.js +5 -1
- package/.sinapse-ai/core/doctor/checks/claude-md.js +4 -1
- package/.sinapse-ai/core/doctor/checks/code-intel.js +5 -1
- package/.sinapse-ai/core/doctor/checks/commands-count.js +4 -1
- package/.sinapse-ai/core/doctor/checks/constitution-consistency.js +4 -1
- package/.sinapse-ai/core/doctor/checks/core-config.js +4 -1
- package/.sinapse-ai/core/doctor/checks/entity-registry.js +6 -1
- package/.sinapse-ai/core/doctor/checks/git-hooks.js +5 -1
- package/.sinapse-ai/core/doctor/checks/graph-dashboard.js +4 -1
- package/.sinapse-ai/core/doctor/checks/hooks-claude-count.js +5 -1
- package/.sinapse-ai/core/doctor/checks/ide-sync.js +4 -1
- package/.sinapse-ai/core/doctor/checks/node-version.js +4 -1
- package/.sinapse-ai/core/doctor/checks/npm-packages.js +4 -1
- package/.sinapse-ai/core/doctor/checks/rules-files.js +4 -1
- package/.sinapse-ai/core/doctor/checks/settings-json.js +4 -1
- package/.sinapse-ai/core/doctor/checks/skills-count.js +4 -1
- package/.sinapse-ai/core/doctor/index.js +157 -50
- package/.sinapse-ai/core/ids/registry-updater.js +6 -1
- package/.sinapse-ai/core/logger/index.js +319 -0
- package/.sinapse-ai/core/orchestration/terminal-spawner.js +2 -2
- package/.sinapse-ai/core/telemetry/index.js +247 -0
- package/.sinapse-ai/data/entity-registry.yaml +1060 -808
- package/.sinapse-ai/development/agents/analyst.md +90 -0
- package/.sinapse-ai/development/agents/architect.md +78 -0
- package/.sinapse-ai/development/agents/data-engineer.md +38 -0
- package/.sinapse-ai/development/agents/developer.md +97 -0
- package/.sinapse-ai/development/agents/devops.md +121 -0
- package/.sinapse-ai/development/agents/product-lead.md +27 -0
- package/.sinapse-ai/development/agents/project-lead.md +28 -0
- package/.sinapse-ai/development/agents/quality-gate.md +89 -0
- package/.sinapse-ai/development/agents/sprint-lead/MEMORY.md +8 -0
- package/.sinapse-ai/development/agents/sprint-lead.md +28 -0
- package/.sinapse-ai/development/agents/squad-creator.md +58 -0
- package/.sinapse-ai/development/agents/ux-design-expert.md +28 -0
- package/.sinapse-ai/development/checklists/agent-quality-gate.md +27 -0
- package/.sinapse-ai/development/checklists/brownfield-compatibility-checklist.md +20 -0
- package/.sinapse-ai/development/checklists/code-review-checklist.md +106 -0
- package/.sinapse-ai/development/checklists/issue-triage-checklist.md +9 -0
- package/.sinapse-ai/development/checklists/memory-audit-checklist.md +16 -0
- package/.sinapse-ai/development/checklists/pr-quality-checklist.md +72 -0
- package/.sinapse-ai/development/checklists/security-deployment-checklist.md +54 -0
- package/.sinapse-ai/development/checklists/self-critique-checklist.md +19 -1
- package/.sinapse-ai/development/knowledge-base/agent-communication-protocol.md +127 -0
- package/.sinapse-ai/development/knowledge-base/database-scaling-patterns.md +374 -0
- package/.sinapse-ai/development/knowledge-base/environment-deployment-patterns.md +353 -0
- package/.sinapse-ai/development/knowledge-base/gotchas-patterns.md +224 -0
- package/.sinapse-ai/development/knowledge-base/infrastructure-decision-framework.md +221 -0
- package/.sinapse-ai/development/knowledge-base/security-pre-deploy-checklist.md +410 -0
- package/.sinapse-ai/development/knowledge-base/software-architecture-patterns.md +299 -0
- package/.sinapse-ai/development/knowledge-base/token-economy-guide.md +198 -0
- package/.sinapse-ai/development/scripts/populate-entity-registry.js +5 -1
- package/.sinapse-ai/development/skills/captcha-handler.md +82 -0
- package/.sinapse-ai/development/skills/chrome-brain.md +81 -0
- package/.sinapse-ai/development/skills/debug.md +57 -0
- package/.sinapse-ai/development/skills/deploy-readiness.md +93 -0
- package/.sinapse-ai/development/skills/fast-review.md +69 -0
- package/.sinapse-ai/development/skills/model-router.md +92 -0
- package/.sinapse-ai/development/skills/research-synthesis.md +77 -0
- package/.sinapse-ai/development/skills/security-scan.md +73 -0
- package/.sinapse-ai/development/skills/sinapse-methodology.md +175 -0
- package/.sinapse-ai/development/skills/story-fast-track.md +71 -0
- package/.sinapse-ai/development/skills/verify.md +53 -0
- package/.sinapse-ai/development/tasks/dev-develop-story.md +10 -0
- package/.sinapse-ai/development/tasks/environment-promotion-pipeline.md +582 -0
- package/.sinapse-ai/development/tasks/generate-agent-handoff.md +223 -0
- package/.sinapse-ai/development/tasks/infrastructure-assessment.md +432 -0
- package/.sinapse-ai/development/tasks/load-testing-setup.md +611 -0
- package/.sinapse-ai/development/tasks/observability-blueprint.md +562 -0
- package/.sinapse-ai/development/templates/legal/breach-notification-tmpl.md +113 -0
- package/.sinapse-ai/development/templates/legal/privacy-policy-tmpl.md +93 -0
- package/.sinapse-ai/development/templates/legal/terms-of-service-tmpl.md +85 -0
- package/.sinapse-ai/development/templates/service-template/README.md.hbs +159 -159
- package/.sinapse-ai/development/templates/service-template/__tests__/index.test.ts.hbs +238 -238
- package/.sinapse-ai/development/templates/service-template/client.ts.hbs +404 -404
- package/.sinapse-ai/development/templates/service-template/errors.ts.hbs +183 -183
- package/.sinapse-ai/development/templates/service-template/index.ts.hbs +121 -121
- package/.sinapse-ai/development/templates/service-template/package.json.hbs +88 -88
- package/.sinapse-ai/development/templates/service-template/types.ts.hbs +146 -146
- package/.sinapse-ai/development/templates/squad/agent-template.md +17 -4
- package/.sinapse-ai/development/templates/squad/checklist-template.md +13 -5
- package/.sinapse-ai/development/templates/squad/task-template.md +7 -0
- package/.sinapse-ai/development/templates/squad/workflow-template.yaml +7 -0
- package/.sinapse-ai/development/templates/squad-template/LICENSE +22 -22
- package/.sinapse-ai/development/workflows/fast-track.yaml +87 -0
- package/.sinapse-ai/development/workflows/story-development-cycle.yaml +40 -1
- package/.sinapse-ai/hooks/ids-post-commit.js +22 -0
- package/.sinapse-ai/infrastructure/contracts/compatibility/README.md +42 -0
- package/.sinapse-ai/infrastructure/contracts/compatibility/sinapse-current.yaml +35 -0
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/claude-free-tracked.cmd +127 -127
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/deepseek-proxy.cmd +71 -71
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/deepseek-usage.cmd +51 -51
- package/.sinapse-ai/infrastructure/scripts/pr-review-ai.js +16 -13
- package/.sinapse-ai/infrastructure/scripts/setup-project-infra.js +128 -0
- package/.sinapse-ai/infrastructure/scripts/test-discovery.js +8 -3
- package/.sinapse-ai/infrastructure/scripts/validate-codex-delegation.js +3 -1
- package/.sinapse-ai/infrastructure/scripts/validate-manifest-parity.js +380 -0
- package/.sinapse-ai/infrastructure/scripts/validate-parity.js +76 -25
- package/.sinapse-ai/infrastructure/templates/coderabbit.yaml.template +280 -280
- package/.sinapse-ai/infrastructure/templates/config/env.example +16 -0
- package/.sinapse-ai/infrastructure/templates/config/gitignore-additions.tmpl +59 -0
- package/.sinapse-ai/infrastructure/templates/github/CODEOWNERS.template +12 -0
- package/.sinapse-ai/infrastructure/templates/github/PULL_REQUEST_TEMPLATE.md +29 -0
- package/.sinapse-ai/infrastructure/templates/github/ci-template.yml +77 -0
- package/.sinapse-ai/infrastructure/templates/github/issue-templates/bug_report.md +34 -0
- package/.sinapse-ai/infrastructure/templates/github/issue-templates/feature_request.md +19 -0
- package/.sinapse-ai/infrastructure/templates/github-workflows/ci.yml.template +170 -170
- package/.sinapse-ai/infrastructure/templates/github-workflows/pr-automation.yml.template +331 -331
- package/.sinapse-ai/infrastructure/templates/github-workflows/release.yml.template +197 -197
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +19 -19
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-node.tmpl +86 -86
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-python.tmpl +146 -146
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-sinapse-base.tmpl +64 -64
- package/.sinapse-ai/infrastructure/templates/sinapse-sync.yaml.template +183 -183
- package/.sinapse-ai/install-manifest.yaml +333 -162
- package/.sinapse-ai/local-config.yaml.template +65 -65
- package/.sinapse-ai/monitor/hooks/lib/__init__.py +2 -2
- package/.sinapse-ai/monitor/hooks/lib/enrich.py +59 -59
- package/.sinapse-ai/monitor/hooks/lib/send_event.py +48 -48
- package/.sinapse-ai/monitor/hooks/notification.py +30 -30
- package/.sinapse-ai/monitor/hooks/post_tool_use.py +46 -46
- package/.sinapse-ai/monitor/hooks/pre_compact.py +30 -30
- package/.sinapse-ai/monitor/hooks/pre_tool_use.py +41 -41
- package/.sinapse-ai/monitor/hooks/stop.py +30 -30
- package/.sinapse-ai/monitor/hooks/subagent_stop.py +30 -30
- package/.sinapse-ai/monitor/hooks/user_prompt_submit.py +39 -39
- package/.sinapse-ai/product/templates/adr.hbs +126 -126
- package/.sinapse-ai/product/templates/dbdr.hbs +242 -242
- package/.sinapse-ai/product/templates/epic.hbs +213 -213
- package/.sinapse-ai/product/templates/pmdr.hbs +187 -187
- package/.sinapse-ai/product/templates/prd-v2.0.hbs +217 -217
- package/.sinapse-ai/product/templates/prd.hbs +202 -202
- package/.sinapse-ai/product/templates/story-tmpl.yaml +59 -0
- package/.sinapse-ai/product/templates/story.hbs +264 -264
- package/.sinapse-ai/product/templates/task.hbs +171 -171
- package/.sinapse-ai/product/templates/tmpl-comment-on-examples.sql +159 -159
- package/.sinapse-ai/product/templates/tmpl-migration-script.sql +92 -92
- package/.sinapse-ai/product/templates/tmpl-rls-granular-policies.sql +105 -105
- package/.sinapse-ai/product/templates/tmpl-rls-kiss-policy.sql +11 -11
- package/.sinapse-ai/product/templates/tmpl-rls-roles.sql +136 -136
- package/.sinapse-ai/product/templates/tmpl-rls-simple.sql +78 -78
- package/.sinapse-ai/product/templates/tmpl-rls-tenant.sql +153 -153
- package/.sinapse-ai/product/templates/tmpl-rollback-script.sql +78 -78
- package/.sinapse-ai/product/templates/tmpl-seed-data.sql +141 -141
- package/.sinapse-ai/product/templates/tmpl-smoke-test.sql +17 -17
- package/.sinapse-ai/product/templates/tmpl-staging-copy-merge.sql +140 -140
- package/.sinapse-ai/product/templates/tmpl-stored-proc.sql +141 -141
- package/.sinapse-ai/product/templates/tmpl-trigger.sql +153 -153
- package/.sinapse-ai/product/templates/tmpl-view-materialized.sql +134 -134
- package/.sinapse-ai/product/templates/tmpl-view.sql +178 -178
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/package-lock.json +427 -355
- package/LICENSE +34 -34
- package/README.en.md +167 -20
- package/README.md +190 -22
- package/bin/cli.js +510 -196
- package/bin/postinstall.js +564 -0
- package/bin/sinapse-cli +283 -283
- package/bin/sinapse-graph.js +9 -0
- package/bin/sinapse-init.js +36 -4
- package/bin/sinapse-minimal.js +20 -9
- package/bin/sinapse.js +202 -122
- package/bin/utils/deprecation-warning.js +46 -0
- package/bin/utils/pre-push-safety.js +14 -0
- package/docs/TELEMETRY.md +131 -0
- package/docs/chrome-brain-upgrade-plan.md +624 -0
- package/docs/codex-integration-process.md +22 -0
- package/docs/codex-parity-program.md +27 -0
- package/docs/framework/orqx-plan.md +1 -1
- package/docs/ide-integration.md +36 -0
- package/docs/installation/chrome-brain.md +17 -7
- package/docs/mega-upgrade-orchestration-plan.md +71 -0
- package/docs/pt/contributing.md +20 -0
- package/docs/research-synthesis-for-upgrade.md +511 -0
- package/docs/security-audit-report.md +306 -0
- package/package.json +20 -8
- package/packages/installer/src/config/configure-environment.js +19 -44
- package/packages/installer/src/detection/detect-project-type.js +181 -63
- package/packages/installer/src/installer/manifest-signature.js +32 -17
- package/packages/installer/src/wizard/i18n.js +12 -0
- package/packages/installer/src/wizard/ide-config-generator.js +8 -39
- package/packages/installer/src/wizard/index.js +119 -14
- package/packages/installer/src/wizard/questions.js +2 -3
- package/packages/installer/tests/integration/environment-configuration.test.js +7 -5
- package/packages/installer/tests/unit/detection/detect-project-type.test.js +138 -1
- package/packages/installer/tests/unit/doctor/doctor-orchestrator.test.js +3 -3
- package/packages/sinapse-install/bin/edmcp.js +0 -0
- package/packages/sinapse-install/bin/sinapse-install.js +0 -0
- package/packages/sinapse-pro-cli/bin/sinapse-pro.js +0 -0
- package/scripts/check-markdown-links.py +353 -353
- package/scripts/coverage-report-summary.js +169 -0
- package/scripts/generate-install-manifest.js +6 -2
- package/scripts/release-readiness.js +169 -0
- package/scripts/test-install-matrix-local.sh +153 -0
- package/scripts/validate-install-docs.js +394 -0
- package/scripts/validate-no-external-refs.js +376 -0
- package/scripts/validate-squad-orqx.js +302 -0
- package/scripts/validate-story-meta.js +263 -0
- package/squads/claude-code-mastery/CHANGELOG.md +1 -1
- package/squads/claude-code-mastery/README.md +2 -2
- package/squads/claude-code-mastery/knowledge-base/claude-code-internals-reference.md +927 -0
- package/squads/claude-code-mastery/squad.yaml +1 -1
- package/squads/squad-artdir/README.md +90 -0
- package/squads/squad-artdir/agents/accessibility-guardian.md +184 -0
- package/squads/squad-artdir/agents/artdir-orqx.md +145 -0
- package/squads/squad-artdir/agents/color-psychologist.md +166 -0
- package/squads/squad-artdir/agents/cro-persuasion.md +161 -0
- package/squads/squad-artdir/agents/design-system-architect.md +100 -0
- package/squads/squad-artdir/agents/ia-architect.md +169 -0
- package/squads/squad-artdir/agents/interaction-designer.md +162 -0
- package/squads/squad-artdir/agents/layout-engineer.md +163 -0
- package/squads/squad-artdir/agents/motion-architect.md +185 -0
- package/squads/squad-artdir/agents/platform-aesthetic-director.md +84 -0
- package/squads/squad-artdir/agents/premium-packaging-strategist.md +107 -0
- package/squads/squad-artdir/agents/product-surface-director.md +86 -0
- package/squads/squad-artdir/agents/type-systemist.md +138 -0
- package/squads/squad-artdir/agents/visual-strategist.md +127 -0
- package/squads/squad-artdir/checklists/seven-pillars-validation-checklist.md +172 -0
- package/squads/squad-artdir/knowledge-base/case-nyo-ia-reference.md +289 -0
- package/squads/squad-artdir/knowledge-base/deliverables-templates.md +457 -0
- package/squads/squad-artdir/knowledge-base/motion-technique-catalog.md +247 -0
- package/squads/squad-artdir/knowledge-base/premium-packaging-principles.md +133 -0
- package/squads/squad-artdir/knowledge-base/psychological-toolkit.md +229 -0
- package/squads/squad-artdir/knowledge-base/saas-art-direction-canon.md +242 -0
- package/squads/squad-artdir/knowledge-base/seven-pillars-framework.md +289 -0
- package/squads/squad-artdir/knowledge-base/ten-pillars-framework.md +221 -0
- package/squads/squad-artdir/package.json +20 -0
- package/squads/squad-artdir/squad.yaml +271 -0
- package/squads/squad-artdir/tasks/audit-conversion.md +97 -0
- package/squads/squad-artdir/tasks/audit-drift-multi-surface.md +55 -0
- package/squads/squad-artdir/tasks/consult-saas-canon.md +54 -0
- package/squads/squad-artdir/tasks/create-art-direction-brief.md +110 -0
- package/squads/squad-artdir/tasks/create-premium-packaging-brief.md +61 -0
- package/squads/squad-artdir/tasks/create-wireflow.md +84 -0
- package/squads/squad-artdir/tasks/design-color-system.md +81 -0
- package/squads/squad-artdir/tasks/design-product-surface.md +60 -0
- package/squads/squad-artdir/tasks/design-token-system.md +58 -0
- package/squads/squad-artdir/tasks/diagnose-visual-language.md +92 -0
- package/squads/squad-artdir/tasks/first-5-minutes-choreography.md +65 -0
- package/squads/squad-artdir/tasks/specify-motion-system.md +84 -0
- package/squads/squad-artdir/tasks/validate-against-pillars.md +143 -0
- package/squads/squad-artdir/templates/art-direction-brief-template.md +215 -0
- package/squads/squad-artdir/workflows/conversion-audit-cycle.yaml +78 -0
- package/squads/squad-artdir/workflows/full-art-direction-cycle.yaml +98 -0
- package/squads/squad-artdir/workflows/saas-platform-art-direction-cycle.yaml +174 -0
- package/squads/squad-brand/knowledge-base/ai-visual-generation-canon.md +234 -0
- package/squads/squad-brand/knowledge-base/archetype-brand-mapping.md +12 -1
- package/squads/squad-brand/knowledge-base/brand-activism-cultural-branding.md +216 -0
- package/squads/squad-brand/knowledge-base/brand-audit-criteria.md +58 -0
- package/squads/squad-brand/knowledge-base/brand-digital-strategy.md +188 -0
- package/squads/squad-brand/knowledge-base/brand-legal-ip.md +222 -0
- package/squads/squad-brand/knowledge-base/brand-naming-framework.md +163 -0
- package/squads/squad-brand/knowledge-base/branding-master-reference.md +1001 -0
- package/squads/squad-brand/knowledge-base/color-psychology.md +25 -12
- package/squads/squad-brand/knowledge-base/employer-personal-branding.md +206 -0
- package/squads/squad-brand/knowledge-base/routing-catalog.md +34 -0
- package/squads/squad-brand/knowledge-base/sonic-branding-principles.md +6 -1
- package/squads/squad-brand/knowledge-base/typography-personality.md +34 -0
- package/squads/squad-brand/squad.yaml +20 -6
- package/squads/squad-claude/knowledge-base/context-window-optimization.md +334 -0
- package/squads/squad-claude/knowledge-base/knowledge-architecture-reference.md +403 -0
- package/squads/squad-claude/knowledge-base/memory-systems-reference.md +412 -0
- package/squads/squad-claude/knowledge-base/obsidian-claude-integration.md +423 -0
- package/squads/squad-claude/knowledge-base/retrieval-augmented-generation.md +320 -0
- package/squads/squad-claude/knowledge-base/skill-creation-patterns.md +380 -0
- package/squads/squad-claude/knowledge-base/swarm-orchestration-patterns.md +411 -0
- package/squads/squad-cloning/knowledge-base/clone-quality-assurance.md +211 -0
- package/squads/squad-cloning/knowledge-base/confidence-scoring.md +51 -0
- package/squads/squad-cloning/knowledge-base/cross-squad-deployment.md +47 -0
- package/squads/squad-cloning/knowledge-base/ethical-guidelines.md +237 -0
- package/squads/squad-cloning/knowledge-base/knowledge-graph-for-clones.md +295 -0
- package/squads/squad-cloning/knowledge-base/memory-architecture-for-clones.md +229 -0
- package/squads/squad-cloning/knowledge-base/multi-agent-deployment-patterns.md +320 -0
- package/squads/squad-cloning/knowledge-base/skill-standard-for-clones.md +262 -0
- package/squads/squad-cloning/knowledge-base/sop-extraction-guide.md +243 -0
- package/squads/squad-commercial/knowledge-base/account-based-selling.md +206 -0
- package/squads/squad-commercial/knowledge-base/ai-as-competitive-infrastructure.md +14 -0
- package/squads/squad-commercial/knowledge-base/ai-in-sales.md +199 -0
- package/squads/squad-commercial/knowledge-base/brazilian-sales-context.md +195 -0
- package/squads/squad-commercial/knowledge-base/customer-success-operations.md +83 -2
- package/squads/squad-commercial/knowledge-base/prospecting-pipeline-generation.md +69 -0
- package/squads/squad-commercial/knowledge-base/sales-enablement-playbook.md +260 -0
- package/squads/squad-commercial/knowledge-base/sales-methodology-comparison.md +185 -0
- package/squads/squad-commercial/knowledge-base/sales-revenue-master-reference.md +1123 -0
- package/squads/squad-content/knowledge-base/ai-native-content-loop.md +220 -0
- package/squads/squad-content/knowledge-base/brazilian-content-context.md +176 -0
- package/squads/squad-content/knowledge-base/competitor-analysis-methods.md +40 -1
- package/squads/squad-content/knowledge-base/content-architecture-taxonomy.md +206 -0
- package/squads/squad-content/knowledge-base/content-formats-encyclopedia.md +58 -1
- package/squads/squad-content/knowledge-base/content-references-bibliography.md +130 -0
- package/squads/squad-content/knowledge-base/content-strategy-master-reference.md +1097 -0
- package/squads/squad-content/knowledge-base/content-tech-stack.md +150 -0
- package/squads/squad-content/knowledge-base/copywriting-formulas-library.md +188 -0
- package/squads/squad-content/knowledge-base/email-newsletter-strategy.md +161 -0
- package/squads/squad-content/knowledge-base/platform-algorithm-intelligence.md +86 -1
- package/squads/squad-content/knowledge-base/signal-intelligence-v2.md +234 -0
- package/squads/squad-content/knowledge-base/social-algorithms-master-reference.md +1007 -0
- package/squads/squad-content/knowledge-base/task-ownership-map.md +235 -0
- package/squads/squad-content/knowledge-base/video-audio-content-playbook.md +218 -0
- package/squads/squad-content/squad.yaml +187 -27
- package/squads/squad-copy/knowledge-base/ai-copy-human-loop-canon.md +235 -0
- package/squads/squad-copy/knowledge-base/ai-copy-production.md +254 -0
- package/squads/squad-copy/knowledge-base/brazilian-copywriting-context.md +242 -0
- package/squads/squad-copy/knowledge-base/email-copywriting-system.md +299 -0
- package/squads/squad-copy/knowledge-base/landing-page-copy-architecture.md +267 -0
- package/squads/squad-copy/knowledge-base/power-words-catalog.md +205 -0
- package/squads/squad-copy/knowledge-base/seo-copywriting.md +255 -0
- package/squads/squad-copy/knowledge-base/video-script-copywriting.md +239 -0
- package/squads/squad-copy/squad.yaml +19 -4
- package/squads/squad-council/knowledge-base/brand-strategy-models.md +193 -0
- package/squads/squad-council/knowledge-base/growth-strategy-models.md +267 -0
- package/squads/squad-council/knowledge-base/innovation-disruption-frameworks.md +193 -0
- package/squads/squad-council/knowledge-base/market-analysis-frameworks.md +240 -0
- package/squads/squad-council/knowledge-base/organizational-leadership-models.md +212 -0
- package/squads/squad-council/knowledge-base/sales-strategy-models.md +215 -0
- package/squads/squad-courses/knowledge-base/course-launch-strategy.md +251 -0
- package/squads/squad-courses/knowledge-base/domain-advocacia-curriculum.md +385 -0
- package/squads/squad-courses/knowledge-base/domain-contabilidade-curriculum.md +266 -0
- package/squads/squad-courses/knowledge-base/platform-comparison.md +68 -0
- package/squads/squad-courses/knowledge-base/video-production-guide.md +70 -0
- package/squads/squad-cybersecurity/knowledge-base/cloud-security-reference.md +363 -0
- package/squads/squad-cybersecurity/knowledge-base/compliance-frameworks.md +273 -0
- package/squads/squad-cybersecurity/knowledge-base/database-security.md +438 -0
- package/squads/squad-cybersecurity/knowledge-base/incident-response-playbook.md +420 -0
- package/squads/squad-cybersecurity/knowledge-base/network-security-reference.md +477 -0
- package/squads/squad-cybersecurity/knowledge-base/penetration-testing-methodology.md +350 -0
- package/squads/squad-cybersecurity/knowledge-base/vulnerability-management.md +349 -0
- package/squads/squad-design/knowledge-base/brazilian-design-context.md +223 -0
- package/squads/squad-design/knowledge-base/component-api-patterns.md +208 -4
- package/squads/squad-design/knowledge-base/cross-surface-token-canon.md +209 -0
- package/squads/squad-design/knowledge-base/design-system-master-reference.md +1302 -0
- package/squads/squad-design/knowledge-base/design-systems-frameworks.md +91 -1
- package/squads/squad-design/knowledge-base/responsive-modern-css.md +96 -4
- package/squads/squad-design/knowledge-base/wcag-aria-reference.md +117 -5
- package/squads/squad-design/knowledge-base/web-performance-reference.md +127 -4
- package/squads/squad-design/squad.yaml +19 -4
- package/squads/squad-finance/knowledge-base/brazilian-taxation.md +263 -0
- package/squads/squad-finance/knowledge-base/contabilidade-master-reference.md +998 -0
- package/squads/squad-finance/knowledge-base/finance-master-reference.md +946 -0
- package/squads/squad-finance/knowledge-base/financial-reporting-analysis.md +316 -0
- package/squads/squad-finance/knowledge-base/fintech-brazilian-context.md +242 -0
- package/squads/squad-finance/knowledge-base/fpa-planning-frameworks.md +286 -0
- package/squads/squad-finance/knowledge-base/ma-and-transactions.md +285 -0
- package/squads/squad-finance/knowledge-base/risk-management.md +233 -0
- package/squads/squad-finance/knowledge-base/startups-venture-capital.md +337 -0
- package/squads/squad-growth/knowledge-base/ai-growth-playbook.md +216 -0
- package/squads/squad-growth/knowledge-base/attribution-models.md +78 -0
- package/squads/squad-growth/knowledge-base/brazilian-growth-context.md +208 -0
- package/squads/squad-growth/knowledge-base/community-led-growth.md +175 -0
- package/squads/squad-growth/knowledge-base/content-marketing-flywheel.md +190 -0
- package/squads/squad-growth/knowledge-base/email-lifecycle-framework.md +192 -0
- package/squads/squad-growth/knowledge-base/growth-frameworks-catalog.md +82 -0
- package/squads/squad-growth/knowledge-base/growth-master-reference.md +1168 -0
- package/squads/squad-growth/knowledge-base/routing-catalog.md +53 -11
- package/squads/squad-paidmedia/knowledge-base/audiences-segmentation-deep.md +285 -0
- package/squads/squad-paidmedia/knowledge-base/creative-strategy-deep.md +294 -0
- package/squads/squad-paidmedia/knowledge-base/google-ads-account-architecture.md +87 -0
- package/squads/squad-paidmedia/knowledge-base/meta-ads-campaign-architecture.md +76 -0
- package/squads/squad-paidmedia/knowledge-base/paid-media-metrics-reference.md +117 -0
- package/squads/squad-paidmedia/knowledge-base/paid-traffic-master-reference.md +1308 -0
- package/squads/squad-paidmedia/knowledge-base/routing-catalog.md +95 -18
- package/squads/squad-paidmedia/knowledge-base/traffic-masters-frameworks.md +71 -0
- package/squads/squad-product/knowledge-base/brazilian-product-context.md +284 -0
- package/squads/squad-product/knowledge-base/discovery-methodology-playbook.md +141 -0
- package/squads/squad-product/knowledge-base/pm-frameworks-reference.md +125 -9
- package/squads/squad-product/knowledge-base/product-analytics-formulas.md +72 -0
- package/squads/squad-product/knowledge-base/product-led-growth-reference.md +155 -13
- package/squads/squad-product/knowledge-base/product-market-fit-framework.md +222 -0
- package/squads/squad-product/knowledge-base/routing-catalog.md +32 -0
- package/squads/squad-research/knowledge-base/agentic-second-brain-reference.md +591 -0
- package/squads/squad-research/knowledge-base/ai-augmented-research.md +212 -0
- package/squads/squad-research/knowledge-base/brazilian-market-research-sources.md +197 -0
- package/squads/squad-research/knowledge-base/community-platforms-reference.md +786 -0
- package/squads/squad-research/knowledge-base/community-research-methods.md +194 -0
- package/squads/squad-research/knowledge-base/mixed-methods-research-design.md +168 -0
- package/squads/squad-research/knowledge-base/network-effects-analysis.md +192 -0
- package/squads/squad-research/knowledge-base/qualitative-research-deep-methods.md +202 -0
- package/squads/squad-research/knowledge-base/quantitative-research-methods.md +208 -0
- package/squads/squad-research/knowledge-base/research-frameworks-encyclopedia.md +40 -0
- package/squads/squad-research/knowledge-base/research-synthesis-frameworks.md +223 -0
- package/squads/squad-storytelling/knowledge-base/brand-mythology-framework.md +236 -0
- package/squads/squad-storytelling/knowledge-base/brazilian-storytelling-context.md +237 -0
- package/squads/squad-storytelling/knowledge-base/data-storytelling.md +232 -0
- package/squads/squad-storytelling/knowledge-base/improv-storytelling.md +226 -0
- package/squads/squad-storytelling/knowledge-base/persuasion-narrative-techniques.md +269 -0
- package/squads/squad-storytelling/knowledge-base/social-movement-narratives.md +191 -0
- package/squads/squad-storytelling/knowledge-base/video-storytelling.md +252 -0
- package/.sinapse-ai/core/registry/service-registry.json +0 -6346
- package/.sinapse-ai/data/registry-update-log.jsonl +0 -1307
- package/.sinapse-ai/manifests/agents.csv +0 -29
- package/.sinapse-ai/manifests/tasks.csv +0 -204
- package/.sinapse-ai/manifests/workers.csv +0 -196
- package/squads/claude-code-mastery/data/swarm-orchestration-patterns.yaml +0 -378
- package/squads/squad-animations/knowledge-base/framer-motion-complete-reference.md +0 -710
- package/squads/squad-animations/knowledge-base/web-animations-api-view-transitions.md +0 -478
- package/squads/squad-growth/tasks/calculate-sample-size.md +0 -121
- package/squads/squad-paidmedia/tasks/calculate-sample-size.md +0 -57
|
@@ -7,10 +7,9 @@
|
|
|
7
7
|
# - SHA256 hashes for change detection
|
|
8
8
|
# - File types for categorization
|
|
9
9
|
#
|
|
10
|
-
version: 9.
|
|
11
|
-
generated_at: "2026-04-10T22:47:50.529Z"
|
|
10
|
+
version: 9.5.0
|
|
12
11
|
generator: scripts/generate-install-manifest.js
|
|
13
|
-
file_count:
|
|
12
|
+
file_count: 1153
|
|
14
13
|
files:
|
|
15
14
|
- path: cli/commands/config/index.js
|
|
16
15
|
hash: sha256:bfa83cb1dc111b0b30dd298dc0abc2150b73f939b6cd4458effa8e6d407bc9e2
|
|
@@ -249,9 +248,9 @@ files:
|
|
|
249
248
|
type: core
|
|
250
249
|
size: 15622
|
|
251
250
|
- path: core/code-intel/registry-syncer.js
|
|
252
|
-
hash: sha256:
|
|
251
|
+
hash: sha256:6791f60b65ed3aeb6d53e2ac942cf0f604577f15b78ae0ee34454abd2bcb67eb
|
|
253
252
|
type: core
|
|
254
|
-
size:
|
|
253
|
+
size: 13217
|
|
255
254
|
- path: core/config/config-cache.js
|
|
256
255
|
hash: sha256:19a1c2900dd5cc59ddece4303d272415683978e238feb6538e6b41c1eef456a1
|
|
257
256
|
type: core
|
|
@@ -301,73 +300,73 @@ files:
|
|
|
301
300
|
type: template
|
|
302
301
|
size: 728
|
|
303
302
|
- path: core/doctor/checks/agent-memory.js
|
|
304
|
-
hash: sha256:
|
|
303
|
+
hash: sha256:adad35cd3995b813cb9d87fd617fbbe7784397edb0f58c3114511ba45bc76f19
|
|
305
304
|
type: core
|
|
306
|
-
size:
|
|
305
|
+
size: 1555
|
|
307
306
|
- path: core/doctor/checks/claude-md.js
|
|
308
|
-
hash: sha256:
|
|
307
|
+
hash: sha256:c35202407eedc1835021e82642e64497345d66d83eb387e8ab693cdd3c3d2af5
|
|
309
308
|
type: core
|
|
310
|
-
size:
|
|
309
|
+
size: 1312
|
|
311
310
|
- path: core/doctor/checks/code-intel.js
|
|
312
|
-
hash: sha256:
|
|
311
|
+
hash: sha256:92575328f8cf65e1a24d82eafa7225bf080a60a3aab8de60ddee1737196c0b70
|
|
313
312
|
type: core
|
|
314
|
-
size:
|
|
313
|
+
size: 4298
|
|
315
314
|
- path: core/doctor/checks/commands-count.js
|
|
316
|
-
hash: sha256:
|
|
315
|
+
hash: sha256:9a0cf5d3dd327a9daaac90f8347d4d36933e6d7c43eb58910b3a185c7ae7cd48
|
|
317
316
|
type: core
|
|
318
|
-
size:
|
|
317
|
+
size: 1812
|
|
319
318
|
- path: core/doctor/checks/constitution-consistency.js
|
|
320
|
-
hash: sha256:
|
|
319
|
+
hash: sha256:56d9b1585b6bb1888c38a4799b9121d624cad88646720c10217d219731c97d28
|
|
321
320
|
type: core
|
|
322
|
-
size:
|
|
321
|
+
size: 3236
|
|
323
322
|
- path: core/doctor/checks/core-config.js
|
|
324
|
-
hash: sha256:
|
|
323
|
+
hash: sha256:77b3a167f52a6145aeaf83ac4ce558ec7b8efd66beccfa05ec106367315d7e9a
|
|
325
324
|
type: core
|
|
326
|
-
size:
|
|
325
|
+
size: 1325
|
|
327
326
|
- path: core/doctor/checks/entity-registry.js
|
|
328
|
-
hash: sha256:
|
|
327
|
+
hash: sha256:abf0ccde886034d64445188d04707b9433b7e32c4255c0375b4ad1b427851e76
|
|
329
328
|
type: core
|
|
330
|
-
size:
|
|
329
|
+
size: 1581
|
|
331
330
|
- path: core/doctor/checks/git-hooks.js
|
|
332
|
-
hash: sha256:
|
|
331
|
+
hash: sha256:57bcea17d4317083b6b22bae5bd1ce785d93eb904413aded287595038cb347e6
|
|
333
332
|
type: core
|
|
334
|
-
size:
|
|
333
|
+
size: 1212
|
|
335
334
|
- path: core/doctor/checks/graph-dashboard.js
|
|
336
|
-
hash: sha256:
|
|
335
|
+
hash: sha256:6996b47faf1945ed27a24db2a0061c46f9fd0069b0c73a8af0f4b68d68142047
|
|
337
336
|
type: core
|
|
338
|
-
size:
|
|
337
|
+
size: 1202
|
|
339
338
|
- path: core/doctor/checks/hooks-claude-count.js
|
|
340
|
-
hash: sha256:
|
|
339
|
+
hash: sha256:a57af232ba33178c0d581dc10588bfdc256c41db28c5d433b967ba952d10778f
|
|
341
340
|
type: core
|
|
342
|
-
size:
|
|
341
|
+
size: 3529
|
|
343
342
|
- path: core/doctor/checks/ide-sync.js
|
|
344
|
-
hash: sha256:
|
|
343
|
+
hash: sha256:833092abcbfef419b8dc40a61b9c832b54fcef212b3f5e516c152dc49a147299
|
|
345
344
|
type: core
|
|
346
|
-
size:
|
|
345
|
+
size: 2275
|
|
347
346
|
- path: core/doctor/checks/index.js
|
|
348
347
|
hash: sha256:46c492327d3aa9e704ee098c43fad1fd884edfb96620d15f51e6f54699f1ea39
|
|
349
348
|
type: core
|
|
350
349
|
size: 1418
|
|
351
350
|
- path: core/doctor/checks/node-version.js
|
|
352
|
-
hash: sha256:
|
|
351
|
+
hash: sha256:1128759128fd60822b6dc08527442bc88bc713266ef1561fcfcba5dd31992a84
|
|
353
352
|
type: core
|
|
354
|
-
size:
|
|
353
|
+
size: 785
|
|
355
354
|
- path: core/doctor/checks/npm-packages.js
|
|
356
|
-
hash: sha256:
|
|
355
|
+
hash: sha256:770d0ae3a6232ca6f09a5ed68bddbed14d8303d061279a3947a0679546d645a3
|
|
357
356
|
type: core
|
|
358
|
-
size:
|
|
357
|
+
size: 2416
|
|
359
358
|
- path: core/doctor/checks/rules-files.js
|
|
360
|
-
hash: sha256:
|
|
359
|
+
hash: sha256:16205df27fd9c8d73de42593429afbe6b2c4d70cca4bdde3a51b704f1d292e63
|
|
361
360
|
type: core
|
|
362
|
-
size:
|
|
361
|
+
size: 1552
|
|
363
362
|
- path: core/doctor/checks/settings-json.js
|
|
364
|
-
hash: sha256:
|
|
363
|
+
hash: sha256:7ed4e501be86f1e306c6eeac97641bfc3efedb1d541bd5883ed10f8d3204fb19
|
|
365
364
|
type: core
|
|
366
|
-
size:
|
|
365
|
+
size: 3411
|
|
367
366
|
- path: core/doctor/checks/skills-count.js
|
|
368
|
-
hash: sha256:
|
|
367
|
+
hash: sha256:4861a2330ce5f3c696d53fc768d1575e03c4efcd5a217185d392556d2b1576cc
|
|
369
368
|
type: core
|
|
370
|
-
size:
|
|
369
|
+
size: 1675
|
|
371
370
|
- path: core/doctor/fix-handler.js
|
|
372
371
|
hash: sha256:1463b78a16235f184da1d5d39af089d56641aaab585c0c0ccb326b566f6297de
|
|
373
372
|
type: core
|
|
@@ -381,9 +380,9 @@ files:
|
|
|
381
380
|
type: core
|
|
382
381
|
size: 1461
|
|
383
382
|
- path: core/doctor/index.js
|
|
384
|
-
hash: sha256:
|
|
383
|
+
hash: sha256:6c7c5ede24379c217376df9113b2f77dce0592d08b830bec6120e1517b2ffe8a
|
|
385
384
|
type: core
|
|
386
|
-
size:
|
|
385
|
+
size: 5773
|
|
387
386
|
- path: core/elicitation/agent-elicitation.js
|
|
388
387
|
hash: sha256:92abc291cecff9b8bb9153d5fbac84ad5217cff4d0d01e0495785a939334cd81
|
|
389
388
|
type: elicitation
|
|
@@ -761,9 +760,9 @@ files:
|
|
|
761
760
|
type: core
|
|
762
761
|
size: 8097
|
|
763
762
|
- path: core/ids/registry-updater.js
|
|
764
|
-
hash: sha256:
|
|
763
|
+
hash: sha256:d941a6a3a0d281fe182ef30a7aaff942fdfb39fb26c9627072b9f9293974d42d
|
|
765
764
|
type: core
|
|
766
|
-
size:
|
|
765
|
+
size: 24918
|
|
767
766
|
- path: core/ids/verification-gate.js
|
|
768
767
|
hash: sha256:9e4d11ed4b63282a0a9b82f64d731b612db3ade4e67be628b35a6b655097c0dc
|
|
769
768
|
type: core
|
|
@@ -776,6 +775,10 @@ files:
|
|
|
776
775
|
hash: sha256:1096fccecd12c7b7e6219951048c57bbf6a413e965bd80ae677ad1fc4d5ff604
|
|
777
776
|
type: core
|
|
778
777
|
size: 2590
|
|
778
|
+
- path: core/logger/index.js
|
|
779
|
+
hash: sha256:e8b912c3cdafdae021a139c92f8f2a3a63bd44863f2adeee2ccf97b7e553b87d
|
|
780
|
+
type: core
|
|
781
|
+
size: 8942
|
|
779
782
|
- path: core/manifest/manifest-generator.js
|
|
780
783
|
hash: sha256:1b368f539322ca0588618fb3ef86bcb19164941df851879e388f7b9c7240bdd1
|
|
781
784
|
type: core
|
|
@@ -957,9 +960,9 @@ files:
|
|
|
957
960
|
type: core
|
|
958
961
|
size: 16495
|
|
959
962
|
- path: core/orchestration/terminal-spawner.js
|
|
960
|
-
hash: sha256:
|
|
963
|
+
hash: sha256:e7695b311301e5df6ce27ff80b0d8fb5c8ae3b3657b9f8094eff3ef22e364691
|
|
961
964
|
type: core
|
|
962
|
-
size:
|
|
965
|
+
size: 31516
|
|
963
966
|
- path: core/orchestration/workflow-executor.js
|
|
964
967
|
hash: sha256:b087a4ac222aef7b18d8ac99ad904c2e820628af2c1f49664ff0e6f42c1dca8c
|
|
965
968
|
type: core
|
|
@@ -1052,10 +1055,6 @@ files:
|
|
|
1052
1055
|
hash: sha256:456d4dcf3825368ca6e4a4297a9dbb2ccd48b2f4b4cc4eadbb1b7c074c573f7c
|
|
1053
1056
|
type: core
|
|
1054
1057
|
size: 5290
|
|
1055
|
-
- path: core/registry/service-registry.json
|
|
1056
|
-
hash: sha256:b9d55960c864c574df2592eda1d468e9f089cf42f4f9e1c8a6e71ae8dbbf3f20
|
|
1057
|
-
type: core
|
|
1058
|
-
size: 155380
|
|
1059
1058
|
- path: core/registry/validate-registry.js
|
|
1060
1059
|
hash: sha256:8612f683f1b7ecd043a0342d05fbe434721b19568b6ff76a483a6de7aa830d5c
|
|
1061
1060
|
type: core
|
|
@@ -1208,6 +1207,10 @@ files:
|
|
|
1208
1207
|
hash: sha256:4f0b16538c3a2c2dbbe264e6edbe0ca2d943af49936d0de68b21be4a469f5492
|
|
1209
1208
|
type: core
|
|
1210
1209
|
size: 574
|
|
1210
|
+
- path: core/telemetry/index.js
|
|
1211
|
+
hash: sha256:d1089c1743bf7679c3734f71f4d348c448053865c34fa30ba61648bfef30fb53
|
|
1212
|
+
type: core
|
|
1213
|
+
size: 8515
|
|
1211
1214
|
- path: core/ui/index.js
|
|
1212
1215
|
hash: sha256:a0a8d6aca4aaaf5d129e43260eb2d2c7f5b7d44d90fa8c0339253593aaab2371
|
|
1213
1216
|
type: core
|
|
@@ -1241,9 +1244,9 @@ files:
|
|
|
1241
1244
|
type: data
|
|
1242
1245
|
size: 9587
|
|
1243
1246
|
- path: data/entity-registry.yaml
|
|
1244
|
-
hash: sha256:
|
|
1247
|
+
hash: sha256:4610b68a1b746338330655f45e453a63419977dfca248474fb9c1487b32bbea1
|
|
1245
1248
|
type: data
|
|
1246
|
-
size:
|
|
1249
|
+
size: 522914
|
|
1247
1250
|
- path: data/learned-patterns.yaml
|
|
1248
1251
|
hash: sha256:1a4cd045c087b9dfd7046ff1464a9d2edb85fba77cf0b6fba14f4bb9004c741e
|
|
1249
1252
|
type: data
|
|
@@ -1345,65 +1348,65 @@ files:
|
|
|
1345
1348
|
type: development
|
|
1346
1349
|
size: 5058
|
|
1347
1350
|
- path: development/agents/analyst.md
|
|
1348
|
-
hash: sha256:
|
|
1351
|
+
hash: sha256:e05de6a0bfc20173b5a9374d2b624d6b1f13b738a7fcd4e789495b3101210a97
|
|
1349
1352
|
type: agent
|
|
1350
|
-
size:
|
|
1353
|
+
size: 16097
|
|
1351
1354
|
- path: development/agents/analyst/MEMORY.md
|
|
1352
1355
|
hash: sha256:1c0f22927a27f6b4446b74253747db214e78456bde7343fe98300b7106858025
|
|
1353
1356
|
type: agent
|
|
1354
1357
|
size: 1257
|
|
1355
1358
|
- path: development/agents/architect.md
|
|
1356
|
-
hash: sha256:
|
|
1359
|
+
hash: sha256:e9911431badd1203a4c058fa6cec8ee6387b7d29c78b84b494a3514e5723af51
|
|
1357
1360
|
type: agent
|
|
1358
|
-
size:
|
|
1361
|
+
size: 24928
|
|
1359
1362
|
- path: development/agents/architect/MEMORY.md
|
|
1360
1363
|
hash: sha256:6ce3f0187f34b9d9cd97fbc744f9eb33efb08cff48b64528ffce2dd08d453c09
|
|
1361
1364
|
type: agent
|
|
1362
1365
|
size: 1395
|
|
1363
1366
|
- path: development/agents/data-engineer.md
|
|
1364
|
-
hash: sha256:
|
|
1367
|
+
hash: sha256:cb88190502320722d496bf8510bbb5c4f34387be0247973004829cdb5135e8be
|
|
1365
1368
|
type: agent
|
|
1366
|
-
size:
|
|
1369
|
+
size: 24141
|
|
1367
1370
|
- path: development/agents/data-engineer/MEMORY.md
|
|
1368
1371
|
hash: sha256:91b84ee63dafd3fbeec8d00744752753d1a74acdd3a6b398f26db6662d2babf3
|
|
1369
1372
|
type: agent
|
|
1370
1373
|
size: 1110
|
|
1371
1374
|
- path: development/agents/developer.md
|
|
1372
|
-
hash: sha256:
|
|
1375
|
+
hash: sha256:cacad39aa3c897b583874d9a29c1607119a47ac5a535b690e97e65dd2dd69d7d
|
|
1373
1376
|
type: agent
|
|
1374
|
-
size:
|
|
1377
|
+
size: 29475
|
|
1375
1378
|
- path: development/agents/developer/MEMORY.md
|
|
1376
1379
|
hash: sha256:98e00ca0bd5b0b2fdfbcf8ad52256dd7f73df6236e2098618d63fae97652949a
|
|
1377
1380
|
type: agent
|
|
1378
1381
|
size: 2493
|
|
1379
1382
|
- path: development/agents/devops.md
|
|
1380
|
-
hash: sha256:
|
|
1383
|
+
hash: sha256:7b0bd238983cb4dc1653a4b682181ce9cb54f52d16ed07091664f553afeade20
|
|
1381
1384
|
type: agent
|
|
1382
|
-
size:
|
|
1385
|
+
size: 27607
|
|
1383
1386
|
- path: development/agents/devops/MEMORY.md
|
|
1384
1387
|
hash: sha256:c9c574566f3ab627135219eefb2e0039169016f4f0a8605b02593d0cfd38f071
|
|
1385
1388
|
type: agent
|
|
1386
1389
|
size: 1403
|
|
1387
1390
|
- path: development/agents/product-lead.md
|
|
1388
|
-
hash: sha256:
|
|
1391
|
+
hash: sha256:6044cc85092eae128f846fe7d0f7d337bb65d936a5ea7da0762de22ac2585338
|
|
1389
1392
|
type: agent
|
|
1390
|
-
size:
|
|
1393
|
+
size: 15933
|
|
1391
1394
|
- path: development/agents/product-lead/MEMORY.md
|
|
1392
1395
|
hash: sha256:148c843a490e35e89d5fac74cea9beafb2fc4055aa9bbf52505ab383b265360f
|
|
1393
1396
|
type: agent
|
|
1394
1397
|
size: 1398
|
|
1395
1398
|
- path: development/agents/project-lead.md
|
|
1396
|
-
hash: sha256:
|
|
1399
|
+
hash: sha256:a9aabacaa6c92d51de87575e7b273d13a2abc004100ca25c0ca2f51c7697af10
|
|
1397
1400
|
type: agent
|
|
1398
|
-
size:
|
|
1401
|
+
size: 18307
|
|
1399
1402
|
- path: development/agents/project-lead/MEMORY.md
|
|
1400
1403
|
hash: sha256:b7b754e37419cb605871920283decde2c01125c5f641f90afe569491838cf5e3
|
|
1401
1404
|
type: agent
|
|
1402
1405
|
size: 1238
|
|
1403
1406
|
- path: development/agents/quality-gate.md
|
|
1404
|
-
hash: sha256:
|
|
1407
|
+
hash: sha256:b500ceb65a861327d293916699ce9ddd73a74c81a30ba672b6d34a05a13b7a08
|
|
1405
1408
|
type: agent
|
|
1406
|
-
size:
|
|
1409
|
+
size: 23462
|
|
1407
1410
|
- path: development/agents/quality-gate/MEMORY.md
|
|
1408
1411
|
hash: sha256:a17353257dc4dce493f6a87690c8ac8e8bbc1f0d71018f926277324c6a2869bb
|
|
1409
1412
|
type: agent
|
|
@@ -1413,45 +1416,57 @@ files:
|
|
|
1413
1416
|
type: agent
|
|
1414
1417
|
size: 31337
|
|
1415
1418
|
- path: development/agents/sprint-lead.md
|
|
1416
|
-
hash: sha256:
|
|
1419
|
+
hash: sha256:d1432e9a4f99d8ddbf7e471ae3199d61158740d074e40beccec3a8b7079a09df
|
|
1417
1420
|
type: agent
|
|
1418
|
-
size:
|
|
1421
|
+
size: 14161
|
|
1419
1422
|
- path: development/agents/sprint-lead/MEMORY.md
|
|
1420
|
-
hash: sha256:
|
|
1423
|
+
hash: sha256:12a5b03243b3dd6d8df71ae70cb74bd380f00ad892aa2aeffcd9ec6a447cebb0
|
|
1421
1424
|
type: agent
|
|
1422
|
-
size:
|
|
1425
|
+
size: 2023
|
|
1423
1426
|
- path: development/agents/squad-creator.md
|
|
1424
|
-
hash: sha256:
|
|
1427
|
+
hash: sha256:4c1248b95b630fdbf36692193077f693847307ceb627c3b1d387a7faff18f7c7
|
|
1425
1428
|
type: agent
|
|
1426
|
-
size:
|
|
1429
|
+
size: 16584
|
|
1427
1430
|
- path: development/agents/ux-design-expert.md
|
|
1428
|
-
hash: sha256:
|
|
1431
|
+
hash: sha256:043c902bf7a22e0041eb4bb204cbee77f5a2a965cdbab5aa79e6d8e7c22f3005
|
|
1429
1432
|
type: agent
|
|
1430
|
-
size:
|
|
1433
|
+
size: 21574
|
|
1431
1434
|
- path: development/agents/ux/MEMORY.md
|
|
1432
1435
|
hash: sha256:315ac4d963d09f50c2686fdcb56fa4c34761b5097600f6a834a44cfacca12414
|
|
1433
1436
|
type: agent
|
|
1434
1437
|
size: 1078
|
|
1435
1438
|
- path: development/checklists/agent-quality-gate.md
|
|
1436
|
-
hash: sha256:
|
|
1439
|
+
hash: sha256:511d05a2df0e59f3503d882f61131703a5fcecb47d75f99b392086fc3a663433
|
|
1437
1440
|
type: checklist
|
|
1438
|
-
size:
|
|
1441
|
+
size: 16967
|
|
1439
1442
|
- path: development/checklists/brownfield-compatibility-checklist.md
|
|
1440
|
-
hash: sha256:
|
|
1443
|
+
hash: sha256:9a65292e4a34af3a2ad6fea75fa91b1f649629e35737073e51a8832541fd78dd
|
|
1441
1444
|
type: checklist
|
|
1442
|
-
size:
|
|
1445
|
+
size: 4292
|
|
1446
|
+
- path: development/checklists/code-review-checklist.md
|
|
1447
|
+
hash: sha256:b1395e4b144bfb8826d50ebc0ac4578b5ba85efae734e8506c9c4e134d965c32
|
|
1448
|
+
type: checklist
|
|
1449
|
+
size: 4178
|
|
1443
1450
|
- path: development/checklists/issue-triage-checklist.md
|
|
1444
|
-
hash: sha256:
|
|
1451
|
+
hash: sha256:55be4e845e777fbc02761afe07a366c4850987407ee17841e59208603a234c42
|
|
1445
1452
|
type: checklist
|
|
1446
|
-
size:
|
|
1453
|
+
size: 1679
|
|
1447
1454
|
- path: development/checklists/memory-audit-checklist.md
|
|
1448
|
-
hash: sha256:
|
|
1455
|
+
hash: sha256:74c93aa038f2e996f2d69979996c4beb6e5a90ddff9bc4633c79f08c444a4141
|
|
1456
|
+
type: checklist
|
|
1457
|
+
size: 3145
|
|
1458
|
+
- path: development/checklists/pr-quality-checklist.md
|
|
1459
|
+
hash: sha256:46d6e190b605f1884be33a4de07847e364c33b79ca97bffe5197b106cda6f7fb
|
|
1449
1460
|
type: checklist
|
|
1450
|
-
size:
|
|
1461
|
+
size: 2542
|
|
1462
|
+
- path: development/checklists/security-deployment-checklist.md
|
|
1463
|
+
hash: sha256:e08b6d1252ede8c16252f2b5e32fcf45d374047efaf1f52f6a6852de2d25e2de
|
|
1464
|
+
type: checklist
|
|
1465
|
+
size: 2391
|
|
1451
1466
|
- path: development/checklists/self-critique-checklist.md
|
|
1452
|
-
hash: sha256:
|
|
1467
|
+
hash: sha256:9605e7d82a5d33367b52a73a880a87339ff2984616af033bdb0950d19e59c7c7
|
|
1453
1468
|
type: checklist
|
|
1454
|
-
size:
|
|
1469
|
+
size: 9948
|
|
1455
1470
|
- path: development/data/decision-heuristics-framework.md
|
|
1456
1471
|
hash: sha256:f2d5a09bb336c6ea2103b5ccccc8d6a5febf99aff475a66830e5bed1c9d8f9d8
|
|
1457
1472
|
type: data
|
|
@@ -1464,6 +1479,38 @@ files:
|
|
|
1464
1479
|
hash: sha256:c11f03e760547bfd0abbd0ea7d0e636c3f32527cb1a717811c481fce3fad49ea
|
|
1465
1480
|
type: data
|
|
1466
1481
|
size: 11117
|
|
1482
|
+
- path: development/knowledge-base/agent-communication-protocol.md
|
|
1483
|
+
hash: sha256:2aeb80a48f338891729ec926d1c179d68310703a122e5922b01bbe251ff9ed74
|
|
1484
|
+
type: development
|
|
1485
|
+
size: 4808
|
|
1486
|
+
- path: development/knowledge-base/database-scaling-patterns.md
|
|
1487
|
+
hash: sha256:d2f5d54ab7dbbcdfad4a34cf8027003f65457ddc0e16a52794d9ca202e8da2bf
|
|
1488
|
+
type: development
|
|
1489
|
+
size: 11976
|
|
1490
|
+
- path: development/knowledge-base/environment-deployment-patterns.md
|
|
1491
|
+
hash: sha256:c13d4296a295b6a6c1cafc803d329cb5bd61e78170a7dabaec296e1c971f8489
|
|
1492
|
+
type: development
|
|
1493
|
+
size: 9457
|
|
1494
|
+
- path: development/knowledge-base/gotchas-patterns.md
|
|
1495
|
+
hash: sha256:52ae760c59d38fc25becad9befbe82953f3cd81580de0a83e273ab23603b335f
|
|
1496
|
+
type: development
|
|
1497
|
+
size: 12045
|
|
1498
|
+
- path: development/knowledge-base/infrastructure-decision-framework.md
|
|
1499
|
+
hash: sha256:f6250764865bcfc3bfed6bd2b34763d9a5b5c72f522dec251e706534a808c217
|
|
1500
|
+
type: development
|
|
1501
|
+
size: 7789
|
|
1502
|
+
- path: development/knowledge-base/security-pre-deploy-checklist.md
|
|
1503
|
+
hash: sha256:e7e358db9cfd2fe91ec80efbecc6f9825cbab6f64df58b8302d6813ecdcb7dc3
|
|
1504
|
+
type: development
|
|
1505
|
+
size: 12147
|
|
1506
|
+
- path: development/knowledge-base/software-architecture-patterns.md
|
|
1507
|
+
hash: sha256:da3c879e6e8608c67f6809e9b9fdfe08767ebea4e3218d55bad2b81ecc832d11
|
|
1508
|
+
type: development
|
|
1509
|
+
size: 10414
|
|
1510
|
+
- path: development/knowledge-base/token-economy-guide.md
|
|
1511
|
+
hash: sha256:cd92d1becb3ea5e728a041fef5d7b850e66996ce1d2222a1ff1604758867d948
|
|
1512
|
+
type: development
|
|
1513
|
+
size: 5932
|
|
1467
1514
|
- path: development/README.md
|
|
1468
1515
|
hash: sha256:cb3aa87366eba1adebeb1f033c62e3cfc2a65430dc456914808b2c108884ebf2
|
|
1469
1516
|
type: development
|
|
@@ -1609,9 +1656,9 @@ files:
|
|
|
1609
1656
|
type: script
|
|
1610
1657
|
size: 23414
|
|
1611
1658
|
- path: development/scripts/populate-entity-registry.js
|
|
1612
|
-
hash: sha256:
|
|
1659
|
+
hash: sha256:51fe2e6fb0561506df8c070e2a595651d0b12b2b796fc9b4c1e9eabdeca5558c
|
|
1613
1660
|
type: script
|
|
1614
|
-
size:
|
|
1661
|
+
size: 22872
|
|
1615
1662
|
- path: development/scripts/refactoring-suggester.js
|
|
1616
1663
|
hash: sha256:66bf0be38efb417619e652c690d41337202dae7defa454bec73b010b05bb6db4
|
|
1617
1664
|
type: script
|
|
@@ -1748,6 +1795,50 @@ files:
|
|
|
1748
1795
|
hash: sha256:b64ef84a6def84cc600aca2c04fedd1999be394cac017409231752ee9eb51f46
|
|
1749
1796
|
type: script
|
|
1750
1797
|
size: 10338
|
|
1798
|
+
- path: development/skills/captcha-handler.md
|
|
1799
|
+
hash: sha256:de3fcdf981a727a2b2efd532d4596bed50a0f2ba14c340bcd8b735ad7fab5876
|
|
1800
|
+
type: development
|
|
1801
|
+
size: 2611
|
|
1802
|
+
- path: development/skills/chrome-brain.md
|
|
1803
|
+
hash: sha256:4697a1cd612d6f21c8bb16baf447d1a61df0e1781ea64425daecfa7f8e6bf747
|
|
1804
|
+
type: development
|
|
1805
|
+
size: 3354
|
|
1806
|
+
- path: development/skills/debug.md
|
|
1807
|
+
hash: sha256:7fe2ab7a6d728e2a43d6cf48fb84aa7ab28262ee805529713777e40e6038dd81
|
|
1808
|
+
type: development
|
|
1809
|
+
size: 1916
|
|
1810
|
+
- path: development/skills/deploy-readiness.md
|
|
1811
|
+
hash: sha256:7ce1043fd3f886e00b9cbc88dda53eeabb9c8d817674ac50c352729fd5d6a170
|
|
1812
|
+
type: development
|
|
1813
|
+
size: 3834
|
|
1814
|
+
- path: development/skills/fast-review.md
|
|
1815
|
+
hash: sha256:b9f6910e13fb4c92fa380828f3eee9ac1bc160d06e4b20a5b58a61d17c51495d
|
|
1816
|
+
type: development
|
|
1817
|
+
size: 1780
|
|
1818
|
+
- path: development/skills/model-router.md
|
|
1819
|
+
hash: sha256:0638522505e1e7f65ccdcea4a65c70e5197bd874563fc5296b13f1f58615df71
|
|
1820
|
+
type: development
|
|
1821
|
+
size: 3137
|
|
1822
|
+
- path: development/skills/research-synthesis.md
|
|
1823
|
+
hash: sha256:11f815d3fffaff667c8432286000c0fb96dcdbf299e1eeb1761099f0003d539b
|
|
1824
|
+
type: development
|
|
1825
|
+
size: 2047
|
|
1826
|
+
- path: development/skills/security-scan.md
|
|
1827
|
+
hash: sha256:0859bdce7be73bafce78bce311e138d48b848a22af975107ef760770b11efaa9
|
|
1828
|
+
type: development
|
|
1829
|
+
size: 1993
|
|
1830
|
+
- path: development/skills/sinapse-methodology.md
|
|
1831
|
+
hash: sha256:08c4077a742ea50e08854e13643ad37b659eae496e6f2a50bf1bc64caa745124
|
|
1832
|
+
type: development
|
|
1833
|
+
size: 6469
|
|
1834
|
+
- path: development/skills/story-fast-track.md
|
|
1835
|
+
hash: sha256:39b0abd8d8b987441828722d2bdc5bde5dd3153fa31cebe65c2ea305601f9738
|
|
1836
|
+
type: development
|
|
1837
|
+
size: 2281
|
|
1838
|
+
- path: development/skills/verify.md
|
|
1839
|
+
hash: sha256:5f71ce92ea89e2c2e55b1398b1399d7b7c22ab51d1f807d4b38e9c9bdabc9b65
|
|
1840
|
+
type: development
|
|
1841
|
+
size: 1648
|
|
1751
1842
|
- path: development/tasks/add-mcp.md
|
|
1752
1843
|
hash: sha256:90d5fb5ba3ac048c3ecf576fb5b2b2a597f83d5f7bc8c16a20592c9ba36f4ae2
|
|
1753
1844
|
type: task
|
|
@@ -2021,9 +2112,9 @@ files:
|
|
|
2021
2112
|
type: task
|
|
2022
2113
|
size: 11063
|
|
2023
2114
|
- path: development/tasks/dev-develop-story.md
|
|
2024
|
-
hash: sha256:
|
|
2115
|
+
hash: sha256:4da6cb33507a28f0bbce6e1b456fd6cf9e56623576f52284cf6bc973c7d24ffb
|
|
2025
2116
|
type: task
|
|
2026
|
-
size:
|
|
2117
|
+
size: 28677
|
|
2027
2118
|
- path: development/tasks/dev-improve-code-quality.md
|
|
2028
2119
|
hash: sha256:1895669a353fdc27473b55c04998815d3ac80fd2258be1d3453035373cb282db
|
|
2029
2120
|
type: task
|
|
@@ -2052,6 +2143,10 @@ files:
|
|
|
2052
2143
|
hash: sha256:154cdd8a611834e3de0828220c9be1feb57496a0bc46db6bcd0958c1c0e87199
|
|
2053
2144
|
type: task
|
|
2054
2145
|
size: 45722
|
|
2146
|
+
- path: development/tasks/environment-promotion-pipeline.md
|
|
2147
|
+
hash: sha256:2bd746e113a94884f45f13c6b67ea9d72b424508ed757810c2fb25521d873b3f
|
|
2148
|
+
type: task
|
|
2149
|
+
size: 14667
|
|
2055
2150
|
- path: development/tasks/execute-checklist.md
|
|
2056
2151
|
hash: sha256:58403b0bf6fcb18712c319a12898e8d7f379c2d0b6d8ec234c189bec748bbaeb
|
|
2057
2152
|
type: task
|
|
@@ -2080,6 +2175,10 @@ files:
|
|
|
2080
2175
|
hash: sha256:f03f2b3af74ae7a26691ec180cba879d27531741441e2908a12ae1c953b1452d
|
|
2081
2176
|
type: task
|
|
2082
2177
|
size: 13926
|
|
2178
|
+
- path: development/tasks/generate-agent-handoff.md
|
|
2179
|
+
hash: sha256:4b409dec3a3fc59d6274a1acab1529532fd29f71b85a1b417cf6d313bbc53b89
|
|
2180
|
+
type: task
|
|
2181
|
+
size: 11338
|
|
2083
2182
|
- path: development/tasks/generate-ai-frontend-prompt.md
|
|
2084
2183
|
hash: sha256:297235fb746ad2a8fca64b4a73e391ee9dc8a8de21527200ffbf83a4f8f2099d
|
|
2085
2184
|
type: task
|
|
@@ -2148,6 +2247,10 @@ files:
|
|
|
2148
2247
|
hash: sha256:3e707b7f96986455e7eb56d48ec2b5717e4318a1f020cd6e4fba96070c35c74a
|
|
2149
2248
|
type: task
|
|
2150
2249
|
size: 9948
|
|
2250
|
+
- path: development/tasks/infrastructure-assessment.md
|
|
2251
|
+
hash: sha256:477f61cc6f4e77f5773a0d6ac773b8409321495d4a29778fb16583845fdb8b56
|
|
2252
|
+
type: task
|
|
2253
|
+
size: 12106
|
|
2151
2254
|
- path: development/tasks/init-project-status.md
|
|
2152
2255
|
hash: sha256:3ff70751c0981eac1e6c0dab6e8e94f666fc5be8e8d94c48512efb130cc16d15
|
|
2153
2256
|
type: task
|
|
@@ -2172,6 +2275,10 @@ files:
|
|
|
2172
2275
|
hash: sha256:a532fb1802b2cee8ceda90b780f44e6be419a981489baabf69602752e2b4629f
|
|
2173
2276
|
type: task
|
|
2174
2277
|
size: 6550
|
|
2278
|
+
- path: development/tasks/load-testing-setup.md
|
|
2279
|
+
hash: sha256:3a1bcead69314ee3deba2b9801a803c87832940ed175cacfe25e5f60f4344e46
|
|
2280
|
+
type: task
|
|
2281
|
+
size: 15389
|
|
2175
2282
|
- path: development/tasks/mcp-workflow.md
|
|
2176
2283
|
hash: sha256:3e1707f4909c3d50ffbe04d40fd4d72a7d9ebe161923c2cbe76ef102fc2f0d34
|
|
2177
2284
|
type: task
|
|
@@ -2196,6 +2303,10 @@ files:
|
|
|
2196
2303
|
hash: sha256:d734907caed4a2ff30aecb17e8b1ca8db1dc50657f7274051f4384a8969d7972
|
|
2197
2304
|
type: task
|
|
2198
2305
|
size: 7679
|
|
2306
|
+
- path: development/tasks/observability-blueprint.md
|
|
2307
|
+
hash: sha256:4f3a6ad9d448b7dece01c4f8b02d66cec6719e45bb77a61eea348dbbf01b2c52
|
|
2308
|
+
type: task
|
|
2309
|
+
size: 16046
|
|
2199
2310
|
- path: development/tasks/orchestrate-resume.md
|
|
2200
2311
|
hash: sha256:e252d77fc378daba092979b18c2337ff16b925319cb89f2a00ab00a369185ac8
|
|
2201
2312
|
type: task
|
|
@@ -2672,6 +2783,18 @@ files:
|
|
|
2672
2783
|
hash: sha256:205a68b8473b2b01af18d0146a3221c114ce6c14dd35ba50e47ae8d055186896
|
|
2673
2784
|
type: template
|
|
2674
2785
|
size: 6427
|
|
2786
|
+
- path: development/templates/legal/breach-notification-tmpl.md
|
|
2787
|
+
hash: sha256:66e9a46a1958be1bdc5a23f6d039db527b2d8f1a3ad1c4730145b1035950bffe
|
|
2788
|
+
type: template
|
|
2789
|
+
size: 3270
|
|
2790
|
+
- path: development/templates/legal/privacy-policy-tmpl.md
|
|
2791
|
+
hash: sha256:99df858abc5c8cb6db30b03f08f13e2bdab9fbe13a23ee956789e236f2b3f702
|
|
2792
|
+
type: template
|
|
2793
|
+
size: 3316
|
|
2794
|
+
- path: development/templates/legal/terms-of-service-tmpl.md
|
|
2795
|
+
hash: sha256:141190e4702f318c821bb7f84c3828f64eb268cc34d28ee3e78051a0be4cf90f
|
|
2796
|
+
type: template
|
|
2797
|
+
size: 2358
|
|
2675
2798
|
- path: development/templates/ptc-entity-validation.md
|
|
2676
2799
|
hash: sha256:87d4c35c6e3fc5f4da9bc8e82ff1bab9a7d8d4fd32685a60585ff8184cd5b8b0
|
|
2677
2800
|
type: template
|
|
@@ -2691,19 +2814,19 @@ files:
|
|
|
2691
2814
|
- path: development/templates/service-template/__tests__/index.test.ts.hbs
|
|
2692
2815
|
hash: sha256:41c113e42f2fba15fc22efdaf977b342c55f56a63bb951fc8d894a22d1002ba9
|
|
2693
2816
|
type: template
|
|
2694
|
-
size:
|
|
2817
|
+
size: 9577
|
|
2695
2818
|
- path: development/templates/service-template/client.ts.hbs
|
|
2696
2819
|
hash: sha256:60f6d77badea704ba2371db1cb9203d89d46977ae2f1fd3db6126caac2eda1dc
|
|
2697
2820
|
type: template
|
|
2698
|
-
size:
|
|
2821
|
+
size: 11814
|
|
2699
2822
|
- path: development/templates/service-template/errors.ts.hbs
|
|
2700
2823
|
hash: sha256:767ba8f42867a3b203ef695dc8949b2cab5a3843d4968d2908dd0ec59532d73c
|
|
2701
2824
|
type: template
|
|
2702
|
-
size:
|
|
2825
|
+
size: 5217
|
|
2703
2826
|
- path: development/templates/service-template/index.ts.hbs
|
|
2704
2827
|
hash: sha256:d89c6c0dd1d852aa05a0ea86c6bcfb82344a98f44a4b28fed01d56e9a9b69d2e
|
|
2705
2828
|
type: template
|
|
2706
|
-
size:
|
|
2829
|
+
size: 3090
|
|
2707
2830
|
- path: development/templates/service-template/jest.config.js
|
|
2708
2831
|
hash: sha256:5ac8aca19d48642852318eb73f7765ea942b2432b9443787274a58650df6c082
|
|
2709
2832
|
type: template
|
|
@@ -2711,11 +2834,11 @@ files:
|
|
|
2711
2834
|
- path: development/templates/service-template/package.json.hbs
|
|
2712
2835
|
hash: sha256:7531ae3a8b6acaa90b7283835ed8a6a3597818a05dcb751456b5fae1adf4fa86
|
|
2713
2836
|
type: template
|
|
2714
|
-
size:
|
|
2837
|
+
size: 2249
|
|
2715
2838
|
- path: development/templates/service-template/README.md.hbs
|
|
2716
2839
|
hash: sha256:1d78ab5f85c5ab4004f51d2f2547cdf544f8a300f7e2eef1d8f9f3f3cae15def
|
|
2717
2840
|
type: template
|
|
2718
|
-
size:
|
|
2841
|
+
size: 3442
|
|
2719
2842
|
- path: development/templates/service-template/tsconfig.json
|
|
2720
2843
|
hash: sha256:57c0f40ea623a12caa16ff026496290e44129b3b8101943ab99a38f90d135f7f
|
|
2721
2844
|
type: template
|
|
@@ -2723,7 +2846,7 @@ files:
|
|
|
2723
2846
|
- path: development/templates/service-template/types.ts.hbs
|
|
2724
2847
|
hash: sha256:0d0e011c8c96d853aee915b8ab9f343dd57653371907bb1ba1217481e208de08
|
|
2725
2848
|
type: template
|
|
2726
|
-
size:
|
|
2849
|
+
size: 2520
|
|
2727
2850
|
- path: development/templates/sinapse-doc-template.md
|
|
2728
2851
|
hash: sha256:a31589a53c55e408f038b4a713942af1c327726a051485fc5e5a03eb2e4a179f
|
|
2729
2852
|
type: template
|
|
@@ -2735,7 +2858,7 @@ files:
|
|
|
2735
2858
|
- path: development/templates/squad-template/LICENSE
|
|
2736
2859
|
hash: sha256:03c185d841d9f5ab92870a3e00596828fa4ca88f7977e485df96c8acc7222ec5
|
|
2737
2860
|
type: template
|
|
2738
|
-
size:
|
|
2861
|
+
size: 1072
|
|
2739
2862
|
- path: development/templates/squad-template/package.json
|
|
2740
2863
|
hash: sha256:e0e0b508fa0c4c0a059002fb79b87d93238cf3de33e9af14ba129eb292caece5
|
|
2741
2864
|
type: template
|
|
@@ -2765,13 +2888,13 @@ files:
|
|
|
2765
2888
|
type: workflow
|
|
2766
2889
|
size: 1689
|
|
2767
2890
|
- path: development/templates/squad/agent-template.md
|
|
2768
|
-
hash: sha256:
|
|
2891
|
+
hash: sha256:e44f967d369769e7dd5a7ad5b39660e5a03197b4eebec0e4a1f21b5d1573488a
|
|
2769
2892
|
type: template
|
|
2770
|
-
size:
|
|
2893
|
+
size: 2250
|
|
2771
2894
|
- path: development/templates/squad/checklist-template.md
|
|
2772
|
-
hash: sha256:
|
|
2895
|
+
hash: sha256:c7f9e454fc037b66415e3ef3e33d9b2253f41c9ef2ad6d5f832599fab6193988
|
|
2773
2896
|
type: template
|
|
2774
|
-
size:
|
|
2897
|
+
size: 1549
|
|
2775
2898
|
- path: development/templates/squad/data-template.yaml
|
|
2776
2899
|
hash: sha256:fbb87899b401125820fd01538a2bcabc33e0346f3d1ba825abfbdd68dee0fcf0
|
|
2777
2900
|
type: template
|
|
@@ -2781,9 +2904,9 @@ files:
|
|
|
2781
2904
|
type: template
|
|
2782
2905
|
size: 3376
|
|
2783
2906
|
- path: development/templates/squad/task-template.md
|
|
2784
|
-
hash: sha256:
|
|
2907
|
+
hash: sha256:bf0d34ec0a79b348ca2c924eb59a341e6d801fb45462afb8972f1efe6f839bc6
|
|
2785
2908
|
type: template
|
|
2786
|
-
size:
|
|
2909
|
+
size: 2840
|
|
2787
2910
|
- path: development/templates/squad/template-template.md
|
|
2788
2911
|
hash: sha256:44c59bf82c24ae676c2e240e342a9fed0339e1e2bec51a67f6a9a329d9bc7ab9
|
|
2789
2912
|
type: template
|
|
@@ -2793,9 +2916,9 @@ files:
|
|
|
2793
2916
|
type: template
|
|
2794
2917
|
size: 1797
|
|
2795
2918
|
- path: development/templates/squad/workflow-template.yaml
|
|
2796
|
-
hash: sha256:
|
|
2919
|
+
hash: sha256:752fdee2fd3087b5e93c67d32b637a7ba4dacb8e3e9981d7e16ce300d934a960
|
|
2797
2920
|
type: template
|
|
2798
|
-
size:
|
|
2921
|
+
size: 3151
|
|
2799
2922
|
- path: development/templates/subagent-step-prompt.md
|
|
2800
2923
|
hash: sha256:91e7d3678f183fea5d8681a8af5618a52f2b2f4a3ce21a7c120f38454b974dd1
|
|
2801
2924
|
type: template
|
|
@@ -2832,6 +2955,10 @@ files:
|
|
|
2832
2955
|
hash: sha256:be5c5c28bb0fb41c6df383952d8aba9efb02dbf58e3521983f65a79212c38d84
|
|
2833
2956
|
type: workflow
|
|
2834
2957
|
size: 16973
|
|
2958
|
+
- path: development/workflows/fast-track.yaml
|
|
2959
|
+
hash: sha256:1a4f5665af164b8c6425d2ff3c2e713ff8559a66066aa0c7cbd1c6773aaa8266
|
|
2960
|
+
type: workflow
|
|
2961
|
+
size: 2776
|
|
2835
2962
|
- path: development/workflows/greenfield-fullstack.yaml
|
|
2836
2963
|
hash: sha256:838e971d052666fdefee56dc59179d071510943ddf151c810ae17c6995211eac
|
|
2837
2964
|
type: workflow
|
|
@@ -2857,9 +2984,9 @@ files:
|
|
|
2857
2984
|
type: workflow
|
|
2858
2985
|
size: 23746
|
|
2859
2986
|
- path: development/workflows/story-development-cycle.yaml
|
|
2860
|
-
hash: sha256:
|
|
2987
|
+
hash: sha256:137fc6d2a7aedb50bbebfa045e877c382399604708ce03477f358f282b76727f
|
|
2861
2988
|
type: workflow
|
|
2862
|
-
size:
|
|
2989
|
+
size: 10039
|
|
2863
2990
|
- path: docs/standards/AGENT-PERSONALIZATION-STANDARD-V1.md
|
|
2864
2991
|
hash: sha256:e19d54b8194e9c0762c8045a6500c159a8716b8c202497a320f17e2208ed98ce
|
|
2865
2992
|
type: documentation
|
|
@@ -2916,10 +3043,18 @@ files:
|
|
|
2916
3043
|
hash: sha256:070e608c593ddf752d09e0d383ad5e19e96c33eaf8adf95006f67b0a768b3390
|
|
2917
3044
|
type: code
|
|
2918
3045
|
size: 747
|
|
3046
|
+
- path: infrastructure/contracts/compatibility/README.md
|
|
3047
|
+
hash: sha256:d431c72b49b6fb9d10c5f0c2a5b79aaf2fb274568103cc0e42c654edd29edc41
|
|
3048
|
+
type: infrastructure
|
|
3049
|
+
size: 1709
|
|
2919
3050
|
- path: infrastructure/contracts/compatibility/sinapse-4.0.4.yaml
|
|
2920
3051
|
hash: sha256:3c718b4ed4e6a203ed3619cf1043a86f787585b20bcfbe55508201fc5d22049b
|
|
2921
3052
|
type: infrastructure
|
|
2922
3053
|
size: 543
|
|
3054
|
+
- path: infrastructure/contracts/compatibility/sinapse-current.yaml
|
|
3055
|
+
hash: sha256:a4d63c8357b61efae0466894ed5f005c128e00361629163fb589de843da23292
|
|
3056
|
+
type: infrastructure
|
|
3057
|
+
size: 1072
|
|
2923
3058
|
- path: infrastructure/index.js
|
|
2924
3059
|
hash: sha256:1b8b8f000139b51c8332b7175c99ba86649807f0d40e6c7baf343ac3c6b0fdcc
|
|
2925
3060
|
type: infrastructure
|
|
@@ -3195,7 +3330,7 @@ files:
|
|
|
3195
3330
|
- path: infrastructure/scripts/llm-routing/templates/claude-free-tracked.cmd
|
|
3196
3331
|
hash: sha256:41b244063b3ec346b55f7b2fe28da7bc081974f8c8ca8868b77da4eefd9fe770
|
|
3197
3332
|
type: template
|
|
3198
|
-
size:
|
|
3333
|
+
size: 4147
|
|
3199
3334
|
- path: infrastructure/scripts/llm-routing/templates/claude-free-tracked.sh
|
|
3200
3335
|
hash: sha256:3be8f3a0e9017789f616bce78f6129057d678fbbb4f6c090a0c1c5b653232267
|
|
3201
3336
|
type: template
|
|
@@ -3219,7 +3354,7 @@ files:
|
|
|
3219
3354
|
- path: infrastructure/scripts/llm-routing/templates/deepseek-proxy.cmd
|
|
3220
3355
|
hash: sha256:cb1b8ffff616846f1b772db39a6c4365d61359d490aca81234cc6acb6e788f22
|
|
3221
3356
|
type: template
|
|
3222
|
-
size:
|
|
3357
|
+
size: 2076
|
|
3223
3358
|
- path: infrastructure/scripts/llm-routing/templates/deepseek-proxy.sh
|
|
3224
3359
|
hash: sha256:8c590984914d8ef72992aea102212ff83d94d3320ba152615acb541ea9bbc67a
|
|
3225
3360
|
type: template
|
|
@@ -3227,7 +3362,7 @@ files:
|
|
|
3227
3362
|
- path: infrastructure/scripts/llm-routing/templates/deepseek-usage.cmd
|
|
3228
3363
|
hash: sha256:3e0dc6a1fc79afbe28220872c2be2093b8bfc8914ea9a9ad330b4cd9126302d4
|
|
3229
3364
|
type: template
|
|
3230
|
-
size:
|
|
3365
|
+
size: 1863
|
|
3231
3366
|
- path: infrastructure/scripts/llm-routing/templates/deepseek-usage.sh
|
|
3232
3367
|
hash: sha256:6fbd7eafc2829a4d42e8d2b8f854f67ee857489d28fe6912b144a3fef7a0af90
|
|
3233
3368
|
type: template
|
|
@@ -3289,9 +3424,9 @@ files:
|
|
|
3289
3424
|
type: script
|
|
3290
3425
|
size: 4057
|
|
3291
3426
|
- path: infrastructure/scripts/pr-review-ai.js
|
|
3292
|
-
hash: sha256:
|
|
3427
|
+
hash: sha256:5e09231a418e5668070f9fe3ea3bd8b2c5df5137fc3938b4b06d998c2fcf3e44
|
|
3293
3428
|
type: script
|
|
3294
|
-
size:
|
|
3429
|
+
size: 31487
|
|
3295
3430
|
- path: infrastructure/scripts/project-status-loader.js
|
|
3296
3431
|
hash: sha256:96ba99c2b63c08c7f4b83c1a5e44b023c825e14f5eaad48010de32709795c004
|
|
3297
3432
|
type: script
|
|
@@ -3328,6 +3463,10 @@ files:
|
|
|
3328
3463
|
hash: sha256:25001fe4083c45b14a1576a10de152b3108e5db732d7335b2e0cff3d78f5b84b
|
|
3329
3464
|
type: script
|
|
3330
3465
|
size: 9539
|
|
3466
|
+
- path: infrastructure/scripts/setup-project-infra.js
|
|
3467
|
+
hash: sha256:adcd31e8274b7c5debf0dbaf6c2e80945dfed179fc5c38b8bab76af0f4bbb56b
|
|
3468
|
+
type: script
|
|
3469
|
+
size: 4339
|
|
3331
3470
|
- path: infrastructure/scripts/sinapse-validator.js
|
|
3332
3471
|
hash: sha256:7cefe23afa2423faff96f9651d3c44e766130664cd84249d93c7571e9dfd7e24
|
|
3333
3472
|
type: script
|
|
@@ -3365,9 +3504,9 @@ files:
|
|
|
3365
3504
|
type: script
|
|
3366
3505
|
size: 8331
|
|
3367
3506
|
- path: infrastructure/scripts/test-discovery.js
|
|
3368
|
-
hash: sha256:
|
|
3507
|
+
hash: sha256:bbdc7830784cefcc5cf3f9f913d6efa86f521c8b4d4b12fcb9b3a336103c349e
|
|
3369
3508
|
type: script
|
|
3370
|
-
size:
|
|
3509
|
+
size: 34684
|
|
3371
3510
|
- path: infrastructure/scripts/test-generator.js
|
|
3372
3511
|
hash: sha256:8436fc07d9f3b5c14ab5eda3946cdafc32f109c03bb46d9469ff73368393bfcb
|
|
3373
3512
|
type: script
|
|
@@ -3409,9 +3548,9 @@ files:
|
|
|
3409
3548
|
type: script
|
|
3410
3549
|
size: 7266
|
|
3411
3550
|
- path: infrastructure/scripts/validate-codex-delegation.js
|
|
3412
|
-
hash: sha256:
|
|
3551
|
+
hash: sha256:278785952a4ef680bd969f8200ab4ce2ced949d0a59a4e7b361b5ae8595c56a4
|
|
3413
3552
|
type: script
|
|
3414
|
-
size:
|
|
3553
|
+
size: 9672
|
|
3415
3554
|
- path: infrastructure/scripts/validate-codex-integration.js
|
|
3416
3555
|
hash: sha256:c553cc493ddbfecf41b865f8a1075df56b6500c3b2b315bae8b7e7bcec4db85a
|
|
3417
3556
|
type: script
|
|
@@ -3420,14 +3559,18 @@ files:
|
|
|
3420
3559
|
hash: sha256:31bcfc0cdf307e7c14064eaf0ddbf99a14344c21306937c9a7d9cc7ebba260f8
|
|
3421
3560
|
type: script
|
|
3422
3561
|
size: 4679
|
|
3562
|
+
- path: infrastructure/scripts/validate-manifest-parity.js
|
|
3563
|
+
hash: sha256:58de4fac542c7d67fdbfc0d18b501854290f48bc3a44eae5a7485dca9c816006
|
|
3564
|
+
type: script
|
|
3565
|
+
size: 12160
|
|
3423
3566
|
- path: infrastructure/scripts/validate-output-pattern.js
|
|
3424
3567
|
hash: sha256:ce4ea341a94ca4dbbd176816c7f3c567574715a0fedbf4c17405a9d312bd138b
|
|
3425
3568
|
type: script
|
|
3426
3569
|
size: 6693
|
|
3427
3570
|
- path: infrastructure/scripts/validate-parity.js
|
|
3428
|
-
hash: sha256:
|
|
3571
|
+
hash: sha256:4649397644f29f5df4ec87554a27910b22955ba480093a5946f30e28fdd5f9a2
|
|
3429
3572
|
type: script
|
|
3430
|
-
size:
|
|
3573
|
+
size: 14228
|
|
3431
3574
|
- path: infrastructure/scripts/validate-paths.js
|
|
3432
3575
|
hash: sha256:942f6de9e621b7331f61dc915db5d24b987b67d1ae3377882330f7013dd214e9
|
|
3433
3576
|
type: script
|
|
@@ -3451,7 +3594,15 @@ files:
|
|
|
3451
3594
|
- path: infrastructure/templates/coderabbit.yaml.template
|
|
3452
3595
|
hash: sha256:c56a83af5c7cf782ef976530b465b40b6df6f945ec5a4c2a83d04da3a31ea0bb
|
|
3453
3596
|
type: template
|
|
3454
|
-
size:
|
|
3597
|
+
size: 8046
|
|
3598
|
+
- path: infrastructure/templates/config/env.example
|
|
3599
|
+
hash: sha256:a7c757f69b37d712e3cd323870b0d06b60a72d28e2eff18b47517899c73fb011
|
|
3600
|
+
type: template
|
|
3601
|
+
size: 663
|
|
3602
|
+
- path: infrastructure/templates/config/gitignore-additions.tmpl
|
|
3603
|
+
hash: sha256:04532e3ae1e2a6efa864e8ab61c00670a5db82e0dfa1ba84c52996aa8be3b300
|
|
3604
|
+
type: template
|
|
3605
|
+
size: 708
|
|
3455
3606
|
- path: infrastructure/templates/core-config/core-config-brownfield.tmpl.yaml
|
|
3456
3607
|
hash: sha256:34955d66b70112be19362815ab8758070da7169db0447afc72dfa42ad553a680
|
|
3457
3608
|
type: template
|
|
@@ -3463,11 +3614,11 @@ files:
|
|
|
3463
3614
|
- path: infrastructure/templates/github-workflows/ci.yml.template
|
|
3464
3615
|
hash: sha256:3377d5d4a2af43ee6c4ae069539a9a6ad299283831c0179525162a27e143c599
|
|
3465
3616
|
type: template
|
|
3466
|
-
size:
|
|
3617
|
+
size: 4927
|
|
3467
3618
|
- path: infrastructure/templates/github-workflows/pr-automation.yml.template
|
|
3468
3619
|
hash: sha256:c0bd678d91f5fd9ceab5b060f2a2c3d8b30cc323365a60900c41575652f8b170
|
|
3469
3620
|
type: template
|
|
3470
|
-
size:
|
|
3621
|
+
size: 10619
|
|
3471
3622
|
- path: infrastructure/templates/github-workflows/README.md
|
|
3472
3623
|
hash: sha256:19e8239a844676c0f3843b1c80d69e51ecab36305b0d68912582b629d775adc1
|
|
3473
3624
|
type: template
|
|
@@ -3475,23 +3626,43 @@ files:
|
|
|
3475
3626
|
- path: infrastructure/templates/github-workflows/release.yml.template
|
|
3476
3627
|
hash: sha256:e0c0ca04e0601f0f4157ca5aeaa7538c266a151118d19ca7592703612c6fcf07
|
|
3477
3628
|
type: template
|
|
3478
|
-
size:
|
|
3629
|
+
size: 6605
|
|
3630
|
+
- path: infrastructure/templates/github/ci-template.yml
|
|
3631
|
+
hash: sha256:76f6000b456f0574562c4b8a46b1e5922c2ce5f8115da1a548872935996005ab
|
|
3632
|
+
type: template
|
|
3633
|
+
size: 1920
|
|
3634
|
+
- path: infrastructure/templates/github/CODEOWNERS.template
|
|
3635
|
+
hash: sha256:e484867dbce95078ed29378041db526873b7194cd1fd297aa3ff1b880937dc44
|
|
3636
|
+
type: template
|
|
3637
|
+
size: 309
|
|
3638
|
+
- path: infrastructure/templates/github/issue-templates/bug_report.md
|
|
3639
|
+
hash: sha256:380e9e885504464968cae940ff6c0b457c7935e1f33045ace3236fe8fe7c4a06
|
|
3640
|
+
type: template
|
|
3641
|
+
size: 684
|
|
3642
|
+
- path: infrastructure/templates/github/issue-templates/feature_request.md
|
|
3643
|
+
hash: sha256:0580bdaf6aa81ffa270e3835f8ffd2b0bada503ad5230799fa7bb634060f7ff2
|
|
3644
|
+
type: template
|
|
3645
|
+
size: 442
|
|
3646
|
+
- path: infrastructure/templates/github/PULL_REQUEST_TEMPLATE.md
|
|
3647
|
+
hash: sha256:a6e7a5ce1afee5185cdc123fb1986ffcaa1fc63f5c6284166aa0ff67cb9075bf
|
|
3648
|
+
type: template
|
|
3649
|
+
size: 570
|
|
3479
3650
|
- path: infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl
|
|
3480
3651
|
hash: sha256:43cd686b77e9a4f89b79b84313fcc9d5556ad94882e326c22b4fe7e89ec943c0
|
|
3481
3652
|
type: template
|
|
3482
|
-
size:
|
|
3653
|
+
size: 509
|
|
3483
3654
|
- path: infrastructure/templates/gitignore/gitignore-node.tmpl
|
|
3484
3655
|
hash: sha256:504bf428128606cace6ea711b6cb96faad1da7673d5d2224508e563d247bb75b
|
|
3485
3656
|
type: template
|
|
3486
|
-
size:
|
|
3657
|
+
size: 955
|
|
3487
3658
|
- path: infrastructure/templates/gitignore/gitignore-python.tmpl
|
|
3488
3659
|
hash: sha256:333daadb1b9924f4f289e409cf66ccf079b0d3fe0459be713af93d0264e1818d
|
|
3489
3660
|
type: template
|
|
3490
|
-
size:
|
|
3661
|
+
size: 1584
|
|
3491
3662
|
- path: infrastructure/templates/gitignore/gitignore-sinapse-base.tmpl
|
|
3492
3663
|
hash: sha256:5c2ed40db81c01b3a0f858c8c572dd5ef1e5078f9e9ce1e5e1b05ab7a68bd5a6
|
|
3493
3664
|
type: template
|
|
3494
|
-
size:
|
|
3665
|
+
size: 802
|
|
3495
3666
|
- path: infrastructure/templates/project-docs/coding-standards-tmpl.md
|
|
3496
3667
|
hash: sha256:17d6b7d0d6f711e472d509f5a17a5be9c76af8f801c317054ddd176efc515ada
|
|
3497
3668
|
type: template
|
|
@@ -3531,7 +3702,7 @@ files:
|
|
|
3531
3702
|
- path: infrastructure/templates/sinapse-sync.yaml.template
|
|
3532
3703
|
hash: sha256:63c094174a3ea635c57aec88865b6b7a588e7cc56f31d0c7738a3a6488c88a76
|
|
3533
3704
|
type: template
|
|
3534
|
-
size:
|
|
3705
|
+
size: 8398
|
|
3535
3706
|
- path: infrastructure/tests/project-status-loader.test.js
|
|
3536
3707
|
hash: sha256:2a35c19a1cf6fd4f9dd0624cd07314c78880ea6e0f8ba4011613686da0553741
|
|
3537
3708
|
type: infrastructure
|
|
@@ -3615,43 +3786,43 @@ files:
|
|
|
3615
3786
|
- path: monitor/hooks/lib/__init__.py
|
|
3616
3787
|
hash: sha256:976c18b35a0c259acdbdbc7c9621e7a29cf8cf105374242c246874103abf325b
|
|
3617
3788
|
type: monitor
|
|
3618
|
-
size:
|
|
3789
|
+
size: 33
|
|
3619
3790
|
- path: monitor/hooks/lib/enrich.py
|
|
3620
3791
|
hash: sha256:0572338e1db4c7397f520111fe018501891b5421676618673db4ba7ab499f116
|
|
3621
3792
|
type: monitor
|
|
3622
|
-
size:
|
|
3793
|
+
size: 1694
|
|
3623
3794
|
- path: monitor/hooks/lib/send_event.py
|
|
3624
3795
|
hash: sha256:b1d301e3992dfc7066b1a47837914c64c9cdfaf949aacfae6767d703f5b0e48c
|
|
3625
3796
|
type: monitor
|
|
3626
|
-
size:
|
|
3797
|
+
size: 1203
|
|
3627
3798
|
- path: monitor/hooks/notification.py
|
|
3628
3799
|
hash: sha256:9af8df8b6d1906e4a0ee38d398671f2717c0248679b91877ed903d543291d670
|
|
3629
3800
|
type: monitor
|
|
3630
|
-
size:
|
|
3801
|
+
size: 503
|
|
3631
3802
|
- path: monitor/hooks/post_tool_use.py
|
|
3632
3803
|
hash: sha256:5508704ce2e8779bed5f2d3f296c341ce12940f44d25cb757dce51d7365aec8c
|
|
3633
3804
|
type: monitor
|
|
3634
|
-
size:
|
|
3805
|
+
size: 1144
|
|
3635
3806
|
- path: monitor/hooks/pre_compact.py
|
|
3636
3807
|
hash: sha256:ea8c523d0d4bf68aa0b8e6f6ffebc2947f62b30be1114fb04a1423ef503a91d6
|
|
3637
3808
|
type: monitor
|
|
3638
|
-
size:
|
|
3809
|
+
size: 504
|
|
3639
3810
|
- path: monitor/hooks/pre_tool_use.py
|
|
3640
3811
|
hash: sha256:3a5efe97128628e570aaa1b62fa8064ff014302072670f9049db638885c845ef
|
|
3641
3812
|
type: monitor
|
|
3642
|
-
size:
|
|
3813
|
+
size: 985
|
|
3643
3814
|
- path: monitor/hooks/stop.py
|
|
3644
3815
|
hash: sha256:62a86a40100741d512454e5b98f8a8b60e97debb1e2977d4c72370a61212fe7f
|
|
3645
3816
|
type: monitor
|
|
3646
|
-
size:
|
|
3817
|
+
size: 494
|
|
3647
3818
|
- path: monitor/hooks/subagent_stop.py
|
|
3648
3819
|
hash: sha256:fd98d46d230efb37b93a17e100b2e48ecc07ca3a9c90f2ab5cf1df23a798aaa7
|
|
3649
3820
|
type: monitor
|
|
3650
|
-
size:
|
|
3821
|
+
size: 516
|
|
3651
3822
|
- path: monitor/hooks/user_prompt_submit.py
|
|
3652
3823
|
hash: sha256:5dad0c7c8de1f48f7e38587853e3b1833a0ae0bdf0eab5936687d709bf9d6d8d
|
|
3653
3824
|
type: monitor
|
|
3654
|
-
size:
|
|
3825
|
+
size: 822
|
|
3655
3826
|
- path: package.json
|
|
3656
3827
|
hash: sha256:9f0fd1ba37e633bb3d8d2ba5040bec8820a2e0cb66169b2c773525f230893c13
|
|
3657
3828
|
type: other
|
|
@@ -3799,7 +3970,7 @@ files:
|
|
|
3799
3970
|
- path: product/templates/adr.hbs
|
|
3800
3971
|
hash: sha256:7825131e30ee9f473e10258682981fd6cb7fb47e1c276ad79d3b777eaaecc62c
|
|
3801
3972
|
type: template
|
|
3802
|
-
size:
|
|
3973
|
+
size: 2216
|
|
3803
3974
|
- path: product/templates/agent-template.yaml
|
|
3804
3975
|
hash: sha256:391e0728db257b309602bea13e322560ea4227c34382fa66eb6283583b4da8f9
|
|
3805
3976
|
type: template
|
|
@@ -3847,7 +4018,7 @@ files:
|
|
|
3847
4018
|
- path: product/templates/dbdr.hbs
|
|
3848
4019
|
hash: sha256:a2824092c2ba2122c1d0245b91bf70f6558f940bcb3cbd17a29fcf7d8c4ab7ef
|
|
3849
4020
|
type: template
|
|
3850
|
-
size:
|
|
4021
|
+
size: 4143
|
|
3851
4022
|
- path: product/templates/design-story-tmpl.yaml
|
|
3852
4023
|
hash: sha256:fe712fb22f54364b1aafec2603c79546f6f70fb1de7dd7cde9563e47997a8557
|
|
3853
4024
|
type: template
|
|
@@ -3911,7 +4082,7 @@ files:
|
|
|
3911
4082
|
- path: product/templates/epic.hbs
|
|
3912
4083
|
hash: sha256:9e0cefd86eda74afac7f151c3aff97011fc0d0322f7f7180eeeadea157c2c508
|
|
3913
4084
|
type: template
|
|
3914
|
-
size:
|
|
4085
|
+
size: 3875
|
|
3915
4086
|
- path: product/templates/eslintrc-security.json
|
|
3916
4087
|
hash: sha256:12e0599450d6f6167e4cd9eeee0fd504e257c3af85d855e8a8b3f8a5253e89f4
|
|
3917
4088
|
type: template
|
|
@@ -3999,7 +4170,7 @@ files:
|
|
|
3999
4170
|
- path: product/templates/pmdr.hbs
|
|
4000
4171
|
hash: sha256:49eb647ddd9d36421aadb9bab7d8f9edeba0aeb65f4d302b0f8b85bbb47599de
|
|
4001
4172
|
type: template
|
|
4002
|
-
size:
|
|
4173
|
+
size: 3243
|
|
4003
4174
|
- path: product/templates/prd-tmpl.yaml
|
|
4004
4175
|
hash: sha256:cc68f141e09386096f6add62717f63f0b56bb53f315eafcafc4bb649f151d25f
|
|
4005
4176
|
type: template
|
|
@@ -4007,11 +4178,11 @@ files:
|
|
|
4007
4178
|
- path: product/templates/prd-v2.0.hbs
|
|
4008
4179
|
hash: sha256:efcdadfcd994d02cb04f61de67e4b42156e49b64e9374ad57037e60104297134
|
|
4009
4180
|
type: template
|
|
4010
|
-
size:
|
|
4181
|
+
size: 4516
|
|
4011
4182
|
- path: product/templates/prd.hbs
|
|
4012
4183
|
hash: sha256:16c7ae0dbcaf0d5848369584e2e32d54ef23777ea1210e6c013e2d70b7869d04
|
|
4013
4184
|
type: template
|
|
4014
|
-
size:
|
|
4185
|
+
size: 3429
|
|
4015
4186
|
- path: product/templates/project-brief-tmpl.yaml
|
|
4016
4187
|
hash: sha256:b781737b94826c8cf9982309403dd3209dc1ebb74f4e3fa070ab1f4ebbda4b09
|
|
4017
4188
|
type: template
|
|
@@ -4053,13 +4224,13 @@ files:
|
|
|
4053
4224
|
type: template
|
|
4054
4225
|
size: 1806
|
|
4055
4226
|
- path: product/templates/story-tmpl.yaml
|
|
4056
|
-
hash: sha256:
|
|
4227
|
+
hash: sha256:43a050de5ef51f53f890fd20f77ac567b297a40597f467b3bc6d00c8193c7fa6
|
|
4057
4228
|
type: template
|
|
4058
|
-
size:
|
|
4229
|
+
size: 16686
|
|
4059
4230
|
- path: product/templates/story.hbs
|
|
4060
4231
|
hash: sha256:126c55c30e2e49816acc7c1712e71e7c26874b010edfe34e8d7890bac67095b2
|
|
4061
4232
|
type: template
|
|
4062
|
-
size:
|
|
4233
|
+
size: 5590
|
|
4063
4234
|
- path: product/templates/task-execution-report.md
|
|
4064
4235
|
hash: sha256:476717ed85b347fb6a5b7894a3bcdcb5eb84376c625c38a2e524e7dada126608
|
|
4065
4236
|
type: template
|
|
@@ -4071,67 +4242,67 @@ files:
|
|
|
4071
4242
|
- path: product/templates/task.hbs
|
|
4072
4243
|
hash: sha256:c0fa1b299a2a9e0816d54859e463d44d0f3bedf31ed8d21631cefdec36e4f3b5
|
|
4073
4244
|
type: template
|
|
4074
|
-
size:
|
|
4245
|
+
size: 2709
|
|
4075
4246
|
- path: product/templates/tmpl-comment-on-examples.sql
|
|
4076
4247
|
hash: sha256:1e74b045f0a8763c85701445b97254eaaa1868cdd0f6ebdaf90d9e150ca2ac60
|
|
4077
4248
|
type: template
|
|
4078
|
-
size:
|
|
4249
|
+
size: 6216
|
|
4079
4250
|
- path: product/templates/tmpl-migration-script.sql
|
|
4080
4251
|
hash: sha256:ff882969271610dd2dae3e81beccdd0882d048a062d3dc93e7f85ae197bd48d6
|
|
4081
4252
|
type: template
|
|
4082
|
-
size:
|
|
4253
|
+
size: 2948
|
|
4083
4254
|
- path: product/templates/tmpl-rls-granular-policies.sql
|
|
4084
4255
|
hash: sha256:10b3763bdd9622eaea9deb5e66f332690f5fda43c926952b32e99eae3c67e1d9
|
|
4085
4256
|
type: template
|
|
4086
|
-
size:
|
|
4257
|
+
size: 3323
|
|
4087
4258
|
- path: product/templates/tmpl-rls-kiss-policy.sql
|
|
4088
4259
|
hash: sha256:2bde67e5c9d2d242c2ac1d8e4faca78b8795de0089c94a0bd00438ef90675d0d
|
|
4089
4260
|
type: template
|
|
4090
|
-
size:
|
|
4261
|
+
size: 300
|
|
4091
4262
|
- path: product/templates/tmpl-rls-roles.sql
|
|
4092
4263
|
hash: sha256:89184ebc432d6ddef01529353623d98f7582cddaaaa82b453a3ff48035200589
|
|
4093
4264
|
type: template
|
|
4094
|
-
size:
|
|
4265
|
+
size: 4593
|
|
4095
4266
|
- path: product/templates/tmpl-rls-simple.sql
|
|
4096
4267
|
hash: sha256:337380b90d7a2458acd870a057770be34f0723c6770a4681efdb7a1b2a6103d7
|
|
4097
4268
|
type: template
|
|
4098
|
-
size:
|
|
4269
|
+
size: 2916
|
|
4099
4270
|
- path: product/templates/tmpl-rls-tenant.sql
|
|
4100
4271
|
hash: sha256:0d4d520666ed93d9dab56795ff2f319f1f5f9fb64f2bbb525f536d37e7605bb5
|
|
4101
4272
|
type: template
|
|
4102
|
-
size:
|
|
4273
|
+
size: 4979
|
|
4103
4274
|
- path: product/templates/tmpl-rollback-script.sql
|
|
4104
4275
|
hash: sha256:c3655f9387b4d3c396dc163ba9a1fe2cb2f030f046ce03d1ab78b21b8e375956
|
|
4105
4276
|
type: template
|
|
4106
|
-
size:
|
|
4277
|
+
size: 2658
|
|
4107
4278
|
- path: product/templates/tmpl-seed-data.sql
|
|
4108
4279
|
hash: sha256:8daa0b00c105f1212ab42462e249422fd64107e226929ccf2736506e9484b2e0
|
|
4109
4280
|
type: template
|
|
4110
|
-
size:
|
|
4281
|
+
size: 5577
|
|
4111
4282
|
- path: product/templates/tmpl-smoke-test.sql
|
|
4112
4283
|
hash: sha256:3e0891c30eaeb16053e8eadac8ff7eb59a18876a779066445f226eca2a7678d4
|
|
4113
4284
|
type: template
|
|
4114
|
-
size:
|
|
4285
|
+
size: 724
|
|
4115
4286
|
- path: product/templates/tmpl-staging-copy-merge.sql
|
|
4116
4287
|
hash: sha256:ea404942ede661c9cf8321ba01490625ed2e5718880642cb3223a7acea1f5033
|
|
4117
4288
|
type: template
|
|
4118
|
-
size:
|
|
4289
|
+
size: 4082
|
|
4119
4290
|
- path: product/templates/tmpl-stored-proc.sql
|
|
4120
4291
|
hash: sha256:78655833f266feb5f0d5d77cae8ec19a642d1f3089806a0e221abf9efab67206
|
|
4121
4292
|
type: template
|
|
4122
|
-
size:
|
|
4293
|
+
size: 3840
|
|
4123
4294
|
- path: product/templates/tmpl-trigger.sql
|
|
4124
4295
|
hash: sha256:3c30469cd931dfebf1a8c85c0781b8f9a54f21e81ee0f7cbe7caa8fec44b3bda
|
|
4125
4296
|
type: template
|
|
4126
|
-
size:
|
|
4297
|
+
size: 5273
|
|
4127
4298
|
- path: product/templates/tmpl-view-materialized.sql
|
|
4128
4299
|
hash: sha256:9c66e451a32b325a011585d0bc0c62bcff2f4bfd82b41ed3b108e468aee97880
|
|
4129
4300
|
type: template
|
|
4130
|
-
size:
|
|
4301
|
+
size: 4364
|
|
4131
4302
|
- path: product/templates/tmpl-view.sql
|
|
4132
4303
|
hash: sha256:fa6c17eb3b5e619cf7d96be39296ece5ebfde6e1a3691ffd9bd73eacd9e333d3
|
|
4133
4304
|
type: template
|
|
4134
|
-
size:
|
|
4305
|
+
size: 4917
|
|
4135
4306
|
- path: product/templates/token-exports-css-tmpl.css
|
|
4136
4307
|
hash: sha256:cdd75e1221721e2bfbeb4af82532438e15685a182de13480abe796ad2792d525
|
|
4137
4308
|
type: template
|
|
@@ -4177,9 +4348,9 @@ files:
|
|
|
4177
4348
|
type: script
|
|
4178
4349
|
size: 377
|
|
4179
4350
|
- path: scripts/diagnostics/health-dashboard/package-lock.json
|
|
4180
|
-
hash: sha256:
|
|
4351
|
+
hash: sha256:af446a82b6f1e2815e7b4ccb4cc708dc2823ed0b7b37a64040c34ad0937bdabf
|
|
4181
4352
|
type: script
|
|
4182
|
-
size:
|
|
4353
|
+
size: 184365
|
|
4183
4354
|
- path: scripts/diagnostics/health-dashboard/package.json
|
|
4184
4355
|
hash: sha256:bceff5a33e4bde3dc5cd5796ec2ac2150ca37a6a4b1964cd9c7f7314b7dd5e16
|
|
4185
4356
|
type: script
|