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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
metadata:
|
|
2
2
|
version: 1.0.0
|
|
3
|
-
lastUpdated: '2026-
|
|
4
|
-
entityCount:
|
|
3
|
+
lastUpdated: '2026-07-03T06:58:13.504Z'
|
|
4
|
+
entityCount: 813
|
|
5
5
|
checksumAlgorithm: sha256
|
|
6
6
|
resolutionRate: 100
|
|
7
7
|
entities:
|
|
@@ -41,8 +41,8 @@ entities:
|
|
|
41
41
|
score: 0.7
|
|
42
42
|
constraints: []
|
|
43
43
|
extensionPoints: []
|
|
44
|
-
checksum: sha256:
|
|
45
|
-
lastVerified: '2026-
|
|
44
|
+
checksum: sha256:f66f076d3c8bead4fa1193fe027582c0487019e363bd37012db6a6cc1d90ab6d
|
|
45
|
+
lastVerified: '2026-07-02T22:41:00.485Z'
|
|
46
46
|
agents:
|
|
47
47
|
path: bin/commands/agents.js
|
|
48
48
|
layer: L1
|
|
@@ -106,8 +106,8 @@ entities:
|
|
|
106
106
|
score: 0.7
|
|
107
107
|
constraints: []
|
|
108
108
|
extensionPoints: []
|
|
109
|
-
checksum: sha256:
|
|
110
|
-
lastVerified: '2026-
|
|
109
|
+
checksum: sha256:af615f80ca758541b8ede2af086aead94b99f194336459529ab3876186462a3d
|
|
110
|
+
lastVerified: '2026-07-02T22:41:00.486Z'
|
|
111
111
|
ideate:
|
|
112
112
|
path: bin/commands/ideate.js
|
|
113
113
|
layer: L1
|
|
@@ -164,8 +164,8 @@ entities:
|
|
|
164
164
|
score: 0.7
|
|
165
165
|
constraints: []
|
|
166
166
|
extensionPoints: []
|
|
167
|
-
checksum: sha256:
|
|
168
|
-
lastVerified: '2026-
|
|
167
|
+
checksum: sha256:e95c8038b07411c6d301ae1bd3c1ae986a7db0c6dad860513477ee94a31eb294
|
|
168
|
+
lastVerified: '2026-07-03T06:55:48.454Z'
|
|
169
169
|
local:
|
|
170
170
|
path: bin/commands/local.js
|
|
171
171
|
layer: L1
|
|
@@ -224,6 +224,7 @@ entities:
|
|
|
224
224
|
usedBy:
|
|
225
225
|
- cli
|
|
226
226
|
- install
|
|
227
|
+
- sinapse
|
|
227
228
|
dependencies:
|
|
228
229
|
- constants
|
|
229
230
|
- header
|
|
@@ -238,8 +239,8 @@ entities:
|
|
|
238
239
|
score: 0.7
|
|
239
240
|
constraints: []
|
|
240
241
|
extensionPoints: []
|
|
241
|
-
checksum: sha256:
|
|
242
|
-
lastVerified: '2026-
|
|
242
|
+
checksum: sha256:6d2ea0c99216d60e95a05b80145ab744d8b945aa4d8f2c67cf7ba219116fbf04
|
|
243
|
+
lastVerified: '2026-07-03T02:01:18.257Z'
|
|
243
244
|
update:
|
|
244
245
|
path: bin/commands/update.js
|
|
245
246
|
layer: L1
|
|
@@ -296,8 +297,8 @@ entities:
|
|
|
296
297
|
score: 0.7
|
|
297
298
|
constraints: []
|
|
298
299
|
extensionPoints: []
|
|
299
|
-
checksum: sha256:
|
|
300
|
-
lastVerified: '2026-
|
|
300
|
+
checksum: sha256:7f71528dc99fc1283f1c9eefa8f482f38a7fa8d4d10ef84c1e2c4c47d5454552
|
|
301
|
+
lastVerified: '2026-07-03T06:55:48.455Z'
|
|
301
302
|
constants:
|
|
302
303
|
path: bin/lib/constants.js
|
|
303
304
|
layer: L1
|
|
@@ -327,6 +328,7 @@ entities:
|
|
|
327
328
|
- cli
|
|
328
329
|
- install
|
|
329
330
|
- prompts
|
|
331
|
+
- sinapse
|
|
330
332
|
- update
|
|
331
333
|
dependencies:
|
|
332
334
|
- constants
|
|
@@ -348,13 +350,20 @@ entities:
|
|
|
348
350
|
- fs
|
|
349
351
|
- utils
|
|
350
352
|
usedBy:
|
|
353
|
+
- chrome-brain-installer
|
|
351
354
|
- cli
|
|
352
355
|
- command-generator
|
|
353
356
|
- install
|
|
357
|
+
- mcp-installer
|
|
358
|
+
- postinstall
|
|
359
|
+
- setup-statusline
|
|
360
|
+
- sinapse
|
|
361
|
+
- sinapse-init
|
|
354
362
|
- uninstall
|
|
355
363
|
- update
|
|
356
364
|
dependencies:
|
|
357
365
|
- constants
|
|
366
|
+
- atomic-write
|
|
358
367
|
externalDeps: []
|
|
359
368
|
plannedDeps: []
|
|
360
369
|
lifecycle: production
|
|
@@ -362,8 +371,8 @@ entities:
|
|
|
362
371
|
score: 0.7
|
|
363
372
|
constraints: []
|
|
364
373
|
extensionPoints: []
|
|
365
|
-
checksum: sha256:
|
|
366
|
-
lastVerified: '2026-
|
|
374
|
+
checksum: sha256:915794e5220df95058f459e56829861a0fdbab2d1422ed510fbc3de5aa8d47c1
|
|
375
|
+
lastVerified: '2026-07-03T06:55:48.456Z'
|
|
367
376
|
fuzzy:
|
|
368
377
|
path: bin/lib/fuzzy.js
|
|
369
378
|
layer: L1
|
|
@@ -445,7 +454,8 @@ entities:
|
|
|
445
454
|
- statusline
|
|
446
455
|
usedBy:
|
|
447
456
|
- sinapse-init
|
|
448
|
-
dependencies:
|
|
457
|
+
dependencies:
|
|
458
|
+
- fs-utils
|
|
449
459
|
externalDeps: []
|
|
450
460
|
plannedDeps: []
|
|
451
461
|
lifecycle: production
|
|
@@ -453,8 +463,8 @@ entities:
|
|
|
453
463
|
score: 0.7
|
|
454
464
|
constraints: []
|
|
455
465
|
extensionPoints: []
|
|
456
|
-
checksum: sha256:
|
|
457
|
-
lastVerified: '2026-
|
|
466
|
+
checksum: sha256:29136ce32719995fdd69efdef722fea4158e3ce713ba0b1449be3500e5639147
|
|
467
|
+
lastVerified: '2026-07-03T06:55:48.456Z'
|
|
458
468
|
squads:
|
|
459
469
|
path: bin/lib/squads.js
|
|
460
470
|
layer: L1
|
|
@@ -491,7 +501,8 @@ entities:
|
|
|
491
501
|
- cli
|
|
492
502
|
- install
|
|
493
503
|
- sinapse
|
|
494
|
-
dependencies:
|
|
504
|
+
dependencies:
|
|
505
|
+
- fs-utils
|
|
495
506
|
externalDeps: []
|
|
496
507
|
plannedDeps: []
|
|
497
508
|
lifecycle: production
|
|
@@ -499,8 +510,8 @@ entities:
|
|
|
499
510
|
score: 0.7
|
|
500
511
|
constraints: []
|
|
501
512
|
extensionPoints: []
|
|
502
|
-
checksum: sha256:
|
|
503
|
-
lastVerified: '2026-
|
|
513
|
+
checksum: sha256:96cb1c781357cadaeda4e6f9b970aa556c87beda8f9b6efb071369fd2948d458
|
|
514
|
+
lastVerified: '2026-07-03T06:55:48.457Z'
|
|
504
515
|
env-config:
|
|
505
516
|
path: bin/modules/env-config.js
|
|
506
517
|
layer: L1
|
|
@@ -529,16 +540,17 @@ entities:
|
|
|
529
540
|
- mcp
|
|
530
541
|
- installer
|
|
531
542
|
usedBy: []
|
|
532
|
-
dependencies:
|
|
543
|
+
dependencies:
|
|
544
|
+
- fs-utils
|
|
533
545
|
externalDeps: []
|
|
534
546
|
plannedDeps: []
|
|
535
|
-
lifecycle:
|
|
547
|
+
lifecycle: experimental
|
|
536
548
|
adaptability:
|
|
537
549
|
score: 0.7
|
|
538
550
|
constraints: []
|
|
539
551
|
extensionPoints: []
|
|
540
|
-
checksum: sha256:
|
|
541
|
-
lastVerified: '2026-
|
|
552
|
+
checksum: sha256:1eb85e130f7c0b5e2c02749a14afb01b05e029f8545132d5b4d49c2e6799050f
|
|
553
|
+
lastVerified: '2026-07-03T06:55:48.457Z'
|
|
542
554
|
postinstall:
|
|
543
555
|
path: bin/postinstall.js
|
|
544
556
|
layer: L1
|
|
@@ -547,16 +559,17 @@ entities:
|
|
|
547
559
|
keywords:
|
|
548
560
|
- postinstall
|
|
549
561
|
usedBy: []
|
|
550
|
-
dependencies:
|
|
562
|
+
dependencies:
|
|
563
|
+
- fs-utils
|
|
551
564
|
externalDeps: []
|
|
552
565
|
plannedDeps: []
|
|
553
|
-
lifecycle:
|
|
566
|
+
lifecycle: experimental
|
|
554
567
|
adaptability:
|
|
555
568
|
score: 0.7
|
|
556
569
|
constraints: []
|
|
557
570
|
extensionPoints: []
|
|
558
|
-
checksum: sha256:
|
|
559
|
-
lastVerified: '2026-
|
|
571
|
+
checksum: sha256:7d7af407aecf1704b20d248edc724fa9482cff291743543bf3f6e57336fa9a55
|
|
572
|
+
lastVerified: '2026-07-03T06:55:48.457Z'
|
|
560
573
|
sinapse-delegate:
|
|
561
574
|
path: bin/sinapse-delegate.js
|
|
562
575
|
layer: L1
|
|
@@ -605,6 +618,7 @@ entities:
|
|
|
605
618
|
- init
|
|
606
619
|
usedBy: []
|
|
607
620
|
dependencies:
|
|
621
|
+
- fs-utils
|
|
608
622
|
- setup-statusline
|
|
609
623
|
externalDeps: []
|
|
610
624
|
plannedDeps:
|
|
@@ -615,8 +629,8 @@ entities:
|
|
|
615
629
|
score: 0.7
|
|
616
630
|
constraints: []
|
|
617
631
|
extensionPoints: []
|
|
618
|
-
checksum: sha256:
|
|
619
|
-
lastVerified: '2026-
|
|
632
|
+
checksum: sha256:277d4180fa819caa409f97849b25e3f1d11ce8e863b96dd639f8efe184e6e4ff
|
|
633
|
+
lastVerified: '2026-07-03T06:55:48.458Z'
|
|
620
634
|
sinapse-minimal:
|
|
621
635
|
path: bin/sinapse-minimal.js
|
|
622
636
|
layer: L1
|
|
@@ -647,7 +661,10 @@ entities:
|
|
|
647
661
|
usedBy: []
|
|
648
662
|
dependencies:
|
|
649
663
|
- deprecation-warning
|
|
664
|
+
- detection
|
|
665
|
+
- fs-utils
|
|
650
666
|
- index
|
|
667
|
+
- uninstall
|
|
651
668
|
- chrome-brain-installer
|
|
652
669
|
- cli
|
|
653
670
|
- component-generator
|
|
@@ -665,8 +682,8 @@ entities:
|
|
|
665
682
|
score: 0.7
|
|
666
683
|
constraints: []
|
|
667
684
|
extensionPoints: []
|
|
668
|
-
checksum: sha256:
|
|
669
|
-
lastVerified: '2026-
|
|
685
|
+
checksum: sha256:fa741655357dfbc0efcb684c6acf19c582e5512f87e90061d86d52222e223aef
|
|
686
|
+
lastVerified: '2026-07-03T06:55:48.459Z'
|
|
670
687
|
collab-start:
|
|
671
688
|
path: bin/utils/collab-start.js
|
|
672
689
|
layer: L1
|
|
@@ -887,8 +904,8 @@ entities:
|
|
|
887
904
|
score: 0.7
|
|
888
905
|
constraints: []
|
|
889
906
|
extensionPoints: []
|
|
890
|
-
checksum: sha256:
|
|
891
|
-
lastVerified: '2026-
|
|
907
|
+
checksum: sha256:549484de6a79a508b381a51a5b4abd304ba693fae3aad3f7ad67fd914e5eda39
|
|
908
|
+
lastVerified: '2026-07-03T06:55:48.460Z'
|
|
892
909
|
staged-sql-guard:
|
|
893
910
|
path: bin/utils/staged-sql-guard.js
|
|
894
911
|
layer: L1
|
|
@@ -2942,8 +2959,8 @@ entities:
|
|
|
2942
2959
|
score: 0.8
|
|
2943
2960
|
constraints: []
|
|
2944
2961
|
extensionPoints: []
|
|
2945
|
-
checksum: sha256:
|
|
2946
|
-
lastVerified: '2026-
|
|
2962
|
+
checksum: sha256:a505eb0429e05d6c38e0836d7d60e98815aa70f10c855c0936dfde6731682343
|
|
2963
|
+
lastVerified: '2026-07-03T06:55:48.479Z'
|
|
2947
2964
|
export-design-tokens-dtcg:
|
|
2948
2965
|
path: .sinapse-ai/development/tasks/export-design-tokens-dtcg.md
|
|
2949
2966
|
layer: L2
|
|
@@ -3839,11 +3856,11 @@ entities:
|
|
|
3839
3856
|
- suggestions
|
|
3840
3857
|
usedBy: []
|
|
3841
3858
|
dependencies:
|
|
3859
|
+
- suggestion-engine
|
|
3842
3860
|
- workflow-state-manager
|
|
3843
3861
|
- output-formatter
|
|
3844
3862
|
externalDeps: []
|
|
3845
|
-
plannedDeps:
|
|
3846
|
-
- suggestion-engine
|
|
3863
|
+
plannedDeps: []
|
|
3847
3864
|
lifecycle: experimental
|
|
3848
3865
|
adaptability:
|
|
3849
3866
|
score: 0.8
|
|
@@ -6350,30 +6367,6 @@ entities:
|
|
|
6350
6367
|
extensionPoints: []
|
|
6351
6368
|
checksum: sha256:72395f28212ce2742fc9eb282b37cc19aa1fd30b18eb99e3cedb25c35b056802
|
|
6352
6369
|
lastVerified: '2026-06-15T00:26:26.308Z'
|
|
6353
|
-
waves:
|
|
6354
|
-
path: .sinapse-ai/development/tasks/waves.md
|
|
6355
|
-
layer: L2
|
|
6356
|
-
type: task
|
|
6357
|
-
purpose: 'Task: `*waves` - Wave Analysis'
|
|
6358
|
-
keywords:
|
|
6359
|
-
- waves
|
|
6360
|
-
- 'task:'
|
|
6361
|
-
- '`*waves`'
|
|
6362
|
-
- wave
|
|
6363
|
-
- analysis
|
|
6364
|
-
usedBy:
|
|
6365
|
-
- developer
|
|
6366
|
-
dependencies: []
|
|
6367
|
-
externalDeps: []
|
|
6368
|
-
plannedDeps:
|
|
6369
|
-
- workflow-intelligence
|
|
6370
|
-
lifecycle: production
|
|
6371
|
-
adaptability:
|
|
6372
|
-
score: 0.8
|
|
6373
|
-
constraints: []
|
|
6374
|
-
extensionPoints: []
|
|
6375
|
-
checksum: sha256:5f8e9a9f5f630232596fc7222d1e06e3d940bab071f152996fa79e7ac0401842
|
|
6376
|
-
lastVerified: '2026-06-15T00:26:26.308Z'
|
|
6377
6370
|
yolo-toggle:
|
|
6378
6371
|
path: .sinapse-ai/development/tasks/yolo-toggle.md
|
|
6379
6372
|
layer: L2
|
|
@@ -6440,8 +6433,8 @@ entities:
|
|
|
6440
6433
|
score: 0.5
|
|
6441
6434
|
constraints: []
|
|
6442
6435
|
extensionPoints: []
|
|
6443
|
-
checksum: sha256:
|
|
6444
|
-
lastVerified: '2026-
|
|
6436
|
+
checksum: sha256:6a3e870e6525abd76ea655c7638afe95c4855b0aa53c9a86189cb99ee036e7d2
|
|
6437
|
+
lastVerified: '2026-07-03T00:40:19.431Z'
|
|
6445
6438
|
agent-template:
|
|
6446
6439
|
path: .sinapse-ai/product/templates/agent-template.yaml
|
|
6447
6440
|
layer: L2
|
|
@@ -6884,8 +6877,8 @@ entities:
|
|
|
6884
6877
|
score: 0.5
|
|
6885
6878
|
constraints: []
|
|
6886
6879
|
extensionPoints: []
|
|
6887
|
-
checksum: sha256:
|
|
6888
|
-
lastVerified: '2026-
|
|
6880
|
+
checksum: sha256:ca54301ac49f4c49cc2a1552469f131f7d2593946e8b04757578f231d06ba3dd
|
|
6881
|
+
lastVerified: '2026-07-02T23:20:49.164Z'
|
|
6889
6882
|
codex-rules:
|
|
6890
6883
|
path: .sinapse-ai/product/templates/ide-rules/codex-rules.md
|
|
6891
6884
|
layer: L2
|
|
@@ -7020,8 +7013,8 @@ entities:
|
|
|
7020
7013
|
score: 0.5
|
|
7021
7014
|
constraints: []
|
|
7022
7015
|
extensionPoints: []
|
|
7023
|
-
checksum: sha256:
|
|
7024
|
-
lastVerified: '2026-
|
|
7016
|
+
checksum: sha256:3fbae9bacf8686c4a127ff90d036337ac24408ad6a75d7bf2a3c1be648d4c82c
|
|
7017
|
+
lastVerified: '2026-07-03T06:55:48.514Z'
|
|
7025
7018
|
personalized-checklist-template:
|
|
7026
7019
|
path: .sinapse-ai/product/templates/personalized-checklist-template.md
|
|
7027
7020
|
layer: L2
|
|
@@ -7493,7 +7486,7 @@ entities:
|
|
|
7493
7486
|
path: .sinapse-ai/development/scripts/agent-exit-hooks.js
|
|
7494
7487
|
layer: L2
|
|
7495
7488
|
type: script
|
|
7496
|
-
purpose:
|
|
7489
|
+
purpose: Entity at .sinapse-ai\development\scripts\agent-exit-hooks.js
|
|
7497
7490
|
keywords:
|
|
7498
7491
|
- agent
|
|
7499
7492
|
- exit
|
|
@@ -7508,8 +7501,8 @@ entities:
|
|
|
7508
7501
|
score: 0.7
|
|
7509
7502
|
constraints: []
|
|
7510
7503
|
extensionPoints: []
|
|
7511
|
-
checksum: sha256:
|
|
7512
|
-
lastVerified: '2026-
|
|
7504
|
+
checksum: sha256:57f1b68f92ae39c75843e19d9e2d8427e6afa2957cbfd2b71055b9273ea24e9a
|
|
7505
|
+
lastVerified: '2026-07-02T23:20:49.170Z'
|
|
7513
7506
|
apply-inline-greeting-all-agents:
|
|
7514
7507
|
path: .sinapse-ai/development/scripts/apply-inline-greeting-all-agents.js
|
|
7515
7508
|
layer: L2
|
|
@@ -7922,8 +7915,8 @@ entities:
|
|
|
7922
7915
|
score: 0.7
|
|
7923
7916
|
constraints: []
|
|
7924
7917
|
extensionPoints: []
|
|
7925
|
-
checksum: sha256:
|
|
7926
|
-
lastVerified: '2026-
|
|
7918
|
+
checksum: sha256:b3eb148b44675ab7bb837c1baaf5cfbb312ebf2091e9386efa54f857de60a8bf
|
|
7919
|
+
lastVerified: '2026-07-03T06:56:38.987Z'
|
|
7927
7920
|
skill-validator:
|
|
7928
7921
|
path: .sinapse-ai/development/scripts/skill-validator.js
|
|
7929
7922
|
layer: L2
|
|
@@ -8477,6 +8470,7 @@ entities:
|
|
|
8477
8470
|
usedBy:
|
|
8478
8471
|
- next
|
|
8479
8472
|
- run-workflow-engine
|
|
8473
|
+
- suggestion-engine
|
|
8480
8474
|
- verify-workflow-gaps
|
|
8481
8475
|
dependencies: []
|
|
8482
8476
|
externalDeps: []
|
|
@@ -8552,8 +8546,8 @@ entities:
|
|
|
8552
8546
|
score: 0.4
|
|
8553
8547
|
constraints: []
|
|
8554
8548
|
extensionPoints: []
|
|
8555
|
-
checksum: sha256:
|
|
8556
|
-
lastVerified: '2026-
|
|
8549
|
+
checksum: sha256:12c9c4a90ab702decc9d3f35082bd45d10068810a269f8f3bd75b96c3663de50
|
|
8550
|
+
lastVerified: '2026-07-02T21:50:25.756Z'
|
|
8557
8551
|
flows:
|
|
8558
8552
|
path: .sinapse-ai/core/atlas/flows.js
|
|
8559
8553
|
layer: L1
|
|
@@ -8571,8 +8565,8 @@ entities:
|
|
|
8571
8565
|
score: 0.4
|
|
8572
8566
|
constraints: []
|
|
8573
8567
|
extensionPoints: []
|
|
8574
|
-
checksum: sha256:
|
|
8575
|
-
lastVerified: '2026-
|
|
8568
|
+
checksum: sha256:4bcb80b2eca132bd524ab3a2f0bcc02b61ab236ba7b679f8977cad9118d9ad6d
|
|
8569
|
+
lastVerified: '2026-07-02T21:50:25.756Z'
|
|
8576
8570
|
index:
|
|
8577
8571
|
path: .sinapse-ai/core/atlas/index.js
|
|
8578
8572
|
layer: L1
|
|
@@ -8612,8 +8606,8 @@ entities:
|
|
|
8612
8606
|
score: 0.4
|
|
8613
8607
|
constraints: []
|
|
8614
8608
|
extensionPoints: []
|
|
8615
|
-
checksum: sha256:
|
|
8616
|
-
lastVerified: '2026-
|
|
8609
|
+
checksum: sha256:630447429b4e0909637c85b6e6e1e92d1e6a49bae969e92ce4e00680fcfba528
|
|
8610
|
+
lastVerified: '2026-07-03T06:55:48.531Z'
|
|
8617
8611
|
render-markdown:
|
|
8618
8612
|
path: .sinapse-ai/core/atlas/render-markdown.js
|
|
8619
8613
|
layer: L1
|
|
@@ -8632,8 +8626,8 @@ entities:
|
|
|
8632
8626
|
score: 0.4
|
|
8633
8627
|
constraints: []
|
|
8634
8628
|
extensionPoints: []
|
|
8635
|
-
checksum: sha256:
|
|
8636
|
-
lastVerified: '2026-
|
|
8629
|
+
checksum: sha256:d47961e50745e31af483fc126fbb3fc3ec60e498ee2f086982b4af388c5257aa
|
|
8630
|
+
lastVerified: '2026-07-02T21:50:25.756Z'
|
|
8637
8631
|
render-research-card:
|
|
8638
8632
|
path: .sinapse-ai/core/atlas/render-research-card.js
|
|
8639
8633
|
layer: L1
|
|
@@ -9191,8 +9185,8 @@ entities:
|
|
|
9191
9185
|
score: 0.4
|
|
9192
9186
|
constraints: []
|
|
9193
9187
|
extensionPoints: []
|
|
9194
|
-
checksum: sha256:
|
|
9195
|
-
lastVerified: '2026-
|
|
9188
|
+
checksum: sha256:0080eb0ea5eeb092c69ba2500c246048ebe3af67cd8434d3534d2b55968a62c6
|
|
9189
|
+
lastVerified: '2026-07-02T20:43:28.965Z'
|
|
9196
9190
|
core-config:
|
|
9197
9191
|
path: .sinapse-ai/core/doctor/checks/core-config.js
|
|
9198
9192
|
layer: L1
|
|
@@ -9774,8 +9768,8 @@ entities:
|
|
|
9774
9768
|
score: 0.4
|
|
9775
9769
|
constraints: []
|
|
9776
9770
|
extensionPoints: []
|
|
9777
|
-
checksum: sha256:
|
|
9778
|
-
lastVerified: '2026-
|
|
9771
|
+
checksum: sha256:69a333609763a5745db9e4c29168ae448ae3bcf65c2907606d21565f02958a66
|
|
9772
|
+
lastVerified: '2026-07-02T18:42:55.631Z'
|
|
9779
9773
|
build-orchestrator:
|
|
9780
9774
|
path: .sinapse-ai/core/execution/build-orchestrator.js
|
|
9781
9775
|
layer: L1
|
|
@@ -9801,8 +9795,8 @@ entities:
|
|
|
9801
9795
|
score: 0.4
|
|
9802
9796
|
constraints: []
|
|
9803
9797
|
extensionPoints: []
|
|
9804
|
-
checksum: sha256:
|
|
9805
|
-
lastVerified: '2026-
|
|
9798
|
+
checksum: sha256:56bbde48aaa4eb0de3ea7c95d5d1584a9ec8b753931097102fa696fb72d11848
|
|
9799
|
+
lastVerified: '2026-07-02T22:41:00.573Z'
|
|
9806
9800
|
build-state-manager:
|
|
9807
9801
|
path: .sinapse-ai/core/execution/build-state-manager.js
|
|
9808
9802
|
layer: L1
|
|
@@ -9829,67 +9823,6 @@ entities:
|
|
|
9829
9823
|
extensionPoints: []
|
|
9830
9824
|
checksum: sha256:3b2fe56bf0e1a480f663a02afbb83c6d11cf89fb56815381c7ccafab948a63ae
|
|
9831
9825
|
lastVerified: '2026-06-15T00:26:26.379Z'
|
|
9832
|
-
context-injector:
|
|
9833
|
-
path: .sinapse-ai/core/execution/context-injector.js
|
|
9834
|
-
layer: L1
|
|
9835
|
-
type: module
|
|
9836
|
-
purpose: task.description,
|
|
9837
|
-
keywords:
|
|
9838
|
-
- context
|
|
9839
|
-
- injector
|
|
9840
|
-
usedBy: []
|
|
9841
|
-
dependencies:
|
|
9842
|
-
- gotchas-memory
|
|
9843
|
-
externalDeps: []
|
|
9844
|
-
plannedDeps:
|
|
9845
|
-
- memory-query
|
|
9846
|
-
- session-memory
|
|
9847
|
-
lifecycle: experimental
|
|
9848
|
-
adaptability:
|
|
9849
|
-
score: 0.4
|
|
9850
|
-
constraints: []
|
|
9851
|
-
extensionPoints: []
|
|
9852
|
-
checksum: sha256:b0032791337fd54bc48df48d3063e791cf501537e4b5f9efc37cf98e5064b0ad
|
|
9853
|
-
lastVerified: '2026-06-15T00:26:26.379Z'
|
|
9854
|
-
parallel-executor:
|
|
9855
|
-
path: .sinapse-ai/core/execution/parallel-executor.js
|
|
9856
|
-
layer: L1
|
|
9857
|
-
type: module
|
|
9858
|
-
purpose: Entity at .sinapse-ai\core\execution\parallel-executor.js
|
|
9859
|
-
keywords:
|
|
9860
|
-
- parallel
|
|
9861
|
-
- executor
|
|
9862
|
-
usedBy:
|
|
9863
|
-
- workflow-orchestrator
|
|
9864
|
-
dependencies: []
|
|
9865
|
-
externalDeps: []
|
|
9866
|
-
plannedDeps: []
|
|
9867
|
-
lifecycle: production
|
|
9868
|
-
adaptability:
|
|
9869
|
-
score: 0.4
|
|
9870
|
-
constraints: []
|
|
9871
|
-
extensionPoints: []
|
|
9872
|
-
checksum: sha256:f5a68f60536ad6116ddc49e4d55ce5f1fc3b55c26ae27622b221e342b2ed37a3
|
|
9873
|
-
lastVerified: '2026-06-15T00:26:26.379Z'
|
|
9874
|
-
parallel-monitor:
|
|
9875
|
-
path: .sinapse-ai/core/execution/parallel-monitor.js
|
|
9876
|
-
layer: L1
|
|
9877
|
-
type: module
|
|
9878
|
-
purpose: t.description,
|
|
9879
|
-
keywords:
|
|
9880
|
-
- parallel
|
|
9881
|
-
- monitor
|
|
9882
|
-
usedBy: []
|
|
9883
|
-
dependencies: []
|
|
9884
|
-
externalDeps: []
|
|
9885
|
-
plannedDeps: []
|
|
9886
|
-
lifecycle: orphan
|
|
9887
|
-
adaptability:
|
|
9888
|
-
score: 0.4
|
|
9889
|
-
constraints: []
|
|
9890
|
-
extensionPoints: []
|
|
9891
|
-
checksum: sha256:4b789fd8d6736ff794181be2069b972752649759cc33b69201bef2d8c41ec6b5
|
|
9892
|
-
lastVerified: '2026-06-15T00:26:26.379Z'
|
|
9893
9826
|
rate-limit-manager:
|
|
9894
9827
|
path: .sinapse-ai/core/execution/rate-limit-manager.js
|
|
9895
9828
|
layer: L1
|
|
@@ -9899,18 +9832,17 @@ entities:
|
|
|
9899
9832
|
- rate
|
|
9900
9833
|
- limit
|
|
9901
9834
|
- manager
|
|
9902
|
-
usedBy:
|
|
9903
|
-
- wave-executor
|
|
9835
|
+
usedBy: []
|
|
9904
9836
|
dependencies: []
|
|
9905
9837
|
externalDeps: []
|
|
9906
9838
|
plannedDeps: []
|
|
9907
|
-
lifecycle:
|
|
9839
|
+
lifecycle: orphan
|
|
9908
9840
|
adaptability:
|
|
9909
9841
|
score: 0.4
|
|
9910
9842
|
constraints: []
|
|
9911
9843
|
extensionPoints: []
|
|
9912
|
-
checksum: sha256:
|
|
9913
|
-
lastVerified: '2026-
|
|
9844
|
+
checksum: sha256:0d9749bc1ac9b6ed99019af84340e87d2f99d37a3147144896c6ca09560bdbe0
|
|
9845
|
+
lastVerified: '2026-07-03T01:16:34.727Z'
|
|
9914
9846
|
result-aggregator:
|
|
9915
9847
|
path: .sinapse-ai/core/execution/result-aggregator.js
|
|
9916
9848
|
layer: L1
|
|
@@ -9928,29 +9860,8 @@ entities:
|
|
|
9928
9860
|
score: 0.4
|
|
9929
9861
|
constraints: []
|
|
9930
9862
|
extensionPoints: []
|
|
9931
|
-
checksum: sha256:
|
|
9932
|
-
lastVerified: '2026-
|
|
9933
|
-
semantic-merge-engine:
|
|
9934
|
-
path: .sinapse-ai/core/execution/semantic-merge-engine.js
|
|
9935
|
-
layer: L1
|
|
9936
|
-
type: module
|
|
9937
|
-
purpose: Entity at .sinapse-ai\core\execution\semantic-merge-engine.js
|
|
9938
|
-
keywords:
|
|
9939
|
-
- semantic
|
|
9940
|
-
- merge
|
|
9941
|
-
- engine
|
|
9942
|
-
usedBy:
|
|
9943
|
-
- active-modules.verify
|
|
9944
|
-
dependencies: []
|
|
9945
|
-
externalDeps: []
|
|
9946
|
-
plannedDeps: []
|
|
9947
|
-
lifecycle: production
|
|
9948
|
-
adaptability:
|
|
9949
|
-
score: 0.4
|
|
9950
|
-
constraints: []
|
|
9951
|
-
extensionPoints: []
|
|
9952
|
-
checksum: sha256:39ab1acde2a88585fdee1e5307804eaf5886e3c20a771586846b5c25c9ee4356
|
|
9953
|
-
lastVerified: '2026-06-15T00:26:26.381Z'
|
|
9863
|
+
checksum: sha256:7d85df76eb252b098bfaf3ed5b7f07d408654a2d0ef9336c722fac1576355d81
|
|
9864
|
+
lastVerified: '2026-07-03T01:16:34.727Z'
|
|
9954
9865
|
subagent-dispatcher:
|
|
9955
9866
|
path: .sinapse-ai/core/execution/subagent-dispatcher.js
|
|
9956
9867
|
layer: L1
|
|
@@ -9977,27 +9888,6 @@ entities:
|
|
|
9977
9888
|
extensionPoints: []
|
|
9978
9889
|
checksum: sha256:c291a8d9dea32273577b5c726626f4bc7a94b6aa67a52c9f312d6448ca6ab910
|
|
9979
9890
|
lastVerified: '2026-06-18T04:29:34.042Z'
|
|
9980
|
-
wave-executor:
|
|
9981
|
-
path: .sinapse-ai/core/execution/wave-executor.js
|
|
9982
|
-
layer: L1
|
|
9983
|
-
type: module
|
|
9984
|
-
purpose: t.description })),
|
|
9985
|
-
keywords:
|
|
9986
|
-
- wave
|
|
9987
|
-
- executor
|
|
9988
|
-
usedBy: []
|
|
9989
|
-
dependencies:
|
|
9990
|
-
- rate-limit-manager
|
|
9991
|
-
externalDeps: []
|
|
9992
|
-
plannedDeps:
|
|
9993
|
-
- wave-analyzer
|
|
9994
|
-
lifecycle: experimental
|
|
9995
|
-
adaptability:
|
|
9996
|
-
score: 0.4
|
|
9997
|
-
constraints: []
|
|
9998
|
-
extensionPoints: []
|
|
9999
|
-
checksum: sha256:49cc1b4712d13cb0638f514cc3b00fa0ab576737c942103fbf5d0931010727b7
|
|
10000
|
-
lastVerified: '2026-06-15T00:26:26.381Z'
|
|
10001
9891
|
delegate-cli:
|
|
10002
9892
|
path: .sinapse-ai/core/external-executors/delegate-cli.js
|
|
10003
9893
|
layer: L1
|
|
@@ -11561,7 +11451,6 @@ entities:
|
|
|
11561
11451
|
usedBy: []
|
|
11562
11452
|
dependencies:
|
|
11563
11453
|
- gotchas-memory
|
|
11564
|
-
- semantic-merge-engine
|
|
11565
11454
|
externalDeps: []
|
|
11566
11455
|
plannedDeps: []
|
|
11567
11456
|
lifecycle: experimental
|
|
@@ -11569,8 +11458,8 @@ entities:
|
|
|
11569
11458
|
score: 0.4
|
|
11570
11459
|
constraints: []
|
|
11571
11460
|
extensionPoints: []
|
|
11572
|
-
checksum: sha256:
|
|
11573
|
-
lastVerified: '2026-
|
|
11461
|
+
checksum: sha256:121996da9fcc8c7e3fa0fcfcbc7cf7661e395c498b65f43dc9e8dad9a6ef4848
|
|
11462
|
+
lastVerified: '2026-07-03T06:58:13.160Z'
|
|
11574
11463
|
gotchas-memory:
|
|
11575
11464
|
path: .sinapse-ai/core/memory/gotchas-memory.js
|
|
11576
11465
|
layer: L1
|
|
@@ -11582,7 +11471,6 @@ entities:
|
|
|
11582
11471
|
usedBy:
|
|
11583
11472
|
- active-modules.verify
|
|
11584
11473
|
- build-orchestrator
|
|
11585
|
-
- context-injector
|
|
11586
11474
|
- developer
|
|
11587
11475
|
- gotcha
|
|
11588
11476
|
- gotchas
|
|
@@ -11754,8 +11642,8 @@ entities:
|
|
|
11754
11642
|
score: 0.4
|
|
11755
11643
|
constraints: []
|
|
11756
11644
|
extensionPoints: []
|
|
11757
|
-
checksum: sha256:
|
|
11758
|
-
lastVerified: '2026-
|
|
11645
|
+
checksum: sha256:a3fc11597f2dd2098ffa0b30acbe283506c4e64132c198ddf5c233c9791ab2b0
|
|
11646
|
+
lastVerified: '2026-07-02T22:41:00.588Z'
|
|
11759
11647
|
condition-evaluator:
|
|
11760
11648
|
path: .sinapse-ai/core/orchestration/condition-evaluator.js
|
|
11761
11649
|
layer: L1
|
|
@@ -11950,13 +11838,10 @@ entities:
|
|
|
11950
11838
|
path: .sinapse-ai/core/orchestration/executors/epic-4-executor.js
|
|
11951
11839
|
layer: L1
|
|
11952
11840
|
type: module
|
|
11953
|
-
purpose:
|
|
11841
|
+
purpose: Entity at .sinapse-ai\core\orchestration\executors\epic-4-executor.js
|
|
11954
11842
|
keywords:
|
|
11955
11843
|
- epic
|
|
11956
11844
|
- executor
|
|
11957
|
-
- 'generated:'
|
|
11958
|
-
- ${new
|
|
11959
|
-
- date().toisostring()}
|
|
11960
11845
|
usedBy: []
|
|
11961
11846
|
dependencies:
|
|
11962
11847
|
- epic-executor
|
|
@@ -11970,8 +11855,8 @@ entities:
|
|
|
11970
11855
|
score: 0.4
|
|
11971
11856
|
constraints: []
|
|
11972
11857
|
extensionPoints: []
|
|
11973
|
-
checksum: sha256:
|
|
11974
|
-
lastVerified: '2026-
|
|
11858
|
+
checksum: sha256:ffb124ce4751d3b6189cf03210eac9ee93be3754b760cfdb0188880f03ed928f
|
|
11859
|
+
lastVerified: '2026-07-02T22:41:00.590Z'
|
|
11975
11860
|
epic-5-executor:
|
|
11976
11861
|
path: .sinapse-ai/core/orchestration/executors/epic-5-executor.js
|
|
11977
11862
|
layer: L1
|
|
@@ -12012,8 +11897,8 @@ entities:
|
|
|
12012
11897
|
score: 0.4
|
|
12013
11898
|
constraints: []
|
|
12014
11899
|
extensionPoints: []
|
|
12015
|
-
checksum: sha256:
|
|
12016
|
-
lastVerified: '2026-
|
|
11900
|
+
checksum: sha256:964e65e5ed622ed2325afc3e559150995ff28b246f148b14d1a8cc11ab9aaebe
|
|
11901
|
+
lastVerified: '2026-07-02T22:41:00.590Z'
|
|
12017
11902
|
epic-executor:
|
|
12018
11903
|
path: .sinapse-ai/core/orchestration/executors/epic-executor.js
|
|
12019
11904
|
layer: L1
|
|
@@ -12127,8 +12012,8 @@ entities:
|
|
|
12127
12012
|
score: 0.4
|
|
12128
12013
|
constraints: []
|
|
12129
12014
|
extensionPoints: []
|
|
12130
|
-
checksum: sha256:
|
|
12131
|
-
lastVerified: '2026-
|
|
12015
|
+
checksum: sha256:fdd9c02dfb5752cca028b1fbc882e7c466c77296b2966296a888f862bbaa24f2
|
|
12016
|
+
lastVerified: '2026-07-02T22:41:00.591Z'
|
|
12132
12017
|
message-formatter:
|
|
12133
12018
|
path: .sinapse-ai/core/orchestration/message-formatter.js
|
|
12134
12019
|
layer: L1
|
|
@@ -12149,6 +12034,26 @@ entities:
|
|
|
12149
12034
|
extensionPoints: []
|
|
12150
12035
|
checksum: sha256:4683565c3da6d33fa5aeb4629dfa525f90715cb3b3cbbaa4c8a8d952766839d7
|
|
12151
12036
|
lastVerified: '2026-06-15T00:26:26.410Z'
|
|
12037
|
+
parallel-executor:
|
|
12038
|
+
path: .sinapse-ai/core/orchestration/parallel-executor.js
|
|
12039
|
+
layer: L1
|
|
12040
|
+
type: module
|
|
12041
|
+
purpose: '{'
|
|
12042
|
+
keywords:
|
|
12043
|
+
- parallel
|
|
12044
|
+
- executor
|
|
12045
|
+
usedBy:
|
|
12046
|
+
- workflow-orchestrator
|
|
12047
|
+
dependencies: []
|
|
12048
|
+
externalDeps: []
|
|
12049
|
+
plannedDeps: []
|
|
12050
|
+
lifecycle: production
|
|
12051
|
+
adaptability:
|
|
12052
|
+
score: 0.4
|
|
12053
|
+
constraints: []
|
|
12054
|
+
extensionPoints: []
|
|
12055
|
+
checksum: sha256:f72ce9b96274082399af3ed63ec78def1a1e00a60ec7543bf15a510328e83d4e
|
|
12056
|
+
lastVerified: '2026-07-03T06:55:48.555Z'
|
|
12152
12057
|
recovery-handler:
|
|
12153
12058
|
path: .sinapse-ai/core/orchestration/recovery-handler.js
|
|
12154
12059
|
layer: L1
|
|
@@ -12757,6 +12662,7 @@ entities:
|
|
|
12757
12662
|
usedBy:
|
|
12758
12663
|
- context-loading
|
|
12759
12664
|
- index.esm
|
|
12665
|
+
- suggestion-engine
|
|
12760
12666
|
- unified-activation-pipeline
|
|
12761
12667
|
dependencies:
|
|
12762
12668
|
- context-detector
|
|
@@ -12806,8 +12712,8 @@ entities:
|
|
|
12806
12712
|
score: 0.4
|
|
12807
12713
|
constraints: []
|
|
12808
12714
|
extensionPoints: []
|
|
12809
|
-
checksum: sha256:
|
|
12810
|
-
lastVerified: '2026-
|
|
12715
|
+
checksum: sha256:5a62d37742dcf359d43caf9da3fae807d5356a3ab673dbbded9ded2eb8d3c3b9
|
|
12716
|
+
lastVerified: '2026-07-02T22:59:44.725Z'
|
|
12811
12717
|
semantic-handshake-engine:
|
|
12812
12718
|
path: .sinapse-ai/core/synapse/context/semantic-handshake-engine.js
|
|
12813
12719
|
layer: L1
|
|
@@ -13149,8 +13055,8 @@ entities:
|
|
|
13149
13055
|
score: 0.4
|
|
13150
13056
|
constraints: []
|
|
13151
13057
|
extensionPoints: []
|
|
13152
|
-
checksum: sha256:
|
|
13153
|
-
lastVerified: '2026-
|
|
13058
|
+
checksum: sha256:fed18380663e3f18178b46d7e5ea8ce58214b9f8727d618475aeaf80e916fff4
|
|
13059
|
+
lastVerified: '2026-07-02T19:52:02.665Z'
|
|
13154
13060
|
l1-global:
|
|
13155
13061
|
path: .sinapse-ai/core/synapse/layers/l1-global.js
|
|
13156
13062
|
layer: L1
|
|
@@ -13386,8 +13292,8 @@ entities:
|
|
|
13386
13292
|
score: 0.4
|
|
13387
13293
|
constraints: []
|
|
13388
13294
|
extensionPoints: []
|
|
13389
|
-
checksum: sha256:
|
|
13390
|
-
lastVerified: '2026-
|
|
13295
|
+
checksum: sha256:4f5217b2cc301c8ad0e0f371fc40a185a99a97d651b30c42435661d9c6ed19f4
|
|
13296
|
+
lastVerified: '2026-07-02T19:52:02.667Z'
|
|
13391
13297
|
generate-constitution:
|
|
13392
13298
|
path: .sinapse-ai/core/synapse/scripts/generate-constitution.js
|
|
13393
13299
|
layer: L1
|
|
@@ -13418,6 +13324,7 @@ entities:
|
|
|
13418
13324
|
usedBy:
|
|
13419
13325
|
- config-migrator
|
|
13420
13326
|
- context-detector
|
|
13327
|
+
- fs-utils
|
|
13421
13328
|
- registry-syncer
|
|
13422
13329
|
- symlink-manager
|
|
13423
13330
|
- unified-activation-pipeline
|
|
@@ -13608,6 +13515,340 @@ entities:
|
|
|
13608
13515
|
extensionPoints: []
|
|
13609
13516
|
checksum: sha256:f72e8317728b72addd02fdffcf8bdde22f50eccdb45e34bd24f70bce2ad88bb7
|
|
13610
13517
|
lastVerified: '2026-06-15T00:26:26.428Z'
|
|
13518
|
+
wis-modules:
|
|
13519
|
+
confidence-scorer.test:
|
|
13520
|
+
path: .sinapse-ai/workflow-intelligence/__tests__/confidence-scorer.test.js
|
|
13521
|
+
layer: L4
|
|
13522
|
+
type: module
|
|
13523
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\__tests__\confidence-scorer.test.js
|
|
13524
|
+
keywords:
|
|
13525
|
+
- confidence
|
|
13526
|
+
- scorer
|
|
13527
|
+
- test
|
|
13528
|
+
usedBy: []
|
|
13529
|
+
dependencies:
|
|
13530
|
+
- confidence-scorer
|
|
13531
|
+
externalDeps: []
|
|
13532
|
+
plannedDeps: []
|
|
13533
|
+
lifecycle: experimental
|
|
13534
|
+
adaptability:
|
|
13535
|
+
score: 0.4
|
|
13536
|
+
constraints: []
|
|
13537
|
+
extensionPoints: []
|
|
13538
|
+
checksum: sha256:7726b85c14d8116fc9dfa6d13ede3bbbb846afc97358668019687d3807b472ba
|
|
13539
|
+
lastVerified: '2026-07-03T06:56:39.031Z'
|
|
13540
|
+
integration.test:
|
|
13541
|
+
path: .sinapse-ai/workflow-intelligence/__tests__/integration.test.js
|
|
13542
|
+
layer: L4
|
|
13543
|
+
type: module
|
|
13544
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\__tests__\integration.test.js
|
|
13545
|
+
keywords:
|
|
13546
|
+
- integration
|
|
13547
|
+
- test
|
|
13548
|
+
usedBy: []
|
|
13549
|
+
dependencies:
|
|
13550
|
+
- index
|
|
13551
|
+
externalDeps: []
|
|
13552
|
+
plannedDeps: []
|
|
13553
|
+
lifecycle: experimental
|
|
13554
|
+
adaptability:
|
|
13555
|
+
score: 0.4
|
|
13556
|
+
constraints: []
|
|
13557
|
+
extensionPoints: []
|
|
13558
|
+
checksum: sha256:34421819f60f450e830508cebd16a25e72cbe225eade29abac8188e8a0ced6b2
|
|
13559
|
+
lastVerified: '2026-07-03T06:56:39.031Z'
|
|
13560
|
+
suggestion-engine.test:
|
|
13561
|
+
path: .sinapse-ai/workflow-intelligence/__tests__/suggestion-engine.test.js
|
|
13562
|
+
layer: L4
|
|
13563
|
+
type: module
|
|
13564
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\__tests__\suggestion-engine.test.js
|
|
13565
|
+
keywords:
|
|
13566
|
+
- suggestion
|
|
13567
|
+
- engine
|
|
13568
|
+
- test
|
|
13569
|
+
usedBy: []
|
|
13570
|
+
dependencies:
|
|
13571
|
+
- suggestion-engine
|
|
13572
|
+
externalDeps: []
|
|
13573
|
+
plannedDeps: []
|
|
13574
|
+
lifecycle: experimental
|
|
13575
|
+
adaptability:
|
|
13576
|
+
score: 0.4
|
|
13577
|
+
constraints: []
|
|
13578
|
+
extensionPoints: []
|
|
13579
|
+
checksum: sha256:4dd26f611a58c0bcd54dc69e1804efe103406ee0c0bda0880a4b39aecf540045
|
|
13580
|
+
lastVerified: '2026-07-03T06:56:39.031Z'
|
|
13581
|
+
workflow-registry.test:
|
|
13582
|
+
path: .sinapse-ai/workflow-intelligence/__tests__/workflow-registry.test.js
|
|
13583
|
+
layer: L4
|
|
13584
|
+
type: module
|
|
13585
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\__tests__\workflow-registry.test.js
|
|
13586
|
+
keywords:
|
|
13587
|
+
- workflow
|
|
13588
|
+
- registry
|
|
13589
|
+
- test
|
|
13590
|
+
usedBy: []
|
|
13591
|
+
dependencies:
|
|
13592
|
+
- workflow-registry
|
|
13593
|
+
externalDeps: []
|
|
13594
|
+
plannedDeps: []
|
|
13595
|
+
lifecycle: experimental
|
|
13596
|
+
adaptability:
|
|
13597
|
+
score: 0.4
|
|
13598
|
+
constraints: []
|
|
13599
|
+
extensionPoints: []
|
|
13600
|
+
checksum: sha256:d9488e420f584474de920e090068809a220db1bd1d49e96769f6fc3ed7a47dba
|
|
13601
|
+
lastVerified: '2026-07-03T06:56:39.032Z'
|
|
13602
|
+
confidence-scorer:
|
|
13603
|
+
path: .sinapse-ai/workflow-intelligence/engine/confidence-scorer.js
|
|
13604
|
+
layer: L4
|
|
13605
|
+
type: module
|
|
13606
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\engine\confidence-scorer.js
|
|
13607
|
+
keywords:
|
|
13608
|
+
- confidence
|
|
13609
|
+
- scorer
|
|
13610
|
+
usedBy:
|
|
13611
|
+
- confidence-scorer.test
|
|
13612
|
+
- index
|
|
13613
|
+
dependencies: []
|
|
13614
|
+
externalDeps: []
|
|
13615
|
+
plannedDeps: []
|
|
13616
|
+
lifecycle: production
|
|
13617
|
+
adaptability:
|
|
13618
|
+
score: 0.4
|
|
13619
|
+
constraints: []
|
|
13620
|
+
extensionPoints: []
|
|
13621
|
+
checksum: sha256:6312ad6707909d3177d8d96500dbb782be5662853cb73e52bb4da68b8cb0d883
|
|
13622
|
+
lastVerified: '2026-07-03T06:56:39.032Z'
|
|
13623
|
+
output-formatter:
|
|
13624
|
+
path: .sinapse-ai/workflow-intelligence/engine/output-formatter.js
|
|
13625
|
+
layer: L4
|
|
13626
|
+
type: module
|
|
13627
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\engine\output-formatter.js
|
|
13628
|
+
keywords:
|
|
13629
|
+
- output
|
|
13630
|
+
- formatter
|
|
13631
|
+
usedBy: []
|
|
13632
|
+
dependencies: []
|
|
13633
|
+
externalDeps: []
|
|
13634
|
+
plannedDeps: []
|
|
13635
|
+
lifecycle: orphan
|
|
13636
|
+
adaptability:
|
|
13637
|
+
score: 0.4
|
|
13638
|
+
constraints: []
|
|
13639
|
+
extensionPoints: []
|
|
13640
|
+
checksum: sha256:30b09838de6b323060d441ffef261f01910c4303c2cac8d8ca6e9be1d48f14e4
|
|
13641
|
+
lastVerified: '2026-07-03T06:56:39.032Z'
|
|
13642
|
+
suggestion-engine:
|
|
13643
|
+
path: .sinapse-ai/workflow-intelligence/engine/suggestion-engine.js
|
|
13644
|
+
layer: L4
|
|
13645
|
+
type: module
|
|
13646
|
+
purpose: s.description || '',
|
|
13647
|
+
keywords:
|
|
13648
|
+
- suggestion
|
|
13649
|
+
- engine
|
|
13650
|
+
usedBy:
|
|
13651
|
+
- index
|
|
13652
|
+
- next
|
|
13653
|
+
- suggestion-engine.test
|
|
13654
|
+
dependencies:
|
|
13655
|
+
- index
|
|
13656
|
+
- context-loader
|
|
13657
|
+
- workflow-state-manager
|
|
13658
|
+
externalDeps: []
|
|
13659
|
+
plannedDeps:
|
|
13660
|
+
- learning
|
|
13661
|
+
lifecycle: production
|
|
13662
|
+
adaptability:
|
|
13663
|
+
score: 0.4
|
|
13664
|
+
constraints: []
|
|
13665
|
+
extensionPoints: []
|
|
13666
|
+
checksum: sha256:48739aaa5844cea1264da33e0313c499eaeec854de4d69129dcca8d4ef32ad65
|
|
13667
|
+
lastVerified: '2026-07-03T06:56:39.032Z'
|
|
13668
|
+
index:
|
|
13669
|
+
path: .sinapse-ai/workflow-intelligence/index.js
|
|
13670
|
+
layer: L4
|
|
13671
|
+
type: module
|
|
13672
|
+
purpose: step.description,
|
|
13673
|
+
keywords:
|
|
13674
|
+
- index
|
|
13675
|
+
usedBy: []
|
|
13676
|
+
dependencies:
|
|
13677
|
+
- workflow-registry
|
|
13678
|
+
- confidence-scorer
|
|
13679
|
+
- suggestion-engine
|
|
13680
|
+
- output-formatter
|
|
13681
|
+
externalDeps: []
|
|
13682
|
+
plannedDeps:
|
|
13683
|
+
- workflow-intelligence
|
|
13684
|
+
- learning
|
|
13685
|
+
lifecycle: experimental
|
|
13686
|
+
adaptability:
|
|
13687
|
+
score: 0.4
|
|
13688
|
+
constraints: []
|
|
13689
|
+
extensionPoints: []
|
|
13690
|
+
checksum: sha256:1b6cb4b5e9011acdbc021fa27b9adf47145629b06436344ccbf001d6195095ed
|
|
13691
|
+
lastVerified: '2026-07-03T06:56:39.032Z'
|
|
13692
|
+
capture-hook:
|
|
13693
|
+
path: .sinapse-ai/workflow-intelligence/learning/capture-hook.js
|
|
13694
|
+
layer: L4
|
|
13695
|
+
type: module
|
|
13696
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\learning\capture-hook.js
|
|
13697
|
+
keywords:
|
|
13698
|
+
- capture
|
|
13699
|
+
- hook
|
|
13700
|
+
usedBy: []
|
|
13701
|
+
dependencies:
|
|
13702
|
+
- pattern-capture
|
|
13703
|
+
- pattern-validator
|
|
13704
|
+
- pattern-store
|
|
13705
|
+
externalDeps: []
|
|
13706
|
+
plannedDeps: []
|
|
13707
|
+
lifecycle: experimental
|
|
13708
|
+
adaptability:
|
|
13709
|
+
score: 0.4
|
|
13710
|
+
constraints: []
|
|
13711
|
+
extensionPoints: []
|
|
13712
|
+
checksum: sha256:9f29c770b5c0ca68f9fe0a21de37367f6b98381608378f1e1cb4e3e4ea1b0e96
|
|
13713
|
+
lastVerified: '2026-07-03T06:56:39.032Z'
|
|
13714
|
+
gotcha-registry:
|
|
13715
|
+
path: .sinapse-ai/workflow-intelligence/learning/gotcha-registry.js
|
|
13716
|
+
layer: L4
|
|
13717
|
+
type: module
|
|
13718
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\learning\gotcha-registry.js
|
|
13719
|
+
keywords:
|
|
13720
|
+
- gotcha
|
|
13721
|
+
- registry
|
|
13722
|
+
usedBy: []
|
|
13723
|
+
dependencies: []
|
|
13724
|
+
externalDeps: []
|
|
13725
|
+
plannedDeps: []
|
|
13726
|
+
lifecycle: orphan
|
|
13727
|
+
adaptability:
|
|
13728
|
+
score: 0.4
|
|
13729
|
+
constraints: []
|
|
13730
|
+
extensionPoints: []
|
|
13731
|
+
checksum: sha256:505bc52b521b7c2c9c40095d3ff1c16f432c58653492a741057780d008593af3
|
|
13732
|
+
lastVerified: '2026-07-03T06:56:39.032Z'
|
|
13733
|
+
pattern-capture:
|
|
13734
|
+
path: .sinapse-ai/workflow-intelligence/learning/pattern-capture.js
|
|
13735
|
+
layer: L4
|
|
13736
|
+
type: module
|
|
13737
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\learning\pattern-capture.js
|
|
13738
|
+
keywords:
|
|
13739
|
+
- pattern
|
|
13740
|
+
- capture
|
|
13741
|
+
usedBy:
|
|
13742
|
+
- capture-hook
|
|
13743
|
+
dependencies: []
|
|
13744
|
+
externalDeps: []
|
|
13745
|
+
plannedDeps: []
|
|
13746
|
+
lifecycle: production
|
|
13747
|
+
adaptability:
|
|
13748
|
+
score: 0.4
|
|
13749
|
+
constraints: []
|
|
13750
|
+
extensionPoints: []
|
|
13751
|
+
checksum: sha256:70f090272c092befa29acf2c635cf9110d51d778a9ea4c116ab8c1b433884639
|
|
13752
|
+
lastVerified: '2026-07-03T06:56:39.032Z'
|
|
13753
|
+
pattern-store:
|
|
13754
|
+
path: .sinapse-ai/workflow-intelligence/learning/pattern-store.js
|
|
13755
|
+
layer: L4
|
|
13756
|
+
type: module
|
|
13757
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\learning\pattern-store.js
|
|
13758
|
+
keywords:
|
|
13759
|
+
- pattern
|
|
13760
|
+
- store
|
|
13761
|
+
usedBy:
|
|
13762
|
+
- capture-hook
|
|
13763
|
+
dependencies: []
|
|
13764
|
+
externalDeps: []
|
|
13765
|
+
plannedDeps: []
|
|
13766
|
+
lifecycle: production
|
|
13767
|
+
adaptability:
|
|
13768
|
+
score: 0.4
|
|
13769
|
+
constraints: []
|
|
13770
|
+
extensionPoints: []
|
|
13771
|
+
checksum: sha256:9c1b28d8b70e09d866db491194e500eeaa259d2a4e6fa78e202674cf0fb56667
|
|
13772
|
+
lastVerified: '2026-07-03T06:56:39.033Z'
|
|
13773
|
+
pattern-validator:
|
|
13774
|
+
path: .sinapse-ai/workflow-intelligence/learning/pattern-validator.js
|
|
13775
|
+
layer: L4
|
|
13776
|
+
type: module
|
|
13777
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\learning\pattern-validator.js
|
|
13778
|
+
keywords:
|
|
13779
|
+
- pattern
|
|
13780
|
+
- validator
|
|
13781
|
+
usedBy:
|
|
13782
|
+
- capture-hook
|
|
13783
|
+
dependencies: []
|
|
13784
|
+
externalDeps: []
|
|
13785
|
+
plannedDeps: []
|
|
13786
|
+
lifecycle: production
|
|
13787
|
+
adaptability:
|
|
13788
|
+
score: 0.4
|
|
13789
|
+
constraints: []
|
|
13790
|
+
extensionPoints: []
|
|
13791
|
+
checksum: sha256:0727cca8114ee1505f4847c0f9be9c6d7e821198a90f232fbfddc22924f0962e
|
|
13792
|
+
lastVerified: '2026-07-03T06:56:39.033Z'
|
|
13793
|
+
qa-feedback:
|
|
13794
|
+
path: .sinapse-ai/workflow-intelligence/learning/qa-feedback.js
|
|
13795
|
+
layer: L4
|
|
13796
|
+
type: module
|
|
13797
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\learning\qa-feedback.js
|
|
13798
|
+
keywords:
|
|
13799
|
+
- qa
|
|
13800
|
+
- feedback
|
|
13801
|
+
usedBy: []
|
|
13802
|
+
dependencies: []
|
|
13803
|
+
externalDeps: []
|
|
13804
|
+
plannedDeps: []
|
|
13805
|
+
lifecycle: orphan
|
|
13806
|
+
adaptability:
|
|
13807
|
+
score: 0.4
|
|
13808
|
+
constraints: []
|
|
13809
|
+
extensionPoints: []
|
|
13810
|
+
checksum: sha256:9b07fa203c5f8c661e00fdd81424e2b7a3de54af209f165f5a11a7a20528935e
|
|
13811
|
+
lastVerified: '2026-07-03T06:56:39.033Z'
|
|
13812
|
+
semantic-search:
|
|
13813
|
+
path: .sinapse-ai/workflow-intelligence/learning/semantic-search.js
|
|
13814
|
+
layer: L4
|
|
13815
|
+
type: module
|
|
13816
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\learning\semantic-search.js
|
|
13817
|
+
keywords:
|
|
13818
|
+
- semantic
|
|
13819
|
+
- search
|
|
13820
|
+
usedBy: []
|
|
13821
|
+
dependencies: []
|
|
13822
|
+
externalDeps: []
|
|
13823
|
+
plannedDeps: []
|
|
13824
|
+
lifecycle: orphan
|
|
13825
|
+
adaptability:
|
|
13826
|
+
score: 0.4
|
|
13827
|
+
constraints: []
|
|
13828
|
+
extensionPoints: []
|
|
13829
|
+
checksum: sha256:d37c54d4e630ae03fddaef462ae36a2f29de921e1c51ab5d9f9c313407b51cd9
|
|
13830
|
+
lastVerified: '2026-07-03T06:56:39.033Z'
|
|
13831
|
+
workflow-registry:
|
|
13832
|
+
path: .sinapse-ai/workflow-intelligence/registry/workflow-registry.js
|
|
13833
|
+
layer: L4
|
|
13834
|
+
type: module
|
|
13835
|
+
purpose: Entity at .sinapse-ai\workflow-intelligence\registry\workflow-registry.js
|
|
13836
|
+
keywords:
|
|
13837
|
+
- workflow
|
|
13838
|
+
- registry
|
|
13839
|
+
usedBy:
|
|
13840
|
+
- index
|
|
13841
|
+
- workflow-registry.test
|
|
13842
|
+
dependencies: []
|
|
13843
|
+
externalDeps: []
|
|
13844
|
+
plannedDeps: []
|
|
13845
|
+
lifecycle: production
|
|
13846
|
+
adaptability:
|
|
13847
|
+
score: 0.4
|
|
13848
|
+
constraints: []
|
|
13849
|
+
extensionPoints: []
|
|
13850
|
+
checksum: sha256:b50f1543f009ba00fa057ab6224e00ae404a43e93d1a1852f670ccaee6d4d2ad
|
|
13851
|
+
lastVerified: '2026-07-03T06:56:39.033Z'
|
|
13611
13852
|
agents:
|
|
13612
13853
|
analyst:
|
|
13613
13854
|
path: .sinapse-ai/development/agents/analyst.md
|
|
@@ -13656,8 +13897,8 @@ entities:
|
|
|
13656
13897
|
score: 0.3
|
|
13657
13898
|
constraints: []
|
|
13658
13899
|
extensionPoints: []
|
|
13659
|
-
checksum: sha256:
|
|
13660
|
-
lastVerified: '2026-
|
|
13900
|
+
checksum: sha256:17e4b47515862b1e2c44ab59085bac56cc505e10f0b6c8f1751b766f66ddfbec
|
|
13901
|
+
lastVerified: '2026-07-03T06:55:48.566Z'
|
|
13661
13902
|
architect:
|
|
13662
13903
|
path: .sinapse-ai/development/agents/architect.md
|
|
13663
13904
|
layer: L2
|
|
@@ -13734,8 +13975,8 @@ entities:
|
|
|
13734
13975
|
score: 0.3
|
|
13735
13976
|
constraints: []
|
|
13736
13977
|
extensionPoints: []
|
|
13737
|
-
checksum: sha256:
|
|
13738
|
-
lastVerified: '2026-
|
|
13978
|
+
checksum: sha256:b25f7a5d927b8645af278828d99af3b46e0d21b2d5dd443dbec0e8af2d195e1c
|
|
13979
|
+
lastVerified: '2026-07-03T06:55:48.567Z'
|
|
13739
13980
|
data-engineer:
|
|
13740
13981
|
path: .sinapse-ai/development/agents/data-engineer.md
|
|
13741
13982
|
layer: L2
|
|
@@ -13802,8 +14043,8 @@ entities:
|
|
|
13802
14043
|
score: 0.3
|
|
13803
14044
|
constraints: []
|
|
13804
14045
|
extensionPoints: []
|
|
13805
|
-
checksum: sha256:
|
|
13806
|
-
lastVerified: '2026-
|
|
14046
|
+
checksum: sha256:8f965782df49716c4d043327f8cdf430980794c0bd4984b1b3fc0dc774b2323c
|
|
14047
|
+
lastVerified: '2026-07-03T06:55:48.568Z'
|
|
13807
14048
|
developer:
|
|
13808
14049
|
path: .sinapse-ai/development/agents/developer.md
|
|
13809
14050
|
layer: L2
|
|
@@ -13837,7 +14078,6 @@ entities:
|
|
|
13837
14078
|
- dev-suggest-refactoring
|
|
13838
14079
|
- sync-documentation
|
|
13839
14080
|
- validate-next-story
|
|
13840
|
-
- waves
|
|
13841
14081
|
- build-resume
|
|
13842
14082
|
- build-status
|
|
13843
14083
|
- build-autonomous
|
|
@@ -13872,8 +14112,8 @@ entities:
|
|
|
13872
14112
|
score: 0.3
|
|
13873
14113
|
constraints: []
|
|
13874
14114
|
extensionPoints: []
|
|
13875
|
-
checksum: sha256:
|
|
13876
|
-
lastVerified: '2026-
|
|
14115
|
+
checksum: sha256:da98be997a4b86f96b8c4f822ae189dcd4d2698d19609c6d1d2b7a56d879eeb8
|
|
14116
|
+
lastVerified: '2026-07-03T06:55:48.570Z'
|
|
13877
14117
|
devops:
|
|
13878
14118
|
path: .sinapse-ai/development/agents/devops.md
|
|
13879
14119
|
layer: L2
|
|
@@ -13962,8 +14202,8 @@ entities:
|
|
|
13962
14202
|
score: 0.3
|
|
13963
14203
|
constraints: []
|
|
13964
14204
|
extensionPoints: []
|
|
13965
|
-
checksum: sha256:
|
|
13966
|
-
lastVerified: '2026-
|
|
14205
|
+
checksum: sha256:9c566f77c11e95edc5537e13c5f5fda65949c4cef6a1f142f81d7b35347b808b
|
|
14206
|
+
lastVerified: '2026-07-03T06:55:48.571Z'
|
|
13967
14207
|
product-lead:
|
|
13968
14208
|
path: .sinapse-ai/development/agents/product-lead.md
|
|
13969
14209
|
layer: L2
|
|
@@ -13997,8 +14237,8 @@ entities:
|
|
|
13997
14237
|
score: 0.3
|
|
13998
14238
|
constraints: []
|
|
13999
14239
|
extensionPoints: []
|
|
14000
|
-
checksum: sha256:
|
|
14001
|
-
lastVerified: '2026-
|
|
14240
|
+
checksum: sha256:a0d13d7e04c602000eae91dff54bf4030f11e29b4182e04c763c381086b9e7b7
|
|
14241
|
+
lastVerified: '2026-07-03T06:55:48.571Z'
|
|
14002
14242
|
project-lead:
|
|
14003
14243
|
path: .sinapse-ai/development/agents/project-lead.md
|
|
14004
14244
|
layer: L2
|
|
@@ -14033,8 +14273,8 @@ entities:
|
|
|
14033
14273
|
score: 0.3
|
|
14034
14274
|
constraints: []
|
|
14035
14275
|
extensionPoints: []
|
|
14036
|
-
checksum: sha256:
|
|
14037
|
-
lastVerified: '2026-
|
|
14276
|
+
checksum: sha256:9dfb7b7a4c87ee992025764d1c976f3551a6302ac1493a4de98a8bb4c696b010
|
|
14277
|
+
lastVerified: '2026-07-03T06:55:48.572Z'
|
|
14038
14278
|
quality-gate:
|
|
14039
14279
|
path: .sinapse-ai/development/agents/quality-gate.md
|
|
14040
14280
|
layer: L2
|
|
@@ -14080,8 +14320,8 @@ entities:
|
|
|
14080
14320
|
score: 0.3
|
|
14081
14321
|
constraints: []
|
|
14082
14322
|
extensionPoints: []
|
|
14083
|
-
checksum: sha256:
|
|
14084
|
-
lastVerified: '2026-
|
|
14323
|
+
checksum: sha256:a2a4ec39d9d75b0f9872104157094f2846453c962974f551fee1d7a2dccfbec1
|
|
14324
|
+
lastVerified: '2026-07-03T06:55:48.572Z'
|
|
14085
14325
|
snps-orqx:
|
|
14086
14326
|
path: .sinapse-ai/development/agents/snps-orqx.md
|
|
14087
14327
|
layer: L2
|
|
@@ -14103,8 +14343,8 @@ entities:
|
|
|
14103
14343
|
score: 0.3
|
|
14104
14344
|
constraints: []
|
|
14105
14345
|
extensionPoints: []
|
|
14106
|
-
checksum: sha256:
|
|
14107
|
-
lastVerified: '2026-
|
|
14346
|
+
checksum: sha256:8e4145cdf25f57d366e0f6b3563e907c7a3ba8b2d6d3af0a6e573927f4a0321c
|
|
14347
|
+
lastVerified: '2026-07-03T00:40:19.587Z'
|
|
14108
14348
|
sprint-lead:
|
|
14109
14349
|
path: .sinapse-ai/development/agents/sprint-lead.md
|
|
14110
14350
|
layer: L2
|
|
@@ -14130,8 +14370,8 @@ entities:
|
|
|
14130
14370
|
score: 0.3
|
|
14131
14371
|
constraints: []
|
|
14132
14372
|
extensionPoints: []
|
|
14133
|
-
checksum: sha256:
|
|
14134
|
-
lastVerified: '2026-
|
|
14373
|
+
checksum: sha256:df8dbd1de7b9c1238cbe3629d307563bbac1515869a5658dc7286b3dcbb55078
|
|
14374
|
+
lastVerified: '2026-07-03T00:40:19.589Z'
|
|
14135
14375
|
squad-creator:
|
|
14136
14376
|
path: .sinapse-ai/development/agents/squad-creator.md
|
|
14137
14377
|
layer: L2
|
|
@@ -14169,8 +14409,8 @@ entities:
|
|
|
14169
14409
|
score: 0.3
|
|
14170
14410
|
constraints: []
|
|
14171
14411
|
extensionPoints: []
|
|
14172
|
-
checksum: sha256:
|
|
14173
|
-
lastVerified: '2026-
|
|
14412
|
+
checksum: sha256:aa5da75a12797fc06994dc254fc4a35e0eccbfe2f6891acfe5590c81bc019e02
|
|
14413
|
+
lastVerified: '2026-07-03T06:55:48.574Z'
|
|
14174
14414
|
ux-design-expert:
|
|
14175
14415
|
path: .sinapse-ai/development/agents/ux-design-expert.md
|
|
14176
14416
|
layer: L2
|
|
@@ -14240,8 +14480,8 @@ entities:
|
|
|
14240
14480
|
score: 0.3
|
|
14241
14481
|
constraints: []
|
|
14242
14482
|
extensionPoints: []
|
|
14243
|
-
checksum: sha256:
|
|
14244
|
-
lastVerified: '2026-
|
|
14483
|
+
checksum: sha256:c012233be2311a30e2b25526a5e7079af830bb66c8cd51fd8a070754c1af2fb0
|
|
14484
|
+
lastVerified: '2026-07-03T06:55:48.575Z'
|
|
14245
14485
|
checklists:
|
|
14246
14486
|
agent-quality-gate:
|
|
14247
14487
|
path: .sinapse-ai/development/checklists/agent-quality-gate.md
|
|
@@ -14966,8 +15206,8 @@ entities:
|
|
|
14966
15206
|
score: 0.4
|
|
14967
15207
|
constraints: []
|
|
14968
15208
|
extensionPoints: []
|
|
14969
|
-
checksum: sha256:
|
|
14970
|
-
lastVerified: '2026-
|
|
15209
|
+
checksum: sha256:f795fafa52113f199a186bbb00624c1d93491363f5198d46b6793fb9fee63a5d
|
|
15210
|
+
lastVerified: '2026-07-03T06:55:48.584Z'
|
|
14971
15211
|
fast-track:
|
|
14972
15212
|
path: .sinapse-ai/development/workflows/fast-track.yaml
|
|
14973
15213
|
layer: L2
|
|
@@ -15554,10 +15794,12 @@ entities:
|
|
|
15554
15794
|
- creation-helper
|
|
15555
15795
|
- dev-helper
|
|
15556
15796
|
- devops-helper
|
|
15797
|
+
- integration.test
|
|
15557
15798
|
- planning-helper
|
|
15558
15799
|
- qa-helper
|
|
15559
15800
|
- sinapse
|
|
15560
15801
|
- story-helper
|
|
15802
|
+
- suggestion-engine
|
|
15561
15803
|
- sync-codex-local-first
|
|
15562
15804
|
- validate
|
|
15563
15805
|
dependencies:
|
|
@@ -16415,6 +16657,7 @@ entities:
|
|
|
16415
16657
|
- output
|
|
16416
16658
|
- formatter
|
|
16417
16659
|
usedBy:
|
|
16660
|
+
- index
|
|
16418
16661
|
- index.esm
|
|
16419
16662
|
- next
|
|
16420
16663
|
dependencies: []
|
|
@@ -18569,6 +18812,9 @@ categories:
|
|
|
18569
18812
|
- id: modules
|
|
18570
18813
|
description: Core framework modules and libraries
|
|
18571
18814
|
basePath: .sinapse-ai/core
|
|
18815
|
+
- id: wis-modules
|
|
18816
|
+
description: wis-modules
|
|
18817
|
+
basePath: .sinapse-ai/workflow-intelligence
|
|
18572
18818
|
- id: agents
|
|
18573
18819
|
description: Agent persona definitions and configurations
|
|
18574
18820
|
basePath: .sinapse-ai/development/agents
|