sinapse-ai 1.7.0 → 1.9.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 +5 -11
- package/.claude/hooks/README.md +14 -1
- package/.claude/hooks/code-intel-pretool.cjs +115 -0
- package/.claude/hooks/enforce-delegation.cjs +31 -3
- package/.claude/hooks/enforce-framework-boundary.cjs +324 -0
- package/.claude/hooks/enforce-permission-mode.cjs +249 -0
- package/.claude/hooks/mind-clone-governance.py +212 -212
- package/.claude/hooks/read-protection.py +152 -152
- package/.claude/hooks/secret-scanning.cjs +34 -43
- package/.claude/hooks/slug-validation.py +175 -175
- package/.claude/hooks/sql-governance.py +183 -183
- package/.claude/hooks/synapse-engine.cjs +23 -23
- package/.claude/hooks/telemetry-post-tool.cjs +128 -0
- package/.claude/hooks/telemetry-stop.cjs +132 -0
- package/.claude/hooks/verify-packages.cjs +9 -2
- package/.claude/rules/documentation-first.md +1 -1
- package/.claude/rules/hook-governance.md +3 -1
- package/.claude/rules/project-intelligence.md +1 -1
- package/.codex/agents/analyst.md +4 -371
- package/.codex/agents/animations-orqx.md +4 -57
- package/.codex/agents/architect.md +4 -560
- package/.codex/agents/brand-orqx.md +4 -95
- package/.codex/agents/claude-mastery-chief.md +4 -0
- package/.codex/agents/cloning-orqx.md +4 -70
- package/.codex/agents/commercial-orqx.md +4 -67
- package/.codex/agents/config-engineer.md +2 -2
- package/.codex/agents/content-orqx.md +4 -77
- package/.codex/agents/copy-orqx.md +4 -65
- package/.codex/agents/cost-optimizer.md +4 -0
- package/.codex/agents/council-orqx.md +4 -68
- package/.codex/agents/courses-orqx.md +4 -64
- package/.codex/agents/cro-persuasion.md +4 -0
- package/.codex/agents/cyber-orqx.md +4 -67
- package/.codex/agents/data-engineer.md +4 -542
- package/.codex/agents/design-orqx.md +4 -65
- package/.codex/agents/design-system.md +4 -210
- package/.codex/agents/developer.md +4 -666
- package/.codex/agents/devops.md +4 -668
- package/.codex/agents/finance-orqx.md +4 -57
- package/.codex/agents/fiscal-compliance-br.md +4 -0
- package/.codex/agents/forecast-strategist.md +4 -0
- package/.codex/agents/growth-orqx.md +4 -75
- package/.codex/agents/hooks-architect.md +2 -2
- package/.codex/agents/mcp-integrator.md +2 -2
- package/.codex/agents/paidmedia-orqx.md +4 -67
- package/.codex/agents/platform-aesthetic-director.md +4 -0
- package/.codex/agents/premium-packaging-strategist.md +4 -0
- package/.codex/agents/product-lead.md +4 -371
- package/.codex/agents/product-orqx.md +4 -57
- package/.codex/agents/product-surface-director.md +4 -0
- package/.codex/agents/project-integrator.md +2 -2
- package/.codex/agents/project-lead.md +4 -414
- package/.codex/agents/quality-gate.md +4 -547
- package/.codex/agents/research-orqx.md +4 -67
- package/.codex/agents/roadmap-sentinel.md +2 -2
- package/.codex/agents/skill-craftsman.md +2 -2
- package/.codex/agents/snps-orqx.md +4 -684
- package/.codex/agents/sop-extractor.md +4 -61
- package/.codex/agents/sprint-lead.md +4 -324
- package/.codex/agents/squad-creator.md +4 -402
- package/.codex/agents/storytelling-orqx.md +4 -65
- package/.codex/agents/swarm-orqx.md +4 -64
- package/.codex/agents/ux-design-expert.md +4 -532
- package/.codex/agents/ux-designer.md +4 -124
- package/.codex/command-registry.json +9 -9
- package/.codex/delegation-matrix.json +373 -838
- package/.codex/delegation-parity.json +657 -0
- package/.codex/handoff-packet.parity.schema.json +148 -0
- package/.codex/handoff-packet.template.json +26 -0
- package/.codex/instructions.md +6 -6
- package/.codex/scripts/resolve-codex-agent.js +482 -0
- package/.codex/scripts/resolve-codex-command.js +75 -12
- package/.codex/scripts/resolve-codex-delegation.js +131 -92
- package/.codex/skills/sinapse-claude/SKILL.md +3 -3
- package/.codex/skills/sinapse-po/SKILL.md +1 -1
- package/.codex/tasks/resolve-sinapse-conflict.md +1 -1
- package/.sinapse-ai/cli/commands/health/index.js +24 -0
- package/.sinapse-ai/constitution.md +5 -5
- package/.sinapse-ai/core/README.md +11 -0
- package/.sinapse-ai/core/config/config-loader.js +19 -0
- package/.sinapse-ai/core/doctor/checks/git-hooks.js +97 -19
- package/.sinapse-ai/core/events/dashboard-emitter.js +30 -9
- package/.sinapse-ai/core/execution/build-orchestrator.js +4 -1
- package/.sinapse-ai/core/execution/parallel-executor.js +7 -1
- package/.sinapse-ai/core/execution/subagent-dispatcher.js +126 -28
- package/.sinapse-ai/core/execution/wave-executor.js +4 -1
- package/.sinapse-ai/core/grounding/README.md +71 -11
- package/.sinapse-ai/core/health-check/checks/project/framework-config.js +38 -2
- package/.sinapse-ai/core/health-check/checks/project/package-json.js +47 -3
- package/.sinapse-ai/core/health-check/checks/services/gemini-cli.js +117 -0
- package/.sinapse-ai/core/health-check/checks/services/index.js +2 -0
- package/.sinapse-ai/core/health-check/healers/index.js +40 -3
- package/.sinapse-ai/core/ideation/ideation-engine.js +170 -121
- package/.sinapse-ai/core/ids/gate-evaluator.js +318 -0
- package/.sinapse-ai/core/ids/gates/g5-semantic-handshake.js +190 -0
- package/.sinapse-ai/core/ids/gates/g6-ci-integrity.js +162 -0
- package/.sinapse-ai/core/ids/index.js +30 -0
- package/.sinapse-ai/core/memory/__tests__/active-modules.verify.js +11 -0
- package/.sinapse-ai/core/orchestration/agent-invoker.js +29 -6
- package/.sinapse-ai/core/orchestration/brownfield-handler.js +36 -3
- package/.sinapse-ai/core/orchestration/executors/epic-3-executor.js +76 -5
- package/.sinapse-ai/core/orchestration/executors/epic-4-executor.js +63 -17
- package/.sinapse-ai/core/orchestration/executors/epic-6-executor.js +153 -41
- package/.sinapse-ai/core/orchestration/executors/epic-executor.js +40 -0
- package/.sinapse-ai/core/orchestration/greenfield-handler.js +87 -3
- package/.sinapse-ai/core/orchestration/master-orchestrator.js +105 -7
- package/.sinapse-ai/core/orchestration/parallel-executor.js +6 -1
- package/.sinapse-ai/core/orchestration/workflow-executor.js +41 -0
- package/.sinapse-ai/core/registry/squad-agent-resolver.js +253 -0
- package/.sinapse-ai/core/telemetry/ids-sink.js +188 -0
- package/.sinapse-ai/core/ui/observability-panel.js +240 -0
- package/.sinapse-ai/core/utils/output-formatter.js +8 -290
- package/.sinapse-ai/core-config.yaml +29 -1
- package/.sinapse-ai/data/entity-registry.yaml +15056 -13761
- package/.sinapse-ai/development/agents/developer.md +2 -0
- package/.sinapse-ai/development/agents/devops.md +9 -0
- package/.sinapse-ai/development/agents/snps-orqx.md +12 -22
- package/.sinapse-ai/development/external-executors/README.md +18 -0
- package/.sinapse-ai/development/external-executors/codex.md +56 -0
- package/.sinapse-ai/development/scripts/populate-entity-registry.js +65 -9
- package/.sinapse-ai/development/scripts/squad/squad-downloader.js +54 -11
- package/.sinapse-ai/development/tasks/build-autonomous.md +11 -1
- package/.sinapse-ai/development/tasks/build-resume.md +8 -0
- package/.sinapse-ai/development/tasks/build-status.md +8 -0
- package/.sinapse-ai/development/tasks/build.md +8 -0
- package/.sinapse-ai/development/tasks/cleanup-worktrees.md +8 -1
- package/.sinapse-ai/development/tasks/delegate-to-external-executor.md +152 -0
- package/.sinapse-ai/development/tasks/github-devops-pre-push-quality-gate.md +46 -29
- package/.sinapse-ai/development/tasks/gotcha.md +8 -0
- package/.sinapse-ai/development/tasks/gotchas.md +8 -0
- package/.sinapse-ai/development/tasks/ids-health.md +14 -6
- package/.sinapse-ai/development/tasks/list-mcps.md +15 -0
- package/.sinapse-ai/development/tasks/merge-worktree.md +8 -1
- package/.sinapse-ai/development/tasks/qa-review-build.md +18 -0
- package/.sinapse-ai/development/tasks/remove-mcp.md +8 -1
- package/.sinapse-ai/development/tasks/update-sinapse.md +3 -3
- package/.sinapse-ai/development/tasks/validate-agents.md +26 -14
- 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-template/LICENSE +22 -22
- package/.sinapse-ai/git-hooks/lib/framework-guard.js +258 -0
- package/.sinapse-ai/git-hooks/lib/secret-scanner-core.js +283 -0
- package/.sinapse-ai/git-hooks/lib/staged-secret-scan.js +179 -0
- package/.sinapse-ai/git-hooks/lib/staged-sql-guard.js +204 -0
- package/.sinapse-ai/git-hooks/post-commit +28 -0
- package/.sinapse-ai/git-hooks/pre-commit +81 -0
- package/.sinapse-ai/git-hooks/pre-push +77 -0
- package/.sinapse-ai/hooks/ids-post-commit.js +13 -11
- package/.sinapse-ai/hooks/ids-pre-push.js +9 -7
- package/.sinapse-ai/hooks/sinapse-brand-grounding.cjs +4 -7
- package/.sinapse-ai/hooks/sinapse-ds-grounding.cjs +4 -7
- package/.sinapse-ai/hooks/sinapse-vault-grounding.cjs +4 -7
- package/.sinapse-ai/infrastructure/integrations/ai-providers/ai-provider-factory.js +4 -1
- package/.sinapse-ai/infrastructure/integrations/ai-providers/claude-provider.js +57 -55
- package/.sinapse-ai/infrastructure/scripts/codex-parity/resolve.js +161 -0
- package/.sinapse-ai/infrastructure/scripts/dashboard-status-writer.js +6 -2
- package/.sinapse-ai/infrastructure/scripts/ide-sync/index.js +139 -21
- package/.sinapse-ai/infrastructure/scripts/ide-sync/persona-renderer.js +97 -0
- package/.sinapse-ai/infrastructure/scripts/sync-codex-local-first.js +156 -1
- package/.sinapse-ai/infrastructure/scripts/validate-codex-delegation.js +1 -4
- package/.sinapse-ai/infrastructure/scripts/validate-codex-integration.js +41 -5
- package/.sinapse-ai/infrastructure/templates/coderabbit.yaml.template +280 -280
- package/.sinapse-ai/infrastructure/templates/config/env.example +16 -16
- package/.sinapse-ai/infrastructure/templates/config/gitignore-additions.tmpl +59 -59
- package/.sinapse-ai/infrastructure/templates/github/CODEOWNERS.template +12 -12
- 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/safe-collab/CODEOWNERS.template +16 -16
- package/.sinapse-ai/infrastructure/templates/sinapse-sync.yaml.template +183 -183
- package/.sinapse-ai/install-manifest.yaml +239 -223
- package/.sinapse-ai/local-config.yaml.template +65 -65
- 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/ide-rules/codex-rules.md +30 -0
- 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/statusline/statusline-script.js +31 -8
- package/.sinapse-ai/product/templates/statusline/track-agent-clear.cjs +79 -0
- package/.sinapse-ai/product/templates/statusline/track-agent.cjs +218 -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/pm.sh +18 -6
- package/AGENTS.md +193 -0
- package/LICENSE +63 -63
- package/README.en.md +17 -18
- package/README.md +18 -19
- package/bin/cli.js +18 -1
- package/bin/commands/agents.js +96 -0
- package/bin/commands/doctor.js +15 -0
- package/bin/commands/ideate.js +129 -0
- package/bin/commands/install.js +194 -22
- package/bin/commands/status.js +14 -1
- package/bin/commands/uninstall.js +40 -0
- package/bin/commands/update.js +52 -0
- package/bin/lib/setup-statusline.js +191 -0
- package/bin/postinstall.js +50 -4
- package/bin/sinapse-init.js +11 -83
- package/bin/sinapse.js +146 -2
- package/bin/utils/framework-guard.js +17 -4
- package/bin/utils/secret-scanner-core.js +283 -0
- package/bin/utils/staged-secret-scan.js +106 -40
- package/bin/utils/staged-sql-guard.js +204 -0
- package/bin/utils/validate-publish.js +63 -0
- package/docs/agent-reference-guide.md +4 -6
- package/docs/framework/agent-prefix-convention.md +58 -0
- package/docs/framework/collaboration-activation.md +45 -0
- package/docs/security/overview.md +1 -1
- package/package.json +16 -8
- package/packages/installer/src/index.js +26 -0
- package/packages/installer/src/installer/git-hooks-installer.js +546 -0
- package/packages/installer/src/installer/sinapse-ai-installer.js +87 -0
- package/packages/installer/src/wizard/feedback.js +1 -1
- package/packages/installer/src/wizard/ide-config-generator.js +40 -25
- package/packages/installer/src/wizard/index.js +50 -0
- package/packages/installer/src/wizard/validators.js +38 -1
- package/packages/installer/tests/unit/artifact-copy-pipeline/artifact-copy-pipeline.test.js +24 -1
- package/packages/installer/tests/unit/doctor/doctor-checks.test.js +42 -3
- package/packages/installer/tests/unit/entity-registry-bootstrap.test.js +10 -4
- package/packages/installer/tests/unit/git-hooks-installer.test.js +262 -0
- package/packages/sinapse-install/bin/edmcp.js +0 -0
- package/packages/sinapse-install/bin/sinapse-install.js +0 -0
- package/scripts/audit-tasks.cjs +112 -91
- package/scripts/check-markdown-links.py +352 -352
- package/scripts/eval-runner.js +422 -0
- package/scripts/generate-install-manifest.js +13 -9
- package/scripts/generate-synapse-runtime.js +51 -0
- package/scripts/prepare-hooks.js +58 -0
- package/scripts/regenerate-orqx-stubs.ps1 +2 -2
- package/scripts/validate-agents-md.js +128 -0
- package/scripts/validate-all.js +2 -0
- package/scripts/validate-evals.js +466 -0
- package/scripts/validate-schemas.js +539 -0
- package/scripts/validate-squad-orqx.js +9 -2
- package/sinapse/agents/sinapse-orqx.md +12 -22
- package/sinapse/agents/snps-orqx.md +11 -21
- package/squads/claude-code-mastery/squad.yaml +8 -0
- package/squads/squad-animations/squad.yaml +1 -1
- package/squads/squad-brand/squad.yaml +1 -1
- package/squads/squad-cloning/squad.yaml +1 -1
- package/squads/squad-commercial/squad.yaml +2 -3
- package/squads/squad-content/squad.yaml +1 -1
- package/squads/squad-copy/squad.yaml +2 -3
- package/squads/squad-courses/squad.yaml +1 -1
- package/squads/squad-cybersecurity/squad.yaml +2 -3
- package/squads/{squad-artdir → squad-design}/agents/cro-persuasion.md +1 -1
- package/squads/{squad-artdir → squad-design}/agents/platform-aesthetic-director.md +2 -2
- package/squads/{squad-artdir → squad-design}/agents/premium-packaging-strategist.md +2 -2
- package/squads/{squad-artdir → squad-design}/agents/product-surface-director.md +3 -3
- package/squads/squad-design/squad.yaml +6 -3
- package/squads/squad-finance/squad.yaml +7 -1
- package/squads/squad-growth/squad.yaml +1 -1
- package/squads/squad-paidmedia/squad.yaml +2 -3
- package/squads/squad-product/squad.yaml +1 -1
- package/squads/squad-research/squad.yaml +2 -3
- package/squads/squad-storytelling/squad.yaml +2 -3
- package/.codex/agents/brad-frost.md +0 -46
- package/.codex/agents/claude-orqx.md +0 -72
- package/.codex/agents/copy-chief.md +0 -162
- package/.codex/agents/cyber-chief.md +0 -169
- package/.codex/agents/dan-mall.md +0 -43
- package/.codex/agents/data-chief.md +0 -198
- package/.codex/agents/dave-malouf.md +0 -43
- package/.codex/agents/db-sage.md +0 -152
- package/.codex/agents/design-chief.md +0 -226
- package/.codex/agents/dev.md +0 -102
- package/.codex/agents/legal-chief.md +0 -199
- package/.codex/agents/nano-banana-generator.md +0 -42
- package/.codex/agents/pm.md +0 -81
- package/.codex/agents/po.md +0 -85
- package/.codex/agents/qa.md +0 -98
- package/.codex/agents/sm.md +0 -77
- package/.codex/agents/squad-chief.md +0 -1553
- package/.codex/agents/squad.md +0 -66
- package/.codex/agents/story-chief.md +0 -180
- package/.codex/agents/tools-orqx.md +0 -219
- package/.codex/agents/traffic-masters-chief.md +0 -211
- package/.sinapse-ai/data/registry-update-log.jsonl +0 -72
- package/.sinapse-ai/development/scripts/elicitation-engine.js +0 -385
- package/.sinapse-ai/development/scripts/elicitation-session-manager.js +0 -300
- package/.sinapse-ai/development/tasks/test-validation-task.md +0 -172
- package/.sinapse-ai/monitor/hooks/lib/__init__.py +0 -2
- package/.sinapse-ai/monitor/hooks/lib/enrich.py +0 -59
- package/.sinapse-ai/monitor/hooks/lib/send_event.py +0 -48
- package/.sinapse-ai/monitor/hooks/notification.py +0 -30
- package/.sinapse-ai/monitor/hooks/post_tool_use.py +0 -46
- package/.sinapse-ai/monitor/hooks/pre_compact.py +0 -30
- package/.sinapse-ai/monitor/hooks/pre_tool_use.py +0 -41
- package/.sinapse-ai/monitor/hooks/stop.py +0 -30
- package/.sinapse-ai/monitor/hooks/subagent_stop.py +0 -30
- package/.sinapse-ai/monitor/hooks/user_prompt_submit.py +0 -39
- package/.sinapse-ai/product/templates/statusline/track-agent.sh +0 -69
- package/bin/sinapse-graph.js +0 -19
- package/docs/codex-integration-process.md +0 -22
- package/docs/codex-parity-program.md +0 -27
- package/scripts/install-monitor-hooks.sh +0 -82
- package/squads/squad-artdir/README.md +0 -90
- package/squads/squad-artdir/agents/accessibility-guardian.md +0 -184
- package/squads/squad-artdir/agents/artdir-orqx.md +0 -222
- package/squads/squad-artdir/agents/color-psychologist.md +0 -166
- package/squads/squad-artdir/agents/design-system-architect.md +0 -100
- package/squads/squad-artdir/agents/ia-architect.md +0 -169
- package/squads/squad-artdir/agents/interaction-designer.md +0 -162
- package/squads/squad-artdir/agents/layout-engineer.md +0 -163
- package/squads/squad-artdir/agents/motion-architect.md +0 -185
- package/squads/squad-artdir/agents/type-systemist.md +0 -138
- package/squads/squad-artdir/agents/visual-strategist.md +0 -127
- package/squads/squad-artdir/checklists/seven-pillars-validation-checklist.md +0 -172
- package/squads/squad-artdir/knowledge-base/case-nyo-ia-reference.md +0 -289
- package/squads/squad-artdir/knowledge-base/deliverables-templates.md +0 -457
- package/squads/squad-artdir/knowledge-base/motion-technique-catalog.md +0 -247
- package/squads/squad-artdir/knowledge-base/premium-packaging-principles.md +0 -133
- package/squads/squad-artdir/knowledge-base/psychological-toolkit.md +0 -229
- package/squads/squad-artdir/knowledge-base/saas-art-direction-canon.md +0 -242
- package/squads/squad-artdir/knowledge-base/seven-pillars-framework.md +0 -289
- package/squads/squad-artdir/knowledge-base/ten-pillars-framework.md +0 -221
- package/squads/squad-artdir/package.json +0 -20
- package/squads/squad-artdir/squad.yaml +0 -299
- package/squads/squad-artdir/tasks/audit-conversion.md +0 -97
- package/squads/squad-artdir/tasks/audit-drift-multi-surface.md +0 -55
- package/squads/squad-artdir/tasks/consult-saas-canon.md +0 -54
- package/squads/squad-artdir/tasks/create-art-direction-brief.md +0 -110
- package/squads/squad-artdir/tasks/create-premium-packaging-brief.md +0 -61
- package/squads/squad-artdir/tasks/create-wireflow.md +0 -84
- package/squads/squad-artdir/tasks/design-color-system.md +0 -81
- package/squads/squad-artdir/tasks/design-product-surface.md +0 -60
- package/squads/squad-artdir/tasks/design-token-system.md +0 -58
- package/squads/squad-artdir/tasks/diagnose-visual-language.md +0 -92
- package/squads/squad-artdir/tasks/first-5-minutes-choreography.md +0 -65
- package/squads/squad-artdir/tasks/specify-motion-system.md +0 -84
- package/squads/squad-artdir/tasks/validate-against-pillars.md +0 -143
- package/squads/squad-artdir/templates/art-direction-brief-template.md +0 -215
- package/squads/squad-artdir/workflows/conversion-audit-cycle.yaml +0 -142
- package/squads/squad-artdir/workflows/full-art-direction-cycle.yaml +0 -179
- package/squads/squad-artdir/workflows/saas-platform-art-direction-cycle.yaml +0 -338
- package/squads/squad-commercial/agents/legal-chief.md +0 -199
- package/squads/squad-copy/agents/copy-chief.md +0 -162
- package/squads/squad-cybersecurity/agents/cyber-chief.md +0 -169
- package/squads/squad-design/agents/design-chief.md +0 -226
- package/squads/squad-paidmedia/agents/traffic-masters-chief.md +0 -211
- package/squads/squad-research/agents/data-chief.md +0 -198
- package/squads/squad-storytelling/agents/story-chief.md +0 -180
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
# - SHA256 hashes for change detection
|
|
8
8
|
# - File types for categorization
|
|
9
9
|
#
|
|
10
|
-
version: 1.
|
|
10
|
+
version: 1.9.0
|
|
11
11
|
generator: scripts/generate-install-manifest.js
|
|
12
|
-
file_count:
|
|
12
|
+
file_count: 1180
|
|
13
13
|
files:
|
|
14
14
|
- path: cli/commands/config/index.js
|
|
15
15
|
hash: sha256:bfa83cb1dc111b0b30dd298dc0abc2150b73f939b6cd4458effa8e6d407bc9e2
|
|
@@ -20,9 +20,9 @@ files:
|
|
|
20
20
|
type: cli
|
|
21
21
|
size: 6721
|
|
22
22
|
- path: cli/commands/health/index.js
|
|
23
|
-
hash: sha256:
|
|
23
|
+
hash: sha256:7a75f9847256625e6ec2a6d740448703c5487ab2cebab94fa4eab476eddf6a83
|
|
24
24
|
type: cli
|
|
25
|
-
size:
|
|
25
|
+
size: 9512
|
|
26
26
|
- path: cli/commands/manifest/index.js
|
|
27
27
|
hash: sha256:0b11eb25b93abfc679046bc0afddfb282eabe7143c2680e0a5aa18657db0c943
|
|
28
28
|
type: cli
|
|
@@ -192,9 +192,9 @@ files:
|
|
|
192
192
|
type: cli
|
|
193
193
|
size: 5908
|
|
194
194
|
- path: core-config.yaml
|
|
195
|
-
hash: sha256:
|
|
195
|
+
hash: sha256:246df879b0618c20ac265edfa3fec32282f5b9b6a90a21a2361b46bb7bb67c51
|
|
196
196
|
type: config
|
|
197
|
-
size:
|
|
197
|
+
size: 12331
|
|
198
198
|
- path: core/code-intel/code-intel-client.js
|
|
199
199
|
hash: sha256:65f6c0f2bb639ff3080db3d85660e0b8097e5af7c60dc04f582ef20f42cc9cfc
|
|
200
200
|
type: core
|
|
@@ -256,9 +256,9 @@ files:
|
|
|
256
256
|
type: core
|
|
257
257
|
size: 4929
|
|
258
258
|
- path: core/config/config-loader.js
|
|
259
|
-
hash: sha256:
|
|
259
|
+
hash: sha256:7cb98af385dda142db1b06bc3ca04c44988be425edf251ed0ea914e06e538dd5
|
|
260
260
|
type: core
|
|
261
|
-
size:
|
|
261
|
+
size: 9460
|
|
262
262
|
- path: core/config/config-resolver.js
|
|
263
263
|
hash: sha256:e5167c2d301d14e8b24880a502780e4a77aa95fe3988d6673ebb6554cc746f26
|
|
264
264
|
type: core
|
|
@@ -299,6 +299,26 @@ files:
|
|
|
299
299
|
hash: sha256:4da0e29fa2aad5d2dcc83c25f3dbecb00ed2de932166d39f1311b19ae862710d
|
|
300
300
|
type: template
|
|
301
301
|
size: 728
|
|
302
|
+
- path: core/docs/component-creation-guide.md
|
|
303
|
+
hash: sha256:9f25621ed3ebb88c931f82f9827abb3eecb65fe02c8637e46dff6c987793793b
|
|
304
|
+
type: documentation
|
|
305
|
+
size: 9330
|
|
306
|
+
- path: core/docs/session-update-pattern.md
|
|
307
|
+
hash: sha256:007f7672d6f6bb34d97d382f998e4a749aafa0290724b5662a1d4602448e621f
|
|
308
|
+
type: documentation
|
|
309
|
+
size: 8831
|
|
310
|
+
- path: core/docs/SHARD-TRANSLATION-GUIDE.md
|
|
311
|
+
hash: sha256:9b17ab6f27ea9a8adec4598c0d82ceaefc201c58ad4d62ff40e4277318211a66
|
|
312
|
+
type: documentation
|
|
313
|
+
size: 8680
|
|
314
|
+
- path: core/docs/template-syntax.md
|
|
315
|
+
hash: sha256:7916a88ec14ada601ebf9c6e43246c404e495e9ab860ea71cdbd8601de19ff99
|
|
316
|
+
type: documentation
|
|
317
|
+
size: 6240
|
|
318
|
+
- path: core/docs/troubleshooting-guide.md
|
|
319
|
+
hash: sha256:8a47e61f5313372b52f9ef7ed64215299daa43ffa40a0f56c64a7d6758243654
|
|
320
|
+
type: documentation
|
|
321
|
+
size: 11580
|
|
302
322
|
- path: core/doctor/checks/agent-memory.js
|
|
303
323
|
hash: sha256:adad35cd3995b813cb9d87fd617fbbe7784397edb0f58c3114511ba45bc76f19
|
|
304
324
|
type: core
|
|
@@ -328,9 +348,9 @@ files:
|
|
|
328
348
|
type: core
|
|
329
349
|
size: 1581
|
|
330
350
|
- path: core/doctor/checks/git-hooks.js
|
|
331
|
-
hash: sha256:
|
|
351
|
+
hash: sha256:653371d423b5f132bdedc5b80c3a2a82471bff1c147fea25ce52b4cd8bcd3b23
|
|
332
352
|
type: core
|
|
333
|
-
size:
|
|
353
|
+
size: 5041
|
|
334
354
|
- path: core/doctor/checks/graph-dashboard.js
|
|
335
355
|
hash: sha256:6996b47faf1945ed27a24db2a0061c46f9fd0069b0c73a8af0f4b68d68142047
|
|
336
356
|
type: core
|
|
@@ -432,9 +452,9 @@ files:
|
|
|
432
452
|
type: core
|
|
433
453
|
size: 4775
|
|
434
454
|
- path: core/events/dashboard-emitter.js
|
|
435
|
-
hash: sha256:
|
|
455
|
+
hash: sha256:fb05de8dd0802d394d6463ab3170c2ca7e3bde7ff0924d6f33aeec0744c1f538
|
|
436
456
|
type: core
|
|
437
|
-
size:
|
|
457
|
+
size: 10704
|
|
438
458
|
- path: core/events/index.js
|
|
439
459
|
hash: sha256:b034074be4bb901c35ad27b3cabaa4e07a6e21a9aaa86fbbfd390d3080201917
|
|
440
460
|
type: core
|
|
@@ -448,9 +468,9 @@ files:
|
|
|
448
468
|
type: core
|
|
449
469
|
size: 34059
|
|
450
470
|
- path: core/execution/build-orchestrator.js
|
|
451
|
-
hash: sha256:
|
|
471
|
+
hash: sha256:d0bcee0a2bd7b8512d5fcddfc3b29f1390aedf4457f6f3d56cbd8787fa0e71c9
|
|
452
472
|
type: core
|
|
453
|
-
size:
|
|
473
|
+
size: 32609
|
|
454
474
|
- path: core/execution/build-state-manager.js
|
|
455
475
|
hash: sha256:3b2fe56bf0e1a480f663a02afbb83c6d11cf89fb56815381c7ccafab948a63ae
|
|
456
476
|
type: core
|
|
@@ -460,9 +480,9 @@ files:
|
|
|
460
480
|
type: core
|
|
461
481
|
size: 14864
|
|
462
482
|
- path: core/execution/parallel-executor.js
|
|
463
|
-
hash: sha256:
|
|
483
|
+
hash: sha256:f5a68f60536ad6116ddc49e4d55ce5f1fc3b55c26ae27622b221e342b2ed37a3
|
|
464
484
|
type: core
|
|
465
|
-
size:
|
|
485
|
+
size: 8399
|
|
466
486
|
- path: core/execution/parallel-monitor.js
|
|
467
487
|
hash: sha256:4b789fd8d6736ff794181be2069b972752649759cc33b69201bef2d8c41ec6b5
|
|
468
488
|
type: core
|
|
@@ -480,13 +500,13 @@ files:
|
|
|
480
500
|
type: core
|
|
481
501
|
size: 52328
|
|
482
502
|
- path: core/execution/subagent-dispatcher.js
|
|
483
|
-
hash: sha256:
|
|
503
|
+
hash: sha256:19f050834b0c5faf69ac5ff8d448ab3a7af7109c82fd2cbb5299320b7e7b6e2b
|
|
484
504
|
type: core
|
|
485
|
-
size:
|
|
505
|
+
size: 32197
|
|
486
506
|
- path: core/execution/wave-executor.js
|
|
487
|
-
hash: sha256:
|
|
507
|
+
hash: sha256:49cc1b4712d13cb0638f514cc3b00fa0ab576737c942103fbf5d0931010727b7
|
|
488
508
|
type: core
|
|
489
|
-
size:
|
|
509
|
+
size: 11268
|
|
490
510
|
- path: core/external-executors/delegate-cli.js
|
|
491
511
|
hash: sha256:f9ba17ba23010e94f13c41182487fa2d71458331403bbb32e76e7859bcfc7275
|
|
492
512
|
type: core
|
|
@@ -556,9 +576,9 @@ files:
|
|
|
556
576
|
type: core
|
|
557
577
|
size: 938
|
|
558
578
|
- path: core/grounding/README.md
|
|
559
|
-
hash: sha256:
|
|
579
|
+
hash: sha256:ce4b0e0cef09f1eb337dd3aa321b5b48fe3c82dac0ea2dfa580edd9197cf7892
|
|
560
580
|
type: core
|
|
561
|
-
size:
|
|
581
|
+
size: 3549
|
|
562
582
|
- path: core/grounding/vault.cjs
|
|
563
583
|
hash: sha256:9254360614fd3625479465a04e34f14a8e11cfe8adb5cea75386c0597ac9ae8d
|
|
564
584
|
type: core
|
|
@@ -648,9 +668,9 @@ files:
|
|
|
648
668
|
type: core
|
|
649
669
|
size: 4371
|
|
650
670
|
- path: core/health-check/checks/project/framework-config.js
|
|
651
|
-
hash: sha256:
|
|
671
|
+
hash: sha256:ca4b980ac2db3997ffa9de307e15f0fdf26c283296094ea4db1447ca8a667aae
|
|
652
672
|
type: core
|
|
653
|
-
size:
|
|
673
|
+
size: 5121
|
|
654
674
|
- path: core/health-check/checks/project/index.js
|
|
655
675
|
hash: sha256:0fc2732f18f9a853b6d750362836a4472c9921bf3b4e203c9855165fd31a7e88
|
|
656
676
|
type: core
|
|
@@ -660,9 +680,9 @@ files:
|
|
|
660
680
|
type: core
|
|
661
681
|
size: 4687
|
|
662
682
|
- path: core/health-check/checks/project/package-json.js
|
|
663
|
-
hash: sha256:
|
|
683
|
+
hash: sha256:961441a312e4d5f50e9379b4d03125710bc17c293fd7b5b26700f79dba50c9aa
|
|
664
684
|
type: core
|
|
665
|
-
size:
|
|
685
|
+
size: 4278
|
|
666
686
|
- path: core/health-check/checks/project/sinapse-directory.js
|
|
667
687
|
hash: sha256:183f4a8e290e028bf3a95e158caa90ff229b6292a1cd2298c837f849176ea251
|
|
668
688
|
type: core
|
|
@@ -719,14 +739,18 @@ files:
|
|
|
719
739
|
hash: sha256:57b8825acd265372c2a584aa9ae4fb35e21cb70d74d4efd37d0ca068a3f188c1
|
|
720
740
|
type: core
|
|
721
741
|
size: 3600
|
|
742
|
+
- path: core/health-check/checks/services/gemini-cli.js
|
|
743
|
+
hash: sha256:3a83b51888200044fc4944a243d7a1ed79de0b94b6ff52aa6eed6aca014c7758
|
|
744
|
+
type: core
|
|
745
|
+
size: 3017
|
|
722
746
|
- path: core/health-check/checks/services/github-cli.js
|
|
723
747
|
hash: sha256:3d7f666a48ba352384f1801db9372e1dca48d8ddbad4152b7dcbea4c1ac6110d
|
|
724
748
|
type: core
|
|
725
749
|
size: 2885
|
|
726
750
|
- path: core/health-check/checks/services/index.js
|
|
727
|
-
hash: sha256:
|
|
751
|
+
hash: sha256:1cb72d64038883eed53b1d1897fcc25671baa818f8bec46b452c8fbdac7bde8b
|
|
728
752
|
type: core
|
|
729
|
-
size:
|
|
753
|
+
size: 658
|
|
730
754
|
- path: core/health-check/checks/services/mcp-integration.js
|
|
731
755
|
hash: sha256:d7c74bc2d43953a1be172891c14e2c03c3028c10f0378b43e82987e81355ebfa
|
|
732
756
|
type: core
|
|
@@ -740,9 +764,9 @@ files:
|
|
|
740
764
|
type: core
|
|
741
765
|
size: 8628
|
|
742
766
|
- path: core/health-check/healers/index.js
|
|
743
|
-
hash: sha256:
|
|
767
|
+
hash: sha256:458d3a46227d6b482143ded4747850e0124636b35a0f2de93a48facd05dfcbdd
|
|
744
768
|
type: core
|
|
745
|
-
size:
|
|
769
|
+
size: 10089
|
|
746
770
|
- path: core/health-check/index.js
|
|
747
771
|
hash: sha256:395ef159fe7f472aa47203f5b34cfb6e6ba27b600ac82fc6c434a84cda86b60a
|
|
748
772
|
type: core
|
|
@@ -764,9 +788,9 @@ files:
|
|
|
764
788
|
type: core
|
|
765
789
|
size: 7763
|
|
766
790
|
- path: core/ideation/ideation-engine.js
|
|
767
|
-
hash: sha256:
|
|
791
|
+
hash: sha256:eb9119085bfeb5eee344a8949b54f8375f85c50ee38818bd4b9aab299ad871e9
|
|
768
792
|
type: core
|
|
769
|
-
size:
|
|
793
|
+
size: 27450
|
|
770
794
|
- path: core/ids/circuit-breaker.js
|
|
771
795
|
hash: sha256:d9ff8c6e540902457b17aba668ff67c04d40564ed479993ad3c4807fb8c09c3f
|
|
772
796
|
type: core
|
|
@@ -775,6 +799,10 @@ files:
|
|
|
775
799
|
hash: sha256:2849f351abf79b141be692933aebe1361f960f582a27f1bf58575f1fc726897c
|
|
776
800
|
type: core
|
|
777
801
|
size: 18065
|
|
802
|
+
- path: core/ids/gate-evaluator.js
|
|
803
|
+
hash: sha256:bd7df6909e933b339cd5f9cbe8f926dcd4fdc013fcbefbdda308a1dfbfb2616c
|
|
804
|
+
type: core
|
|
805
|
+
size: 10819
|
|
778
806
|
- path: core/ids/gates/g1-epic-creation.js
|
|
779
807
|
hash: sha256:243f93c5d17df6f2e526a87e60fcbd6df19ddef34bf5af42bbfa139a986817f9
|
|
780
808
|
type: core
|
|
@@ -791,14 +819,22 @@ files:
|
|
|
791
819
|
hash: sha256:8516471b5b29185a2a56685e4d6f4fd5da3b973917cf8bf14a00ed7aaf5f87e9
|
|
792
820
|
type: core
|
|
793
821
|
size: 4400
|
|
822
|
+
- path: core/ids/gates/g5-semantic-handshake.js
|
|
823
|
+
hash: sha256:15dcbeba76ac865e69ff9215905154538482968dc918db637283180a7c8796fa
|
|
824
|
+
type: core
|
|
825
|
+
size: 6366
|
|
826
|
+
- path: core/ids/gates/g6-ci-integrity.js
|
|
827
|
+
hash: sha256:567cdbfea471bf8441ce70685f313df630bd5b937e8e8e29500c935a370eb3c5
|
|
828
|
+
type: core
|
|
829
|
+
size: 6116
|
|
794
830
|
- path: core/ids/incremental-decision-engine.js
|
|
795
831
|
hash: sha256:8c952e724acc886de6ab9283717acb63a1d46e1ac6e9179afc782ef5dd7b80bd
|
|
796
832
|
type: core
|
|
797
833
|
size: 21405
|
|
798
834
|
- path: core/ids/index.js
|
|
799
|
-
hash: sha256:
|
|
835
|
+
hash: sha256:fc40a8c185f158b1f30b9db59e62902dbd6b0be4cbf5beead5446250e15673f3
|
|
800
836
|
type: core
|
|
801
|
-
size:
|
|
837
|
+
size: 4382
|
|
802
838
|
- path: core/ids/layer-classifier.js
|
|
803
839
|
hash: sha256:d05c0bc4766f5595cd4bd60d3d8d5cc4a6d98e041d8dd84bde795e8531785391
|
|
804
840
|
type: core
|
|
@@ -864,9 +900,9 @@ files:
|
|
|
864
900
|
type: core
|
|
865
901
|
size: 10398
|
|
866
902
|
- path: core/memory/__tests__/active-modules.verify.js
|
|
867
|
-
hash: sha256:
|
|
903
|
+
hash: sha256:f9d19b7afe34a3855795bab464dc5a6d23c1926c5eed05192910f898d6bbefec
|
|
868
904
|
type: core
|
|
869
|
-
size:
|
|
905
|
+
size: 9619
|
|
870
906
|
- path: core/memory/gotchas-memory.js
|
|
871
907
|
hash: sha256:ef746d1c65d3bbe94a06ebe755ce0777e4e1ddd90867a2b96f6c8544c397fcb3
|
|
872
908
|
type: core
|
|
@@ -880,9 +916,9 @@ files:
|
|
|
880
916
|
type: core
|
|
881
917
|
size: 1836
|
|
882
918
|
- path: core/orchestration/agent-invoker.js
|
|
883
|
-
hash: sha256:
|
|
919
|
+
hash: sha256:d884a0a78b2d3be36ddda10964984b1a6667fbd7df73bae156995a739ee369e2
|
|
884
920
|
type: core
|
|
885
|
-
size:
|
|
921
|
+
size: 17581
|
|
886
922
|
- path: core/orchestration/bob-orchestrator.js
|
|
887
923
|
hash: sha256:54ad95bdc7d088aab5e03a0fb0d2d3ea6b261f09cbecd66c13128421fdb90629
|
|
888
924
|
type: core
|
|
@@ -896,9 +932,9 @@ files:
|
|
|
896
932
|
type: core
|
|
897
933
|
size: 8129
|
|
898
934
|
- path: core/orchestration/brownfield-handler.js
|
|
899
|
-
hash: sha256:
|
|
935
|
+
hash: sha256:8ef9a6d27f9d1d4145fbbfb8657691582aaf0c348278edd638d55fd139edddd4
|
|
900
936
|
type: core
|
|
901
|
-
size:
|
|
937
|
+
size: 28608
|
|
902
938
|
- path: core/orchestration/checklist-runner.js
|
|
903
939
|
hash: sha256:9bee322fb2572ef81361a3f695b2855f61d610739c612d8b6317cb1b5d6d84c9
|
|
904
940
|
type: core
|
|
@@ -936,25 +972,25 @@ files:
|
|
|
936
972
|
type: core
|
|
937
973
|
size: 11379
|
|
938
974
|
- path: core/orchestration/executors/epic-3-executor.js
|
|
939
|
-
hash: sha256:
|
|
975
|
+
hash: sha256:da06c2b492104e453a8b18b1333bd2fd24123efb4933ab623045bff657b6d1d2
|
|
940
976
|
type: core
|
|
941
|
-
size:
|
|
977
|
+
size: 9463
|
|
942
978
|
- path: core/orchestration/executors/epic-4-executor.js
|
|
943
|
-
hash: sha256:
|
|
979
|
+
hash: sha256:b830a13e8d6c44c462f2bc87623f6134143b43c7eb53dc489a1b1fa48ea04713
|
|
944
980
|
type: core
|
|
945
|
-
size:
|
|
981
|
+
size: 9172
|
|
946
982
|
- path: core/orchestration/executors/epic-5-executor.js
|
|
947
983
|
hash: sha256:865224cd6cb1f80c1228e149349aea5c335440201c9047f849d2ec85b73d3f03
|
|
948
984
|
type: core
|
|
949
985
|
size: 8543
|
|
950
986
|
- path: core/orchestration/executors/epic-6-executor.js
|
|
951
|
-
hash: sha256:
|
|
987
|
+
hash: sha256:0cd51d8989ac242b7c3da1ac149cc869827c777fe632bc22610921f31b25541c
|
|
952
988
|
type: core
|
|
953
|
-
size:
|
|
989
|
+
size: 12446
|
|
954
990
|
- path: core/orchestration/executors/epic-executor.js
|
|
955
|
-
hash: sha256:
|
|
991
|
+
hash: sha256:0c25d4799a6338252017d9deb2f73bbdbde58cd5f7bfe4ac0fccdc66fe0229d2
|
|
956
992
|
type: core
|
|
957
|
-
size:
|
|
993
|
+
size: 7160
|
|
958
994
|
- path: core/orchestration/executors/index.js
|
|
959
995
|
hash: sha256:eb474ba4a9017681d218d40920d7aed08591e5db2eda335eccc538e6a116b114
|
|
960
996
|
type: core
|
|
@@ -968,9 +1004,9 @@ files:
|
|
|
968
1004
|
type: core
|
|
969
1005
|
size: 15816
|
|
970
1006
|
- path: core/orchestration/greenfield-handler.js
|
|
971
|
-
hash: sha256:
|
|
1007
|
+
hash: sha256:33bb2c05c3aee3e02c247afd80e27051a8c0eeb9b32dd3c246d11d5db60773e6
|
|
972
1008
|
type: core
|
|
973
|
-
size:
|
|
1009
|
+
size: 40901
|
|
974
1010
|
- path: core/orchestration/index.js
|
|
975
1011
|
hash: sha256:f9c384b2daf2c86edc7e9d600586707b82c0e8d2677cdad6cfd86d1e99a23e9a
|
|
976
1012
|
type: core
|
|
@@ -980,17 +1016,17 @@ files:
|
|
|
980
1016
|
type: core
|
|
981
1017
|
size: 8667
|
|
982
1018
|
- path: core/orchestration/master-orchestrator.js
|
|
983
|
-
hash: sha256:
|
|
1019
|
+
hash: sha256:20187d7a36b06b3ad8667a51f0fe9b2e4c506c7c26f26f37d79ab397618442a1
|
|
984
1020
|
type: core
|
|
985
|
-
size:
|
|
1021
|
+
size: 60555
|
|
986
1022
|
- path: core/orchestration/message-formatter.js
|
|
987
1023
|
hash: sha256:4683565c3da6d33fa5aeb4629dfa525f90715cb3b3cbbaa4c8a8d952766839d7
|
|
988
1024
|
type: core
|
|
989
1025
|
size: 8344
|
|
990
1026
|
- path: core/orchestration/parallel-executor.js
|
|
991
|
-
hash: sha256:
|
|
1027
|
+
hash: sha256:f72ce9b96274082399af3ed63ec78def1a1e00a60ec7543bf15a510328e83d4e
|
|
992
1028
|
type: core
|
|
993
|
-
size:
|
|
1029
|
+
size: 6127
|
|
994
1030
|
- path: core/orchestration/recovery-handler.js
|
|
995
1031
|
hash: sha256:cfbf41b69336548b2fc4179a5513243491ca6eb501de3426f98254f118b074e7
|
|
996
1032
|
type: core
|
|
@@ -1024,9 +1060,9 @@ files:
|
|
|
1024
1060
|
type: core
|
|
1025
1061
|
size: 31516
|
|
1026
1062
|
- path: core/orchestration/workflow-executor.js
|
|
1027
|
-
hash: sha256:
|
|
1063
|
+
hash: sha256:8da67cc080ffaf4c2f2fc724d700ecb27ca05430ef0cc50356d78979da9f85a6
|
|
1028
1064
|
type: core
|
|
1029
|
-
size:
|
|
1065
|
+
size: 38128
|
|
1030
1066
|
- path: core/orchestration/workflow-orchestrator.js
|
|
1031
1067
|
hash: sha256:6e97eec88c8261f15bad79c47b0eafcfe39fbda5c837e156fe803802c3a1c18f
|
|
1032
1068
|
type: core
|
|
@@ -1096,9 +1132,9 @@ files:
|
|
|
1096
1132
|
type: core
|
|
1097
1133
|
size: 17718
|
|
1098
1134
|
- path: core/README.md
|
|
1099
|
-
hash: sha256:
|
|
1135
|
+
hash: sha256:66346a8362ef3ade8d18f491d86da9578d81ad9d0206380a62554bda707de80a
|
|
1100
1136
|
type: core
|
|
1101
|
-
size:
|
|
1137
|
+
size: 8176
|
|
1102
1138
|
- path: core/registry/build-registry.js
|
|
1103
1139
|
hash: sha256:4c9a2e686637a1050b9ffce349ca72957fcaa971d0c1f4a0eb4321d3c7159065
|
|
1104
1140
|
type: core
|
|
@@ -1119,6 +1155,10 @@ files:
|
|
|
1119
1155
|
hash: sha256:1b0b8a0acd2de9372e63a72c56afe1723ace3ecd64d42af38028f060059c3926
|
|
1120
1156
|
type: core
|
|
1121
1157
|
size: 289408
|
|
1158
|
+
- path: core/registry/squad-agent-resolver.js
|
|
1159
|
+
hash: sha256:04f7a4835f4a7d4430e2d495eb8e47af1d3f86158cb9de50797c85c7e4889d49
|
|
1160
|
+
type: core
|
|
1161
|
+
size: 8014
|
|
1122
1162
|
- path: core/registry/validate-registry.js
|
|
1123
1163
|
hash: sha256:8612f683f1b7ecd043a0342d05fbe434721b19568b6ff76a483a6de7aa830d5c
|
|
1124
1164
|
type: core
|
|
@@ -1279,6 +1319,10 @@ files:
|
|
|
1279
1319
|
hash: sha256:4f0b16538c3a2c2dbbe264e6edbe0ca2d943af49936d0de68b21be4a469f5492
|
|
1280
1320
|
type: core
|
|
1281
1321
|
size: 574
|
|
1322
|
+
- path: core/telemetry/ids-sink.js
|
|
1323
|
+
hash: sha256:0b2a8896c648aac7a7dcb0fbdb8b350c1199fc2ca501380fc84f35cc8c1e8dbf
|
|
1324
|
+
type: core
|
|
1325
|
+
size: 6338
|
|
1282
1326
|
- path: core/telemetry/index.js
|
|
1283
1327
|
hash: sha256:d1089c1743bf7679c3734f71f4d348c448053865c34fa30ba61648bfef30fb53
|
|
1284
1328
|
type: core
|
|
@@ -1288,17 +1332,17 @@ files:
|
|
|
1288
1332
|
type: core
|
|
1289
1333
|
size: 751
|
|
1290
1334
|
- path: core/ui/observability-panel.js
|
|
1291
|
-
hash: sha256:
|
|
1335
|
+
hash: sha256:5cf10da7121c57bb340590a3a55cde630ed60197ba33fc41d037a885497c97f6
|
|
1292
1336
|
type: core
|
|
1293
|
-
size:
|
|
1337
|
+
size: 16345
|
|
1294
1338
|
- path: core/ui/panel-renderer.js
|
|
1295
1339
|
hash: sha256:6543d3edecfd6a09dc39feabffebe5002f2ab1ccd6f5eaf5ca52fcb5272274af
|
|
1296
1340
|
type: core
|
|
1297
1341
|
size: 9676
|
|
1298
1342
|
- path: core/utils/output-formatter.js
|
|
1299
|
-
hash: sha256:
|
|
1343
|
+
hash: sha256:60fb5671c8c0c324b8b902a85a13905d74026a286d0090e94477e19cf10a746a
|
|
1300
1344
|
type: core
|
|
1301
|
-
size:
|
|
1345
|
+
size: 769
|
|
1302
1346
|
- path: core/utils/security-utils.js
|
|
1303
1347
|
hash: sha256:37e9e4174885cb58fa4fb533db455966d1649d20d4a2f4eb7915727b6e58ab84
|
|
1304
1348
|
type: core
|
|
@@ -1320,9 +1364,9 @@ files:
|
|
|
1320
1364
|
type: data
|
|
1321
1365
|
size: 9587
|
|
1322
1366
|
- path: data/entity-registry.yaml
|
|
1323
|
-
hash: sha256:
|
|
1367
|
+
hash: sha256:1b9f3692955053e6a2e6174b1ff3e337c873ddd75a13b918bf4fdc82ebec207a
|
|
1324
1368
|
type: data
|
|
1325
|
-
size:
|
|
1369
|
+
size: 558183
|
|
1326
1370
|
- path: data/learned-patterns.yaml
|
|
1327
1371
|
hash: sha256:1a4cd045c087b9dfd7046ff1464a9d2edb85fba77cf0b6fba14f4bb9004c741e
|
|
1328
1372
|
type: data
|
|
@@ -1448,17 +1492,17 @@ files:
|
|
|
1448
1492
|
type: agent
|
|
1449
1493
|
size: 1110
|
|
1450
1494
|
- path: development/agents/developer.md
|
|
1451
|
-
hash: sha256:
|
|
1495
|
+
hash: sha256:05e2e6362f95eb66c80e4f01dcb25232e283666c2195ec070e1bb59cc486ecb2
|
|
1452
1496
|
type: agent
|
|
1453
|
-
size:
|
|
1497
|
+
size: 29832
|
|
1454
1498
|
- path: development/agents/developer/MEMORY.md
|
|
1455
1499
|
hash: sha256:98e00ca0bd5b0b2fdfbcf8ad52256dd7f73df6236e2098618d63fae97652949a
|
|
1456
1500
|
type: agent
|
|
1457
1501
|
size: 2493
|
|
1458
1502
|
- path: development/agents/devops.md
|
|
1459
|
-
hash: sha256:
|
|
1503
|
+
hash: sha256:710906315093f603a8744f5e9733bf8bdbd2641519a7d8181016457a474bb511
|
|
1460
1504
|
type: agent
|
|
1461
|
-
size:
|
|
1505
|
+
size: 28207
|
|
1462
1506
|
- path: development/agents/devops/MEMORY.md
|
|
1463
1507
|
hash: sha256:c9c574566f3ab627135219eefb2e0039169016f4f0a8605b02593d0cfd38f071
|
|
1464
1508
|
type: agent
|
|
@@ -1488,9 +1532,9 @@ files:
|
|
|
1488
1532
|
type: agent
|
|
1489
1533
|
size: 1369
|
|
1490
1534
|
- path: development/agents/snps-orqx.md
|
|
1491
|
-
hash: sha256:
|
|
1535
|
+
hash: sha256:90bb4376f8ca2ab7bf2176ce51aeed9f04ab00ae14085be3ef7b82585f504193
|
|
1492
1536
|
type: agent
|
|
1493
|
-
size:
|
|
1537
|
+
size: 34541
|
|
1494
1538
|
- path: development/agents/sprint-lead.md
|
|
1495
1539
|
hash: sha256:572289b770cdbb0cff9ae2de4b2d19c38ce814fe978df397aa2794297f562c91
|
|
1496
1540
|
type: agent
|
|
@@ -1555,6 +1599,14 @@ files:
|
|
|
1555
1599
|
hash: sha256:c11f03e760547bfd0abbd0ea7d0e636c3f32527cb1a717811c481fce3fad49ea
|
|
1556
1600
|
type: data
|
|
1557
1601
|
size: 11117
|
|
1602
|
+
- path: development/external-executors/codex.md
|
|
1603
|
+
hash: sha256:c79a52c8d58db4c0c92f4146fafd557f1dafe9eda27b1ba899bea43118e3abbc
|
|
1604
|
+
type: development
|
|
1605
|
+
size: 1924
|
|
1606
|
+
- path: development/external-executors/README.md
|
|
1607
|
+
hash: sha256:f7d136b1255e1a25ad80b679ad7cca3f28ea19aa4274a1980ebc2dfbce7abdd0
|
|
1608
|
+
type: development
|
|
1609
|
+
size: 974
|
|
1558
1610
|
- path: development/knowledge-base/agent-communication-protocol.md
|
|
1559
1611
|
hash: sha256:2aeb80a48f338891729ec926d1c179d68310703a122e5922b01bbe251ff9ed74
|
|
1560
1612
|
type: development
|
|
@@ -1675,14 +1727,6 @@ files:
|
|
|
1675
1727
|
hash: sha256:d55d4a61ad34053338b29ecfbcf1d2547980ba884318c0752f7a9e3b22389460
|
|
1676
1728
|
type: script
|
|
1677
1729
|
size: 10668
|
|
1678
|
-
- path: development/scripts/elicitation-engine.js
|
|
1679
|
-
hash: sha256:4248602dc493a85354ddfc5c1ebb092080522426de24d819e274a970c113acdb
|
|
1680
|
-
type: script
|
|
1681
|
-
size: 10590
|
|
1682
|
-
- path: development/scripts/elicitation-session-manager.js
|
|
1683
|
-
hash: sha256:9cb2cb00d2679be5cf4bf40dded3a74873b671f22837a314f47248b62a1e42b1
|
|
1684
|
-
type: script
|
|
1685
|
-
size: 8115
|
|
1686
1730
|
- path: development/scripts/generate-greeting.js
|
|
1687
1731
|
hash: sha256:052b669917fe0934942cc85f613af8fe7302a9b7d70187c9558337bef3f9ec92
|
|
1688
1732
|
type: script
|
|
@@ -1732,9 +1776,9 @@ files:
|
|
|
1732
1776
|
type: script
|
|
1733
1777
|
size: 23414
|
|
1734
1778
|
- path: development/scripts/populate-entity-registry.js
|
|
1735
|
-
hash: sha256:
|
|
1779
|
+
hash: sha256:2232bebc783c13e222c7b80713eae016343406ab2a878b0c6950b0691202d8c1
|
|
1736
1780
|
type: script
|
|
1737
|
-
size:
|
|
1781
|
+
size: 25928
|
|
1738
1782
|
- path: development/scripts/refactoring-suggester.js
|
|
1739
1783
|
hash: sha256:66bf0be38efb417619e652c690d41337202dae7defa454bec73b010b05bb6db4
|
|
1740
1784
|
type: script
|
|
@@ -1772,9 +1816,9 @@ files:
|
|
|
1772
1816
|
type: script
|
|
1773
1817
|
size: 29549
|
|
1774
1818
|
- path: development/scripts/squad/squad-downloader.js
|
|
1775
|
-
hash: sha256:
|
|
1819
|
+
hash: sha256:5f937ed4ecbb3b45d3f92647ece93b73a39591bc117e64069ae8379a53bac6b0
|
|
1776
1820
|
type: script
|
|
1777
|
-
size:
|
|
1821
|
+
size: 21112
|
|
1778
1822
|
- path: development/scripts/squad/squad-extender.js
|
|
1779
1823
|
hash: sha256:0e8e1053d1844dd24b682e5884509d0a777ee6b348db2b8232b8c37ab57c6857
|
|
1780
1824
|
type: script
|
|
@@ -2004,25 +2048,25 @@ files:
|
|
|
2004
2048
|
type: task
|
|
2005
2049
|
size: 9966
|
|
2006
2050
|
- path: development/tasks/build-autonomous.md
|
|
2007
|
-
hash: sha256:
|
|
2051
|
+
hash: sha256:e8dab3d13ae816a1543a220561024b57d692a39a316ce29efd1ca7c6405ec304
|
|
2008
2052
|
type: task
|
|
2009
|
-
size:
|
|
2053
|
+
size: 6544
|
|
2010
2054
|
- path: development/tasks/build-component.md
|
|
2011
2055
|
hash: sha256:ec675379f47ca3f749994b9f009309b9c1500e76e5e88c7206d8a8d942001f93
|
|
2012
2056
|
type: task
|
|
2013
2057
|
size: 14020
|
|
2014
2058
|
- path: development/tasks/build-resume.md
|
|
2015
|
-
hash: sha256:
|
|
2059
|
+
hash: sha256:5eb57ca6ffbc122c3164ac1fe289eef036db443d9d5d5a8e99c0c92087df31ce
|
|
2016
2060
|
type: task
|
|
2017
|
-
size:
|
|
2061
|
+
size: 2897
|
|
2018
2062
|
- path: development/tasks/build-status.md
|
|
2019
|
-
hash: sha256:
|
|
2063
|
+
hash: sha256:b6f5d04524fe65f5cb74141c043519a04e1ec32fa7b1e54d139d3d5d5c492690
|
|
2020
2064
|
type: task
|
|
2021
|
-
size:
|
|
2065
|
+
size: 4175
|
|
2022
2066
|
- path: development/tasks/build.md
|
|
2023
|
-
hash: sha256:
|
|
2067
|
+
hash: sha256:5bd9978b7ea75c7397a0ec3f355c3fd5c828ab545f738609ecc1af0792eb5cdb
|
|
2024
2068
|
type: task
|
|
2025
|
-
size:
|
|
2069
|
+
size: 4644
|
|
2026
2070
|
- path: development/tasks/calculate-roi.md
|
|
2027
2071
|
hash: sha256:cb8308710f273c036632a9ffc3948612aacc563c0ca669b84a710a9e55d8b9a4
|
|
2028
2072
|
type: task
|
|
@@ -2040,9 +2084,9 @@ files:
|
|
|
2040
2084
|
type: task
|
|
2041
2085
|
size: 17929
|
|
2042
2086
|
- path: development/tasks/cleanup-worktrees.md
|
|
2043
|
-
hash: sha256:
|
|
2087
|
+
hash: sha256:2e6c43425ae86e336884246cb3ab8a6712d5715e34e1dbbfc3f488ae9965303b
|
|
2044
2088
|
type: task
|
|
2045
|
-
size:
|
|
2089
|
+
size: 1091
|
|
2046
2090
|
- path: development/tasks/collaborative-edit.md
|
|
2047
2091
|
hash: sha256:2d53575477d4b69c42c727390c7b32e44ccfa9719b8e496fda600b2850cf95ec
|
|
2048
2092
|
type: task
|
|
@@ -2179,6 +2223,10 @@ files:
|
|
|
2179
2223
|
hash: sha256:37f16d550070b9a8f5ffba2b26f129e986f746cf60f7d3a9337685e52a5e9fe5
|
|
2180
2224
|
type: task
|
|
2181
2225
|
size: 11494
|
|
2226
|
+
- path: development/tasks/delegate-to-external-executor.md
|
|
2227
|
+
hash: sha256:acabae837bce23bc31241fcbc5b1c53137fb7474a9359812d39693252d63300e
|
|
2228
|
+
type: task
|
|
2229
|
+
size: 4499
|
|
2182
2230
|
- path: development/tasks/deprecate-component.md
|
|
2183
2231
|
hash: sha256:cdb28835babface7ddc3e464f889d0502834fe01b759020f063fe25f9cfacd9e
|
|
2184
2232
|
type: task
|
|
@@ -2280,9 +2328,9 @@ files:
|
|
|
2280
2328
|
type: task
|
|
2281
2329
|
size: 19505
|
|
2282
2330
|
- path: development/tasks/github-devops-pre-push-quality-gate.md
|
|
2283
|
-
hash: sha256:
|
|
2331
|
+
hash: sha256:90969a5b843c976b8cd902c55517589c64c88bd4001590dbc4b107703fa12ce6
|
|
2284
2332
|
type: task
|
|
2285
|
-
size:
|
|
2333
|
+
size: 24774
|
|
2286
2334
|
- path: development/tasks/github-devops-repository-cleanup.md
|
|
2287
2335
|
hash: sha256:0cc4129dd7139badf882650a01fcee93a4c181f8d8eb70213fe721fa0ee63e9c
|
|
2288
2336
|
type: task
|
|
@@ -2296,13 +2344,13 @@ files:
|
|
|
2296
2344
|
type: task
|
|
2297
2345
|
size: 3889
|
|
2298
2346
|
- path: development/tasks/gotcha.md
|
|
2299
|
-
hash: sha256:
|
|
2347
|
+
hash: sha256:3df82784f72fd1cc3d3ad1dbf524c1023d1e0b9e5d16de8e745654f72827a33e
|
|
2300
2348
|
type: task
|
|
2301
|
-
size:
|
|
2349
|
+
size: 3670
|
|
2302
2350
|
- path: development/tasks/gotchas.md
|
|
2303
|
-
hash: sha256:
|
|
2351
|
+
hash: sha256:564ae42e4e46dffb6eafe2bafc1674e513535013a21140926e8c7eda8c4cb4ff
|
|
2304
2352
|
type: task
|
|
2305
|
-
size:
|
|
2353
|
+
size: 3827
|
|
2306
2354
|
- path: development/tasks/health-check.yaml
|
|
2307
2355
|
hash: sha256:eba22298ddc94793d654be4d4082e767cd4a9157f7b7bce54ab3496cd189b43e
|
|
2308
2356
|
type: task
|
|
@@ -2312,9 +2360,9 @@ files:
|
|
|
2312
2360
|
type: task
|
|
2313
2361
|
size: 3026
|
|
2314
2362
|
- path: development/tasks/ids-health.md
|
|
2315
|
-
hash: sha256:
|
|
2363
|
+
hash: sha256:d3bece995350c2226e62aad89606e4b9186b2ce7160eb2e45f91f15afa54ac5b
|
|
2316
2364
|
type: task
|
|
2317
|
-
size:
|
|
2365
|
+
size: 2447
|
|
2318
2366
|
- path: development/tasks/ids-query.md
|
|
2319
2367
|
hash: sha256:0c90561234aff5e13fd6a35adc4871c1da3dedff4c0ceafa1c1f5cba7a63b43a
|
|
2320
2368
|
type: task
|
|
@@ -2348,9 +2396,9 @@ files:
|
|
|
2348
2396
|
type: task
|
|
2349
2397
|
size: 26902
|
|
2350
2398
|
- path: development/tasks/list-mcps.md
|
|
2351
|
-
hash: sha256:
|
|
2399
|
+
hash: sha256:cac66f5235352e0efddee807f140891d10357b5793a8f6e9e4456b8239a538d3
|
|
2352
2400
|
type: task
|
|
2353
|
-
size:
|
|
2401
|
+
size: 902
|
|
2354
2402
|
- path: development/tasks/list-worktrees.md
|
|
2355
2403
|
hash: sha256:a532fb1802b2cee8ceda90b780f44e6be419a981489baabf69602752e2b4629f
|
|
2356
2404
|
type: task
|
|
@@ -2364,9 +2412,9 @@ files:
|
|
|
2364
2412
|
type: task
|
|
2365
2413
|
size: 8857
|
|
2366
2414
|
- path: development/tasks/merge-worktree.md
|
|
2367
|
-
hash: sha256:
|
|
2415
|
+
hash: sha256:8b3a07c5885147c854963fdcc7f872a9bebdbf7c48559d7b85839db2ff8d590c
|
|
2368
2416
|
type: task
|
|
2369
|
-
size:
|
|
2417
|
+
size: 1164
|
|
2370
2418
|
- path: development/tasks/modify-agent.md
|
|
2371
2419
|
hash: sha256:e91aae655812988e8a320366473546db1a27906e97d33ca9e1d641a4cdf99898
|
|
2372
2420
|
type: task
|
|
@@ -2520,9 +2568,9 @@ files:
|
|
|
2520
2568
|
type: task
|
|
2521
2569
|
size: 12165
|
|
2522
2570
|
- path: development/tasks/qa-review-build.md
|
|
2523
|
-
hash: sha256:
|
|
2571
|
+
hash: sha256:11f3374377b5ffd3d6cd2d962574d40b96caa3e0ff19d91c74103e7505678636
|
|
2524
2572
|
type: task
|
|
2525
|
-
size:
|
|
2573
|
+
size: 31228
|
|
2526
2574
|
- path: development/tasks/qa-review-proposal.md
|
|
2527
2575
|
hash: sha256:bc70dc191efed569af181c47e9fa377c773ecb9fafc0d7880e3385ee82eebeca
|
|
2528
2576
|
type: task
|
|
@@ -2556,9 +2604,9 @@ files:
|
|
|
2556
2604
|
type: task
|
|
2557
2605
|
size: 18978
|
|
2558
2606
|
- path: development/tasks/remove-mcp.md
|
|
2559
|
-
hash: sha256:
|
|
2607
|
+
hash: sha256:d672e0f0500decdefef21a0a10e90b7da60ff587fa169c69767bb3542f71d5d4
|
|
2560
2608
|
type: task
|
|
2561
|
-
size:
|
|
2609
|
+
size: 863
|
|
2562
2610
|
- path: development/tasks/remove-worktree.md
|
|
2563
2611
|
hash: sha256:591213371449e8260b32e3d1e179a2286f2018d613825d6aec44a5c33ebff060
|
|
2564
2612
|
type: task
|
|
@@ -2719,10 +2767,6 @@ files:
|
|
|
2719
2767
|
hash: sha256:93642974ba45bf22e00eb311a0b5afca656bb6efc0264bd5a27f4d94ddb54979
|
|
2720
2768
|
type: task
|
|
2721
2769
|
size: 14052
|
|
2722
|
-
- path: development/tasks/test-validation-task.md
|
|
2723
|
-
hash: sha256:41f0efff2782a64d2e09af78df8926a5b0c3f29d705a85e1eb0774c67dca09de
|
|
2724
|
-
type: task
|
|
2725
|
-
size: 3345
|
|
2726
2770
|
- path: development/tasks/triage-github-issues.md
|
|
2727
2771
|
hash: sha256:460d80252993ff6da04cec6112918c52df643db8a259bde4c8501a9e88ffa3e5
|
|
2728
2772
|
type: task
|
|
@@ -2736,9 +2780,9 @@ files:
|
|
|
2736
2780
|
type: task
|
|
2737
2781
|
size: 9751
|
|
2738
2782
|
- path: development/tasks/update-sinapse.md
|
|
2739
|
-
hash: sha256:
|
|
2783
|
+
hash: sha256:8152c56906792345c8cac62332e251557c51bcb2e53e529cdc98bce969dde950
|
|
2740
2784
|
type: task
|
|
2741
|
-
size:
|
|
2785
|
+
size: 4203
|
|
2742
2786
|
- path: development/tasks/update-source-tree.md
|
|
2743
2787
|
hash: sha256:3d1f27e628574e07c0147cadbd9f7a2beb347ab3274c1ddafff1ab2496218c64
|
|
2744
2788
|
type: task
|
|
@@ -2756,9 +2800,9 @@ files:
|
|
|
2756
2800
|
type: task
|
|
2757
2801
|
size: 13282
|
|
2758
2802
|
- path: development/tasks/validate-agents.md
|
|
2759
|
-
hash: sha256:
|
|
2803
|
+
hash: sha256:82048e2abf2c1278ff0df5fbfe4601bf22ea0450b16d66b8101a366a9bb39c14
|
|
2760
2804
|
type: task
|
|
2761
|
-
size:
|
|
2805
|
+
size: 4206
|
|
2762
2806
|
- path: development/tasks/validate-next-story.md
|
|
2763
2807
|
hash: sha256:f41c4b1014bc850dcf4b5222398cc5442cd18d11b4a4e29f4e4d21f515e940fa
|
|
2764
2808
|
type: task
|
|
@@ -2906,19 +2950,19 @@ files:
|
|
|
2906
2950
|
- path: development/templates/service-template/__tests__/index.test.ts.hbs
|
|
2907
2951
|
hash: sha256:41c113e42f2fba15fc22efdaf977b342c55f56a63bb951fc8d894a22d1002ba9
|
|
2908
2952
|
type: template
|
|
2909
|
-
size:
|
|
2953
|
+
size: 9577
|
|
2910
2954
|
- path: development/templates/service-template/client.ts.hbs
|
|
2911
2955
|
hash: sha256:60f6d77badea704ba2371db1cb9203d89d46977ae2f1fd3db6126caac2eda1dc
|
|
2912
2956
|
type: template
|
|
2913
|
-
size:
|
|
2957
|
+
size: 11814
|
|
2914
2958
|
- path: development/templates/service-template/errors.ts.hbs
|
|
2915
2959
|
hash: sha256:767ba8f42867a3b203ef695dc8949b2cab5a3843d4968d2908dd0ec59532d73c
|
|
2916
2960
|
type: template
|
|
2917
|
-
size:
|
|
2961
|
+
size: 5217
|
|
2918
2962
|
- path: development/templates/service-template/index.ts.hbs
|
|
2919
2963
|
hash: sha256:d89c6c0dd1d852aa05a0ea86c6bcfb82344a98f44a4b28fed01d56e9a9b69d2e
|
|
2920
2964
|
type: template
|
|
2921
|
-
size:
|
|
2965
|
+
size: 3090
|
|
2922
2966
|
- path: development/templates/service-template/jest.config.js
|
|
2923
2967
|
hash: sha256:5ac8aca19d48642852318eb73f7765ea942b2432b9443787274a58650df6c082
|
|
2924
2968
|
type: template
|
|
@@ -2926,11 +2970,11 @@ files:
|
|
|
2926
2970
|
- path: development/templates/service-template/package.json.hbs
|
|
2927
2971
|
hash: sha256:7531ae3a8b6acaa90b7283835ed8a6a3597818a05dcb751456b5fae1adf4fa86
|
|
2928
2972
|
type: template
|
|
2929
|
-
size:
|
|
2973
|
+
size: 2249
|
|
2930
2974
|
- path: development/templates/service-template/README.md.hbs
|
|
2931
2975
|
hash: sha256:1d78ab5f85c5ab4004f51d2f2547cdf544f8a300f7e2eef1d8f9f3f3cae15def
|
|
2932
2976
|
type: template
|
|
2933
|
-
size:
|
|
2977
|
+
size: 3442
|
|
2934
2978
|
- path: development/templates/service-template/tsconfig.json
|
|
2935
2979
|
hash: sha256:57c0f40ea623a12caa16ff026496290e44129b3b8101943ab99a38f90d135f7f
|
|
2936
2980
|
type: template
|
|
@@ -2938,7 +2982,7 @@ files:
|
|
|
2938
2982
|
- path: development/templates/service-template/types.ts.hbs
|
|
2939
2983
|
hash: sha256:0d0e011c8c96d853aee915b8ab9f343dd57653371907bb1ba1217481e208de08
|
|
2940
2984
|
type: template
|
|
2941
|
-
size:
|
|
2985
|
+
size: 2520
|
|
2942
2986
|
- path: development/templates/sinapse-doc-template.md
|
|
2943
2987
|
hash: sha256:a31589a53c55e408f038b4a713942af1c327726a051485fc5e5a03eb2e4a179f
|
|
2944
2988
|
type: template
|
|
@@ -2950,7 +2994,7 @@ files:
|
|
|
2950
2994
|
- path: development/templates/squad-template/LICENSE
|
|
2951
2995
|
hash: sha256:03c185d841d9f5ab92870a3e00596828fa4ca88f7977e485df96c8acc7222ec5
|
|
2952
2996
|
type: template
|
|
2953
|
-
size:
|
|
2997
|
+
size: 1072
|
|
2954
2998
|
- path: development/templates/squad-template/package.json
|
|
2955
2999
|
hash: sha256:e0e0b508fa0c4c0a059002fb79b87d93238cf3de33e9af14ba129eb292caece5
|
|
2956
3000
|
type: template
|
|
@@ -3152,17 +3196,17 @@ files:
|
|
|
3152
3196
|
type: infrastructure
|
|
3153
3197
|
size: 6898
|
|
3154
3198
|
- path: infrastructure/integrations/ai-providers/ai-provider-factory.js
|
|
3155
|
-
hash: sha256:
|
|
3199
|
+
hash: sha256:f31d9854d2b239c90668dc7fb53e149fb6cf1ead6a4fd67d5f2e35d3495a4d49
|
|
3156
3200
|
type: infrastructure
|
|
3157
|
-
size:
|
|
3201
|
+
size: 7207
|
|
3158
3202
|
- path: infrastructure/integrations/ai-providers/ai-provider.js
|
|
3159
3203
|
hash: sha256:d96ffea1f0f453bc9d0fab4f173d4e97090f67943741712b34f5731b87fc68d7
|
|
3160
3204
|
type: infrastructure
|
|
3161
3205
|
size: 4508
|
|
3162
3206
|
- path: infrastructure/integrations/ai-providers/claude-provider.js
|
|
3163
|
-
hash: sha256:
|
|
3207
|
+
hash: sha256:7cf8064d3c2b736239295a866a23c76b6b0db1a30bef4efbcc4f6cdf98d9da13
|
|
3164
3208
|
type: infrastructure
|
|
3165
|
-
size:
|
|
3209
|
+
size: 5365
|
|
3166
3210
|
- path: infrastructure/integrations/ai-providers/index.js
|
|
3167
3211
|
hash: sha256:faa9c1663fee99f2c542b1e99e9cdea31b5fe9dd85e3c961aa1aa2e6d8e25f79
|
|
3168
3212
|
type: infrastructure
|
|
@@ -3263,6 +3307,10 @@ files:
|
|
|
3263
3307
|
hash: sha256:cfef97860788a119c44cbb18b4249ad538814f99a03b2ca13e66dd74aa8b5242
|
|
3264
3308
|
type: script
|
|
3265
3309
|
size: 3527
|
|
3310
|
+
- path: infrastructure/scripts/codex-parity/resolve.js
|
|
3311
|
+
hash: sha256:bc12b757b1d1e93ebaa02f08b197ee8ff9fc9895b51e84d196e662fa837a8550
|
|
3312
|
+
type: script
|
|
3313
|
+
size: 5003
|
|
3266
3314
|
- path: infrastructure/scripts/codex-skills-sync/index.js
|
|
3267
3315
|
hash: sha256:9eb2637a4f1f6edeabf358734b14e4c709bed37560f2e40aebf1ea3ef4572c3c
|
|
3268
3316
|
type: script
|
|
@@ -3308,9 +3356,9 @@ files:
|
|
|
3308
3356
|
type: script
|
|
3309
3357
|
size: 28264
|
|
3310
3358
|
- path: infrastructure/scripts/dashboard-status-writer.js
|
|
3311
|
-
hash: sha256:
|
|
3359
|
+
hash: sha256:6a38a2528850fb22e9ce99c8c8c670236393ac5b929c7dad8021d617129d6107
|
|
3312
3360
|
type: script
|
|
3313
|
-
size:
|
|
3361
|
+
size: 8122
|
|
3314
3362
|
- path: infrastructure/scripts/dependency-analyzer.js
|
|
3315
3363
|
hash: sha256:f00ba05e0d2cd3ce7366d919e6a645055671dfa2413a91aba2774902a378d958
|
|
3316
3364
|
type: script
|
|
@@ -3388,9 +3436,13 @@ files:
|
|
|
3388
3436
|
type: script
|
|
3389
3437
|
size: 8847
|
|
3390
3438
|
- path: infrastructure/scripts/ide-sync/index.js
|
|
3391
|
-
hash: sha256:
|
|
3439
|
+
hash: sha256:b2cb08dc1d0e7c6c22436c11f073cdaae9516b28a55ad5a454412e87aaf59bba
|
|
3392
3440
|
type: script
|
|
3393
|
-
size:
|
|
3441
|
+
size: 18011
|
|
3442
|
+
- path: infrastructure/scripts/ide-sync/persona-renderer.js
|
|
3443
|
+
hash: sha256:44f76be1e48c4a6271d8c721687d8788d2317a1163d74731abfe97f36775334d
|
|
3444
|
+
type: script
|
|
3445
|
+
size: 3638
|
|
3394
3446
|
- path: infrastructure/scripts/ide-sync/README.md
|
|
3395
3447
|
hash: sha256:9d7730fbb6c3fe3fc826bddb36987ce008b7b80cf0ea7a8b07e8a2c20484aba1
|
|
3396
3448
|
type: script
|
|
@@ -3584,9 +3636,9 @@ files:
|
|
|
3584
3636
|
type: script
|
|
3585
3637
|
size: 22395
|
|
3586
3638
|
- path: infrastructure/scripts/sync-codex-local-first.js
|
|
3587
|
-
hash: sha256:
|
|
3639
|
+
hash: sha256:4e58f3753cdcd34465eeb70793034e71b0ae2f1061c2be92630ce74982ca5384
|
|
3588
3640
|
type: script
|
|
3589
|
-
size:
|
|
3641
|
+
size: 9592
|
|
3590
3642
|
- path: infrastructure/scripts/template-engine.js
|
|
3591
3643
|
hash: sha256:b041c986d0a2dafcb4e53035b424bfcc63694ba3b31a3ad486852e3bb95f53b4
|
|
3592
3644
|
type: script
|
|
@@ -3640,13 +3692,13 @@ files:
|
|
|
3640
3692
|
type: script
|
|
3641
3693
|
size: 7266
|
|
3642
3694
|
- path: infrastructure/scripts/validate-codex-delegation.js
|
|
3643
|
-
hash: sha256:
|
|
3695
|
+
hash: sha256:2c19c2b38d7fc44e1717b87101d7aac9e3803a0b538a4a8fa8ecb1324ef15744
|
|
3644
3696
|
type: script
|
|
3645
|
-
size:
|
|
3697
|
+
size: 9538
|
|
3646
3698
|
- path: infrastructure/scripts/validate-codex-integration.js
|
|
3647
|
-
hash: sha256:
|
|
3699
|
+
hash: sha256:78fceff77e8b0d2493920b89fa5ded9010575191f60f7411d45432b3fc9698b8
|
|
3648
3700
|
type: script
|
|
3649
|
-
size:
|
|
3701
|
+
size: 6418
|
|
3650
3702
|
- path: infrastructure/scripts/validate-codex-sync.js
|
|
3651
3703
|
hash: sha256:31bcfc0cdf307e7c14064eaf0ddbf99a14344c21306937c9a7d9cc7ebba260f8
|
|
3652
3704
|
type: script
|
|
@@ -3686,15 +3738,15 @@ files:
|
|
|
3686
3738
|
- path: infrastructure/templates/coderabbit.yaml.template
|
|
3687
3739
|
hash: sha256:c56a83af5c7cf782ef976530b465b40b6df6f945ec5a4c2a83d04da3a31ea0bb
|
|
3688
3740
|
type: template
|
|
3689
|
-
size:
|
|
3741
|
+
size: 8046
|
|
3690
3742
|
- path: infrastructure/templates/config/env.example
|
|
3691
3743
|
hash: sha256:a7c757f69b37d712e3cd323870b0d06b60a72d28e2eff18b47517899c73fb011
|
|
3692
3744
|
type: template
|
|
3693
|
-
size:
|
|
3745
|
+
size: 663
|
|
3694
3746
|
- path: infrastructure/templates/config/gitignore-additions.tmpl
|
|
3695
3747
|
hash: sha256:04532e3ae1e2a6efa864e8ab61c00670a5db82e0dfa1ba84c52996aa8be3b300
|
|
3696
3748
|
type: template
|
|
3697
|
-
size:
|
|
3749
|
+
size: 708
|
|
3698
3750
|
- path: infrastructure/templates/core-config/core-config-brownfield.tmpl.yaml
|
|
3699
3751
|
hash: sha256:34955d66b70112be19362815ab8758070da7169db0447afc72dfa42ad553a680
|
|
3700
3752
|
type: template
|
|
@@ -3706,11 +3758,11 @@ files:
|
|
|
3706
3758
|
- path: infrastructure/templates/github-workflows/ci.yml.template
|
|
3707
3759
|
hash: sha256:3377d5d4a2af43ee6c4ae069539a9a6ad299283831c0179525162a27e143c599
|
|
3708
3760
|
type: template
|
|
3709
|
-
size:
|
|
3761
|
+
size: 4927
|
|
3710
3762
|
- path: infrastructure/templates/github-workflows/pr-automation.yml.template
|
|
3711
3763
|
hash: sha256:c0bd678d91f5fd9ceab5b060f2a2c3d8b30cc323365a60900c41575652f8b170
|
|
3712
3764
|
type: template
|
|
3713
|
-
size:
|
|
3765
|
+
size: 10619
|
|
3714
3766
|
- path: infrastructure/templates/github-workflows/README.md
|
|
3715
3767
|
hash: sha256:19e8239a844676c0f3843b1c80d69e51ecab36305b0d68912582b629d775adc1
|
|
3716
3768
|
type: template
|
|
@@ -3718,7 +3770,7 @@ files:
|
|
|
3718
3770
|
- path: infrastructure/templates/github-workflows/release.yml.template
|
|
3719
3771
|
hash: sha256:e0c0ca04e0601f0f4157ca5aeaa7538c266a151118d19ca7592703612c6fcf07
|
|
3720
3772
|
type: template
|
|
3721
|
-
size:
|
|
3773
|
+
size: 6605
|
|
3722
3774
|
- path: infrastructure/templates/github/ci-template.yml
|
|
3723
3775
|
hash: sha256:76f6000b456f0574562c4b8a46b1e5922c2ce5f8115da1a548872935996005ab
|
|
3724
3776
|
type: template
|
|
@@ -3726,7 +3778,7 @@ files:
|
|
|
3726
3778
|
- path: infrastructure/templates/github/CODEOWNERS.template
|
|
3727
3779
|
hash: sha256:e484867dbce95078ed29378041db526873b7194cd1fd297aa3ff1b880937dc44
|
|
3728
3780
|
type: template
|
|
3729
|
-
size:
|
|
3781
|
+
size: 309
|
|
3730
3782
|
- path: infrastructure/templates/github/issue-templates/bug_report.md
|
|
3731
3783
|
hash: sha256:380e9e885504464968cae940ff6c0b457c7935e1f33045ace3236fe8fe7c4a06
|
|
3732
3784
|
type: template
|
|
@@ -3742,19 +3794,19 @@ files:
|
|
|
3742
3794
|
- path: infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl
|
|
3743
3795
|
hash: sha256:43cd686b77e9a4f89b79b84313fcc9d5556ad94882e326c22b4fe7e89ec943c0
|
|
3744
3796
|
type: template
|
|
3745
|
-
size:
|
|
3797
|
+
size: 509
|
|
3746
3798
|
- path: infrastructure/templates/gitignore/gitignore-node.tmpl
|
|
3747
3799
|
hash: sha256:504bf428128606cace6ea711b6cb96faad1da7673d5d2224508e563d247bb75b
|
|
3748
3800
|
type: template
|
|
3749
|
-
size:
|
|
3801
|
+
size: 955
|
|
3750
3802
|
- path: infrastructure/templates/gitignore/gitignore-python.tmpl
|
|
3751
3803
|
hash: sha256:333daadb1b9924f4f289e409cf66ccf079b0d3fe0459be713af93d0264e1818d
|
|
3752
3804
|
type: template
|
|
3753
|
-
size:
|
|
3805
|
+
size: 1584
|
|
3754
3806
|
- path: infrastructure/templates/gitignore/gitignore-sinapse-base.tmpl
|
|
3755
3807
|
hash: sha256:5c2ed40db81c01b3a0f858c8c572dd5ef1e5078f9e9ce1e5e1b05ab7a68bd5a6
|
|
3756
3808
|
type: template
|
|
3757
|
-
size:
|
|
3809
|
+
size: 802
|
|
3758
3810
|
- path: infrastructure/templates/project-docs/coding-standards-tmpl.md
|
|
3759
3811
|
hash: sha256:17d6b7d0d6f711e472d509f5a17a5be9c76af8f801c317054ddd176efc515ada
|
|
3760
3812
|
type: template
|
|
@@ -3774,7 +3826,7 @@ files:
|
|
|
3774
3826
|
- path: infrastructure/templates/safe-collab/CODEOWNERS.template
|
|
3775
3827
|
hash: sha256:988d5f6e373df03913d84c11cc42af42917f702920059ef296b2b236be7387e8
|
|
3776
3828
|
type: template
|
|
3777
|
-
size:
|
|
3829
|
+
size: 476
|
|
3778
3830
|
- path: infrastructure/templates/safe-collab/parallel-workflow-guide.md
|
|
3779
3831
|
hash: sha256:773473b226fe19eb5f6b9769f28c3388fba6f0700ca4c2bd80af9891f34dc433
|
|
3780
3832
|
type: template
|
|
@@ -3794,7 +3846,7 @@ files:
|
|
|
3794
3846
|
- path: infrastructure/templates/sinapse-sync.yaml.template
|
|
3795
3847
|
hash: sha256:63c094174a3ea635c57aec88865b6b7a588e7cc56f31d0c7738a3a6488c88a76
|
|
3796
3848
|
type: template
|
|
3797
|
-
size:
|
|
3849
|
+
size: 8398
|
|
3798
3850
|
- path: infrastructure/tests/project-status-loader.test.js
|
|
3799
3851
|
hash: sha256:2a35c19a1cf6fd4f9dd0624cd07314c78880ea6e0f8ba4011613686da0553741
|
|
3800
3852
|
type: infrastructure
|
|
@@ -3875,46 +3927,6 @@ files:
|
|
|
3875
3927
|
hash: sha256:709d0b8ac0c296392128069490331fa488fec56b9908556f36fc04c96c91aab5
|
|
3876
3928
|
type: manifest
|
|
3877
3929
|
size: 5298
|
|
3878
|
-
- path: monitor/hooks/lib/__init__.py
|
|
3879
|
-
hash: sha256:976c18b35a0c259acdbdbc7c9621e7a29cf8cf105374242c246874103abf325b
|
|
3880
|
-
type: monitor
|
|
3881
|
-
size: 35
|
|
3882
|
-
- path: monitor/hooks/lib/enrich.py
|
|
3883
|
-
hash: sha256:0572338e1db4c7397f520111fe018501891b5421676618673db4ba7ab499f116
|
|
3884
|
-
type: monitor
|
|
3885
|
-
size: 1753
|
|
3886
|
-
- path: monitor/hooks/lib/send_event.py
|
|
3887
|
-
hash: sha256:b1d301e3992dfc7066b1a47837914c64c9cdfaf949aacfae6767d703f5b0e48c
|
|
3888
|
-
type: monitor
|
|
3889
|
-
size: 1251
|
|
3890
|
-
- path: monitor/hooks/notification.py
|
|
3891
|
-
hash: sha256:9af8df8b6d1906e4a0ee38d398671f2717c0248679b91877ed903d543291d670
|
|
3892
|
-
type: monitor
|
|
3893
|
-
size: 533
|
|
3894
|
-
- path: monitor/hooks/post_tool_use.py
|
|
3895
|
-
hash: sha256:5508704ce2e8779bed5f2d3f296c341ce12940f44d25cb757dce51d7365aec8c
|
|
3896
|
-
type: monitor
|
|
3897
|
-
size: 1190
|
|
3898
|
-
- path: monitor/hooks/pre_compact.py
|
|
3899
|
-
hash: sha256:ea8c523d0d4bf68aa0b8e6f6ffebc2947f62b30be1114fb04a1423ef503a91d6
|
|
3900
|
-
type: monitor
|
|
3901
|
-
size: 534
|
|
3902
|
-
- path: monitor/hooks/pre_tool_use.py
|
|
3903
|
-
hash: sha256:3a5efe97128628e570aaa1b62fa8064ff014302072670f9049db638885c845ef
|
|
3904
|
-
type: monitor
|
|
3905
|
-
size: 1026
|
|
3906
|
-
- path: monitor/hooks/stop.py
|
|
3907
|
-
hash: sha256:62a86a40100741d512454e5b98f8a8b60e97debb1e2977d4c72370a61212fe7f
|
|
3908
|
-
type: monitor
|
|
3909
|
-
size: 524
|
|
3910
|
-
- path: monitor/hooks/subagent_stop.py
|
|
3911
|
-
hash: sha256:fd98d46d230efb37b93a17e100b2e48ecc07ca3a9c90f2ab5cf1df23a798aaa7
|
|
3912
|
-
type: monitor
|
|
3913
|
-
size: 546
|
|
3914
|
-
- path: monitor/hooks/user_prompt_submit.py
|
|
3915
|
-
hash: sha256:5dad0c7c8de1f48f7e38587853e3b1833a0ae0bdf0eab5936687d709bf9d6d8d
|
|
3916
|
-
type: monitor
|
|
3917
|
-
size: 861
|
|
3918
3930
|
- path: package.json
|
|
3919
3931
|
hash: sha256:a79897e7e5ce54e4dec3baea4020b96f4c9c41e23c49511becf7438761362400
|
|
3920
3932
|
type: other
|
|
@@ -4062,7 +4074,7 @@ files:
|
|
|
4062
4074
|
- path: product/templates/adr.hbs
|
|
4063
4075
|
hash: sha256:7825131e30ee9f473e10258682981fd6cb7fb47e1c276ad79d3b777eaaecc62c
|
|
4064
4076
|
type: template
|
|
4065
|
-
size:
|
|
4077
|
+
size: 2216
|
|
4066
4078
|
- path: product/templates/agent-template.yaml
|
|
4067
4079
|
hash: sha256:391e0728db257b309602bea13e322560ea4227c34382fa66eb6283583b4da8f9
|
|
4068
4080
|
type: template
|
|
@@ -4110,7 +4122,7 @@ files:
|
|
|
4110
4122
|
- path: product/templates/dbdr.hbs
|
|
4111
4123
|
hash: sha256:a2824092c2ba2122c1d0245b91bf70f6558f940bcb3cbd17a29fcf7d8c4ab7ef
|
|
4112
4124
|
type: template
|
|
4113
|
-
size:
|
|
4125
|
+
size: 4143
|
|
4114
4126
|
- path: product/templates/design-story-tmpl.yaml
|
|
4115
4127
|
hash: sha256:fe712fb22f54364b1aafec2603c79546f6f70fb1de7dd7cde9563e47997a8557
|
|
4116
4128
|
type: template
|
|
@@ -4174,7 +4186,7 @@ files:
|
|
|
4174
4186
|
- path: product/templates/epic.hbs
|
|
4175
4187
|
hash: sha256:9e0cefd86eda74afac7f151c3aff97011fc0d0322f7f7180eeeadea157c2c508
|
|
4176
4188
|
type: template
|
|
4177
|
-
size:
|
|
4189
|
+
size: 3875
|
|
4178
4190
|
- path: product/templates/eslintrc-security.json
|
|
4179
4191
|
hash: sha256:12e0599450d6f6167e4cd9eeee0fd504e257c3af85d855e8a8b3f8a5253e89f4
|
|
4180
4192
|
type: template
|
|
@@ -4212,9 +4224,9 @@ files:
|
|
|
4212
4224
|
type: template
|
|
4213
4225
|
size: 13393
|
|
4214
4226
|
- path: product/templates/ide-rules/codex-rules.md
|
|
4215
|
-
hash: sha256:
|
|
4227
|
+
hash: sha256:f2ba69b86236271970537e4284edbc819379337fed8fd2c8ff2c9a1ffa1b9bbf
|
|
4216
4228
|
type: template
|
|
4217
|
-
size:
|
|
4229
|
+
size: 4568
|
|
4218
4230
|
- path: product/templates/index-strategy-tmpl.yaml
|
|
4219
4231
|
hash: sha256:a8a9e627393e58a052a94806026d7a842065ceb2efa14cfa6e241d0d778fc39a
|
|
4220
4232
|
type: template
|
|
@@ -4262,7 +4274,7 @@ files:
|
|
|
4262
4274
|
- path: product/templates/pmdr.hbs
|
|
4263
4275
|
hash: sha256:49eb647ddd9d36421aadb9bab7d8f9edeba0aeb65f4d302b0f8b85bbb47599de
|
|
4264
4276
|
type: template
|
|
4265
|
-
size:
|
|
4277
|
+
size: 3243
|
|
4266
4278
|
- path: product/templates/prd-tmpl.yaml
|
|
4267
4279
|
hash: sha256:cc68f141e09386096f6add62717f63f0b56bb53f315eafcafc4bb649f151d25f
|
|
4268
4280
|
type: template
|
|
@@ -4270,11 +4282,11 @@ files:
|
|
|
4270
4282
|
- path: product/templates/prd-v2.0.hbs
|
|
4271
4283
|
hash: sha256:efcdadfcd994d02cb04f61de67e4b42156e49b64e9374ad57037e60104297134
|
|
4272
4284
|
type: template
|
|
4273
|
-
size:
|
|
4285
|
+
size: 4516
|
|
4274
4286
|
- path: product/templates/prd.hbs
|
|
4275
4287
|
hash: sha256:16c7ae0dbcaf0d5848369584e2e32d54ef23777ea1210e6c013e2d70b7869d04
|
|
4276
4288
|
type: template
|
|
4277
|
-
size:
|
|
4289
|
+
size: 3429
|
|
4278
4290
|
- path: product/templates/project-brief-tmpl.yaml
|
|
4279
4291
|
hash: sha256:b781737b94826c8cf9982309403dd3209dc1ebb74f4e3fa070ab1f4ebbda4b09
|
|
4280
4292
|
type: template
|
|
@@ -4308,13 +4320,17 @@ files:
|
|
|
4308
4320
|
type: template
|
|
4309
4321
|
size: 6764
|
|
4310
4322
|
- path: product/templates/statusline/statusline-script.js
|
|
4311
|
-
hash: sha256:
|
|
4323
|
+
hash: sha256:05945437a07c0156ff5bff3238ad8fc71728c591933db64fde94aa219d6f9146
|
|
4324
|
+
type: template
|
|
4325
|
+
size: 7530
|
|
4326
|
+
- path: product/templates/statusline/track-agent-clear.cjs
|
|
4327
|
+
hash: sha256:3cda606de2463374e60440ba6cae9ca98e39b782b19c6ae39aa7569a1b211f09
|
|
4312
4328
|
type: template
|
|
4313
|
-
size:
|
|
4314
|
-
- path: product/templates/statusline/track-agent.
|
|
4315
|
-
hash: sha256:
|
|
4329
|
+
size: 2137
|
|
4330
|
+
- path: product/templates/statusline/track-agent.cjs
|
|
4331
|
+
hash: sha256:898d576f257734e9954e8949e5a4685f38167af0dcad986745b411a3b318559e
|
|
4316
4332
|
type: template
|
|
4317
|
-
size:
|
|
4333
|
+
size: 6244
|
|
4318
4334
|
- path: product/templates/story-tmpl.yaml
|
|
4319
4335
|
hash: sha256:43a050de5ef51f53f890fd20f77ac567b297a40597f467b3bc6d00c8193c7fa6
|
|
4320
4336
|
type: template
|
|
@@ -4322,7 +4338,7 @@ files:
|
|
|
4322
4338
|
- path: product/templates/story.hbs
|
|
4323
4339
|
hash: sha256:126c55c30e2e49816acc7c1712e71e7c26874b010edfe34e8d7890bac67095b2
|
|
4324
4340
|
type: template
|
|
4325
|
-
size:
|
|
4341
|
+
size: 5590
|
|
4326
4342
|
- path: product/templates/task-execution-report.md
|
|
4327
4343
|
hash: sha256:476717ed85b347fb6a5b7894a3bcdcb5eb84376c625c38a2e524e7dada126608
|
|
4328
4344
|
type: template
|
|
@@ -4334,67 +4350,67 @@ files:
|
|
|
4334
4350
|
- path: product/templates/task.hbs
|
|
4335
4351
|
hash: sha256:c0fa1b299a2a9e0816d54859e463d44d0f3bedf31ed8d21631cefdec36e4f3b5
|
|
4336
4352
|
type: template
|
|
4337
|
-
size:
|
|
4353
|
+
size: 2709
|
|
4338
4354
|
- path: product/templates/tmpl-comment-on-examples.sql
|
|
4339
4355
|
hash: sha256:1e74b045f0a8763c85701445b97254eaaa1868cdd0f6ebdaf90d9e150ca2ac60
|
|
4340
4356
|
type: template
|
|
4341
|
-
size:
|
|
4357
|
+
size: 6216
|
|
4342
4358
|
- path: product/templates/tmpl-migration-script.sql
|
|
4343
4359
|
hash: sha256:ff882969271610dd2dae3e81beccdd0882d048a062d3dc93e7f85ae197bd48d6
|
|
4344
4360
|
type: template
|
|
4345
|
-
size:
|
|
4361
|
+
size: 2948
|
|
4346
4362
|
- path: product/templates/tmpl-rls-granular-policies.sql
|
|
4347
4363
|
hash: sha256:10b3763bdd9622eaea9deb5e66f332690f5fda43c926952b32e99eae3c67e1d9
|
|
4348
4364
|
type: template
|
|
4349
|
-
size:
|
|
4365
|
+
size: 3323
|
|
4350
4366
|
- path: product/templates/tmpl-rls-kiss-policy.sql
|
|
4351
4367
|
hash: sha256:2bde67e5c9d2d242c2ac1d8e4faca78b8795de0089c94a0bd00438ef90675d0d
|
|
4352
4368
|
type: template
|
|
4353
|
-
size:
|
|
4369
|
+
size: 300
|
|
4354
4370
|
- path: product/templates/tmpl-rls-roles.sql
|
|
4355
4371
|
hash: sha256:89184ebc432d6ddef01529353623d98f7582cddaaaa82b453a3ff48035200589
|
|
4356
4372
|
type: template
|
|
4357
|
-
size:
|
|
4373
|
+
size: 4593
|
|
4358
4374
|
- path: product/templates/tmpl-rls-simple.sql
|
|
4359
4375
|
hash: sha256:337380b90d7a2458acd870a057770be34f0723c6770a4681efdb7a1b2a6103d7
|
|
4360
4376
|
type: template
|
|
4361
|
-
size:
|
|
4377
|
+
size: 2916
|
|
4362
4378
|
- path: product/templates/tmpl-rls-tenant.sql
|
|
4363
4379
|
hash: sha256:0d4d520666ed93d9dab56795ff2f319f1f5f9fb64f2bbb525f536d37e7605bb5
|
|
4364
4380
|
type: template
|
|
4365
|
-
size:
|
|
4381
|
+
size: 4979
|
|
4366
4382
|
- path: product/templates/tmpl-rollback-script.sql
|
|
4367
4383
|
hash: sha256:c3655f9387b4d3c396dc163ba9a1fe2cb2f030f046ce03d1ab78b21b8e375956
|
|
4368
4384
|
type: template
|
|
4369
|
-
size:
|
|
4385
|
+
size: 2658
|
|
4370
4386
|
- path: product/templates/tmpl-seed-data.sql
|
|
4371
4387
|
hash: sha256:8daa0b00c105f1212ab42462e249422fd64107e226929ccf2736506e9484b2e0
|
|
4372
4388
|
type: template
|
|
4373
|
-
size:
|
|
4389
|
+
size: 5577
|
|
4374
4390
|
- path: product/templates/tmpl-smoke-test.sql
|
|
4375
4391
|
hash: sha256:3e0891c30eaeb16053e8eadac8ff7eb59a18876a779066445f226eca2a7678d4
|
|
4376
4392
|
type: template
|
|
4377
|
-
size:
|
|
4393
|
+
size: 724
|
|
4378
4394
|
- path: product/templates/tmpl-staging-copy-merge.sql
|
|
4379
4395
|
hash: sha256:ea404942ede661c9cf8321ba01490625ed2e5718880642cb3223a7acea1f5033
|
|
4380
4396
|
type: template
|
|
4381
|
-
size:
|
|
4397
|
+
size: 4082
|
|
4382
4398
|
- path: product/templates/tmpl-stored-proc.sql
|
|
4383
4399
|
hash: sha256:78655833f266feb5f0d5d77cae8ec19a642d1f3089806a0e221abf9efab67206
|
|
4384
4400
|
type: template
|
|
4385
|
-
size:
|
|
4401
|
+
size: 3840
|
|
4386
4402
|
- path: product/templates/tmpl-trigger.sql
|
|
4387
4403
|
hash: sha256:3c30469cd931dfebf1a8c85c0781b8f9a54f21e81ee0f7cbe7caa8fec44b3bda
|
|
4388
4404
|
type: template
|
|
4389
|
-
size:
|
|
4405
|
+
size: 5273
|
|
4390
4406
|
- path: product/templates/tmpl-view-materialized.sql
|
|
4391
4407
|
hash: sha256:9c66e451a32b325a011585d0bc0c62bcff2f4bfd82b41ed3b108e468aee97880
|
|
4392
4408
|
type: template
|
|
4393
|
-
size:
|
|
4409
|
+
size: 4364
|
|
4394
4410
|
- path: product/templates/tmpl-view.sql
|
|
4395
4411
|
hash: sha256:fa6c17eb3b5e619cf7d96be39296ece5ebfde6e1a3691ffd9bd73eacd9e333d3
|
|
4396
4412
|
type: template
|
|
4397
|
-
size:
|
|
4413
|
+
size: 4917
|
|
4398
4414
|
- path: product/templates/token-exports-css-tmpl.css
|
|
4399
4415
|
hash: sha256:cdd75e1221721e2bfbeb4af82532438e15685a182de13480abe796ad2792d525
|
|
4400
4416
|
type: template
|
|
@@ -4600,9 +4616,9 @@ files:
|
|
|
4600
4616
|
type: script
|
|
4601
4617
|
size: 9539
|
|
4602
4618
|
- path: scripts/pm.sh
|
|
4603
|
-
hash: sha256:
|
|
4619
|
+
hash: sha256:060c5ab9ee43372e2177353b2b6f54f036b7dd86122fc6e2dc6e91fb0e3ab6d2
|
|
4604
4620
|
type: script
|
|
4605
|
-
size:
|
|
4621
|
+
size: 12644
|
|
4606
4622
|
- path: scripts/README.md
|
|
4607
4623
|
hash: sha256:d6961b96ff7163261d6f56f441f2fb0a35568d5e0034aa4bfecc9fe0993edfe1
|
|
4608
4624
|
type: script
|