sinapse-ai 1.19.2 → 1.20.1
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 +2 -2
- package/.claude/hooks/enforce-delegation.cjs +32 -36
- package/.claude/rules/agent-handoff.md +10 -21
- package/.claude/rules/mandatory-delegation.md +1 -1
- package/.claude/rules/token-economy.md +12 -5
- package/.sinapse-ai/constitution.md +2 -0
- package/.sinapse-ai/core/atlas/flows-pt.js +6 -0
- package/.sinapse-ai/core/atlas/flows.js +7 -0
- package/.sinapse-ai/core/atlas/render-html.js +10 -8
- package/.sinapse-ai/core/atlas/render-markdown.js +8 -0
- package/.sinapse-ai/core/doctor/checks/constitution-consistency.js +7 -0
- package/.sinapse-ai/core/execution/autonomous-build-loop.js +10 -4
- package/.sinapse-ai/core/execution/build-orchestrator.js +73 -2
- package/.sinapse-ai/core/execution/rate-limit-manager.js +2 -0
- package/.sinapse-ai/core/execution/result-aggregator.js +2 -0
- package/.sinapse-ai/core/health-check/checks/project/constitution-consistency.js +12 -1
- package/.sinapse-ai/core/orchestration/cli-commands.js +121 -4
- package/.sinapse-ai/core/orchestration/executors/epic-4-executor.js +10 -2
- package/.sinapse-ai/core/orchestration/executors/epic-6-executor.js +53 -2
- package/.sinapse-ai/core/orchestration/index.js +3 -0
- package/.sinapse-ai/core/orchestration/master-orchestrator.js +116 -18
- package/.sinapse-ai/core/registry/service-registry.json +2 -32
- package/.sinapse-ai/core/synapse/context/context-tracker.js +118 -11
- package/.sinapse-ai/core/synapse/engine.js +18 -3
- package/.sinapse-ai/core/synapse/layers/l0-constitution.js +189 -8
- package/.sinapse-ai/core/synapse/output/formatter.js +65 -25
- package/.sinapse-ai/core-config.yaml +8 -1
- package/.sinapse-ai/data/entity-registry.yaml +492 -246
- package/.sinapse-ai/development/agents/analyst.md +18 -34
- package/.sinapse-ai/development/agents/architect.md +18 -34
- package/.sinapse-ai/development/agents/data-engineer.md +15 -28
- package/.sinapse-ai/development/agents/developer.md +18 -40
- package/.sinapse-ai/development/agents/devops.md +15 -28
- package/.sinapse-ai/development/agents/product-lead.md +18 -34
- package/.sinapse-ai/development/agents/project-lead.md +18 -34
- package/.sinapse-ai/development/agents/quality-gate.md +18 -34
- package/.sinapse-ai/development/agents/snps-orqx.md +5 -5
- package/.sinapse-ai/development/agents/sprint-lead.md +20 -36
- package/.sinapse-ai/development/agents/squad-creator.md +15 -27
- package/.sinapse-ai/development/agents/ux-design-expert.md +15 -27
- package/.sinapse-ai/development/scripts/agent-exit-hooks.js +13 -4
- package/.sinapse-ai/development/scripts/populate-entity-registry.js +3 -0
- package/.sinapse-ai/development/tasks/execute-epic-plan.md +0 -4
- package/.sinapse-ai/development/workflows/epic-orchestration.yaml +0 -1
- package/.sinapse-ai/git-hooks/lib/staged-secret-scan.js +3 -1
- package/.sinapse-ai/infrastructure/integrations/ai-providers/README.md +2 -2
- package/.sinapse-ai/install-manifest.yaml +94 -126
- package/.sinapse-ai/product/templates/activation-instructions-template.md +72 -185
- package/.sinapse-ai/product/templates/ide-rules/claude-rules.md +45 -274
- package/.sinapse-ai/product/templates/personalized-agent-template.md +3 -5
- package/.sinapse-ai/product/templates/statusline/agent-badges.json +2 -2
- package/.sinapse-ai/product/templates/statusline/statusline-script.js +5 -3
- package/.sinapse-ai/workflow-intelligence/index.js +3 -21
- package/AGENTS.md +2 -2
- package/CHANGELOG.md +50 -2
- package/README.md +10 -0
- package/bin/cli.js +29 -0
- package/bin/commands/help.js +5 -0
- package/bin/commands/install.js +5 -4
- package/bin/commands/uninstall.js +5 -0
- package/bin/lib/command-generator.js +4 -4
- package/bin/lib/fs-utils.js +18 -0
- package/bin/lib/setup-statusline.js +3 -1
- package/bin/modules/chrome-brain-installer.js +5 -3
- package/bin/modules/mcp-installer.js +3 -6
- package/bin/postinstall.js +9 -1
- package/bin/sinapse-init.js +8 -9
- package/bin/sinapse.js +152 -2
- package/bin/utils/staged-secret-scan.js +3 -1
- package/docs/framework/atlas/OPERATING-ATLAS.md +3 -3
- package/docs/framework/atlas/atlas-data.json +27 -27
- package/docs/framework/atlas/atlas.html +12 -10
- package/docs/framework/source-tree.md +2 -3
- package/docs/framework/workflow-engine-status.md +70 -0
- package/docs/guides/ade-guide.md +4 -2
- package/docs/guides/api-reference.md +2 -0
- package/docs/guides/permission-modes.md +2 -0
- package/docs/guides/user-guide.md +21 -7
- package/docs/guides/workflows/AUTO-WORKTREE-WORKFLOW.md +2 -2
- package/docs/pt/architecture/ade-architecture.md +2 -0
- package/docs/pt/architecture/high-level-architecture.md +1 -1
- package/docs/pt/guides/ade-guide.md +4 -2
- package/docs/pt/guides/api-reference.md +2 -0
- package/docs/pt/guides/permission-modes.md +2 -0
- package/docs/pt/guides/user-guide.md +21 -7
- package/docs/pt/platforms/claude-code.md +2 -2
- package/docs/sinapse-workflows/auto-worktree-workflow.md +2 -2
- package/package.json +1 -1
- package/packages/installer/src/config/configure-environment.js +14 -6
- package/packages/installer/src/config/templates/core-config-template.js +43 -1
- package/packages/installer/src/installer/brownfield-upgrader.js +5 -3
- package/packages/installer/src/installer/file-hasher.js +29 -21
- package/packages/installer/src/installer/manifest-signature.js +61 -49
- package/packages/installer/src/installer/post-install-validator.js +24 -17
- package/packages/installer/src/installer/synapse-runtime-installer.js +148 -0
- package/packages/installer/src/merger/parsers/markdown-section-parser.js +3 -2
- package/packages/installer/src/updater/index.js +7 -1
- package/packages/installer/src/utils/atomic-write.js +35 -0
- package/packages/installer/src/wizard/i18n.js +294 -0
- package/packages/installer/src/wizard/index.js +31 -3
- package/packages/installer/src/wizard/validation/troubleshooting-system.js +60 -131
- package/packages/sinapse-install/src/capabilities/chrome-brain.js +5 -3
- package/packages/sinapse-install/src/installer.js +3 -1
- package/packages/sinapse-install/src/utils/atomic-write.js +67 -0
- package/scripts/apply-persona-disclaimer.js +2 -1
- package/scripts/bracket-report.js +103 -0
- package/scripts/sinapse-patch.js +2 -1
- package/scripts/sync-squad-yaml-components.js +2 -1
- package/scripts/validate-agent-codenames.js +168 -37
- package/scripts/validate-agents-md.js +2 -1
- package/scripts/validate-article-xi.js +10 -8
- package/scripts/validate-install-docs.js +23 -2
- package/scripts/validate-no-external-refs.js +14 -8
- package/sinapse/agents/sinapse-orqx.md +3 -3
- package/sinapse/agents/snps-orqx.md +3 -3
- package/sinapse/knowledge-base/routing-catalog.md +1 -1
- package/sinapse/tasks/diagnose-and-route.md +1 -1
- package/squads/claude-code-mastery/CHANGELOG.md +1 -1
- package/squads/claude-code-mastery/README.md +6 -6
- package/squads/claude-code-mastery/agents/claude-mastery-chief.md +10 -15
- package/squads/claude-code-mastery/agents/config-engineer.md +5 -12
- package/squads/claude-code-mastery/agents/hooks-architect.md +5 -11
- package/squads/claude-code-mastery/agents/mcp-integrator.md +5 -12
- package/squads/claude-code-mastery/agents/project-integrator.md +5 -12
- package/squads/claude-code-mastery/agents/roadmap-sentinel.md +14 -21
- package/squads/claude-code-mastery/agents/skill-craftsman.md +5 -11
- package/squads/claude-code-mastery/agents/swarm-orqx.md +20 -33
- package/squads/claude-code-mastery/data/claude-code-quick-ref.yaml +1 -1
- package/squads/claude-code-mastery/knowledge-base/claude-code-internals-deep.md +4 -4
- package/squads/claude-code-mastery/knowledge-base/claude-code-internals-reference.md +4 -4
- package/squads/claude-code-mastery/tasks/create-agent-definition.md +6 -6
- package/squads/claude-code-mastery/tasks/create-team-topology.md +3 -3
- package/squads/claude-code-mastery/tasks/diagnose.md +1 -1
- package/squads/claude-code-mastery/tasks/parallel-decomposition.md +1 -1
- package/squads/claude-code-mastery/tasks/worktree-strategy.md +1 -1
- package/squads/squad-animations/README.md +1 -1
- package/squads/squad-animations/agents/animation-interpreter.md +5 -5
- package/squads/squad-animations/agents/animations-orqx.md +6 -6
- package/squads/squad-animations/squad.yaml +1 -1
- package/squads/squad-animations/tasks/analyze-reference-animation.md +1 -1
- package/squads/squad-animations/tasks/build-animation-brief.md +1 -1
- package/squads/squad-animations/tasks/create-animation-storyboard.md +1 -1
- package/squads/squad-animations/tasks/cross-reference-brand-system.md +1 -1
- package/squads/squad-animations/tasks/extract-animation-intent.md +1 -1
- package/squads/squad-animations/tasks/generate-motion-vocabulary.md +1 -1
- package/squads/squad-animations/tasks/identify-website-animation.md +1 -1
- package/squads/squad-animations/tasks/interpret-animation-prompt.md +1 -1
- package/squads/squad-animations/tasks/refine-animation-specification.md +1 -1
- package/squads/squad-animations/tasks/translate-feeling-to-parameters.md +1 -1
- package/squads/squad-animations/tasks/validate-animation-feasibility.md +1 -1
- package/squads/squad-animations/workflows/prompt-to-animation-cycle.yaml +2 -2
- package/squads/squad-brand/agents/brand-auditor.md +1 -1
- package/squads/squad-brand/agents/brand-compiler.md +1 -1
- package/squads/squad-brand/agents/brand-motion-vfx.md +5 -5
- package/squads/squad-brand/agents/brand-orqx.md +2 -2
- package/squads/squad-brand/agents/brand-sonic-designer.md +1 -1
- package/squads/squad-brand/squad.yaml +1 -1
- package/squads/squad-brand/tasks/create-animation-library.md +1 -1
- package/squads/squad-brand/tasks/create-brand-characters.md +2 -2
- package/squads/squad-brand/tasks/create-event-branding.md +2 -2
- package/squads/squad-brand/tasks/create-micro-interactions.md +1 -1
- package/squads/squad-brand/tasks/create-page-transitions.md +1 -1
- package/squads/squad-brand/tasks/create-video-templates.md +1 -1
- package/squads/squad-brand/tasks/create-web-templates.md +1 -1
- package/squads/squad-brand/tasks/define-motion-language.md +1 -1
- package/squads/squad-brand/tasks/design-dynamic-identity-system.md +2 -2
- package/squads/squad-brand/tasks/design-illustration-system.md +1 -1
- package/squads/squad-commercial/README.md +3 -3
- package/squads/squad-commercial/agents/commercial-orqx.md +8 -8
- package/squads/squad-commercial/agents/cs-crm-specialist.md +3 -3
- package/squads/squad-commercial/agents/cs-revops-analyst.md +3 -3
- package/squads/squad-commercial/agents/cs-sales-closer.md +1 -1
- package/squads/squad-commercial/knowledge-base/commercial-analytics-reporting.md +7 -7
- package/squads/squad-commercial/knowledge-base/sales-revenue-master-reference.md +1 -1
- package/squads/squad-commercial/squad.yaml +3 -3
- package/squads/squad-commercial/tasks/analyze-revenue-leaks.md +2 -2
- package/squads/squad-commercial/tasks/audit-commercial-tech-stack.md +1 -1
- package/squads/squad-commercial/tasks/audit-crm-data.md +1 -1
- package/squads/squad-commercial/tasks/build-deal-scoring-model.md +1 -1
- package/squads/squad-commercial/tasks/build-forecasting-model.md +1 -1
- package/squads/squad-commercial/tasks/build-pipeline-dashboard.md +2 -2
- package/squads/squad-commercial/tasks/build-unit-economics-model.md +1 -1
- package/squads/squad-commercial/tasks/conduct-commercial-retrospective.md +2 -2
- package/squads/squad-commercial/tasks/conduct-deal-review.md +1 -1
- package/squads/squad-commercial/tasks/conduct-win-loss-analysis.md +1 -1
- package/squads/squad-commercial/tasks/configure-activity-tracking.md +1 -1
- package/squads/squad-commercial/tasks/configure-crm-integrations.md +1 -1
- package/squads/squad-commercial/tasks/configure-pipeline-stages.md +1 -1
- package/squads/squad-commercial/tasks/coordinate-revenue-cycle.md +1 -1
- package/squads/squad-commercial/tasks/create-commercial-brief.md +2 -2
- package/squads/squad-commercial/tasks/create-revenue-dashboard.md +1 -1
- package/squads/squad-commercial/tasks/design-lead-routing.md +1 -1
- package/squads/squad-commercial/tasks/design-quota-model.md +1 -1
- package/squads/squad-commercial/tasks/execute-save-play.md +1 -1
- package/squads/squad-commercial/tasks/manage-commercial-handoffs.md +1 -1
- package/squads/squad-commercial/tasks/manage-pipeline-forecast.md +3 -3
- package/squads/squad-commercial/tasks/monitor-pipeline-health.md +1 -1
- package/squads/squad-commercial/tasks/monitor-saas-metrics.md +1 -1
- package/squads/squad-commercial/tasks/plan-sales-capacity.md +1 -1
- package/squads/squad-commercial/tasks/plan-territory-mapping.md +1 -1
- package/squads/squad-commercial/tasks/review-revenue-architecture.md +2 -2
- package/squads/squad-commercial/tasks/run-quarterly-commercial-review.md +3 -3
- package/squads/squad-commercial/tasks/select-commercial-workflow.md +1 -1
- package/squads/squad-commercial/tasks/setup-outreach-sequences.md +1 -1
- package/squads/squad-commercial/templates/offer-brief-template.md +2 -2
- package/squads/squad-commercial/workflows/new-offer-launch.yaml +2 -2
- package/squads/squad-commercial/workflows/quarterly-commercial-review.yaml +1 -1
- package/squads/squad-commercial/workflows/revenue-forecasting-cycle.yaml +2 -2
- package/squads/squad-content/README.md +1 -1
- package/squads/squad-content/agents/content-analyst.md +4 -4
- package/squads/squad-content/agents/content-engineer.md +2 -2
- package/squads/squad-content/agents/content-governor.md +1 -1
- package/squads/squad-content/agents/content-orqx.md +6 -6
- package/squads/squad-content/agents/editorial-strategist.md +5 -5
- package/squads/squad-content/agents/platform-specialist.md +1 -1
- package/squads/squad-content/agents/signal-intelligence.md +4 -4
- package/squads/squad-content/checklists/editorial-planning-checklist.md +1 -1
- package/squads/squad-content/checklists/onboarding-setup-checklist.md +2 -2
- package/squads/squad-content/knowledge-base/ai-native-content-loop.md +2 -2
- package/squads/squad-content/knowledge-base/content-governance-principles.md +2 -2
- package/squads/squad-content/knowledge-base/cross-squad-integration-protocol.md +1 -1
- package/squads/squad-content/knowledge-base/signal-intelligence-v2.md +1 -1
- package/squads/squad-content/knowledge-base/task-ownership-map.md +5 -5
- package/squads/squad-content/squad.yaml +2 -2
- package/squads/squad-content/tasks/alert-opportunity-windows.md +6 -6
- package/squads/squad-content/tasks/analyze-content-performance.md +2 -2
- package/squads/squad-content/tasks/batch-content-production.md +1 -1
- package/squads/squad-content/tasks/benchmark-against-competitors.md +1 -1
- package/squads/squad-content/tasks/coordinate-cross-squad.md +1 -1
- package/squads/squad-content/tasks/create-content-governance.md +1 -1
- package/squads/squad-content/tasks/create-editorial-calendar.md +1 -1
- package/squads/squad-content/tasks/curate-ugc-signals.md +2 -2
- package/squads/squad-content/tasks/define-big-idea.md +1 -1
- package/squads/squad-content/tasks/define-content-kpis.md +1 -1
- package/squads/squad-content/tasks/flag-content-for-amplification.md +2 -2
- package/squads/squad-content/tasks/generate-content-report.md +3 -3
- package/squads/squad-content/tasks/manage-content-sprint.md +1 -1
- package/squads/squad-content/tasks/measure-content-roi.md +3 -3
- package/squads/squad-content/tasks/orchestrate-content-pipeline.md +2 -2
- package/squads/squad-content/tasks/plan-content-sprint.md +3 -3
- package/squads/squad-content/tasks/predict-content-performance.md +2 -2
- package/squads/squad-content/tasks/scan-daily-signals.md +2 -2
- package/squads/squad-content/tasks/triage-content-requests.md +1 -1
- package/squads/squad-content/tasks/triage-urgent-signal.md +1 -1
- package/squads/squad-content/templates/signal-alert-template.md +2 -2
- package/squads/squad-content/templates/weekly-briefing-template.md +1 -1
- package/squads/squad-content/workflows/content-audit-cycle.yaml +1 -1
- package/squads/squad-content/workflows/content-creation-cycle.yaml +3 -3
- package/squads/squad-content/workflows/editorial-planning-cycle.yaml +3 -3
- package/squads/squad-content/workflows/onboarding-content-cycle.yaml +3 -3
- package/squads/squad-content/workflows/performance-feedback-loop.yaml +3 -3
- package/squads/squad-content/workflows/signal-to-content-cycle.yaml +5 -5
- package/squads/squad-copy/README.md +4 -4
- package/squads/squad-copy/agents/ad-copywriter.md +4 -4
- package/squads/squad-copy/agents/copy-orqx.md +3 -3
- package/squads/squad-copy/agents/copy-strategist.md +5 -5
- package/squads/squad-copy/agents/direct-response-writer.md +3 -3
- package/squads/squad-copy/agents/email-sequence-strategist.md +1 -1
- package/squads/squad-copy/agents/funnel-copywriter.md +3 -3
- package/squads/squad-copy/agents/headline-specialist.md +1 -1
- package/squads/squad-copy/agents/proof-architect.md +3 -3
- package/squads/squad-copy/squad.yaml +3 -3
- package/squads/squad-copy/tasks/build-proof-stack.md +3 -3
- package/squads/squad-copy/tasks/craft-cta-variations.md +2 -2
- package/squads/squad-copy/tasks/craft-email-nurture-sequence.md +2 -2
- package/squads/squad-copy/tasks/craft-objection-handlers.md +1 -1
- package/squads/squad-copy/tasks/craft-social-media-hooks.md +1 -1
- package/squads/squad-copy/tasks/create-cart-abandonment-sequence.md +2 -2
- package/squads/squad-copy/tasks/create-customer-story.md +2 -2
- package/squads/squad-copy/tasks/create-email-campaign.md +2 -2
- package/squads/squad-copy/tasks/create-mechanism-copy.md +4 -4
- package/squads/squad-copy/tasks/create-opening-hooks.md +1 -1
- package/squads/squad-copy/tasks/create-ugc-script.md +2 -2
- package/squads/squad-copy/tasks/create-urgency-scarcity-framework.md +1 -1
- package/squads/squad-copy/tasks/create-welcome-sequence.md +2 -2
- package/squads/squad-copy/tasks/design-headline-ab-tests.md +1 -1
- package/squads/squad-copy/tasks/design-trigger-sequence.md +1 -1
- package/squads/squad-copy/tasks/design-welcome-series.md +2 -2
- package/squads/squad-copy/tasks/optimize-existing-copy.md +2 -2
- package/squads/squad-copy/tasks/optimize-funnel-conversion-copy.md +2 -2
- package/squads/squad-copy/tasks/optimize-pricing-framing.md +2 -2
- package/squads/squad-copy/tasks/write-ad-copy-google.md +2 -2
- package/squads/squad-copy/tasks/write-ad-copy-social.md +2 -2
- package/squads/squad-copy/tasks/write-ad-copy-variations.md +4 -4
- package/squads/squad-copy/tasks/write-case-study.md +2 -2
- package/squads/squad-copy/tasks/write-comparison-piece.md +2 -2
- package/squads/squad-copy/tasks/write-email-sequence.md +1 -1
- package/squads/squad-copy/tasks/write-email-subject-lines.md +1 -1
- package/squads/squad-copy/tasks/write-funnel-copy-sequence.md +4 -4
- package/squads/squad-copy/tasks/write-landing-page-copy.md +2 -2
- package/squads/squad-copy/tasks/write-launch-sequence.md +2 -2
- package/squads/squad-copy/tasks/write-opt-in-page.md +2 -2
- package/squads/squad-copy/tasks/write-product-narrative.md +2 -2
- package/squads/squad-copy/tasks/write-retargeting-copy.md +2 -2
- package/squads/squad-copy/tasks/write-sales-letter.md +1 -1
- package/squads/squad-copy/tasks/write-social-proof-section.md +1 -1
- package/squads/squad-copy/tasks/write-subheadlines-and-deck-copy.md +1 -1
- package/squads/squad-copy/tasks/write-upsell-copy.md +2 -2
- package/squads/squad-copy/tasks/write-vsl-script.md +3 -3
- package/squads/squad-copy/tasks/write-whitepaper-persuasive.md +2 -2
- package/squads/squad-copy/workflows/campaign-copy-cycle.yaml +4 -4
- package/squads/squad-copy/workflows/conversion-copy-sprint.yaml +6 -6
- package/squads/squad-copy/workflows/sales-copy-pipeline.yaml +4 -4
- package/squads/squad-design/README.md +6 -6
- package/squads/squad-design/agents/cro-persuasion.md +3 -3
- package/squads/squad-design/agents/design-orqx.md +17 -17
- package/squads/squad-design/agents/dx-accessibility-specialist.md +5 -5
- package/squads/squad-design/agents/dx-design-system-architect.md +8 -8
- package/squads/squad-design/agents/dx-frontend-engineer.md +7 -7
- package/squads/squad-design/agents/dx-interaction-designer.md +6 -6
- package/squads/squad-design/agents/dx-performance-engineer.md +3 -3
- package/squads/squad-design/agents/dx-ui-designer.md +7 -7
- package/squads/squad-design/agents/dx-ux-strategist.md +7 -7
- package/squads/squad-design/agents/platform-aesthetic-director.md +11 -11
- package/squads/squad-design/agents/premium-packaging-strategist.md +2 -2
- package/squads/squad-design/agents/product-surface-director.md +1 -1
- package/squads/squad-design/squad.yaml +6 -6
- package/squads/squad-design/tasks/analyze-javascript-bundles.md +1 -1
- package/squads/squad-design/tasks/audit-core-web-vitals.md +1 -1
- package/squads/squad-design/tasks/audit-design-system-health.md +1 -1
- package/squads/squad-design/tasks/audit-motion-performance.md +1 -1
- package/squads/squad-design/tasks/certify-accessibility-compliance.md +2 -2
- package/squads/squad-design/tasks/compose-screen-layouts.md +3 -3
- package/squads/squad-design/tasks/conduct-competitive-ux-analysis.md +1 -1
- package/squads/squad-design/tasks/conduct-dx-quality-gate.md +3 -3
- package/squads/squad-design/tasks/conduct-usability-heuristic-review.md +1 -1
- package/squads/squad-design/tasks/conduct-visual-qa.md +1 -1
- package/squads/squad-design/tasks/conduct-wcag-audit.md +1 -1
- package/squads/squad-design/tasks/configure-cdn-strategy.md +1 -1
- package/squads/squad-design/tasks/configure-token-export-pipeline.md +1 -1
- package/squads/squad-design/tasks/create-a11y-remediation-plan.md +4 -4
- package/squads/squad-design/tasks/create-color-system.md +2 -2
- package/squads/squad-design/tasks/create-component-governance.md +1 -1
- package/squads/squad-design/tasks/create-component-tokens.md +2 -2
- package/squads/squad-design/tasks/create-dark-light-themes.md +3 -3
- package/squads/squad-design/tasks/create-easing-curve-library.md +1 -1
- package/squads/squad-design/tasks/create-empty-error-states.md +1 -1
- package/squads/squad-design/tasks/create-error-boundary-patterns.md +1 -1
- package/squads/squad-design/tasks/create-illustration-style.md +1 -1
- package/squads/squad-design/tasks/create-mobile-first-designs.md +2 -2
- package/squads/squad-design/tasks/create-motion-documentation.md +1 -1
- package/squads/squad-design/tasks/create-motion-tokens.md +2 -2
- package/squads/squad-design/tasks/create-primitive-tokens.md +1 -1
- package/squads/squad-design/tasks/create-responsive-grid-system.md +1 -1
- package/squads/squad-design/tasks/create-screen-reader-specs.md +1 -1
- package/squads/squad-design/tasks/create-scroll-animation-patterns.md +1 -1
- package/squads/squad-design/tasks/create-semantic-tokens.md +1 -1
- package/squads/squad-design/tasks/create-storybook-documentation-standards.md +1 -1
- package/squads/squad-design/tasks/create-user-personas.md +1 -1
- package/squads/squad-design/tasks/create-ux-principles.md +1 -1
- package/squads/squad-design/tasks/create-wireframe-brief.md +2 -2
- package/squads/squad-design/tasks/define-atomic-hierarchy.md +2 -2
- package/squads/squad-design/tasks/define-content-hierarchy.md +2 -2
- package/squads/squad-design/tasks/define-motion-principles.md +4 -4
- package/squads/squad-design/tasks/define-performance-budgets.md +1 -1
- package/squads/squad-design/tasks/define-token-taxonomy.md +2 -2
- package/squads/squad-design/tasks/design-accessible-form-patterns.md +2 -2
- package/squads/squad-design/tasks/design-component-api-contracts.md +3 -3
- package/squads/squad-design/tasks/design-component-visual-states.md +4 -4
- package/squads/squad-design/tasks/design-dashboard-layouts.md +1 -1
- package/squads/squad-design/tasks/design-duration-scale.md +1 -1
- package/squads/squad-design/tasks/design-feedback-animations.md +2 -2
- package/squads/squad-design/tasks/design-focus-management.md +1 -1
- package/squads/squad-design/tasks/design-form-patterns.md +2 -2
- package/squads/squad-design/tasks/design-icon-system.md +1 -1
- package/squads/squad-design/tasks/design-information-architecture.md +2 -2
- package/squads/squad-design/tasks/design-landing-page-ui.md +3 -3
- package/squads/squad-design/tasks/design-loading-choreography.md +1 -1
- package/squads/squad-design/tasks/design-multi-brand-theming.md +1 -1
- package/squads/squad-design/tasks/design-page-transitions.md +1 -1
- package/squads/squad-design/tasks/design-spacing-scale.md +3 -3
- package/squads/squad-design/tasks/design-typography-scale.md +3 -3
- package/squads/squad-design/tasks/design-user-flows.md +2 -2
- package/squads/squad-design/tasks/design-visual-hierarchy.md +2 -2
- package/squads/squad-design/tasks/eliminate-render-blocking.md +1 -1
- package/squads/squad-design/tasks/extract-critical-css.md +1 -1
- package/squads/squad-design/tasks/govern-third-party-scripts.md +1 -1
- package/squads/squad-design/tasks/implement-authentication-ui.md +1 -1
- package/squads/squad-design/tasks/implement-component-library.md +4 -4
- package/squads/squad-design/tasks/implement-form-system.md +2 -2
- package/squads/squad-design/tasks/implement-reduced-motion.md +3 -3
- package/squads/squad-design/tasks/implement-responsive-layouts.md +1 -1
- package/squads/squad-design/tasks/implement-routing-strategy.md +1 -1
- package/squads/squad-design/tasks/map-dark-mode-tokens.md +3 -3
- package/squads/squad-design/tasks/map-user-journeys.md +2 -2
- package/squads/squad-design/tasks/migrate-legacy-design-system.md +1 -1
- package/squads/squad-design/tasks/monitor-performance-regression.md +1 -1
- package/squads/squad-design/tasks/optimize-font-loading.md +1 -1
- package/squads/squad-design/tasks/optimize-image-pipeline.md +1 -1
- package/squads/squad-design/tasks/orchestrate-dx-pipeline.md +2 -2
- package/squads/squad-design/tasks/plan-ux-research-sprint.md +1 -1
- package/squads/squad-design/tasks/produce-design-handoff-specs.md +4 -4
- package/squads/squad-design/tasks/review-aria-patterns.md +1 -1
- package/squads/squad-design/tasks/setup-performance-ci-gates.md +1 -1
- package/squads/squad-design/tasks/setup-storybook-integration.md +1 -1
- package/squads/squad-design/tasks/spec-gesture-interactions.md +1 -1
- package/squads/squad-design/tasks/spec-micro-interactions.md +2 -2
- package/squads/squad-design/tasks/synthesize-user-research.md +2 -2
- package/squads/squad-design/tasks/test-keyboard-navigation.md +1 -1
- package/squads/squad-design/tasks/validate-ux-with-testing.md +1 -1
- package/squads/squad-design/tasks/verify-color-contrast.md +2 -2
- package/squads/squad-design/templates/a11y-audit-report-template.md +1 -1
- package/squads/squad-design/templates/design-handoff-template.md +1 -1
- package/squads/squad-design/templates/performance-budget-template.md +1 -1
- package/squads/squad-design/templates/ux-research-plan-template.md +1 -1
- package/squads/squad-design/workflows/a11y-compliance-cycle.yaml +8 -8
- package/squads/squad-design/workflows/design-system-build-cycle.yaml +12 -12
- package/squads/squad-design/workflows/landing-page-sprint.yaml +10 -10
- package/squads/squad-design/workflows/performance-remediation-cycle.yaml +6 -6
- package/squads/squad-design/workflows/ux-research-sprint.yaml +8 -8
- package/squads/squad-design/workflows/zero-to-digital-product-cycle.yaml +16 -16
- package/squads/squad-finance/README.md +1 -1
- package/squads/squad-finance/agents/budget-controller.md +1 -1
- package/squads/squad-finance/agents/cost-optimizer.md +2 -2
- package/squads/squad-finance/agents/finance-orqx.md +4 -4
- package/squads/squad-finance/agents/fiscal-compliance-br.md +4 -4
- package/squads/squad-finance/agents/forecast-strategist.md +6 -6
- package/squads/squad-finance/agents/pricing-strategist.md +3 -3
- package/squads/squad-finance/agents/profitability-analyst.md +1 -1
- package/squads/squad-finance/agents/revenue-analyst.md +1 -1
- package/squads/squad-finance/checklists/monthly-close-checklist.md +1 -1
- package/squads/squad-finance/checklists/quarterly-review-checklist.md +1 -1
- package/squads/squad-finance/squad.yaml +2 -2
- package/squads/squad-finance/tasks/analyze-price-sensitivity.md +1 -1
- package/squads/squad-finance/tasks/benchmark-competitor-pricing.md +1 -1
- package/squads/squad-finance/tasks/calculate-rate-card.md +1 -1
- package/squads/squad-finance/tasks/coordinate-quarterly-review.md +2 -2
- package/squads/squad-finance/tasks/create-proposal-pricing.md +1 -1
- package/squads/squad-finance/tasks/design-service-tiers.md +1 -1
- package/squads/squad-finance/tasks/design-value-based-pricing.md +1 -1
- package/squads/squad-finance/tasks/manage-financial-calendar.md +1 -1
- package/squads/squad-finance/tasks/model-pricing-scenario.md +1 -1
- package/squads/squad-finance/tasks/optimize-rate-realization.md +1 -1
- package/squads/squad-finance/tasks/simulate-pricing-impact.md +1 -1
- package/squads/squad-finance/tasks/track-pricing-performance.md +1 -1
- package/squads/squad-paidmedia/README.md +4 -4
- package/squads/squad-paidmedia/agents/campaign-analyst.md +6 -6
- package/squads/squad-paidmedia/agents/creative-strategist.md +2 -2
- package/squads/squad-paidmedia/agents/cro-specialist.md +5 -5
- package/squads/squad-paidmedia/agents/google-ads-specialist.md +2 -2
- package/squads/squad-paidmedia/agents/meta-ads-specialist.md +6 -6
- package/squads/squad-paidmedia/agents/paidmedia-orqx.md +6 -6
- package/squads/squad-paidmedia/agents/performance-engineer.md +2 -2
- package/squads/squad-paidmedia/agents/pm-creative-performance-analyst.md +2 -2
- package/squads/squad-paidmedia/knowledge-base/routing-catalog.md +21 -21
- package/squads/squad-paidmedia/squad.yaml +4 -4
- package/squads/squad-paidmedia/tasks/allocate-cross-channel-budget.md +1 -1
- package/squads/squad-paidmedia/tasks/allocate-meta-budget.md +2 -2
- package/squads/squad-paidmedia/tasks/analyze-audience-performance.md +1 -1
- package/squads/squad-paidmedia/tasks/analyze-content-performance.md +1 -1
- package/squads/squad-paidmedia/tasks/analyze-conversion-funnel.md +2 -2
- package/squads/squad-paidmedia/tasks/analyze-creative-effectiveness.md +1 -1
- package/squads/squad-paidmedia/tasks/analyze-keyword-rankings.md +1 -1
- package/squads/squad-paidmedia/tasks/analyze-landing-page.md +1 -1
- package/squads/squad-paidmedia/tasks/analyze-local-keywords.md +1 -1
- package/squads/squad-paidmedia/tasks/analyze-local-market.md +1 -1
- package/squads/squad-paidmedia/tasks/analyze-reviews-strategy.md +1 -1
- package/squads/squad-paidmedia/tasks/analyze-top-pages.md +1 -1
- package/squads/squad-paidmedia/tasks/analyze-traffic-sources.md +1 -1
- package/squads/squad-paidmedia/tasks/analyze-user-behavior.md +1 -1
- package/squads/squad-paidmedia/tasks/audit-conversion-tracking.md +1 -1
- package/squads/squad-paidmedia/tasks/audit-gmb-location.md +1 -1
- package/squads/squad-paidmedia/tasks/audit-meta-ads-account.md +1 -1
- package/squads/squad-paidmedia/tasks/audit-sitemap-health.md +1 -1
- package/squads/squad-paidmedia/tasks/build-audience-architecture.md +2 -2
- package/squads/squad-paidmedia/tasks/build-creative-scorecard.md +1 -1
- package/squads/squad-paidmedia/tasks/calculate-sample-size.md +1 -1
- package/squads/squad-paidmedia/tasks/check-indexing-status.md +1 -1
- package/squads/squad-paidmedia/tasks/create-scaling-roadmap.md +1 -1
- package/squads/squad-paidmedia/tasks/design-campaign-structure.md +2 -2
- package/squads/squad-paidmedia/tasks/design-progressive-profiling.md +1 -1
- package/squads/squad-paidmedia/tasks/detect-creative-fatigue.md +1 -1
- package/squads/squad-paidmedia/tasks/execute-launch-checklist.md +1 -1
- package/squads/squad-paidmedia/tasks/generate-monthly-report.md +1 -1
- package/squads/squad-paidmedia/tasks/generate-search-performance-overview.md +1 -1
- package/squads/squad-paidmedia/tasks/generate-weekly-summary.md +1 -1
- package/squads/squad-paidmedia/tasks/manage-pixel-capi-health.md +1 -1
- package/squads/squad-paidmedia/tasks/manage-scaling-roadmap.md +1 -1
- package/squads/squad-paidmedia/tasks/measure-activation-rate.md +1 -1
- package/squads/squad-paidmedia/tasks/optimize-ad-set-targeting.md +2 -2
- package/squads/squad-paidmedia/tasks/optimize-form-conversion.md +1 -1
- package/squads/squad-paidmedia/tasks/optimize-onboarding-activation.md +1 -1
- package/squads/squad-paidmedia/tasks/optimize-page-conversion.md +1 -1
- package/squads/squad-paidmedia/tasks/optimize-signup-flow.md +1 -1
- package/squads/squad-paidmedia/tasks/plan-customer-engagement.md +1 -1
- package/squads/squad-paidmedia/tasks/run-ab-test.md +1 -1
- package/squads/squad-paidmedia/tasks/run-creative-test.md +1 -1
- package/squads/squad-paidmedia/tasks/track-gmb-performance-trends.md +1 -1
- package/squads/squad-paidmedia/tasks/triage-campaign-issues.md +1 -1
- package/squads/squad-product/README.md +2 -2
- package/squads/squad-product/agents/product-orqx.md +4 -4
- package/squads/squad-product/agents/ps-delivery-manager.md +2 -2
- package/squads/squad-product/agents/ps-product-ops-specialist.md +2 -2
- package/squads/squad-product/squad.yaml +2 -2
- package/squads/squad-product/tasks/audit-product-tool-stack.md +1 -1
- package/squads/squad-product/tasks/build-product-knowledge-base.md +1 -1
- package/squads/squad-product/tasks/calculate-sprint-velocity.md +1 -1
- package/squads/squad-product/tasks/configure-feature-flag-rollout.md +1 -1
- package/squads/squad-product/tasks/create-product-artifact-template.md +1 -1
- package/squads/squad-product/tasks/create-product-onboarding-runbook.md +3 -3
- package/squads/squad-product/tasks/create-product-playbook.md +2 -2
- package/squads/squad-product/tasks/document-product-process.md +1 -1
- package/squads/squad-product/tasks/execute-feature-launch-checklist.md +1 -1
- package/squads/squad-product/tasks/facilitate-sprint-retrospective.md +1 -1
- package/squads/squad-product/tasks/generate-product-health-report.md +2 -2
- package/squads/squad-product/tasks/maintain-decision-log-system.md +1 -1
- package/squads/squad-product/tasks/manage-sprint-capacity-planning.md +1 -1
- package/squads/squad-product/tasks/map-cross-functional-dependencies.md +1 -1
- package/squads/squad-product/tasks/prepare-product-handoff-package.md +4 -4
- package/squads/squad-product/tasks/run-product-operations-audit.md +1 -1
- package/squads/squad-product/tasks/run-shape-up-betting-table.md +1 -1
- package/squads/squad-product/tasks/run-sprint-planning-session.md +1 -1
- package/squads/squad-product/tasks/scope-agency-mvp.md +1 -1
- package/squads/squad-product/tasks/setup-new-client-product-operations.md +1 -1
- package/squads/squad-product/tasks/standardize-cross-client-metrics.md +1 -1
- package/squads/squad-product/tasks/triage-technical-debt-backlog.md +1 -1
- package/squads/squad-product/tasks/write-release-notes.md +1 -1
- package/squads/squad-research/README.md +3 -3
- package/squads/squad-research/agents/audience-intelligence.md +9 -9
- package/squads/squad-research/agents/competitive-intelligence.md +1 -1
- package/squads/squad-research/agents/data-synthesizer.md +11 -11
- package/squads/squad-research/agents/deep-researcher.md +2 -2
- package/squads/squad-research/agents/market-analyst.md +9 -9
- package/squads/squad-research/agents/research-orqx.md +4 -4
- package/squads/squad-research/agents/trend-forecaster.md +2 -2
- package/squads/squad-research/knowledge-base/agentic-second-brain-reference.md +1 -1
- package/squads/squad-research/knowledge-base/community-platforms-reference.md +1 -1
- package/squads/squad-research/knowledge-base/cross-squad-integration-protocol.md +1 -1
- package/squads/squad-research/knowledge-base/multi-agent-research-methodology.md +3 -3
- package/squads/squad-research/squad.yaml +3 -3
- package/squads/squad-research/tasks/analyze-audience-behavior.md +2 -2
- package/squads/squad-research/tasks/analyze-audience-psychographics.md +2 -2
- package/squads/squad-research/tasks/analyze-competitor-pricing.md +1 -1
- package/squads/squad-research/tasks/analyze-industry-trends.md +2 -2
- package/squads/squad-research/tasks/analyze-macro-forces.md +1 -1
- package/squads/squad-research/tasks/analyze-pricing-landscape.md +2 -2
- package/squads/squad-research/tasks/analyze-social-listening.md +2 -2
- package/squads/squad-research/tasks/analyze-value-chain.md +2 -2
- package/squads/squad-research/tasks/answer-strategic-question.md +1 -1
- package/squads/squad-research/tasks/assess-market-maturity.md +2 -2
- package/squads/squad-research/tasks/build-audience-persona.md +2 -2
- package/squads/squad-research/tasks/build-data-narrative.md +2 -2
- package/squads/squad-research/tasks/compile-competitive-dossier.md +2 -2
- package/squads/squad-research/tasks/conduct-deep-research.md +1 -1
- package/squads/squad-research/tasks/conduct-jobs-to-be-done.md +2 -2
- package/squads/squad-research/tasks/create-empathy-map.md +2 -2
- package/squads/squad-research/tasks/create-executive-briefing.md +2 -2
- package/squads/squad-research/tasks/create-insight-deck.md +2 -2
- package/squads/squad-research/tasks/create-research-dossier.md +1 -1
- package/squads/squad-research/tasks/create-research-repository.md +2 -2
- package/squads/squad-research/tasks/create-swot-analysis.md +4 -4
- package/squads/squad-research/tasks/design-survey.md +2 -2
- package/squads/squad-research/tasks/evaluate-market-entry.md +2 -2
- package/squads/squad-research/tasks/evaluate-regulatory-landscape.md +2 -2
- package/squads/squad-research/tasks/forecast-industry-trends.md +2 -2
- package/squads/squad-research/tasks/forecast-market-growth.md +2 -2
- package/squads/squad-research/tasks/generate-actionable-recommendations.md +2 -2
- package/squads/squad-research/tasks/identify-market-segments.md +3 -3
- package/squads/squad-research/tasks/map-audience-ecosystem.md +2 -2
- package/squads/squad-research/tasks/map-audience-journey.md +2 -2
- package/squads/squad-research/tasks/map-industry-ecosystem.md +2 -2
- package/squads/squad-research/tasks/map-market-opportunity.md +2 -2
- package/squads/squad-research/tasks/map-pain-gain-matrix.md +2 -2
- package/squads/squad-research/tasks/map-strategic-implications.md +2 -2
- package/squads/squad-research/tasks/orchestrate-research-pipeline.md +4 -4
- package/squads/squad-research/tasks/predict-market-shifts.md +1 -1
- package/squads/squad-research/tasks/profile-ideal-customer.md +2 -2
- package/squads/squad-research/tasks/run-porter-five-forces.md +1 -1
- package/squads/squad-research/tasks/run-scenario-planning.md +1 -1
- package/squads/squad-research/tasks/segment-audience.md +2 -2
- package/squads/squad-research/tasks/size-market-tam-sam-som.md +2 -2
- package/squads/squad-research/tasks/synthesize-multi-source.md +1 -1
- package/squads/squad-research/tasks/synthesize-research-report.md +2 -2
- package/squads/squad-research/tasks/validate-persona-with-data.md +2 -2
- package/squads/squad-research/tasks/visualize-research-data.md +2 -2
- package/squads/squad-research/templates/audience-persona-template.md +1 -1
- package/squads/squad-research/templates/competitive-dossier-template.md +1 -1
- package/squads/squad-research/templates/market-analysis-template.md +1 -1
- package/squads/squad-research/workflows/audience-intelligence-cycle.yaml +12 -12
- package/squads/squad-research/workflows/competitive-intelligence-cycle.yaml +2 -2
- package/squads/squad-research/workflows/deep-research-cycle.yaml +2 -2
- package/squads/squad-research/workflows/full-research-sprint.yaml +8 -8
- package/squads/squad-research/workflows/market-analysis-cycle.yaml +12 -12
- package/squads/squad-research/workflows/trend-forecasting-cycle.yaml +2 -2
- package/.sinapse-ai/core/execution/context-injector.js +0 -537
- package/.sinapse-ai/core/execution/parallel-executor.js +0 -299
- package/.sinapse-ai/core/execution/parallel-monitor.js +0 -430
- package/.sinapse-ai/core/execution/semantic-merge-engine.js +0 -1748
- package/.sinapse-ai/core/execution/wave-executor.js +0 -401
- package/.sinapse-ai/development/tasks/waves.md +0 -205
- package/.sinapse-ai/lib/build.json +0 -1
- package/.sinapse-ai/workflow-intelligence/engine/wave-analyzer.js +0 -684
|
@@ -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.20.1
|
|
11
11
|
generator: scripts/generate-install-manifest.js
|
|
12
|
-
file_count:
|
|
12
|
+
file_count: 1153
|
|
13
13
|
files:
|
|
14
14
|
- path: cli/commands/config/index.js
|
|
15
15
|
hash: sha256:bfa83cb1dc111b0b30dd298dc0abc2150b73f939b6cd4458effa8e6d407bc9e2
|
|
@@ -192,33 +192,33 @@ files:
|
|
|
192
192
|
type: cli
|
|
193
193
|
size: 5908
|
|
194
194
|
- path: core-config.yaml
|
|
195
|
-
hash: sha256:
|
|
195
|
+
hash: sha256:3ab9c9a61ed541123178c1a13ea35dd12549de8fd5812ed2266a9ab77bfad5b4
|
|
196
196
|
type: config
|
|
197
|
-
size:
|
|
197
|
+
size: 13160
|
|
198
198
|
- path: core/atlas/atlas-data.js
|
|
199
199
|
hash: sha256:ab6ef91bd2de1498dbe3892a80b5f18d67624db1fb2da74b0e53f83de902f383
|
|
200
200
|
type: core
|
|
201
201
|
size: 11444
|
|
202
202
|
- path: core/atlas/flows-pt.js
|
|
203
|
-
hash: sha256:
|
|
203
|
+
hash: sha256:12c9c4a90ab702decc9d3f35082bd45d10068810a269f8f3bd75b96c3663de50
|
|
204
204
|
type: core
|
|
205
|
-
size:
|
|
205
|
+
size: 11886
|
|
206
206
|
- path: core/atlas/flows.js
|
|
207
|
-
hash: sha256:
|
|
207
|
+
hash: sha256:4bcb80b2eca132bd524ab3a2f0bcc02b61ab236ba7b679f8977cad9118d9ad6d
|
|
208
208
|
type: core
|
|
209
|
-
size:
|
|
209
|
+
size: 11485
|
|
210
210
|
- path: core/atlas/index.js
|
|
211
211
|
hash: sha256:ea1e47887854cf348cf29c99c6e5d6218d4e6e709db14a6caa0b289303200363
|
|
212
212
|
type: core
|
|
213
213
|
size: 2028
|
|
214
214
|
- path: core/atlas/render-html.js
|
|
215
|
-
hash: sha256:
|
|
215
|
+
hash: sha256:630447429b4e0909637c85b6e6e1e92d1e6a49bae969e92ce4e00680fcfba528
|
|
216
216
|
type: core
|
|
217
|
-
size:
|
|
217
|
+
size: 11938
|
|
218
218
|
- path: core/atlas/render-markdown.js
|
|
219
|
-
hash: sha256:
|
|
219
|
+
hash: sha256:d47961e50745e31af483fc126fbb3fc3ec60e498ee2f086982b4af388c5257aa
|
|
220
220
|
type: core
|
|
221
|
-
size:
|
|
221
|
+
size: 12650
|
|
222
222
|
- path: core/atlas/render-research-card.js
|
|
223
223
|
hash: sha256:86086e58ea6e3f4a19229f7c755cb4072a8582e8de70e5610c58ea578276204e
|
|
224
224
|
type: core
|
|
@@ -364,9 +364,9 @@ files:
|
|
|
364
364
|
type: core
|
|
365
365
|
size: 1812
|
|
366
366
|
- path: core/doctor/checks/constitution-consistency.js
|
|
367
|
-
hash: sha256:
|
|
367
|
+
hash: sha256:0080eb0ea5eeb092c69ba2500c246048ebe3af67cd8434d3534d2b55968a62c6
|
|
368
368
|
type: core
|
|
369
|
-
size:
|
|
369
|
+
size: 3675
|
|
370
370
|
- path: core/doctor/checks/core-config.js
|
|
371
371
|
hash: sha256:77b3a167f52a6145aeaf83ac4ce558ec7b8efd66beccfa05ec106367315d7e9a
|
|
372
372
|
type: core
|
|
@@ -492,49 +492,29 @@ files:
|
|
|
492
492
|
type: core
|
|
493
493
|
size: 1710
|
|
494
494
|
- path: core/execution/autonomous-build-loop.js
|
|
495
|
-
hash: sha256:
|
|
495
|
+
hash: sha256:69a333609763a5745db9e4c29168ae448ae3bcf65c2907606d21565f02958a66
|
|
496
496
|
type: core
|
|
497
|
-
size:
|
|
497
|
+
size: 34474
|
|
498
498
|
- path: core/execution/build-orchestrator.js
|
|
499
|
-
hash: sha256:
|
|
499
|
+
hash: sha256:56bbde48aaa4eb0de3ea7c95d5d1584a9ec8b753931097102fa696fb72d11848
|
|
500
500
|
type: core
|
|
501
|
-
size:
|
|
501
|
+
size: 43980
|
|
502
502
|
- path: core/execution/build-state-manager.js
|
|
503
503
|
hash: sha256:3b2fe56bf0e1a480f663a02afbb83c6d11cf89fb56815381c7ccafab948a63ae
|
|
504
504
|
type: core
|
|
505
505
|
size: 53047
|
|
506
|
-
- path: core/execution/context-injector.js
|
|
507
|
-
hash: sha256:b0032791337fd54bc48df48d3063e791cf501537e4b5f9efc37cf98e5064b0ad
|
|
508
|
-
type: core
|
|
509
|
-
size: 14864
|
|
510
|
-
- path: core/execution/parallel-executor.js
|
|
511
|
-
hash: sha256:f5a68f60536ad6116ddc49e4d55ce5f1fc3b55c26ae27622b221e342b2ed37a3
|
|
512
|
-
type: core
|
|
513
|
-
size: 8399
|
|
514
|
-
- path: core/execution/parallel-monitor.js
|
|
515
|
-
hash: sha256:4b789fd8d6736ff794181be2069b972752649759cc33b69201bef2d8c41ec6b5
|
|
516
|
-
type: core
|
|
517
|
-
size: 11591
|
|
518
506
|
- path: core/execution/rate-limit-manager.js
|
|
519
|
-
hash: sha256:
|
|
507
|
+
hash: sha256:0d9749bc1ac9b6ed99019af84340e87d2f99d37a3147144896c6ca09560bdbe0
|
|
520
508
|
type: core
|
|
521
|
-
size:
|
|
509
|
+
size: 9129
|
|
522
510
|
- path: core/execution/result-aggregator.js
|
|
523
|
-
hash: sha256:
|
|
511
|
+
hash: sha256:7d85df76eb252b098bfaf3ed5b7f07d408654a2d0ef9336c722fac1576355d81
|
|
524
512
|
type: core
|
|
525
|
-
size:
|
|
526
|
-
- path: core/execution/semantic-merge-engine.js
|
|
527
|
-
hash: sha256:39ab1acde2a88585fdee1e5307804eaf5886e3c20a771586846b5c25c9ee4356
|
|
528
|
-
type: core
|
|
529
|
-
size: 52328
|
|
513
|
+
size: 14652
|
|
530
514
|
- path: core/execution/subagent-dispatcher.js
|
|
531
515
|
hash: sha256:c291a8d9dea32273577b5c726626f4bc7a94b6aa67a52c9f312d6448ca6ab910
|
|
532
516
|
type: core
|
|
533
517
|
size: 32197
|
|
534
|
-
- path: core/execution/wave-executor.js
|
|
535
|
-
hash: sha256:49cc1b4712d13cb0638f514cc3b00fa0ab576737c942103fbf5d0931010727b7
|
|
536
|
-
type: core
|
|
537
|
-
size: 11268
|
|
538
518
|
- path: core/external-executors/delegate-cli.js
|
|
539
519
|
hash: sha256:e56313ca703a4fccf64e0eec958ceb9f84e5d7a3f1c84c22b12375a9b5b58bc1
|
|
540
520
|
type: core
|
|
@@ -668,9 +648,9 @@ files:
|
|
|
668
648
|
type: core
|
|
669
649
|
size: 4734
|
|
670
650
|
- path: core/health-check/checks/project/constitution-consistency.js
|
|
671
|
-
hash: sha256:
|
|
651
|
+
hash: sha256:14f01551e686def31cfe53f64dbc94d726efaf6c0e3fef4d6cc70f72101fef62
|
|
672
652
|
type: core
|
|
673
|
-
size:
|
|
653
|
+
size: 6751
|
|
674
654
|
- path: core/health-check/checks/project/dependencies.js
|
|
675
655
|
hash: sha256:f11f88666cfde93196d3ec81c59ba4956c75a097591d4a5cf0b2effd88db523d
|
|
676
656
|
type: core
|
|
@@ -908,9 +888,9 @@ files:
|
|
|
908
888
|
type: core
|
|
909
889
|
size: 10661
|
|
910
890
|
- path: core/memory/__tests__/active-modules.verify.js
|
|
911
|
-
hash: sha256:
|
|
891
|
+
hash: sha256:121996da9fcc8c7e3fa0fcfcbc7cf7661e395c498b65f43dc9e8dad9a6ef4848
|
|
912
892
|
type: core
|
|
913
|
-
size:
|
|
893
|
+
size: 5422
|
|
914
894
|
- path: core/memory/gotchas-memory.js
|
|
915
895
|
hash: sha256:ef746d1c65d3bbe94a06ebe755ce0777e4e1ddd90867a2b96f6c8544c397fcb3
|
|
916
896
|
type: core
|
|
@@ -952,9 +932,9 @@ files:
|
|
|
952
932
|
type: core
|
|
953
933
|
size: 10096
|
|
954
934
|
- path: core/orchestration/cli-commands.js
|
|
955
|
-
hash: sha256:
|
|
935
|
+
hash: sha256:a3fc11597f2dd2098ffa0b30acbe283506c4e64132c198ddf5c233c9791ab2b0
|
|
956
936
|
type: core
|
|
957
|
-
size:
|
|
937
|
+
size: 23762
|
|
958
938
|
- path: core/orchestration/condition-evaluator.js
|
|
959
939
|
hash: sha256:c90c2b1506d72ce8c468b8b2b90cf4116fd1fc441eb591e8ce09dbcb75e28c00
|
|
960
940
|
type: core
|
|
@@ -992,17 +972,17 @@ files:
|
|
|
992
972
|
type: core
|
|
993
973
|
size: 9463
|
|
994
974
|
- path: core/orchestration/executors/epic-4-executor.js
|
|
995
|
-
hash: sha256:
|
|
975
|
+
hash: sha256:ffb124ce4751d3b6189cf03210eac9ee93be3754b760cfdb0188880f03ed928f
|
|
996
976
|
type: core
|
|
997
|
-
size:
|
|
977
|
+
size: 11680
|
|
998
978
|
- path: core/orchestration/executors/epic-5-executor.js
|
|
999
979
|
hash: sha256:865224cd6cb1f80c1228e149349aea5c335440201c9047f849d2ec85b73d3f03
|
|
1000
980
|
type: core
|
|
1001
981
|
size: 8543
|
|
1002
982
|
- path: core/orchestration/executors/epic-6-executor.js
|
|
1003
|
-
hash: sha256:
|
|
983
|
+
hash: sha256:964e65e5ed622ed2325afc3e559150995ff28b246f148b14d1a8cc11ab9aaebe
|
|
1004
984
|
type: core
|
|
1005
|
-
size:
|
|
985
|
+
size: 14978
|
|
1006
986
|
- path: core/orchestration/executors/epic-executor.js
|
|
1007
987
|
hash: sha256:0c25d4799a6338252017d9deb2f73bbdbde58cd5f7bfe4ac0fccdc66fe0229d2
|
|
1008
988
|
type: core
|
|
@@ -1024,17 +1004,17 @@ files:
|
|
|
1024
1004
|
type: core
|
|
1025
1005
|
size: 40129
|
|
1026
1006
|
- path: core/orchestration/index.js
|
|
1027
|
-
hash: sha256:
|
|
1007
|
+
hash: sha256:ee215f855804448dcb02375128f4ff1f39e6861f37d1762dde19c80e77b8f4a6
|
|
1028
1008
|
type: core
|
|
1029
|
-
size:
|
|
1009
|
+
size: 9205
|
|
1030
1010
|
- path: core/orchestration/lock-manager.js
|
|
1031
1011
|
hash: sha256:b269b3c17d575f2dbca8e749585ad9133ab60dbfd7d74a85e6a776d2bb1909b4
|
|
1032
1012
|
type: core
|
|
1033
1013
|
size: 8667
|
|
1034
1014
|
- path: core/orchestration/master-orchestrator.js
|
|
1035
|
-
hash: sha256:
|
|
1015
|
+
hash: sha256:fdd9c02dfb5752cca028b1fbc882e7c466c77296b2966296a888f862bbaa24f2
|
|
1036
1016
|
type: core
|
|
1037
|
-
size:
|
|
1017
|
+
size: 67636
|
|
1038
1018
|
- path: core/orchestration/message-formatter.js
|
|
1039
1019
|
hash: sha256:4683565c3da6d33fa5aeb4629dfa525f90715cb3b3cbbaa4c8a8d952766839d7
|
|
1040
1020
|
type: core
|
|
@@ -1168,9 +1148,9 @@ files:
|
|
|
1168
1148
|
type: core
|
|
1169
1149
|
size: 5290
|
|
1170
1150
|
- path: core/registry/service-registry.json
|
|
1171
|
-
hash: sha256:
|
|
1151
|
+
hash: sha256:ca95afc8a947fdfaef37679a7d01d71c4d22beeb31603b84101bc992a64a8835
|
|
1172
1152
|
type: core
|
|
1173
|
-
size:
|
|
1153
|
+
size: 291505
|
|
1174
1154
|
- path: core/registry/squad-agent-resolver.js
|
|
1175
1155
|
hash: sha256:74c4a1fafd2f60eb9db38e9fd82a03b74d47d4e563ccb754fe00824f519c84f8
|
|
1176
1156
|
type: core
|
|
@@ -1192,9 +1172,9 @@ files:
|
|
|
1192
1172
|
type: core
|
|
1193
1173
|
size: 1014
|
|
1194
1174
|
- path: core/synapse/context/context-tracker.js
|
|
1195
|
-
hash: sha256:
|
|
1175
|
+
hash: sha256:5a62d37742dcf359d43caf9da3fae807d5356a3ab673dbbded9ded2eb8d3c3b9
|
|
1196
1176
|
type: core
|
|
1197
|
-
size:
|
|
1177
|
+
size: 14291
|
|
1198
1178
|
- path: core/synapse/context/index.js
|
|
1199
1179
|
hash: sha256:f0a1fe4d0215bc7089edac490604fc4a4007e1c9a446164deef231fbf6925cd0
|
|
1200
1180
|
type: core
|
|
@@ -1260,13 +1240,13 @@ files:
|
|
|
1260
1240
|
type: core
|
|
1261
1241
|
size: 8123
|
|
1262
1242
|
- path: core/synapse/engine.js
|
|
1263
|
-
hash: sha256:
|
|
1243
|
+
hash: sha256:fc4dd6d5af3c25efae53ac635f0174eef665906fca9ea4ea11c008cada44821d
|
|
1264
1244
|
type: core
|
|
1265
|
-
size:
|
|
1245
|
+
size: 16278
|
|
1266
1246
|
- path: core/synapse/layers/l0-constitution.js
|
|
1267
|
-
hash: sha256:
|
|
1247
|
+
hash: sha256:fed18380663e3f18178b46d7e5ea8ce58214b9f8727d618475aeaf80e916fff4
|
|
1268
1248
|
type: core
|
|
1269
|
-
size:
|
|
1249
|
+
size: 9839
|
|
1270
1250
|
- path: core/synapse/layers/l1-global.js
|
|
1271
1251
|
hash: sha256:ca35159bc42405750f1555884c92bf903885f0bf0a7e95469418f7a2f0e8c680
|
|
1272
1252
|
type: core
|
|
@@ -1308,9 +1288,9 @@ files:
|
|
|
1308
1288
|
type: core
|
|
1309
1289
|
size: 5533
|
|
1310
1290
|
- path: core/synapse/output/formatter.js
|
|
1311
|
-
hash: sha256:
|
|
1291
|
+
hash: sha256:4f5217b2cc301c8ad0e0f371fc40a185a99a97d651b30c42435661d9c6ed19f4
|
|
1312
1292
|
type: core
|
|
1313
|
-
size:
|
|
1293
|
+
size: 17924
|
|
1314
1294
|
- path: core/synapse/runtime/hook-runtime.js
|
|
1315
1295
|
hash: sha256:e8a41f68ae0cabd38f5527e86eeaceeb044df8200a8987bba922e5ca9c981699
|
|
1316
1296
|
type: core
|
|
@@ -1380,9 +1360,9 @@ files:
|
|
|
1380
1360
|
type: data
|
|
1381
1361
|
size: 9671
|
|
1382
1362
|
- path: data/entity-registry.yaml
|
|
1383
|
-
hash: sha256:
|
|
1363
|
+
hash: sha256:166203aac0d019e100aff6a79145b2e83cf6b31d7d69374ffdc019e463ebf384
|
|
1384
1364
|
type: data
|
|
1385
|
-
size:
|
|
1365
|
+
size: 557171
|
|
1386
1366
|
- path: data/learned-patterns.yaml
|
|
1387
1367
|
hash: sha256:1a4cd045c087b9dfd7046ff1464a9d2edb85fba77cf0b6fba14f4bb9004c741e
|
|
1388
1368
|
type: data
|
|
@@ -1484,53 +1464,53 @@ files:
|
|
|
1484
1464
|
type: development
|
|
1485
1465
|
size: 5058
|
|
1486
1466
|
- path: development/agents/analyst.md
|
|
1487
|
-
hash: sha256:
|
|
1467
|
+
hash: sha256:17e4b47515862b1e2c44ab59085bac56cc505e10f0b6c8f1751b766f66ddfbec
|
|
1488
1468
|
type: agent
|
|
1489
|
-
size:
|
|
1469
|
+
size: 14918
|
|
1490
1470
|
- path: development/agents/architect.md
|
|
1491
|
-
hash: sha256:
|
|
1471
|
+
hash: sha256:b25f7a5d927b8645af278828d99af3b46e0d21b2d5dd443dbec0e8af2d195e1c
|
|
1492
1472
|
type: agent
|
|
1493
|
-
size:
|
|
1473
|
+
size: 23749
|
|
1494
1474
|
- path: development/agents/data-engineer.md
|
|
1495
|
-
hash: sha256:
|
|
1475
|
+
hash: sha256:8f965782df49716c4d043327f8cdf430980794c0bd4984b1b3fc0dc774b2323c
|
|
1496
1476
|
type: agent
|
|
1497
|
-
size:
|
|
1477
|
+
size: 23210
|
|
1498
1478
|
- path: development/agents/developer.md
|
|
1499
|
-
hash: sha256:
|
|
1479
|
+
hash: sha256:da98be997a4b86f96b8c4f822ae189dcd4d2698d19609c6d1d2b7a56d879eeb8
|
|
1500
1480
|
type: agent
|
|
1501
|
-
size:
|
|
1481
|
+
size: 28149
|
|
1502
1482
|
- path: development/agents/devops.md
|
|
1503
|
-
hash: sha256:
|
|
1483
|
+
hash: sha256:9c566f77c11e95edc5537e13c5f5fda65949c4cef6a1f142f81d7b35347b808b
|
|
1504
1484
|
type: agent
|
|
1505
|
-
size:
|
|
1485
|
+
size: 26954
|
|
1506
1486
|
- path: development/agents/product-lead.md
|
|
1507
|
-
hash: sha256:
|
|
1487
|
+
hash: sha256:a0d13d7e04c602000eae91dff54bf4030f11e29b4182e04c763c381086b9e7b7
|
|
1508
1488
|
type: agent
|
|
1509
|
-
size:
|
|
1489
|
+
size: 14770
|
|
1510
1490
|
- path: development/agents/project-lead.md
|
|
1511
|
-
hash: sha256:
|
|
1491
|
+
hash: sha256:9dfb7b7a4c87ee992025764d1c976f3551a6302ac1493a4de98a8bb4c696b010
|
|
1512
1492
|
type: agent
|
|
1513
|
-
size:
|
|
1493
|
+
size: 16959
|
|
1514
1494
|
- path: development/agents/quality-gate.md
|
|
1515
|
-
hash: sha256:
|
|
1495
|
+
hash: sha256:a2a4ec39d9d75b0f9872104157094f2846453c962974f551fee1d7a2dccfbec1
|
|
1516
1496
|
type: agent
|
|
1517
|
-
size:
|
|
1497
|
+
size: 22302
|
|
1518
1498
|
- path: development/agents/snps-orqx.md
|
|
1519
|
-
hash: sha256:
|
|
1499
|
+
hash: sha256:8e4145cdf25f57d366e0f6b3563e907c7a3ba8b2d6d3af0a6e573927f4a0321c
|
|
1520
1500
|
type: agent
|
|
1521
|
-
size:
|
|
1501
|
+
size: 43871
|
|
1522
1502
|
- path: development/agents/sprint-lead.md
|
|
1523
|
-
hash: sha256:
|
|
1503
|
+
hash: sha256:df8dbd1de7b9c1238cbe3629d307563bbac1515869a5658dc7286b3dcbb55078
|
|
1524
1504
|
type: agent
|
|
1525
|
-
size:
|
|
1505
|
+
size: 13053
|
|
1526
1506
|
- path: development/agents/squad-creator.md
|
|
1527
|
-
hash: sha256:
|
|
1507
|
+
hash: sha256:aa5da75a12797fc06994dc254fc4a35e0eccbfe2f6891acfe5590c81bc019e02
|
|
1528
1508
|
type: agent
|
|
1529
|
-
size:
|
|
1509
|
+
size: 17296
|
|
1530
1510
|
- path: development/agents/ux-design-expert.md
|
|
1531
|
-
hash: sha256:
|
|
1511
|
+
hash: sha256:c012233be2311a30e2b25526a5e7079af830bb66c8cd51fd8a070754c1af2fb0
|
|
1532
1512
|
type: agent
|
|
1533
|
-
size:
|
|
1513
|
+
size: 21164
|
|
1534
1514
|
- path: development/checklists/agent-quality-gate.md
|
|
1535
1515
|
hash: sha256:511d05a2df0e59f3503d882f61131703a5fcecb47d75f99b392086fc3a663433
|
|
1536
1516
|
type: checklist
|
|
@@ -1632,9 +1612,9 @@ files:
|
|
|
1632
1612
|
type: script
|
|
1633
1613
|
size: 18933
|
|
1634
1614
|
- path: development/scripts/agent-exit-hooks.js
|
|
1635
|
-
hash: sha256:
|
|
1615
|
+
hash: sha256:57f1b68f92ae39c75843e19d9e2d8427e6afa2957cbfd2b71055b9273ea24e9a
|
|
1636
1616
|
type: script
|
|
1637
|
-
size:
|
|
1617
|
+
size: 3813
|
|
1638
1618
|
- path: development/scripts/apply-inline-greeting-all-agents.js
|
|
1639
1619
|
hash: sha256:e58ad5d52b329d335ee73245352ae545df19c8122e23f34750a6a75996ca9dc6
|
|
1640
1620
|
type: script
|
|
@@ -1708,9 +1688,9 @@ files:
|
|
|
1708
1688
|
type: script
|
|
1709
1689
|
size: 35071
|
|
1710
1690
|
- path: development/scripts/populate-entity-registry.js
|
|
1711
|
-
hash: sha256:
|
|
1691
|
+
hash: sha256:b3eb148b44675ab7bb837c1baaf5cfbb312ebf2091e9386efa54f857de60a8bf
|
|
1712
1692
|
type: script
|
|
1713
|
-
size:
|
|
1693
|
+
size: 26195
|
|
1714
1694
|
- path: development/scripts/skill-validator.js
|
|
1715
1695
|
hash: sha256:9e8decda5a7bf73f05772ba0a315931b55bc61e333efea16901c5170752fb297
|
|
1716
1696
|
type: script
|
|
@@ -2180,9 +2160,9 @@ files:
|
|
|
2180
2160
|
type: task
|
|
2181
2161
|
size: 8809
|
|
2182
2162
|
- path: development/tasks/execute-epic-plan.md
|
|
2183
|
-
hash: sha256:
|
|
2163
|
+
hash: sha256:a505eb0429e05d6c38e0836d7d60e98815aa70f10c855c0936dfde6731682343
|
|
2184
2164
|
type: task
|
|
2185
|
-
size:
|
|
2165
|
+
size: 25478
|
|
2186
2166
|
- path: development/tasks/export-design-tokens-dtcg.md
|
|
2187
2167
|
hash: sha256:ce37d53f78d6ddab720e6d534d9da629497264ed72b620bc4ff1306ad0f6ffeb
|
|
2188
2168
|
type: task
|
|
@@ -2727,10 +2707,6 @@ files:
|
|
|
2727
2707
|
hash: sha256:72395f28212ce2742fc9eb282b37cc19aa1fd30b18eb99e3cedb25c35b056802
|
|
2728
2708
|
type: task
|
|
2729
2709
|
size: 4951
|
|
2730
|
-
- path: development/tasks/waves.md
|
|
2731
|
-
hash: sha256:5f8e9a9f5f630232596fc7222d1e06e3d940bab071f152996fa79e7ac0401842
|
|
2732
|
-
type: task
|
|
2733
|
-
size: 4693
|
|
2734
2710
|
- path: development/tasks/yolo-toggle.md
|
|
2735
2711
|
hash: sha256:ebc3ab61085c0d19806b914a60a67e68b64dd1a7db27ad603125bc9d02f697f0
|
|
2736
2712
|
type: task
|
|
@@ -3008,9 +2984,9 @@ files:
|
|
|
3008
2984
|
type: workflow
|
|
3009
2985
|
size: 15633
|
|
3010
2986
|
- path: development/workflows/epic-orchestration.yaml
|
|
3011
|
-
hash: sha256:
|
|
2987
|
+
hash: sha256:f795fafa52113f199a186bbb00624c1d93491363f5198d46b6793fb9fee63a5d
|
|
3012
2988
|
type: workflow
|
|
3013
|
-
size:
|
|
2989
|
+
size: 16953
|
|
3014
2990
|
- path: development/workflows/fast-track.yaml
|
|
3015
2991
|
hash: sha256:1a4f5665af164b8c6425d2ff3c2e713ff8559a66066aa0c7cbd1c6773aaa8266
|
|
3016
2992
|
type: workflow
|
|
@@ -3136,9 +3112,9 @@ files:
|
|
|
3136
3112
|
type: infrastructure
|
|
3137
3113
|
size: 964
|
|
3138
3114
|
- path: infrastructure/integrations/ai-providers/README.md
|
|
3139
|
-
hash: sha256:
|
|
3115
|
+
hash: sha256:cda2b941b190dc24e1cb517922692c22e27895db89a43a2db192ae008aadd08f
|
|
3140
3116
|
type: infrastructure
|
|
3141
|
-
size:
|
|
3117
|
+
size: 2769
|
|
3142
3118
|
- path: infrastructure/integrations/pm-adapters/clickup-adapter.js
|
|
3143
3119
|
hash: sha256:7a37eb45be1ed599cac20ac415c9e824b2b2d2e7bfc1cba212b627114a3a49e1
|
|
3144
3120
|
type: infrastructure
|
|
@@ -3992,9 +3968,9 @@ files:
|
|
|
3992
3968
|
type: template
|
|
3993
3969
|
size: 3816
|
|
3994
3970
|
- path: product/templates/activation-instructions-template.md
|
|
3995
|
-
hash: sha256:
|
|
3971
|
+
hash: sha256:6a3e870e6525abd76ea655c7638afe95c4855b0aa53c9a86189cb99ee036e7d2
|
|
3996
3972
|
type: template
|
|
3997
|
-
size:
|
|
3973
|
+
size: 10768
|
|
3998
3974
|
- path: product/templates/adr.hbs
|
|
3999
3975
|
hash: sha256:7825131e30ee9f473e10258682981fd6cb7fb47e1c276ad79d3b777eaaecc62c
|
|
4000
3976
|
type: template
|
|
@@ -4144,9 +4120,9 @@ files:
|
|
|
4144
4120
|
type: template
|
|
4145
4121
|
size: 3692
|
|
4146
4122
|
- path: product/templates/ide-rules/claude-rules.md
|
|
4147
|
-
hash: sha256:
|
|
4123
|
+
hash: sha256:ca54301ac49f4c49cc2a1552469f131f7d2593946e8b04757578f231d06ba3dd
|
|
4148
4124
|
type: template
|
|
4149
|
-
size:
|
|
4125
|
+
size: 5343
|
|
4150
4126
|
- path: product/templates/ide-rules/codex-rules.md
|
|
4151
4127
|
hash: sha256:f2ba69b86236271970537e4284edbc819379337fed8fd2c8ff2c9a1ffa1b9bbf
|
|
4152
4128
|
type: template
|
|
@@ -4172,9 +4148,9 @@ files:
|
|
|
4172
4148
|
type: template
|
|
4173
4149
|
size: 14443
|
|
4174
4150
|
- path: product/templates/personalized-agent-template.md
|
|
4175
|
-
hash: sha256:
|
|
4151
|
+
hash: sha256:3fbae9bacf8686c4a127ff90d036337ac24408ad6a75d7bf2a3c1be648d4c82c
|
|
4176
4152
|
type: template
|
|
4177
|
-
size:
|
|
4153
|
+
size: 9073
|
|
4178
4154
|
- path: product/templates/personalized-checklist-template.md
|
|
4179
4155
|
hash: sha256:4214899ef40e71ea7dc5ceb5feffd66fbf2eb9edce6032185eb6ba355fbbb96a
|
|
4180
4156
|
type: template
|
|
@@ -4244,13 +4220,13 @@ files:
|
|
|
4244
4220
|
type: template
|
|
4245
4221
|
size: 6764
|
|
4246
4222
|
- path: product/templates/statusline/agent-badges.json
|
|
4247
|
-
hash: sha256:
|
|
4223
|
+
hash: sha256:99ec043c87068c6cf475c9a575bd62bc483f4cf0739785fe9bfcae2ee90aa543
|
|
4248
4224
|
type: template
|
|
4249
|
-
size:
|
|
4225
|
+
size: 18478
|
|
4250
4226
|
- path: product/templates/statusline/statusline-script.js
|
|
4251
|
-
hash: sha256:
|
|
4227
|
+
hash: sha256:5741f4de84bba45ab72ae9203c99cca5891be7d1081e8da74a8610d0a23b945c
|
|
4252
4228
|
type: template
|
|
4253
|
-
size:
|
|
4229
|
+
size: 9200
|
|
4254
4230
|
- path: product/templates/statusline/track-agent-clear.cjs
|
|
4255
4231
|
hash: sha256:3cda606de2463374e60440ba6cae9ca98e39b782b19c6ae39aa7569a1b211f09
|
|
4256
4232
|
type: template
|
|
@@ -4587,10 +4563,6 @@ files:
|
|
|
4587
4563
|
hash: sha256:4dd26f611a58c0bcd54dc69e1804efe103406ee0c0bda0880a4b39aecf540045
|
|
4588
4564
|
type: workflow-intelligence
|
|
4589
4565
|
size: 12789
|
|
4590
|
-
- path: workflow-intelligence/__tests__/wave-analyzer.test.js
|
|
4591
|
-
hash: sha256:43ff641c47a3583eacc0a7aa432455c48bc5c2dd51f32bebdeaf4c4a3d3abc14
|
|
4592
|
-
type: workflow-intelligence
|
|
4593
|
-
size: 15056
|
|
4594
4566
|
- path: workflow-intelligence/__tests__/workflow-registry.test.js
|
|
4595
4567
|
hash: sha256:d9488e420f584474de920e090068809a220db1bd1d49e96769f6fc3ed7a47dba
|
|
4596
4568
|
type: workflow-intelligence
|
|
@@ -4607,14 +4579,10 @@ files:
|
|
|
4607
4579
|
hash: sha256:48739aaa5844cea1264da33e0313c499eaeec854de4d69129dcca8d4ef32ad65
|
|
4608
4580
|
type: workflow-intelligence
|
|
4609
4581
|
size: 23448
|
|
4610
|
-
- path: workflow-intelligence/engine/wave-analyzer.js
|
|
4611
|
-
hash: sha256:cc1eed3a397a9714d30eacfb8c9b9c5f6ae431e7aa2c3ec404967f691caed874
|
|
4612
|
-
type: workflow-intelligence
|
|
4613
|
-
size: 19798
|
|
4614
4582
|
- path: workflow-intelligence/index.js
|
|
4615
|
-
hash: sha256:
|
|
4583
|
+
hash: sha256:1b6cb4b5e9011acdbc021fa27b9adf47145629b06436344ccbf001d6195095ed
|
|
4616
4584
|
type: workflow-intelligence
|
|
4617
|
-
size:
|
|
4585
|
+
size: 7792
|
|
4618
4586
|
- path: workflow-intelligence/learning/capture-hook.js
|
|
4619
4587
|
hash: sha256:9f29c770b5c0ca68f9fe0a21de37367f6b98381608378f1e1cb4e3e4ea1b0e96
|
|
4620
4588
|
type: workflow-intelligence
|