sinapse-ai 1.16.0 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/hooks/doc-first-gate.cjs +156 -0
- package/.claude/hooks/enforce-story-gate.cjs +6 -2
- package/.claude/rules/documentation-first.md +6 -0
- package/.claude/rules/hook-governance.md +1 -0
- package/.sinapse-ai/constitution.md +3 -3
- package/.sinapse-ai/core/atlas/atlas-data.js +278 -0
- package/.sinapse-ai/core/atlas/flows-pt.js +253 -0
- package/.sinapse-ai/core/atlas/flows.js +266 -0
- package/.sinapse-ai/core/atlas/index.js +62 -0
- package/.sinapse-ai/core/atlas/render-html.js +216 -0
- package/.sinapse-ai/core/atlas/render-markdown.js +313 -0
- package/.sinapse-ai/core/atlas/render-research-card.js +164 -0
- package/.sinapse-ai/core/code-intel/registry-syncer.js +5 -3
- package/.sinapse-ai/core/doctor/checks/agent-memory.js +7 -5
- package/.sinapse-ai/core/doctor/checks/claude-md.js +13 -0
- package/.sinapse-ai/core/doctor/checks/constitution-consistency.js +1 -0
- package/.sinapse-ai/core/doctor/checks/hooks-claude-count.js +11 -0
- package/.sinapse-ai/core/doctor/checks/settings-json.js +16 -2
- package/.sinapse-ai/core/doctor/index.js +27 -0
- package/.sinapse-ai/core/execution/build-orchestrator.js +192 -8
- package/.sinapse-ai/core/external-executors/delegate-cli.js +6 -2
- package/.sinapse-ai/core/health-check/checks/project/constitution-consistency.js +2 -1
- package/.sinapse-ai/core/ideation/ideation-engine.js +10 -8
- package/.sinapse-ai/core/mcp/config-migrator.js +8 -5
- package/.sinapse-ai/core/mcp/global-config-manager.js +4 -1
- package/.sinapse-ai/core/mcp/symlink-manager.js +6 -3
- package/.sinapse-ai/core/orchestration/brownfield-handler.js +5 -4
- package/.sinapse-ai/core/orchestration/build-command.js +136 -0
- package/.sinapse-ai/core/orchestration/doc-first-resolver.js +322 -0
- package/.sinapse-ai/core/orchestration/executors/epic-4-executor.js +3 -0
- package/.sinapse-ai/core/orchestration/gate-evaluator.js +58 -9
- package/.sinapse-ai/core/orchestration/route-command.js +97 -0
- package/.sinapse-ai/core/orchestration/session-state.js +19 -2
- package/.sinapse-ai/core/orchestration/terminal-spawner.js +24 -1
- package/.sinapse-ai/core/orchestration/workflow-executor.js +102 -3
- package/.sinapse-ai/core/quality-gates/focus-area-recommender.js +15 -11
- package/.sinapse-ai/core/registry/build-registry.js +3 -2
- package/.sinapse-ai/core/synapse/scripts/generate-constitution.js +1 -0
- package/.sinapse-ai/core/synapse/utils/atomic-write.js +34 -9
- package/.sinapse-ai/core-config.yaml +5 -1
- package/.sinapse-ai/data/capability-detection.js +3 -3
- package/.sinapse-ai/data/entity-registry.yaml +288 -90
- package/.sinapse-ai/data/mcp-discipline.js +1 -1
- package/.sinapse-ai/data/mcp-tool-examples.yaml +8 -8
- package/.sinapse-ai/data/tok2-validation.js +1 -1
- package/.sinapse-ai/data/tool-registry.yaml +4 -3
- package/.sinapse-ai/development/agents/snps-orqx.md +14 -5
- package/.sinapse-ai/development/scripts/migrate-task-to-v2.js +1 -1
- package/.sinapse-ai/development/scripts/validate-task-v2.js +67 -4
- package/.sinapse-ai/development/tasks/advanced-elicitation.md +3 -3
- package/.sinapse-ai/development/tasks/analyst-facilitate-brainstorming.md +3 -3
- package/.sinapse-ai/development/tasks/analyze-framework.md +1 -8
- package/.sinapse-ai/development/tasks/analyze-performance.md +1 -8
- package/.sinapse-ai/development/tasks/apply-qa-fixes.md +3 -3
- package/.sinapse-ai/development/tasks/architect-analyze-impact.md +3 -3
- package/.sinapse-ai/development/tasks/audit-codebase.md +1 -8
- package/.sinapse-ai/development/tasks/audit-tailwind-config.md +1 -4
- package/.sinapse-ai/development/tasks/audit-utilities.md +1 -8
- package/.sinapse-ai/development/tasks/bootstrap-shadcn-library.md +3 -3
- package/.sinapse-ai/development/tasks/brownfield-create-epic.md +3 -3
- package/.sinapse-ai/development/tasks/brownfield-create-story.md +3 -3
- package/.sinapse-ai/development/tasks/build-component.md +2 -5
- package/.sinapse-ai/development/tasks/calculate-roi.md +3 -3
- package/.sinapse-ai/development/tasks/ci-cd-configuration.md +1 -1
- package/.sinapse-ai/development/tasks/cleanup-utilities.md +3 -3
- package/.sinapse-ai/development/tasks/collaborative-edit.md +3 -3
- package/.sinapse-ai/development/tasks/compose-molecule.md +2 -5
- package/.sinapse-ai/development/tasks/consolidate-patterns.md +3 -3
- package/.sinapse-ai/development/tasks/correct-course.md +3 -3
- package/.sinapse-ai/development/tasks/create-brownfield-story.md +2 -5
- package/.sinapse-ai/development/tasks/create-deep-research-prompt.md +2 -5
- package/.sinapse-ai/development/tasks/create-doc.md +3 -6
- package/.sinapse-ai/development/tasks/create-next-story.md +4 -8
- package/.sinapse-ai/development/tasks/create-suite.md +2 -5
- package/.sinapse-ai/development/tasks/create-task.md +2 -5
- package/.sinapse-ai/development/tasks/create-workflow.md +2 -5
- package/.sinapse-ai/development/tasks/db-analyze-hotpaths.md +1 -8
- package/.sinapse-ai/development/tasks/db-apply-migration.md +1 -8
- package/.sinapse-ai/development/tasks/db-bootstrap.md +1 -8
- package/.sinapse-ai/development/tasks/db-domain-modeling.md +1 -8
- package/.sinapse-ai/development/tasks/db-dry-run.md +1 -8
- package/.sinapse-ai/development/tasks/db-env-check.md +1 -8
- package/.sinapse-ai/development/tasks/db-explain.md +1 -8
- package/.sinapse-ai/development/tasks/db-impersonate.md +1 -8
- package/.sinapse-ai/development/tasks/db-load-csv.md +1 -8
- package/.sinapse-ai/development/tasks/db-policy-apply.md +1 -8
- package/.sinapse-ai/development/tasks/db-rls-audit.md +1 -8
- package/.sinapse-ai/development/tasks/db-rollback.md +1 -8
- package/.sinapse-ai/development/tasks/db-run-sql.md +1 -8
- package/.sinapse-ai/development/tasks/db-schema-audit.md +1 -8
- package/.sinapse-ai/development/tasks/db-seed.md +1 -8
- package/.sinapse-ai/development/tasks/db-smoke-test.md +1 -8
- package/.sinapse-ai/development/tasks/db-snapshot.md +1 -8
- package/.sinapse-ai/development/tasks/db-squad-integration.md +1 -8
- package/.sinapse-ai/development/tasks/db-supabase-setup.md +1 -8
- package/.sinapse-ai/development/tasks/db-verify-order.md +1 -8
- package/.sinapse-ai/development/tasks/deprecate-component.md +3 -3
- package/.sinapse-ai/development/tasks/dev-apply-qa-fixes.md +3 -3
- package/.sinapse-ai/development/tasks/dev-backlog-debt.md +3 -3
- package/.sinapse-ai/development/tasks/dev-develop-story.md +1 -1
- package/.sinapse-ai/development/tasks/dev-improve-code-quality.md +3 -3
- package/.sinapse-ai/development/tasks/dev-optimize-performance.md +3 -3
- package/.sinapse-ai/development/tasks/dev-suggest-refactoring.md +3 -3
- package/.sinapse-ai/development/tasks/dev-validate-next-story.md +3 -3
- package/.sinapse-ai/development/tasks/document-project.md +3 -3
- package/.sinapse-ai/development/tasks/environment-bootstrap.md +0 -4
- package/.sinapse-ai/development/tasks/execute-checklist.md +3 -3
- package/.sinapse-ai/development/tasks/export-design-tokens-dtcg.md +3 -3
- package/.sinapse-ai/development/tasks/extend-pattern.md +1 -8
- package/.sinapse-ai/development/tasks/extract-tokens.md +3 -3
- package/.sinapse-ai/development/tasks/facilitate-brainstorming-session.md +1 -1
- package/.sinapse-ai/development/tasks/generate-ai-frontend-prompt.md +2 -5
- package/.sinapse-ai/development/tasks/generate-documentation.md +2 -5
- package/.sinapse-ai/development/tasks/generate-migration-strategy.md +2 -5
- package/.sinapse-ai/development/tasks/generate-shock-report.md +2 -5
- package/.sinapse-ai/development/tasks/github-devops-github-pr-automation.md +3 -3
- package/.sinapse-ai/development/tasks/github-devops-repository-cleanup.md +3 -3
- package/.sinapse-ai/development/tasks/github-devops-version-management.md +3 -3
- package/.sinapse-ai/development/tasks/improve-self.md +1 -16
- package/.sinapse-ai/development/tasks/index-docs.md +1 -4
- package/.sinapse-ai/development/tasks/init-project-status.md +1 -7
- package/.sinapse-ai/development/tasks/integrate-squad.md +3 -3
- package/.sinapse-ai/development/tasks/kb-mode-interaction.md +3 -3
- package/.sinapse-ai/development/tasks/learn-patterns.md +3 -3
- package/.sinapse-ai/development/tasks/modify-agent.md +1 -8
- package/.sinapse-ai/development/tasks/modify-task.md +1 -8
- package/.sinapse-ai/development/tasks/modify-workflow.md +1 -8
- package/.sinapse-ai/development/tasks/po-backlog-add.md +3 -3
- package/.sinapse-ai/development/tasks/po-manage-story-backlog.md +3 -3
- package/.sinapse-ai/development/tasks/po-pull-story-from-clickup.md +3 -3
- package/.sinapse-ai/development/tasks/po-pull-story.md +3 -3
- package/.sinapse-ai/development/tasks/po-stories-index.md +3 -3
- package/.sinapse-ai/development/tasks/po-sync-story-to-clickup.md +3 -3
- package/.sinapse-ai/development/tasks/po-sync-story.md +3 -3
- package/.sinapse-ai/development/tasks/pr-automation.md +1 -1
- package/.sinapse-ai/development/tasks/propose-modification.md +3 -3
- package/.sinapse-ai/development/tasks/qa-backlog-add-followup.md +1 -8
- package/.sinapse-ai/development/tasks/qa-create-fix-request.md +1 -4
- package/.sinapse-ai/development/tasks/qa-gate.md +1 -8
- package/.sinapse-ai/development/tasks/qa-generate-tests.md +1 -8
- package/.sinapse-ai/development/tasks/qa-nfr-assess.md +1 -8
- package/.sinapse-ai/development/tasks/qa-review-proposal.md +1 -8
- package/.sinapse-ai/development/tasks/qa-review-story.md +1 -8
- package/.sinapse-ai/development/tasks/qa-risk-profile.md +1 -8
- package/.sinapse-ai/development/tasks/qa-run-tests.md +1 -8
- package/.sinapse-ai/development/tasks/qa-test-design.md +1 -8
- package/.sinapse-ai/development/tasks/qa-trace-requirements.md +1 -8
- package/.sinapse-ai/development/tasks/release-management.md +1 -1
- package/.sinapse-ai/development/tasks/security-audit.md +1 -4
- package/.sinapse-ai/development/tasks/security-scan.md +1 -4
- package/.sinapse-ai/development/tasks/setup-database.md +2 -11
- package/.sinapse-ai/development/tasks/setup-design-system.md +2 -11
- package/.sinapse-ai/development/tasks/shard-doc.md +3 -3
- package/.sinapse-ai/development/tasks/sm-create-next-story.md +3 -3
- package/.sinapse-ai/development/tasks/spec-gather-requirements.md +11 -0
- package/.sinapse-ai/development/tasks/sync-documentation.md +1 -6
- package/.sinapse-ai/development/tasks/tailwind-upgrade.md +3 -3
- package/.sinapse-ai/development/tasks/test-as-user.md +3 -3
- package/.sinapse-ai/development/tasks/undo-last.md +2 -5
- package/.sinapse-ai/development/tasks/update-manifest.md +1 -8
- package/.sinapse-ai/development/tasks/ux-create-wireframe.md +1 -1
- package/.sinapse-ai/development/tasks/ux-ds-scan-artifact.md +3 -3
- package/.sinapse-ai/development/tasks/ux-user-research.md +3 -3
- package/.sinapse-ai/development/tasks/validate-next-story.md +1 -8
- package/.sinapse-ai/development/templates/approval-table.md +106 -0
- package/.sinapse-ai/development/templates/chrome-brain/scripts/chrome-ensure.cjs +1 -1
- package/.sinapse-ai/development/workflows/spec-pipeline.yaml +1 -0
- package/.sinapse-ai/git-hooks/post-commit +0 -0
- package/.sinapse-ai/git-hooks/pre-commit +0 -0
- package/.sinapse-ai/git-hooks/pre-push +0 -0
- package/.sinapse-ai/infrastructure/scripts/changelog-generator.js +5 -1
- package/.sinapse-ai/infrastructure/scripts/pattern-extractor.js +11 -2
- package/.sinapse-ai/infrastructure/scripts/test-utilities.js +34 -13
- package/.sinapse-ai/infrastructure/scripts/usage-analytics.js +9 -5
- package/.sinapse-ai/infrastructure/scripts/validate-claude-integration.js +10 -2
- package/.sinapse-ai/install-manifest.yaml +364 -320
- package/.sinapse-ai/lib/build.json +1 -0
- package/.sinapse-ai/product/templates/personalized-task-template-v2.md +4 -2
- package/.sinapse-ai/product/templates/prd-tmpl.yaml +6 -2
- package/.sinapse-ai/product/templates/statusline/statusline-script.js +7 -3
- package/CHANGELOG.md +85 -7
- package/README.en.md +5 -5
- package/README.md +5 -5
- package/bin/cli.js +1 -1
- package/bin/commands/install.js +288 -114
- package/bin/commands/local.js +11 -0
- package/bin/lib/command-generator.js +31 -2
- package/bin/sinapse.js +121 -0
- package/docs/README.md +1 -1
- package/docs/agent-reference-guide.md +1 -1
- package/docs/community/README-community-snippet-core.md +1 -1
- package/docs/community/README-community-snippet-mcp.md +1 -1
- package/docs/community/README-community-snippet-squads.md +1 -1
- package/docs/examples/quickstart-recording.md +1 -1
- package/docs/framework/README.md +1 -1
- package/docs/framework/architecture-overview.md +1 -0
- package/docs/framework/atlas/OPERATING-ATLAS.md +537 -0
- package/docs/framework/atlas/README.md +34 -0
- package/docs/framework/atlas/atlas-data.json +2810 -0
- package/docs/framework/atlas/atlas.html +392 -0
- package/docs/framework/coding-standards.md +1 -1
- package/docs/framework/core-architecture.md +1 -1
- package/docs/framework/guiding-principles.md +1 -1
- package/docs/framework/source-tree.md +1 -1
- package/docs/framework/tech-stack.md +1 -1
- package/docs/framework/versioning-and-releases.md +1 -1
- package/docs/getting-started.md +1 -1
- package/docs/guides/agent-reference.md +1 -1
- package/docs/guides/agent-selection-guide.md +1 -1
- package/docs/guides/api-reference.md +1 -1
- package/docs/guides/contextual-greeting-system-guide.md +1 -1
- package/docs/guides/contributing-squads.md +1 -1
- package/docs/guides/development-setup.md +1 -1
- package/docs/guides/git-workflow-guide.md +1 -1
- package/docs/guides/installation-troubleshooting.md +1 -1
- package/docs/guides/llm-routing.md +1 -1
- package/docs/guides/mcp-global-setup.md +1 -1
- package/docs/guides/meta-agent-commands.md +1 -1
- package/docs/guides/project-status-feature.md +1 -1
- package/docs/guides/quality-dashboard.md +1 -1
- package/docs/guides/quality-gates.md +1 -1
- package/docs/guides/security-hardening.md +1 -1
- package/docs/guides/service-discovery.md +19 -22
- package/docs/guides/squad-examples/README.md +1 -1
- package/docs/guides/squad-migration.md +1 -1
- package/docs/guides/squads-guide.md +1 -1
- package/docs/guides/squads-overview.md +10 -13
- package/docs/guides/template-engine-v2.md +1 -1
- package/docs/guides/testing-guide.md +1 -1
- package/docs/guides/user-guide.md +30 -26
- package/docs/installation/README.md +3 -3
- package/docs/installation/faq.md +1 -1
- package/docs/installation/linux.md +2 -2
- package/docs/installation/macos.md +1 -1
- package/docs/installation/npx-install.md +1 -1
- package/docs/installation/troubleshooting.md +1 -1
- package/docs/installation/uninstallation.md +1 -1
- package/docs/installation/v4-quick-start.md +1 -1
- package/docs/installation/windows.md +2 -2
- package/docs/pt/CHANGELOG.md +1 -1
- package/docs/pt/DOCUMENTATION-ROADMAP.md +1 -1
- package/docs/pt/ENVIRONMENT.md +1 -1
- package/docs/pt/FEATURE_PROCESS.md +2 -2
- package/docs/pt/GUIDING-PRINCIPLES.md +2 -2
- package/docs/pt/agent-reference-guide.md +3 -3
- package/docs/pt/architecture/ARCHITECTURE-INDEX.md +2 -2
- package/docs/pt/architecture/ade-architecture.md +1 -1
- package/docs/pt/architecture/agent-config-audit.md +1 -1
- package/docs/pt/architecture/agent-responsibility-matrix.md +1 -1
- package/docs/pt/architecture/agent-tool-integration-guide.md +1 -1
- package/docs/pt/architecture/ci-cd.md +1 -1
- package/docs/pt/architecture/coding-standards.md +1 -1
- package/docs/pt/architecture/contribution-workflow-research.md +1 -1
- package/docs/pt/architecture/dashboard-architecture.md +1 -1
- package/docs/pt/architecture/dashboard-realtime.md +1 -1
- package/docs/pt/architecture/hcs-check-specifications.md +1 -1
- package/docs/pt/architecture/hcs-execution-modes.md +1 -1
- package/docs/pt/architecture/hcs-self-healing-spec.md +1 -1
- package/docs/pt/architecture/high-level-architecture.md +1 -1
- package/docs/pt/architecture/introduction.md +1 -1
- package/docs/pt/architecture/mcp-api-keys-management.md +3 -3
- package/docs/pt/architecture/mcp-system-diagrams.md +1 -1
- package/docs/pt/architecture/module-system.md +4 -4
- package/docs/pt/architecture/multi-repo-strategy.md +2 -2
- package/docs/pt/architecture/source-tree.md +1 -1
- package/docs/pt/architecture/squad-improvement-analysis.md +1 -1
- package/docs/pt/architecture/squad-improvement-recommended-approach.md +1 -1
- package/docs/pt/architecture/tech-stack.md +1 -1
- package/docs/pt/architecture/utility-integration-guide.md +1 -1
- package/docs/pt/code-of-conduct.md +1 -1
- package/docs/pt/community/README-community-snippet-core.md +1 -1
- package/docs/pt/community/README-community-snippet-mcp.md +2 -2
- package/docs/pt/contributing.md +7 -7
- package/docs/pt/core-architecture.md +1 -1
- package/docs/pt/docker-mcp-setup.md +1 -1
- package/docs/pt/framework/README.md +1 -1
- package/docs/pt/framework/coding-standards.md +1 -1
- package/docs/pt/framework/source-tree.md +1 -1
- package/docs/pt/framework/tech-stack.md +1 -1
- package/docs/pt/getting-started.md +1 -1
- package/docs/pt/git-workflow-guide.md +1 -1
- package/docs/pt/guides/README.md +3 -3
- package/docs/pt/guides/agent-selection-guide.md +2 -2
- package/docs/pt/guides/api-reference.md +1 -1
- package/docs/pt/guides/contextual-greeting-system-guide.md +1 -1
- package/docs/pt/guides/contributing-squads.md +1 -1
- package/docs/pt/guides/development-setup.md +1 -1
- package/docs/pt/guides/installation-troubleshooting.md +1 -1
- package/docs/pt/guides/llm-routing.md +1 -1
- package/docs/pt/guides/mcp/desktop-commander.md +1 -1
- package/docs/pt/guides/mcp/docker-gateway-tutorial.md +1 -1
- package/docs/pt/guides/mcp-global-setup.md +1 -1
- package/docs/pt/guides/project-status-feature.md +1 -1
- package/docs/pt/guides/quality-dashboard.md +1 -1
- package/docs/pt/guides/quality-gates.md +1 -1
- package/docs/pt/guides/security-hardening.md +2 -2
- package/docs/pt/guides/service-discovery.md +19 -22
- package/docs/pt/guides/squad-examples/README.md +1 -1
- package/docs/pt/guides/squad-migration.md +1 -1
- package/docs/pt/guides/squads-guide.md +1 -1
- package/docs/pt/guides/squads-overview.md +11 -13
- package/docs/pt/guides/template-engine-v2.md +1 -1
- package/docs/pt/guides/testing-guide.md +3 -3
- package/docs/pt/guides/user-guide.md +30 -26
- package/docs/pt/guides/workflows-guide.md +1 -1
- package/docs/pt/how-to-contribute-with-pull-requests.md +1 -1
- package/docs/pt/ide-integration.md +2 -2
- package/docs/pt/installation/README.md +1 -1
- package/docs/pt/installation/faq.md +1 -1
- package/docs/pt/installation/linux.md +1 -1
- package/docs/pt/installation/macos.md +1 -1
- package/docs/pt/installation/troubleshooting.md +1 -1
- package/docs/pt/installation/v4-quick-start.md +1 -1
- package/docs/pt/installation/windows.md +1 -1
- package/docs/pt/meta-agent-commands.md +1 -1
- package/docs/pt/migration-guide.md +1 -1
- package/docs/pt/npx-install.md +1 -1
- package/docs/pt/performance-tuning-guide.md +1 -1
- package/docs/pt/platforms/claude-code.md +2 -2
- package/docs/pt/roadmap.md +2 -2
- package/docs/pt/security-best-practices.md +2 -2
- package/docs/pt/security.md +1 -1
- package/docs/pt/sinapse-nomenclature-specification.md +1 -1
- package/docs/pt/troubleshooting.md +1 -1
- package/docs/pt/uninstallation.md +1 -1
- package/docs/pt/versioning-and-releases.md +1 -1
- package/docs/security/overview.md +1 -1
- package/docs/security/security-best-practices.md +2 -2
- package/docs/sinapse-workflows/README.md +1 -1
- package/package.json +2 -1
- package/packages/installer/package.json +1 -0
- package/packages/installer/src/wizard/feedback.js +18 -2
- package/packages/installer/src/wizard/i18n.js +78 -0
- package/packages/installer/src/wizard/ide-config-generator.js +14 -9
- package/packages/installer/src/wizard/index.js +16 -16
- package/packages/installer/src/wizard/validation/report-generator.js +22 -21
- package/packages/installer/src/wizard/validation/troubleshooting-system.js +19 -13
- package/scripts/gen-agent-badges.js +1 -1
- package/scripts/install-chrome-brain.sh +2 -2
- package/scripts/package-synapse.js +14 -5
- package/scripts/prepare-hooks.js +19 -0
- package/scripts/validate-agent-codenames.js +174 -0
- package/scripts/validate-all.js +1 -0
- package/scripts/validate-no-personal-leaks.js +24 -9
- package/sinapse/agents/sinapse-orqx.md +5 -5
- package/sinapse/agents/snps-orqx.md +5 -5
- package/squads/squad-brand/agents/brand-creative-engineer.md +5 -5
- package/squads/squad-brand/squad.yaml +6 -6
- package/squads/squad-content/agents/content-engineer.md +7 -7
- package/squads/squad-content/squad.yaml +5 -5
- package/squads/squad-copy/knowledge-base/consequence-headline-patterns.md +2 -2
- package/squads/squad-courses/agents/production-director.md +5 -5
- package/squads/squad-courses/squad.yaml +1 -1
- package/docs/guides/hooks-two-layers.md +0 -66
|
@@ -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.19.0
|
|
11
11
|
generator: scripts/generate-install-manifest.js
|
|
12
|
-
file_count:
|
|
12
|
+
file_count: 1163
|
|
13
13
|
files:
|
|
14
14
|
- path: cli/commands/config/index.js
|
|
15
15
|
hash: sha256:bfa83cb1dc111b0b30dd298dc0abc2150b73f939b6cd4458effa8e6d407bc9e2
|
|
@@ -192,9 +192,37 @@ files:
|
|
|
192
192
|
type: cli
|
|
193
193
|
size: 5908
|
|
194
194
|
- path: core-config.yaml
|
|
195
|
-
hash: sha256:
|
|
195
|
+
hash: sha256:74bb1d9c7ced33f1242ff6199bc385c2aa5543694a1bd544b64a5ab89775019c
|
|
196
196
|
type: config
|
|
197
|
-
size:
|
|
197
|
+
size: 12918
|
|
198
|
+
- path: core/atlas/atlas-data.js
|
|
199
|
+
hash: sha256:ab6ef91bd2de1498dbe3892a80b5f18d67624db1fb2da74b0e53f83de902f383
|
|
200
|
+
type: core
|
|
201
|
+
size: 11444
|
|
202
|
+
- path: core/atlas/flows-pt.js
|
|
203
|
+
hash: sha256:8db1cd79a9b3abbbf666162405bc59b8bf1e81c523d7a2709434d91118f1d5e0
|
|
204
|
+
type: core
|
|
205
|
+
size: 11499
|
|
206
|
+
- path: core/atlas/flows.js
|
|
207
|
+
hash: sha256:099392b58b9a8e2dfadb7e108949f19420acfde472406a94bd9c21e356615cab
|
|
208
|
+
type: core
|
|
209
|
+
size: 11033
|
|
210
|
+
- path: core/atlas/index.js
|
|
211
|
+
hash: sha256:ea1e47887854cf348cf29c99c6e5d6218d4e6e709db14a6caa0b289303200363
|
|
212
|
+
type: core
|
|
213
|
+
size: 2028
|
|
214
|
+
- path: core/atlas/render-html.js
|
|
215
|
+
hash: sha256:d84e928fbaa7f20f4c253758af3af486805683b66027d38d682cc453a5f68a0c
|
|
216
|
+
type: core
|
|
217
|
+
size: 11656
|
|
218
|
+
- path: core/atlas/render-markdown.js
|
|
219
|
+
hash: sha256:6d379f52785f81a697ed7e7e4a673564492f58fd79ef9a915e22331a3fdde23a
|
|
220
|
+
type: core
|
|
221
|
+
size: 12076
|
|
222
|
+
- path: core/atlas/render-research-card.js
|
|
223
|
+
hash: sha256:86086e58ea6e3f4a19229f7c755cb4072a8582e8de70e5610c58ea578276204e
|
|
224
|
+
type: core
|
|
225
|
+
size: 6069
|
|
198
226
|
- path: core/code-intel/code-intel-client.js
|
|
199
227
|
hash: sha256:65f6c0f2bb639ff3080db3d85660e0b8097e5af7c60dc04f582ef20f42cc9cfc
|
|
200
228
|
type: core
|
|
@@ -248,9 +276,9 @@ files:
|
|
|
248
276
|
type: core
|
|
249
277
|
size: 15622
|
|
250
278
|
- path: core/code-intel/registry-syncer.js
|
|
251
|
-
hash: sha256:
|
|
279
|
+
hash: sha256:acef8a60679cdd3ca1dec970ae573991c09c2e5e27ba780796c5b6ecf2848032
|
|
252
280
|
type: core
|
|
253
|
-
size:
|
|
281
|
+
size: 13413
|
|
254
282
|
- path: core/config/config-cache.js
|
|
255
283
|
hash: sha256:19a1c2900dd5cc59ddece4303d272415683978e238feb6538e6b41c1eef456a1
|
|
256
284
|
type: core
|
|
@@ -320,13 +348,13 @@ files:
|
|
|
320
348
|
type: documentation
|
|
321
349
|
size: 11580
|
|
322
350
|
- path: core/doctor/checks/agent-memory.js
|
|
323
|
-
hash: sha256:
|
|
351
|
+
hash: sha256:0eaacbec38882749bbaf1e16e5a2f2c1c486596b416debdc780f77a7791a4124
|
|
324
352
|
type: core
|
|
325
|
-
size:
|
|
353
|
+
size: 1737
|
|
326
354
|
- path: core/doctor/checks/claude-md.js
|
|
327
|
-
hash: sha256:
|
|
355
|
+
hash: sha256:c9cda3a367f14ae8845b3c96f90497ee2a316afd6d0cfd0ae9abeb4e4461596a
|
|
328
356
|
type: core
|
|
329
|
-
size:
|
|
357
|
+
size: 1867
|
|
330
358
|
- path: core/doctor/checks/code-intel.js
|
|
331
359
|
hash: sha256:92575328f8cf65e1a24d82eafa7225bf080a60a3aab8de60ddee1737196c0b70
|
|
332
360
|
type: core
|
|
@@ -336,9 +364,9 @@ files:
|
|
|
336
364
|
type: core
|
|
337
365
|
size: 1812
|
|
338
366
|
- path: core/doctor/checks/constitution-consistency.js
|
|
339
|
-
hash: sha256:
|
|
367
|
+
hash: sha256:c4f27ffffabcc2377833abf1e4374366b5e78aa2ee31e7c1ad7050743cea0068
|
|
340
368
|
type: core
|
|
341
|
-
size:
|
|
369
|
+
size: 3262
|
|
342
370
|
- path: core/doctor/checks/core-config.js
|
|
343
371
|
hash: sha256:77b3a167f52a6145aeaf83ac4ce558ec7b8efd66beccfa05ec106367315d7e9a
|
|
344
372
|
type: core
|
|
@@ -356,9 +384,9 @@ files:
|
|
|
356
384
|
type: core
|
|
357
385
|
size: 1202
|
|
358
386
|
- path: core/doctor/checks/hooks-claude-count.js
|
|
359
|
-
hash: sha256:
|
|
387
|
+
hash: sha256:c62ee5b13d947c1ebde985e714a3d0a59d639d32f03f2bb01254131874388eaf
|
|
360
388
|
type: core
|
|
361
|
-
size:
|
|
389
|
+
size: 4038
|
|
362
390
|
- path: core/doctor/checks/ide-sync.js
|
|
363
391
|
hash: sha256:6ff4b422c03ef7f84b0e72ccbe97faf6324dee45da18cd878bfe5e91d00271b9
|
|
364
392
|
type: core
|
|
@@ -384,9 +412,9 @@ files:
|
|
|
384
412
|
type: core
|
|
385
413
|
size: 1494
|
|
386
414
|
- path: core/doctor/checks/settings-json.js
|
|
387
|
-
hash: sha256:
|
|
415
|
+
hash: sha256:7111af8a314f2b132c1253fa10fff17cab7389ee7951ca17b5383bfe159a1f9b
|
|
388
416
|
type: core
|
|
389
|
-
size:
|
|
417
|
+
size: 4133
|
|
390
418
|
- path: core/doctor/checks/skills-count.js
|
|
391
419
|
hash: sha256:2ed67974d87e3b4e4efa84527061f824eb8c79dc3a5925adb149870c6c0faf3c
|
|
392
420
|
type: core
|
|
@@ -404,9 +432,9 @@ files:
|
|
|
404
432
|
type: core
|
|
405
433
|
size: 1807
|
|
406
434
|
- path: core/doctor/index.js
|
|
407
|
-
hash: sha256:
|
|
435
|
+
hash: sha256:7b097a59f21e572d99337013ad6f413a31bdc7ff9419481fe401fed482ddc2a1
|
|
408
436
|
type: core
|
|
409
|
-
size:
|
|
437
|
+
size: 9660
|
|
410
438
|
- path: core/elicitation/agent-elicitation.js
|
|
411
439
|
hash: sha256:92abc291cecff9b8bb9153d5fbac84ad5217cff4d0d01e0495785a939334cd81
|
|
412
440
|
type: elicitation
|
|
@@ -468,9 +496,9 @@ files:
|
|
|
468
496
|
type: core
|
|
469
497
|
size: 34059
|
|
470
498
|
- path: core/execution/build-orchestrator.js
|
|
471
|
-
hash: sha256:
|
|
499
|
+
hash: sha256:ac8adfb8d5ef580641430735a7f351cf96d6bfe8608e8e45b92106ee0d412cb7
|
|
472
500
|
type: core
|
|
473
|
-
size:
|
|
501
|
+
size: 39805
|
|
474
502
|
- path: core/execution/build-state-manager.js
|
|
475
503
|
hash: sha256:3b2fe56bf0e1a480f663a02afbb83c6d11cf89fb56815381c7ccafab948a63ae
|
|
476
504
|
type: core
|
|
@@ -508,9 +536,9 @@ files:
|
|
|
508
536
|
type: core
|
|
509
537
|
size: 11268
|
|
510
538
|
- path: core/external-executors/delegate-cli.js
|
|
511
|
-
hash: sha256:
|
|
539
|
+
hash: sha256:e56313ca703a4fccf64e0eec958ceb9f84e5d7a3f1c84c22b12375a9b5b58bc1
|
|
512
540
|
type: core
|
|
513
|
-
size:
|
|
541
|
+
size: 15388
|
|
514
542
|
- path: core/external-executors/index.js
|
|
515
543
|
hash: sha256:db61bee165e4a7dba3627275d52d6b162e3b2cbf47d31d88beb38682cb8352db
|
|
516
544
|
type: core
|
|
@@ -640,9 +668,9 @@ files:
|
|
|
640
668
|
type: core
|
|
641
669
|
size: 4734
|
|
642
670
|
- path: core/health-check/checks/project/constitution-consistency.js
|
|
643
|
-
hash: sha256:
|
|
671
|
+
hash: sha256:b629aa44a3e085b62a53edf689ae810a1c5acdb09a11f0cca51c9f7b12f9d8ae
|
|
644
672
|
type: core
|
|
645
|
-
size:
|
|
673
|
+
size: 6025
|
|
646
674
|
- path: core/health-check/checks/project/dependencies.js
|
|
647
675
|
hash: sha256:f11f88666cfde93196d3ec81c59ba4956c75a097591d4a5cf0b2effd88db523d
|
|
648
676
|
type: core
|
|
@@ -768,9 +796,9 @@ files:
|
|
|
768
796
|
type: core
|
|
769
797
|
size: 7763
|
|
770
798
|
- path: core/ideation/ideation-engine.js
|
|
771
|
-
hash: sha256:
|
|
799
|
+
hash: sha256:e4973a25c61101d278f102e4ed449421e50d876a274b2c4c2b150d00df97cb39
|
|
772
800
|
type: core
|
|
773
|
-
size:
|
|
801
|
+
size: 27573
|
|
774
802
|
- path: core/ids/circuit-breaker.js
|
|
775
803
|
hash: sha256:d9ff8c6e540902457b17aba668ff67c04d40564ed479993ad3c4807fb8c09c3f
|
|
776
804
|
type: core
|
|
@@ -860,13 +888,13 @@ files:
|
|
|
860
888
|
type: core
|
|
861
889
|
size: 11306
|
|
862
890
|
- path: core/mcp/config-migrator.js
|
|
863
|
-
hash: sha256:
|
|
891
|
+
hash: sha256:9707d54038ee9899e9f87735989e462c3b017fe6275fc67edbec910b4edc4676
|
|
864
892
|
type: core
|
|
865
|
-
size:
|
|
893
|
+
size: 10207
|
|
866
894
|
- path: core/mcp/global-config-manager.js
|
|
867
|
-
hash: sha256:
|
|
895
|
+
hash: sha256:b6b6ea82a2e510e37163a845806f8d27647f72b97e4f6b2c3891cac974331a3b
|
|
868
896
|
type: core
|
|
869
|
-
size:
|
|
897
|
+
size: 9169
|
|
870
898
|
- path: core/mcp/index.js
|
|
871
899
|
hash: sha256:dde1c3defd5aeeac53fe8efd77f9273b257d477e32b13b3d47b4d4bfe842ed66
|
|
872
900
|
type: core
|
|
@@ -876,9 +904,9 @@ files:
|
|
|
876
904
|
type: core
|
|
877
905
|
size: 3840
|
|
878
906
|
- path: core/mcp/symlink-manager.js
|
|
879
|
-
hash: sha256:
|
|
907
|
+
hash: sha256:8d66c2e83266caff174722bd8e153d16687f6c0d0d260d5777f3dba1d1ae8745
|
|
880
908
|
type: core
|
|
881
|
-
size:
|
|
909
|
+
size: 10661
|
|
882
910
|
- path: core/memory/__tests__/active-modules.verify.js
|
|
883
911
|
hash: sha256:f9d19b7afe34a3855795bab464dc5a6d23c1926c5eed05192910f898d6bbefec
|
|
884
912
|
type: core
|
|
@@ -912,9 +940,13 @@ files:
|
|
|
912
940
|
type: core
|
|
913
941
|
size: 8129
|
|
914
942
|
- path: core/orchestration/brownfield-handler.js
|
|
915
|
-
hash: sha256:
|
|
943
|
+
hash: sha256:d4ad190353fc751e874bad5b3013137dcccfc84100edd6cead80c8fa5e83af11
|
|
916
944
|
type: core
|
|
917
|
-
size:
|
|
945
|
+
size: 28745
|
|
946
|
+
- path: core/orchestration/build-command.js
|
|
947
|
+
hash: sha256:b758cfc7c0fad3d0d875460630b9ac7b2c968b82cdec14e9885e0744ee7012d0
|
|
948
|
+
type: core
|
|
949
|
+
size: 5236
|
|
918
950
|
- path: core/orchestration/checklist-runner.js
|
|
919
951
|
hash: sha256:9bee322fb2572ef81361a3f695b2855f61d610739c612d8b6317cb1b5d6d84c9
|
|
920
952
|
type: core
|
|
@@ -939,6 +971,10 @@ files:
|
|
|
939
971
|
hash: sha256:14e91bfefde4f1ee9ecea1e2902bcc43a754719b1572d93f7d2ca357c87c8312
|
|
940
972
|
type: core
|
|
941
973
|
size: 10880
|
|
974
|
+
- path: core/orchestration/doc-first-resolver.js
|
|
975
|
+
hash: sha256:92a4170f3ed0b6b214608c80e17c8c6b1769a50b849532af4ae34db070a6931f
|
|
976
|
+
type: core
|
|
977
|
+
size: 14592
|
|
942
978
|
- path: core/orchestration/epic-context-accumulator.js
|
|
943
979
|
hash: sha256:9f38c7e3b4de7fbcfeae5fe1dc88aa3f0ae38667f1dc1da025519d40b3b9daa9
|
|
944
980
|
type: core
|
|
@@ -956,9 +992,9 @@ files:
|
|
|
956
992
|
type: core
|
|
957
993
|
size: 9463
|
|
958
994
|
- path: core/orchestration/executors/epic-4-executor.js
|
|
959
|
-
hash: sha256:
|
|
995
|
+
hash: sha256:31d038e4c6603749f61f75284aa626f871864c072aa9ec220a1798d125bbc62c
|
|
960
996
|
type: core
|
|
961
|
-
size:
|
|
997
|
+
size: 9383
|
|
962
998
|
- path: core/orchestration/executors/epic-5-executor.js
|
|
963
999
|
hash: sha256:865224cd6cb1f80c1228e149349aea5c335440201c9047f849d2ec85b73d3f03
|
|
964
1000
|
type: core
|
|
@@ -980,9 +1016,9 @@ files:
|
|
|
980
1016
|
type: core
|
|
981
1017
|
size: 10211
|
|
982
1018
|
- path: core/orchestration/gate-evaluator.js
|
|
983
|
-
hash: sha256:
|
|
1019
|
+
hash: sha256:b898a091ff5c787e4a1d7c02a5e183c4eb6439086187fd8193b69710d3d33cc0
|
|
984
1020
|
type: core
|
|
985
|
-
size:
|
|
1021
|
+
size: 18312
|
|
986
1022
|
- path: core/orchestration/greenfield-handler.js
|
|
987
1023
|
hash: sha256:33bb2c05c3aee3e02c247afd80e27051a8c0eeb9b32dd3c246d11d5db60773e6
|
|
988
1024
|
type: core
|
|
@@ -1011,10 +1047,14 @@ files:
|
|
|
1011
1047
|
hash: sha256:cfbf41b69336548b2fc4179a5513243491ca6eb501de3426f98254f118b074e7
|
|
1012
1048
|
type: core
|
|
1013
1049
|
size: 27167
|
|
1050
|
+
- path: core/orchestration/route-command.js
|
|
1051
|
+
hash: sha256:b7a5aa520936eb819d7b577fd7b15bcee8c7f8e9e147c6fa3db9fd12a493b7f3
|
|
1052
|
+
type: core
|
|
1053
|
+
size: 4766
|
|
1014
1054
|
- path: core/orchestration/session-state.js
|
|
1015
|
-
hash: sha256:
|
|
1055
|
+
hash: sha256:a4fddcb9eb120ec7a0367ffc07d05cfbf97aa2afc16cc2c18663cf6c3a0d4912
|
|
1016
1056
|
type: core
|
|
1017
|
-
size:
|
|
1057
|
+
size: 25511
|
|
1018
1058
|
- path: core/orchestration/skill-dispatcher.js
|
|
1019
1059
|
hash: sha256:321eee21d44c8c2548a4a989b4fd9bd13782dc95f917098d67c514e0886000f5
|
|
1020
1060
|
type: core
|
|
@@ -1036,13 +1076,13 @@ files:
|
|
|
1036
1076
|
type: core
|
|
1037
1077
|
size: 16495
|
|
1038
1078
|
- path: core/orchestration/terminal-spawner.js
|
|
1039
|
-
hash: sha256:
|
|
1079
|
+
hash: sha256:698bbf0df1d988b98be470528d8f3f261a0ffd6294150fdbb369af1e29ed7fde
|
|
1040
1080
|
type: core
|
|
1041
|
-
size:
|
|
1081
|
+
size: 32247
|
|
1042
1082
|
- path: core/orchestration/workflow-executor.js
|
|
1043
|
-
hash: sha256:
|
|
1083
|
+
hash: sha256:965d6ff60805ba6835192d9bbf2fc9fe10f4ee6e47790533007f41cfc4a4ce4c
|
|
1044
1084
|
type: core
|
|
1045
|
-
size:
|
|
1085
|
+
size: 42484
|
|
1046
1086
|
- path: core/orchestration/workflow-orchestrator.js
|
|
1047
1087
|
hash: sha256:6e97eec88c8261f15bad79c47b0eafcfe39fbda5c837e156fe803802c3a1c18f
|
|
1048
1088
|
type: core
|
|
@@ -1072,9 +1112,9 @@ files:
|
|
|
1072
1112
|
type: core
|
|
1073
1113
|
size: 9004
|
|
1074
1114
|
- path: core/quality-gates/focus-area-recommender.js
|
|
1075
|
-
hash: sha256:
|
|
1115
|
+
hash: sha256:cda110b91a4e68e3c507fda947fbd48ddb22fed8b1104d8dcd88fd45d2cd98e6
|
|
1076
1116
|
type: core
|
|
1077
|
-
size:
|
|
1117
|
+
size: 14714
|
|
1078
1118
|
- path: core/quality-gates/human-review-orchestrator.js
|
|
1079
1119
|
hash: sha256:7f6ba8a63bda8e1619db65feb3d4656a575885347ee4982ec212e1aca8915a5f
|
|
1080
1120
|
type: core
|
|
@@ -1116,9 +1156,9 @@ files:
|
|
|
1116
1156
|
type: core
|
|
1117
1157
|
size: 8176
|
|
1118
1158
|
- path: core/registry/build-registry.js
|
|
1119
|
-
hash: sha256:
|
|
1159
|
+
hash: sha256:af19f04bc201bfc7b6540e1d3f7384441b29447e4a4354ecd6fe15765a171403
|
|
1120
1160
|
type: core
|
|
1121
|
-
size:
|
|
1161
|
+
size: 13867
|
|
1122
1162
|
- path: core/registry/README.md
|
|
1123
1163
|
hash: sha256:98219837cb84b58eaf9cea2acf95837c5860c3369ac35bb226b61a7137fa14b8
|
|
1124
1164
|
type: core
|
|
@@ -1280,17 +1320,17 @@ files:
|
|
|
1280
1320
|
type: core
|
|
1281
1321
|
size: 3552
|
|
1282
1322
|
- path: core/synapse/scripts/generate-constitution.js
|
|
1283
|
-
hash: sha256:
|
|
1323
|
+
hash: sha256:2270f6c9a60e8caeb2296087fd1cf5fb023161665f9fc9cc3f3dcbc669a3d0d0
|
|
1284
1324
|
type: script
|
|
1285
|
-
size:
|
|
1325
|
+
size: 6177
|
|
1286
1326
|
- path: core/synapse/session/session-manager.js
|
|
1287
1327
|
hash: sha256:53b9d4b4903ec54e99eb85fb2a46cee0b9623db1c2e6767a09f4b463d87f0db0
|
|
1288
1328
|
type: core
|
|
1289
1329
|
size: 11186
|
|
1290
1330
|
- path: core/synapse/utils/atomic-write.js
|
|
1291
|
-
hash: sha256:
|
|
1331
|
+
hash: sha256:49d059eceff8053cf7d07fda44f1a399f4fffe2c033a548061fa6fe1a3c939a3
|
|
1292
1332
|
type: core
|
|
1293
|
-
size:
|
|
1333
|
+
size: 2995
|
|
1294
1334
|
- path: core/synapse/utils/paths.js
|
|
1295
1335
|
hash: sha256:f4d91eb000e36212638fe799ccbc11cd1c0050baa9ce739ff4083b675d7be980
|
|
1296
1336
|
type: core
|
|
@@ -1340,25 +1380,25 @@ files:
|
|
|
1340
1380
|
type: data
|
|
1341
1381
|
size: 10998
|
|
1342
1382
|
- path: data/capability-detection.js
|
|
1343
|
-
hash: sha256:
|
|
1383
|
+
hash: sha256:4e49e38fba0051512e691dd1901b91f4a91ba73c1df20e4f7e76cdc000e4d7c0
|
|
1344
1384
|
type: data
|
|
1345
|
-
size:
|
|
1385
|
+
size: 9671
|
|
1346
1386
|
- path: data/entity-registry.yaml
|
|
1347
|
-
hash: sha256:
|
|
1387
|
+
hash: sha256:80005365934bb7e9783ea833d9d1bcd85faec81fe1e2e8232187dbfd529c9304
|
|
1348
1388
|
type: data
|
|
1349
|
-
size:
|
|
1389
|
+
size: 554944
|
|
1350
1390
|
- path: data/learned-patterns.yaml
|
|
1351
1391
|
hash: sha256:1a4cd045c087b9dfd7046ff1464a9d2edb85fba77cf0b6fba14f4bb9004c741e
|
|
1352
1392
|
type: data
|
|
1353
1393
|
size: 69
|
|
1354
1394
|
- path: data/mcp-discipline.js
|
|
1355
|
-
hash: sha256:
|
|
1395
|
+
hash: sha256:fa0876124f522dc9e2d1e7328cf72a3237656a625a2dce45bb76c13969018e16
|
|
1356
1396
|
type: data
|
|
1357
|
-
size:
|
|
1397
|
+
size: 5127
|
|
1358
1398
|
- path: data/mcp-tool-examples.yaml
|
|
1359
|
-
hash: sha256:
|
|
1399
|
+
hash: sha256:96e23f764b551b5e14782713ab01f6741f9b83e09c4f98158f41e8be09b9af84
|
|
1360
1400
|
type: data
|
|
1361
|
-
size:
|
|
1401
|
+
size: 9392
|
|
1362
1402
|
- path: data/rls-security-patterns.md
|
|
1363
1403
|
hash: sha256:ae42a553bb0d783746fc0d97214becf4696b4ecaec714e9302a10e417c39a7bb
|
|
1364
1404
|
type: data
|
|
@@ -1400,17 +1440,17 @@ files:
|
|
|
1400
1440
|
type: data
|
|
1401
1441
|
size: 3406
|
|
1402
1442
|
- path: data/tok2-validation.js
|
|
1403
|
-
hash: sha256:
|
|
1443
|
+
hash: sha256:e0420bd67fb7656c900aac6a87184e1bdcbfe33e5c5438b0c73bc41e401cd85c
|
|
1404
1444
|
type: data
|
|
1405
|
-
size:
|
|
1445
|
+
size: 7072
|
|
1406
1446
|
- path: data/tok3-token-comparison.js
|
|
1407
1447
|
hash: sha256:87ab8a68bf6cd7e3fc54dbba60cbc56e3a490dde1dd805fd294a04c57f5dea1b
|
|
1408
1448
|
type: data
|
|
1409
1449
|
size: 4488
|
|
1410
1450
|
- path: data/tool-registry.yaml
|
|
1411
|
-
hash: sha256:
|
|
1451
|
+
hash: sha256:980d25ed01ab90d0ffa47c892750e312822edb902c876c8db2f7a341a4a08aa1
|
|
1412
1452
|
type: data
|
|
1413
|
-
size:
|
|
1453
|
+
size: 15216
|
|
1414
1454
|
- path: data/tool-search-validation.js
|
|
1415
1455
|
hash: sha256:0ad0396cfb695fda9a966973877ade1475e0b637a10f8bb5ce3d0a76e66fdf39
|
|
1416
1456
|
type: data
|
|
@@ -1480,9 +1520,9 @@ files:
|
|
|
1480
1520
|
type: agent
|
|
1481
1521
|
size: 23745
|
|
1482
1522
|
- path: development/agents/snps-orqx.md
|
|
1483
|
-
hash: sha256:
|
|
1523
|
+
hash: sha256:e236af23b35763597525328603d610caed502a0ecf4de6aa249852ed584eec80
|
|
1484
1524
|
type: agent
|
|
1485
|
-
size:
|
|
1525
|
+
size: 43873
|
|
1486
1526
|
- path: development/agents/sprint-lead.md
|
|
1487
1527
|
hash: sha256:572289b770cdbb0cff9ae2de4b2d19c38ce814fe978df397aa2794297f562c91
|
|
1488
1528
|
type: agent
|
|
@@ -1664,9 +1704,9 @@ files:
|
|
|
1664
1704
|
type: script
|
|
1665
1705
|
size: 21730
|
|
1666
1706
|
- path: development/scripts/migrate-task-to-v2.js
|
|
1667
|
-
hash: sha256:
|
|
1707
|
+
hash: sha256:1ffc4fd44bead88c382ea2e2dc3c4320293978040960e0aa304e87d3579c9d66
|
|
1668
1708
|
type: script
|
|
1669
|
-
size:
|
|
1709
|
+
size: 9467
|
|
1670
1710
|
- path: development/scripts/pattern-learner.js
|
|
1671
1711
|
hash: sha256:8fc513199884abdc7ac011fac381ba1bb695d43fa7d08a655951bf55754749f4
|
|
1672
1712
|
type: script
|
|
@@ -1760,9 +1800,9 @@ files:
|
|
|
1760
1800
|
type: script
|
|
1761
1801
|
size: 6254
|
|
1762
1802
|
- path: development/scripts/validate-task-v2.js
|
|
1763
|
-
hash: sha256:
|
|
1803
|
+
hash: sha256:2778eb0dfcab585ee322ea95fcb931b2f9c0d724eb15f91cb48921a5f56c4256
|
|
1764
1804
|
type: script
|
|
1765
|
-
size:
|
|
1805
|
+
size: 12310
|
|
1766
1806
|
- path: development/scripts/verify-workflow-gaps.js
|
|
1767
1807
|
hash: sha256:714bd35cc8a4c105f2b463c539ac8751cbb16357ff251061960e5300acd2849c
|
|
1768
1808
|
type: script
|
|
@@ -1832,13 +1872,13 @@ files:
|
|
|
1832
1872
|
type: task
|
|
1833
1873
|
size: 10227
|
|
1834
1874
|
- path: development/tasks/advanced-elicitation.md
|
|
1835
|
-
hash: sha256:
|
|
1875
|
+
hash: sha256:779619dcf066f201a68c30ae097e01cdf16aa6553a01a007d756e5aa5fb5609a
|
|
1836
1876
|
type: task
|
|
1837
|
-
size:
|
|
1877
|
+
size: 8736
|
|
1838
1878
|
- path: development/tasks/analyst-facilitate-brainstorming.md
|
|
1839
|
-
hash: sha256:
|
|
1879
|
+
hash: sha256:5e18e2b2afe91ceab5323fa0bcd95afbaa235d8636e9ca1a11eeb0c320a3d3a7
|
|
1840
1880
|
type: task
|
|
1841
|
-
size:
|
|
1881
|
+
size: 9166
|
|
1842
1882
|
- path: development/tasks/analyze-brownfield.md
|
|
1843
1883
|
hash: sha256:b203fe1fa564002879340768d78f597cb0eacaaaf9be4df5245e1d8515288bc2
|
|
1844
1884
|
type: task
|
|
@@ -1848,37 +1888,37 @@ files:
|
|
|
1848
1888
|
type: task
|
|
1849
1889
|
size: 7724
|
|
1850
1890
|
- path: development/tasks/analyze-framework.md
|
|
1851
|
-
hash: sha256:
|
|
1891
|
+
hash: sha256:4043a667b1e10e2cb1f609525dd8300db5e2e116f679682120e4cd1de08149de
|
|
1852
1892
|
type: task
|
|
1853
|
-
size:
|
|
1893
|
+
size: 21577
|
|
1854
1894
|
- path: development/tasks/analyze-performance.md
|
|
1855
|
-
hash: sha256:
|
|
1895
|
+
hash: sha256:481bfd8023d006910bb81e3d75131c6d7a1dfac128dcfe97b65aa7c3639820fd
|
|
1856
1896
|
type: task
|
|
1857
|
-
size:
|
|
1897
|
+
size: 15178
|
|
1858
1898
|
- path: development/tasks/analyze-project-structure.md
|
|
1859
1899
|
hash: sha256:4bc50c86e36941a9aab0bdcf1ad765e93988498d0f2a70dfd7b33d67397e1863
|
|
1860
1900
|
type: task
|
|
1861
1901
|
size: 16236
|
|
1862
1902
|
- path: development/tasks/apply-qa-fixes.md
|
|
1863
|
-
hash: sha256:
|
|
1903
|
+
hash: sha256:bc7445950e04622d197e3bc4c66af893425a5ad286d7ef91061aaa5671386baa
|
|
1864
1904
|
type: task
|
|
1865
|
-
size:
|
|
1905
|
+
size: 9117
|
|
1866
1906
|
- path: development/tasks/architect-analyze-impact.md
|
|
1867
|
-
hash: sha256:
|
|
1907
|
+
hash: sha256:c27b2e642b66968e772b23afd3f2e71aed1612d235a5df7bb1a1468bf82bf37b
|
|
1868
1908
|
type: task
|
|
1869
|
-
size:
|
|
1909
|
+
size: 26668
|
|
1870
1910
|
- path: development/tasks/audit-codebase.md
|
|
1871
|
-
hash: sha256:
|
|
1911
|
+
hash: sha256:7ed763898169e9ef4f199f1d6f23b68c0e5e2c500d150e72fe51fe1119ee6cc9
|
|
1872
1912
|
type: task
|
|
1873
|
-
size:
|
|
1913
|
+
size: 10525
|
|
1874
1914
|
- path: development/tasks/audit-tailwind-config.md
|
|
1875
|
-
hash: sha256:
|
|
1915
|
+
hash: sha256:a4de4414e09d487db0829c6439c05dcc25fd6311ab0b70bd5bb4909add68e4e5
|
|
1876
1916
|
type: task
|
|
1877
|
-
size:
|
|
1917
|
+
size: 7523
|
|
1878
1918
|
- path: development/tasks/audit-utilities.md
|
|
1879
|
-
hash: sha256:
|
|
1919
|
+
hash: sha256:417200f99faa056cbdeb0e51aa9277507fd28041da1e521aa96e5a744184eeed
|
|
1880
1920
|
type: task
|
|
1881
|
-
size:
|
|
1921
|
+
size: 8131
|
|
1882
1922
|
- path: development/tasks/blocks/agent-prompt-template.md
|
|
1883
1923
|
hash: sha256:589c56f7a9bf968905fdf47c65776b67609f96e1b763c170cfa3b4c3529a3cbc
|
|
1884
1924
|
type: task
|
|
@@ -1900,25 +1940,25 @@ files:
|
|
|
1900
1940
|
type: task
|
|
1901
1941
|
size: 5300
|
|
1902
1942
|
- path: development/tasks/bootstrap-shadcn-library.md
|
|
1903
|
-
hash: sha256:
|
|
1943
|
+
hash: sha256:374d142a38bfa4e6ee82d3dcf2fb44acb573f1b38dfbba5bf7dc931ad24e36be
|
|
1904
1944
|
type: task
|
|
1905
|
-
size:
|
|
1945
|
+
size: 7604
|
|
1906
1946
|
- path: development/tasks/brownfield-create-epic.md
|
|
1907
|
-
hash: sha256:
|
|
1947
|
+
hash: sha256:6de7c3a222a979438960ac03d278ad0ca2b3501c48bd27b17e12f77e50e89f20
|
|
1908
1948
|
type: task
|
|
1909
|
-
size:
|
|
1949
|
+
size: 17995
|
|
1910
1950
|
- path: development/tasks/brownfield-create-story.md
|
|
1911
|
-
hash: sha256:
|
|
1951
|
+
hash: sha256:c3a16a3698431e3b9c327c61c64f5f50212cdb9b1fc91ec1a5bea0f957a57131
|
|
1912
1952
|
type: task
|
|
1913
|
-
size:
|
|
1953
|
+
size: 9954
|
|
1914
1954
|
- path: development/tasks/build-autonomous.md
|
|
1915
1955
|
hash: sha256:e8dab3d13ae816a1543a220561024b57d692a39a316ce29efd1ca7c6405ec304
|
|
1916
1956
|
type: task
|
|
1917
1957
|
size: 6544
|
|
1918
1958
|
- path: development/tasks/build-component.md
|
|
1919
|
-
hash: sha256:
|
|
1959
|
+
hash: sha256:f8250b1da525d26971ea060676563886a938c399001d280eac663a6bb105ee71
|
|
1920
1960
|
type: task
|
|
1921
|
-
size:
|
|
1961
|
+
size: 13875
|
|
1922
1962
|
- path: development/tasks/build-resume.md
|
|
1923
1963
|
hash: sha256:5eb57ca6ffbc122c3164ac1fe289eef036db443d9d5d5a8e99c0c92087df31ce
|
|
1924
1964
|
type: task
|
|
@@ -1932,277 +1972,277 @@ files:
|
|
|
1932
1972
|
type: task
|
|
1933
1973
|
size: 4644
|
|
1934
1974
|
- path: development/tasks/calculate-roi.md
|
|
1935
|
-
hash: sha256:
|
|
1975
|
+
hash: sha256:c9e477921a8b4e41efdf72a2a1f5b28befb3bb88788731202e4037768695e6f1
|
|
1936
1976
|
type: task
|
|
1937
|
-
size:
|
|
1977
|
+
size: 11523
|
|
1938
1978
|
- path: development/tasks/check-docs-links.md
|
|
1939
1979
|
hash: sha256:3731fb65d733a738391896ac22a7cea01f32b6468b703daf0b3b8ab8253a167c
|
|
1940
1980
|
type: task
|
|
1941
1981
|
size: 3083
|
|
1942
1982
|
- path: development/tasks/ci-cd-configuration.md
|
|
1943
|
-
hash: sha256:
|
|
1983
|
+
hash: sha256:6699393e14e63c9d4dcca4ed19d77c59c9867f2bfe0176cd0d5f1bed8f4984d1
|
|
1944
1984
|
type: task
|
|
1945
|
-
size:
|
|
1985
|
+
size: 20859
|
|
1946
1986
|
- path: development/tasks/cleanup-utilities.md
|
|
1947
|
-
hash: sha256:
|
|
1987
|
+
hash: sha256:9945631fb01d142ea51cf4f2f6473d3c611168b892e71e6b3b8c218d1b2b77f7
|
|
1948
1988
|
type: task
|
|
1949
|
-
size:
|
|
1989
|
+
size: 17917
|
|
1950
1990
|
- path: development/tasks/cleanup-worktrees.md
|
|
1951
1991
|
hash: sha256:2e6c43425ae86e336884246cb3ab8a6712d5715e34e1dbbfc3f488ae9965303b
|
|
1952
1992
|
type: task
|
|
1953
1993
|
size: 1091
|
|
1954
1994
|
- path: development/tasks/collaborative-edit.md
|
|
1955
|
-
hash: sha256:
|
|
1995
|
+
hash: sha256:3cb6144af3d75ea629526b198200a6a8eb394b0e8cb4b9857dcc5eec08ad5c6a
|
|
1956
1996
|
type: task
|
|
1957
|
-
size:
|
|
1997
|
+
size: 32266
|
|
1958
1998
|
- path: development/tasks/compose-molecule.md
|
|
1959
|
-
hash: sha256:
|
|
1999
|
+
hash: sha256:7cb06d2f43212ae656c126dc062b6319381f798a2ef0fb54ba231e02c9caa1ef
|
|
1960
2000
|
type: task
|
|
1961
|
-
size:
|
|
2001
|
+
size: 6672
|
|
1962
2002
|
- path: development/tasks/consolidate-patterns.md
|
|
1963
|
-
hash: sha256:
|
|
2003
|
+
hash: sha256:c3b19467c77367181b7a9a0d9bad2e3205d1a04474e462ada7c39154f72d4e28
|
|
1964
2004
|
type: task
|
|
1965
|
-
size:
|
|
2005
|
+
size: 11306
|
|
1966
2006
|
- path: development/tasks/correct-course.md
|
|
1967
|
-
hash: sha256:
|
|
2007
|
+
hash: sha256:d74b3093059ead1a894aac34ac8eb4ccf5d0b6cca59a2e57796cddbb1e547cf7
|
|
1968
2008
|
type: task
|
|
1969
|
-
size:
|
|
2009
|
+
size: 11643
|
|
1970
2010
|
- path: development/tasks/create-agent.md
|
|
1971
2011
|
hash: sha256:7dbe6bf44dd3fb5cc8bc868e459f3cc689ff16576fdd91ad0cc7ebf31b34aab8
|
|
1972
2012
|
type: task
|
|
1973
2013
|
size: 31965
|
|
1974
2014
|
- path: development/tasks/create-brownfield-story.md
|
|
1975
|
-
hash: sha256:
|
|
2015
|
+
hash: sha256:326f3154c958927b5a70043c72b0c99d86d8f39439d5d06c977dc84e228102a5
|
|
1976
2016
|
type: task
|
|
1977
|
-
size:
|
|
2017
|
+
size: 23117
|
|
1978
2018
|
- path: development/tasks/create-deep-research-prompt.md
|
|
1979
|
-
hash: sha256:
|
|
2019
|
+
hash: sha256:8a8bf807b9fe388e1fe1a58b06633a28079168831c680b3c6ea9aba5b54e1189
|
|
1980
2020
|
type: task
|
|
1981
|
-
size:
|
|
2021
|
+
size: 12354
|
|
1982
2022
|
- path: development/tasks/create-doc.md
|
|
1983
|
-
hash: sha256:
|
|
2023
|
+
hash: sha256:456d4816011e52e51ad2713db2e59e4f34824e87c2eaca5d15f39d5ac6e1a965
|
|
1984
2024
|
type: task
|
|
1985
|
-
size:
|
|
2025
|
+
size: 10524
|
|
1986
2026
|
- path: development/tasks/create-next-story.md
|
|
1987
|
-
hash: sha256:
|
|
2027
|
+
hash: sha256:abc8613a6167a3249754cba4e95147eb31dcaade6d9aa7af076bebe0a69dda32
|
|
1988
2028
|
type: task
|
|
1989
|
-
size:
|
|
2029
|
+
size: 30800
|
|
1990
2030
|
- path: development/tasks/create-service.md
|
|
1991
2031
|
hash: sha256:5ad5920b06934637f8057e53d5acdbb918c71cd7990bfea41177f74b09f82889
|
|
1992
2032
|
type: task
|
|
1993
2033
|
size: 9912
|
|
1994
2034
|
- path: development/tasks/create-suite.md
|
|
1995
|
-
hash: sha256:
|
|
2035
|
+
hash: sha256:0f12b1d569fa562bcca7007964189095510ee3e9ac6d49ba2cad51cb20fe3f24
|
|
1996
2036
|
type: task
|
|
1997
|
-
size:
|
|
2037
|
+
size: 7264
|
|
1998
2038
|
- path: development/tasks/create-task.md
|
|
1999
|
-
hash: sha256:
|
|
2039
|
+
hash: sha256:1c3e4f1c48c224118053e12815faf694e515cf61ccf2d53ffd550e2d13de5f98
|
|
2000
2040
|
type: task
|
|
2001
|
-
size:
|
|
2041
|
+
size: 9815
|
|
2002
2042
|
- path: development/tasks/create-workflow.md
|
|
2003
|
-
hash: sha256:
|
|
2043
|
+
hash: sha256:c28d43c8599dbdf1ddce19659d6d3185ec733a184d131b0f561025dc9c58c936
|
|
2004
2044
|
type: task
|
|
2005
|
-
size:
|
|
2045
|
+
size: 11620
|
|
2006
2046
|
- path: development/tasks/create-worktree.md
|
|
2007
2047
|
hash: sha256:bcbd555266876c08cf5a1a9e96525f1f70cd421b1361ba8a84b5cf814f854f91
|
|
2008
2048
|
type: task
|
|
2009
2049
|
size: 9221
|
|
2010
2050
|
- path: development/tasks/db-analyze-hotpaths.md
|
|
2011
|
-
hash: sha256:
|
|
2051
|
+
hash: sha256:b7fcc03a126d50d80f79ebc4cb41bdc7fb4c6b633bb83ad07ffa92f3e6cd9979
|
|
2012
2052
|
type: task
|
|
2013
|
-
size:
|
|
2053
|
+
size: 12626
|
|
2014
2054
|
- path: development/tasks/db-apply-migration.md
|
|
2015
|
-
hash: sha256:
|
|
2055
|
+
hash: sha256:99ee48ad5440e8d0b1cf2d04e508652bb310e0dc56b97d1918d7f13f6f479a28
|
|
2016
2056
|
type: task
|
|
2017
|
-
size:
|
|
2057
|
+
size: 7920
|
|
2018
2058
|
- path: development/tasks/db-bootstrap.md
|
|
2019
|
-
hash: sha256:
|
|
2059
|
+
hash: sha256:c92e3dc388589c0984ca037da25077a4b93e843081786a88c33113e0e5fc9d68
|
|
2020
2060
|
type: task
|
|
2021
|
-
size:
|
|
2061
|
+
size: 12906
|
|
2022
2062
|
- path: development/tasks/db-domain-modeling.md
|
|
2023
|
-
hash: sha256:
|
|
2063
|
+
hash: sha256:baa55fb2cda8548360338cd2eb9c44f64c3b7f0e7b9e712ee1f14638b39febe2
|
|
2024
2064
|
type: task
|
|
2025
|
-
size:
|
|
2065
|
+
size: 15262
|
|
2026
2066
|
- path: development/tasks/db-dry-run.md
|
|
2027
|
-
hash: sha256:
|
|
2067
|
+
hash: sha256:73cedbf3f60ed1754a112c02a2ec45a2bd8088b312010a9d7400b80b4c9abb24
|
|
2028
2068
|
type: task
|
|
2029
|
-
size:
|
|
2069
|
+
size: 5808
|
|
2030
2070
|
- path: development/tasks/db-env-check.md
|
|
2031
|
-
hash: sha256:
|
|
2071
|
+
hash: sha256:6ef5574b862eaf8ee0d98088378f2a33c0cebbf86c062b2b57da4df6dd086df1
|
|
2032
2072
|
type: task
|
|
2033
|
-
size:
|
|
2073
|
+
size: 5410
|
|
2034
2074
|
- path: development/tasks/db-explain.md
|
|
2035
|
-
hash: sha256:
|
|
2075
|
+
hash: sha256:2555b5260c486ba7821ad361c4a8204897f38f455fc308875c2030972d608cbd
|
|
2036
2076
|
type: task
|
|
2037
|
-
size:
|
|
2077
|
+
size: 12138
|
|
2038
2078
|
- path: development/tasks/db-impersonate.md
|
|
2039
|
-
hash: sha256:
|
|
2079
|
+
hash: sha256:5340ca09a831694ad178f5aad9b4f9fb169c03df35fb4e8af94b47bcdbeeb3b5
|
|
2040
2080
|
type: task
|
|
2041
|
-
size:
|
|
2081
|
+
size: 9900
|
|
2042
2082
|
- path: development/tasks/db-load-csv.md
|
|
2043
|
-
hash: sha256:
|
|
2083
|
+
hash: sha256:61f57afbd2d75b6fb993858db11ba6d33406188881bb81294aa54816bc7d7c6d
|
|
2044
2084
|
type: task
|
|
2045
|
-
size:
|
|
2085
|
+
size: 11922
|
|
2046
2086
|
- path: development/tasks/db-policy-apply.md
|
|
2047
|
-
hash: sha256:
|
|
2087
|
+
hash: sha256:b3db9f9ccab44c2f220bc21a3cca618eff573613a39996b07dd833e8a4516a7b
|
|
2048
2088
|
type: task
|
|
2049
|
-
size:
|
|
2089
|
+
size: 14750
|
|
2050
2090
|
- path: development/tasks/db-rls-audit.md
|
|
2051
|
-
hash: sha256:
|
|
2091
|
+
hash: sha256:313c00a6d78e4afd8bd75d994ac6f0a52516d9b26c5e327c5f61066353d3d900
|
|
2052
2092
|
type: task
|
|
2053
|
-
size:
|
|
2093
|
+
size: 8612
|
|
2054
2094
|
- path: development/tasks/db-rollback.md
|
|
2055
|
-
hash: sha256:
|
|
2095
|
+
hash: sha256:d278b03476972581baf45d7db77724f6dea9029ee2c53c3c9fb7ddf692aaaff3
|
|
2056
2096
|
type: task
|
|
2057
|
-
size:
|
|
2097
|
+
size: 16113
|
|
2058
2098
|
- path: development/tasks/db-run-sql.md
|
|
2059
|
-
hash: sha256:
|
|
2099
|
+
hash: sha256:adddcbcb2fbd89a1e263e859ed88af6704a48e1b1f101d072692aaa47f96c077
|
|
2060
2100
|
type: task
|
|
2061
|
-
size:
|
|
2101
|
+
size: 11843
|
|
2062
2102
|
- path: development/tasks/db-schema-audit.md
|
|
2063
|
-
hash: sha256:
|
|
2103
|
+
hash: sha256:452ba6ae4427315ac0aae1543dda2cb6908d578f9c09ef1a8b548f7204f9b05e
|
|
2064
2104
|
type: task
|
|
2065
|
-
size:
|
|
2105
|
+
size: 24843
|
|
2066
2106
|
- path: development/tasks/db-seed.md
|
|
2067
|
-
hash: sha256:
|
|
2107
|
+
hash: sha256:01ea551521d1d60a9e00c798cd280ff97d91cefd2ef5f6eb9193824995e7b4d8
|
|
2068
2108
|
type: task
|
|
2069
|
-
size:
|
|
2109
|
+
size: 7908
|
|
2070
2110
|
- path: development/tasks/db-smoke-test.md
|
|
2071
|
-
hash: sha256:
|
|
2111
|
+
hash: sha256:839168824bae7324710f6a427134deae86b8ef3e0e60f484e009b08e8ebf8d76
|
|
2072
2112
|
type: task
|
|
2073
|
-
size:
|
|
2113
|
+
size: 7327
|
|
2074
2114
|
- path: development/tasks/db-snapshot.md
|
|
2075
|
-
hash: sha256:
|
|
2115
|
+
hash: sha256:b6e5841f88df8e600d6e250601b6e7c5a3b0cad128549fd83d0d5802230a675b
|
|
2076
2116
|
type: task
|
|
2077
|
-
size:
|
|
2117
|
+
size: 11413
|
|
2078
2118
|
- path: development/tasks/db-squad-integration.md
|
|
2079
|
-
hash: sha256:
|
|
2119
|
+
hash: sha256:7545179cc75cf584f21f57a26b01de2909b2647263496ca988481ff472474c34
|
|
2080
2120
|
type: task
|
|
2081
|
-
size:
|
|
2121
|
+
size: 16462
|
|
2082
2122
|
- path: development/tasks/db-supabase-setup.md
|
|
2083
|
-
hash: sha256:
|
|
2123
|
+
hash: sha256:6ac9336e18bf206f9729cb367c6bd9f4b69dff4de81cfcb61415273b3de9aa91
|
|
2084
2124
|
type: task
|
|
2085
|
-
size:
|
|
2125
|
+
size: 15705
|
|
2086
2126
|
- path: development/tasks/db-verify-order.md
|
|
2087
|
-
hash: sha256:
|
|
2127
|
+
hash: sha256:716407e7f77a13a00de71ec5cdcbce743c73846ea7e7c1713d274aa196a05b04
|
|
2088
2128
|
type: task
|
|
2089
|
-
size:
|
|
2129
|
+
size: 11188
|
|
2090
2130
|
- path: development/tasks/delegate-to-external-executor.md
|
|
2091
2131
|
hash: sha256:acabae837bce23bc31241fcbc5b1c53137fb7474a9359812d39693252d63300e
|
|
2092
2132
|
type: task
|
|
2093
2133
|
size: 4499
|
|
2094
2134
|
- path: development/tasks/deprecate-component.md
|
|
2095
|
-
hash: sha256:
|
|
2135
|
+
hash: sha256:a32b8834ff6d8a6b2e8fb5eeefca05c55b54cabecf38f23a52a79b2cf5776302
|
|
2096
2136
|
type: task
|
|
2097
|
-
size:
|
|
2137
|
+
size: 29479
|
|
2098
2138
|
- path: development/tasks/dev-apply-qa-fixes.md
|
|
2099
|
-
hash: sha256:
|
|
2139
|
+
hash: sha256:1ef3e99da778ce464cea14cf350b760ae6ab4ee2bfd541f272ff994dff53671b
|
|
2100
2140
|
type: task
|
|
2101
|
-
size:
|
|
2141
|
+
size: 8094
|
|
2102
2142
|
- path: development/tasks/dev-backlog-debt.md
|
|
2103
|
-
hash: sha256:
|
|
2143
|
+
hash: sha256:de102cca4bcdbb5960344db0fec81fe98c0fece6ebdfc3dede5527c6bdd3f954
|
|
2104
2144
|
type: task
|
|
2105
|
-
size:
|
|
2145
|
+
size: 11051
|
|
2106
2146
|
- path: development/tasks/dev-develop-story.md
|
|
2107
|
-
hash: sha256:
|
|
2147
|
+
hash: sha256:1fbdb2f53ae372c4f84becc0f4c9eabbc017c234ff6b1be4dafdd46a1f85bca8
|
|
2108
2148
|
type: task
|
|
2109
|
-
size:
|
|
2149
|
+
size: 28669
|
|
2110
2150
|
- path: development/tasks/dev-improve-code-quality.md
|
|
2111
|
-
hash: sha256:
|
|
2151
|
+
hash: sha256:7f5289a172e69c55b406575fb012a45fd4bfc9af4fe504fff33e07f2a1c65b66
|
|
2112
2152
|
type: task
|
|
2113
|
-
size:
|
|
2153
|
+
size: 24731
|
|
2114
2154
|
- path: development/tasks/dev-optimize-performance.md
|
|
2115
|
-
hash: sha256:
|
|
2155
|
+
hash: sha256:6986bce4a1e51a90650645937311fe703ca0b7e6ae5700f76e9990e9d0f75a34
|
|
2116
2156
|
type: task
|
|
2117
|
-
size:
|
|
2157
|
+
size: 29277
|
|
2118
2158
|
- path: development/tasks/dev-suggest-refactoring.md
|
|
2119
|
-
hash: sha256:
|
|
2159
|
+
hash: sha256:f1b645ac4cad5c88abe83a5f9047830de14f339a601d38d2234a376d086cdb67
|
|
2120
2160
|
type: task
|
|
2121
|
-
size:
|
|
2161
|
+
size: 24678
|
|
2122
2162
|
- path: development/tasks/dev-validate-next-story.md
|
|
2123
|
-
hash: sha256:
|
|
2163
|
+
hash: sha256:cd0494ab1cc3a62bba59c0436081d7af72211d381540581d605c2e97d6ea8ead
|
|
2124
2164
|
type: task
|
|
2125
|
-
size:
|
|
2165
|
+
size: 11362
|
|
2126
2166
|
- path: development/tasks/document-gotchas.md
|
|
2127
2167
|
hash: sha256:20a5771dd6bce351084fbad746efc8067745059091a43baedbf1c665833f4644
|
|
2128
2168
|
type: task
|
|
2129
2169
|
size: 10444
|
|
2130
2170
|
- path: development/tasks/document-project.md
|
|
2131
|
-
hash: sha256:
|
|
2171
|
+
hash: sha256:30545168e0f16ed3b3e0017c8117aaff39134328c1a32d58ff674fb2d0eadc43
|
|
2132
2172
|
type: task
|
|
2133
|
-
size:
|
|
2173
|
+
size: 18036
|
|
2134
2174
|
- path: development/tasks/environment-bootstrap.md
|
|
2135
|
-
hash: sha256:
|
|
2175
|
+
hash: sha256:663694439090bc552ee5a90fb02eb861e3859e9529d3ba50654c1d53316f67e0
|
|
2136
2176
|
type: task
|
|
2137
|
-
size:
|
|
2177
|
+
size: 45576
|
|
2138
2178
|
- path: development/tasks/environment-promotion-pipeline.md
|
|
2139
2179
|
hash: sha256:2bd746e113a94884f45f13c6b67ea9d72b424508ed757810c2fb25521d873b3f
|
|
2140
2180
|
type: task
|
|
2141
2181
|
size: 14667
|
|
2142
2182
|
- path: development/tasks/execute-checklist.md
|
|
2143
|
-
hash: sha256:
|
|
2183
|
+
hash: sha256:fbcc18bff917af83a48dd513c9d970df846d724e5e4e19d2e4835f3072875cdd
|
|
2144
2184
|
type: task
|
|
2145
|
-
size:
|
|
2185
|
+
size: 8809
|
|
2146
2186
|
- path: development/tasks/execute-epic-plan.md
|
|
2147
2187
|
hash: sha256:0825d7dcc0649892d3c4a7b8c0a0c15c1c5750c78d35e79ce0b6a984ac86b8c0
|
|
2148
2188
|
type: task
|
|
2149
2189
|
size: 25716
|
|
2150
2190
|
- path: development/tasks/export-design-tokens-dtcg.md
|
|
2151
|
-
hash: sha256:
|
|
2191
|
+
hash: sha256:ce37d53f78d6ddab720e6d534d9da629497264ed72b620bc4ff1306ad0f6ffeb
|
|
2152
2192
|
type: task
|
|
2153
|
-
size:
|
|
2193
|
+
size: 7226
|
|
2154
2194
|
- path: development/tasks/extend-pattern.md
|
|
2155
|
-
hash: sha256:
|
|
2195
|
+
hash: sha256:5f2f3df146a82fd70ab0847208a0f03bb3ed124bb7f439bce7824e9a410bd5b6
|
|
2156
2196
|
type: task
|
|
2157
|
-
size:
|
|
2197
|
+
size: 5858
|
|
2158
2198
|
- path: development/tasks/extract-patterns.md
|
|
2159
2199
|
hash: sha256:e3e47414b5734267abcbc4c248d9435cb4529a7fc359bb2eaccaa3fa8903a124
|
|
2160
2200
|
type: task
|
|
2161
2201
|
size: 8924
|
|
2162
2202
|
- path: development/tasks/extract-tokens.md
|
|
2163
|
-
hash: sha256:
|
|
2203
|
+
hash: sha256:10fa0f5f0efa747e9ccb1963b979de4904bdbaf33b202b77f6524321b8b312ce
|
|
2164
2204
|
type: task
|
|
2165
|
-
size:
|
|
2205
|
+
size: 13101
|
|
2166
2206
|
- path: development/tasks/facilitate-brainstorming-session.md
|
|
2167
|
-
hash: sha256:
|
|
2207
|
+
hash: sha256:cbe305d1e07999640bb60a06e6ec57bf5af3836bda23abafc898ee91a85396a5
|
|
2168
2208
|
type: task
|
|
2169
|
-
size:
|
|
2209
|
+
size: 13918
|
|
2170
2210
|
- path: development/tasks/generate-agent-handoff.md
|
|
2171
2211
|
hash: sha256:4b409dec3a3fc59d6274a1acab1529532fd29f71b85a1b417cf6d313bbc53b89
|
|
2172
2212
|
type: task
|
|
2173
2213
|
size: 11338
|
|
2174
2214
|
- path: development/tasks/generate-ai-frontend-prompt.md
|
|
2175
|
-
hash: sha256:
|
|
2215
|
+
hash: sha256:16b1b7087472906be7253026d7997f4be09c6bd7217543cd8e9d25edfb59798e
|
|
2176
2216
|
type: task
|
|
2177
|
-
size:
|
|
2217
|
+
size: 9216
|
|
2178
2218
|
- path: development/tasks/generate-documentation.md
|
|
2179
|
-
hash: sha256:
|
|
2219
|
+
hash: sha256:37a05e6b8ba3e39ea62c30f1ac60dd37015d7c5735da2c5581d7d78e49957e73
|
|
2180
2220
|
type: task
|
|
2181
|
-
size:
|
|
2221
|
+
size: 6649
|
|
2182
2222
|
- path: development/tasks/generate-migration-strategy.md
|
|
2183
|
-
hash: sha256:
|
|
2223
|
+
hash: sha256:1d1bdfd7cf0458981f83c34b8f2bfc38b7c6d216c05158e51137ec68401a7847
|
|
2184
2224
|
type: task
|
|
2185
|
-
size:
|
|
2225
|
+
size: 13964
|
|
2186
2226
|
- path: development/tasks/generate-shock-report.md
|
|
2187
|
-
hash: sha256:
|
|
2227
|
+
hash: sha256:5417a810f7fb09bfc1f569f56b3ae482c5bd390b09fe0c0446dcdc8e41293d19
|
|
2188
2228
|
type: task
|
|
2189
|
-
size:
|
|
2229
|
+
size: 13520
|
|
2190
2230
|
- path: development/tasks/github-devops-github-pr-automation.md
|
|
2191
|
-
hash: sha256:
|
|
2231
|
+
hash: sha256:f3ee3181ff2d218df569bbc6ff91a2171480cdb73b9bca236a36104a5063748b
|
|
2192
2232
|
type: task
|
|
2193
|
-
size:
|
|
2233
|
+
size: 19493
|
|
2194
2234
|
- path: development/tasks/github-devops-pre-push-quality-gate.md
|
|
2195
2235
|
hash: sha256:90969a5b843c976b8cd902c55517589c64c88bd4001590dbc4b107703fa12ce6
|
|
2196
2236
|
type: task
|
|
2197
2237
|
size: 24774
|
|
2198
2238
|
- path: development/tasks/github-devops-repository-cleanup.md
|
|
2199
|
-
hash: sha256:
|
|
2239
|
+
hash: sha256:8554eea6d3a73ce9012455726e8c5f2da9257cd570cb06f88a47a8871fe71b07
|
|
2200
2240
|
type: task
|
|
2201
|
-
size:
|
|
2241
|
+
size: 8752
|
|
2202
2242
|
- path: development/tasks/github-devops-version-management.md
|
|
2203
|
-
hash: sha256:
|
|
2243
|
+
hash: sha256:8476eaaf6f5e9ded987b48d4e562db30a861f6f600966b6230500987b8201eba
|
|
2204
2244
|
type: task
|
|
2205
|
-
size:
|
|
2245
|
+
size: 11738
|
|
2206
2246
|
- path: development/tasks/github-issue-triage.md
|
|
2207
2247
|
hash: sha256:eef7e439eba016b1b814bb6761c0191c91afb573e5cd4fdff2ec08c89d1c1d28
|
|
2208
2248
|
type: task
|
|
@@ -2232,33 +2272,33 @@ files:
|
|
|
2232
2272
|
type: task
|
|
2233
2273
|
size: 3473
|
|
2234
2274
|
- path: development/tasks/improve-self.md
|
|
2235
|
-
hash: sha256:
|
|
2275
|
+
hash: sha256:c2e21511eb000140ce7be7f4859c8e50e86c51965991322b66aa98cb26ed4498
|
|
2236
2276
|
type: task
|
|
2237
|
-
size:
|
|
2277
|
+
size: 19105
|
|
2238
2278
|
- path: development/tasks/index-docs.md
|
|
2239
|
-
hash: sha256:
|
|
2279
|
+
hash: sha256:934da9787ef0d5e26313d5fb28942ff76c957ca9079d8c09f84f476ee0902bd3
|
|
2240
2280
|
type: task
|
|
2241
|
-
size:
|
|
2281
|
+
size: 9782
|
|
2242
2282
|
- path: development/tasks/infrastructure-assessment.md
|
|
2243
2283
|
hash: sha256:477f61cc6f4e77f5773a0d6ac773b8409321495d4a29778fb16583845fdb8b56
|
|
2244
2284
|
type: task
|
|
2245
2285
|
size: 12106
|
|
2246
2286
|
- path: development/tasks/init-project-status.md
|
|
2247
|
-
hash: sha256:
|
|
2287
|
+
hash: sha256:8c2de37e78feac175312ac28150450e6ad5aa10d27826b5cb83d6bcdaeeca351
|
|
2248
2288
|
type: task
|
|
2249
|
-
size:
|
|
2289
|
+
size: 10795
|
|
2250
2290
|
- path: development/tasks/integrate-squad.md
|
|
2251
|
-
hash: sha256:
|
|
2291
|
+
hash: sha256:7827159f7177b417b41b37e32d0b140221839b9eef877a3d142a01dca0d954bd
|
|
2252
2292
|
type: task
|
|
2253
|
-
size:
|
|
2293
|
+
size: 6815
|
|
2254
2294
|
- path: development/tasks/kb-mode-interaction.md
|
|
2255
|
-
hash: sha256:
|
|
2295
|
+
hash: sha256:9ab60327e33b7cf547eb7517095262cba25fb26f67a575752cb204d35ca791e1
|
|
2256
2296
|
type: task
|
|
2257
|
-
size:
|
|
2297
|
+
size: 7185
|
|
2258
2298
|
- path: development/tasks/learn-patterns.md
|
|
2259
|
-
hash: sha256:
|
|
2299
|
+
hash: sha256:a45e6a19260deeea1958c51c9a895293b7866de894ef36e7636c95c3a884019b
|
|
2260
2300
|
type: task
|
|
2261
|
-
size:
|
|
2301
|
+
size: 26890
|
|
2262
2302
|
- path: development/tasks/list-mcps.md
|
|
2263
2303
|
hash: sha256:cac66f5235352e0efddee807f140891d10357b5793a8f6e9e4456b8239a538d3
|
|
2264
2304
|
type: task
|
|
@@ -2280,17 +2320,17 @@ files:
|
|
|
2280
2320
|
type: task
|
|
2281
2321
|
size: 1164
|
|
2282
2322
|
- path: development/tasks/modify-agent.md
|
|
2283
|
-
hash: sha256:
|
|
2323
|
+
hash: sha256:39a63f1248ac0c58a955b1bfe1fb089d697d1e42c951c1a4a010e4d74855b8f1
|
|
2284
2324
|
type: task
|
|
2285
|
-
size:
|
|
2325
|
+
size: 9580
|
|
2286
2326
|
- path: development/tasks/modify-task.md
|
|
2287
|
-
hash: sha256:
|
|
2327
|
+
hash: sha256:e763b83c72717981052bb18500e62051498b5f324af924d3ed00d27419e5d485
|
|
2288
2328
|
type: task
|
|
2289
|
-
size:
|
|
2329
|
+
size: 10611
|
|
2290
2330
|
- path: development/tasks/modify-workflow.md
|
|
2291
|
-
hash: sha256:
|
|
2331
|
+
hash: sha256:7880bb97b8c7e691644f4155146df5420c33c2ed66b7ee7c73ac11618d0cf9ed
|
|
2292
2332
|
type: task
|
|
2293
|
-
size:
|
|
2333
|
+
size: 13093
|
|
2294
2334
|
- path: development/tasks/next.md
|
|
2295
2335
|
hash: sha256:d734907caed4a2ff30aecb17e8b1ca8db1dc50657f7274051f4384a8969d7972
|
|
2296
2336
|
type: task
|
|
@@ -2332,49 +2372,49 @@ files:
|
|
|
2332
2372
|
type: task
|
|
2333
2373
|
size: 21399
|
|
2334
2374
|
- path: development/tasks/po-backlog-add.md
|
|
2335
|
-
hash: sha256:
|
|
2375
|
+
hash: sha256:2dc9bbe52bccb577bfdf8359d29d1a88b3512b5e7c93da9ee4a0c3f274da69c7
|
|
2336
2376
|
type: task
|
|
2337
|
-
size:
|
|
2377
|
+
size: 8317
|
|
2338
2378
|
- path: development/tasks/po-close-story.md
|
|
2339
2379
|
hash: sha256:7ba7f8374269933bc5d543a70901a6953b7925a62530ee019cae0fdccc691ee7
|
|
2340
2380
|
type: task
|
|
2341
2381
|
size: 10955
|
|
2342
2382
|
- path: development/tasks/po-manage-story-backlog.md
|
|
2343
|
-
hash: sha256:
|
|
2383
|
+
hash: sha256:02c2601ba50db029bf015ddec7f74bf6a84d63b6c8255c0790b91db1916d0a12
|
|
2344
2384
|
type: task
|
|
2345
|
-
size:
|
|
2385
|
+
size: 14214
|
|
2346
2386
|
- path: development/tasks/po-pull-story-from-clickup.md
|
|
2347
|
-
hash: sha256:
|
|
2387
|
+
hash: sha256:3934798feee06ebe2f376439a94167f9e4937b78946773bc0221e50bae1b604a
|
|
2348
2388
|
type: task
|
|
2349
|
-
size:
|
|
2389
|
+
size: 13471
|
|
2350
2390
|
- path: development/tasks/po-pull-story.md
|
|
2351
|
-
hash: sha256:
|
|
2391
|
+
hash: sha256:662c25e571d34d282be1241fe3848a254f3928e01d7b90a5ee5624707e8dd86e
|
|
2352
2392
|
type: task
|
|
2353
|
-
size:
|
|
2393
|
+
size: 7219
|
|
2354
2394
|
- path: development/tasks/po-stories-index.md
|
|
2355
|
-
hash: sha256:
|
|
2395
|
+
hash: sha256:5feff70afc7e6c37def813807fa93e62bbc516308035e8a5f00767c52ab931a4
|
|
2356
2396
|
type: task
|
|
2357
|
-
size:
|
|
2397
|
+
size: 7611
|
|
2358
2398
|
- path: development/tasks/po-sync-story-to-clickup.md
|
|
2359
|
-
hash: sha256:
|
|
2399
|
+
hash: sha256:c895229ea28573ff735b31165a11316bc60bb5785f9963d3d76631e88b29be9d
|
|
2360
2400
|
type: task
|
|
2361
|
-
size:
|
|
2401
|
+
size: 10969
|
|
2362
2402
|
- path: development/tasks/po-sync-story.md
|
|
2363
|
-
hash: sha256:
|
|
2403
|
+
hash: sha256:95a45db4bc1deda3f92062d4f80ed0f2ec0740eabaac3b66eb91e030e3366c91
|
|
2364
2404
|
type: task
|
|
2365
|
-
size:
|
|
2405
|
+
size: 6899
|
|
2366
2406
|
- path: development/tasks/pr-automation.md
|
|
2367
|
-
hash: sha256:
|
|
2407
|
+
hash: sha256:55bb995b1f8b45e37da250f2298650d4de8204270a9950bf9055ea36b41d8f24
|
|
2368
2408
|
type: task
|
|
2369
|
-
size:
|
|
2409
|
+
size: 19066
|
|
2370
2410
|
- path: development/tasks/project-status.md
|
|
2371
2411
|
hash: sha256:57ca26ffce1e6def31aba60cd32c7a07c6de7d3f983956391010693d31a286dd
|
|
2372
2412
|
type: task
|
|
2373
2413
|
size: 8685
|
|
2374
2414
|
- path: development/tasks/propose-modification.md
|
|
2375
|
-
hash: sha256:
|
|
2415
|
+
hash: sha256:a2108710745c7038af14233fb542780532de33823fa7c0f8c30185fd4aa2c09b
|
|
2376
2416
|
type: task
|
|
2377
|
-
size:
|
|
2417
|
+
size: 23893
|
|
2378
2418
|
- path: development/tasks/publish-npm.md
|
|
2379
2419
|
hash: sha256:c075c87c592bb88976477480123d40cb226f5edb896abf52e78c8ae1840a25e6
|
|
2380
2420
|
type: task
|
|
@@ -2388,17 +2428,17 @@ files:
|
|
|
2388
2428
|
type: task
|
|
2389
2429
|
size: 13991
|
|
2390
2430
|
- path: development/tasks/qa-backlog-add-followup.md
|
|
2391
|
-
hash: sha256:
|
|
2431
|
+
hash: sha256:4ade9d807b32ba31c88c88529bbcc9a0bd78bed9de4e2ad84f7835f24446f3ce
|
|
2392
2432
|
type: task
|
|
2393
|
-
size:
|
|
2433
|
+
size: 9925
|
|
2394
2434
|
- path: development/tasks/qa-browser-console-check.md
|
|
2395
2435
|
hash: sha256:b46de57772fc562d10199a6e310d5b178c4c3141e5d8d1df9107e01d0d3438ac
|
|
2396
2436
|
type: task
|
|
2397
2437
|
size: 6828
|
|
2398
2438
|
- path: development/tasks/qa-create-fix-request.md
|
|
2399
|
-
hash: sha256:
|
|
2439
|
+
hash: sha256:dc9f5b773f99cc0103ddfbcfad8d01c2c3803294a87f342919567c95200a5681
|
|
2400
2440
|
type: task
|
|
2401
|
-
size:
|
|
2441
|
+
size: 13398
|
|
2402
2442
|
- path: development/tasks/qa-evidence-requirements.md
|
|
2403
2443
|
hash: sha256:68fdd266c602d7480efedb997c48f2afe40217ce88283a1aeab9d6fb09cc6665
|
|
2404
2444
|
type: task
|
|
@@ -2412,13 +2452,13 @@ files:
|
|
|
2412
2452
|
type: task
|
|
2413
2453
|
size: 15920
|
|
2414
2454
|
- path: development/tasks/qa-gate.md
|
|
2415
|
-
hash: sha256:
|
|
2455
|
+
hash: sha256:2c51b2110e7c00432bd724df0248861d278275b2512673d2b6d951da32d618bd
|
|
2416
2456
|
type: task
|
|
2417
|
-
size:
|
|
2457
|
+
size: 10485
|
|
2418
2458
|
- path: development/tasks/qa-generate-tests.md
|
|
2419
|
-
hash: sha256:
|
|
2459
|
+
hash: sha256:2162064f8bf0a35461f4b2bb87389bccccbc73c59de378b5c73df97305fa8718
|
|
2420
2460
|
type: task
|
|
2421
|
-
size:
|
|
2461
|
+
size: 36801
|
|
2422
2462
|
- path: development/tasks/qa-library-validation.md
|
|
2423
2463
|
hash: sha256:8fc0828087e49efebbcf29e5b796783a514a340d8402f641c5f787a4a0291480
|
|
2424
2464
|
type: task
|
|
@@ -2428,45 +2468,45 @@ files:
|
|
|
2428
2468
|
type: task
|
|
2429
2469
|
size: 13063
|
|
2430
2470
|
- path: development/tasks/qa-nfr-assess.md
|
|
2431
|
-
hash: sha256:
|
|
2471
|
+
hash: sha256:ca9028e22ee2ab98ed6fa34db461011d853c3c0e0c5d3a7ac46ef8231d00f69c
|
|
2432
2472
|
type: task
|
|
2433
|
-
size:
|
|
2473
|
+
size: 11853
|
|
2434
2474
|
- path: development/tasks/qa-review-build.md
|
|
2435
2475
|
hash: sha256:11f3374377b5ffd3d6cd2d962574d40b96caa3e0ff19d91c74103e7505678636
|
|
2436
2476
|
type: task
|
|
2437
2477
|
size: 31228
|
|
2438
2478
|
- path: development/tasks/qa-review-proposal.md
|
|
2439
|
-
hash: sha256:
|
|
2479
|
+
hash: sha256:713f7cbc6aa9b84bf60ab01c7c4c6990e94397aeb9f7aeb6d143fceca53963f2
|
|
2440
2480
|
type: task
|
|
2441
|
-
size:
|
|
2481
|
+
size: 34984
|
|
2442
2482
|
- path: development/tasks/qa-review-story.md
|
|
2443
|
-
hash: sha256:
|
|
2483
|
+
hash: sha256:6921f5e37f613f1d53fba5fd942206c184a9f5027e852a0f2e433101cc21a1b2
|
|
2444
2484
|
type: task
|
|
2445
|
-
size:
|
|
2485
|
+
size: 24386
|
|
2446
2486
|
- path: development/tasks/qa-risk-profile.md
|
|
2447
|
-
hash: sha256:
|
|
2487
|
+
hash: sha256:fde330be237bb72cfee1550bb8066ff08cf8530d4725304a4f5923520432bfb2
|
|
2448
2488
|
type: task
|
|
2449
|
-
size:
|
|
2489
|
+
size: 12881
|
|
2450
2490
|
- path: development/tasks/qa-run-tests.md
|
|
2451
|
-
hash: sha256:
|
|
2491
|
+
hash: sha256:4d00a463b29c8f7df5c1ef5d9349f4bcaa8143f77e6848c5b27726fa81f5131f
|
|
2452
2492
|
type: task
|
|
2453
|
-
size:
|
|
2493
|
+
size: 5543
|
|
2454
2494
|
- path: development/tasks/qa-security-checklist.md
|
|
2455
2495
|
hash: sha256:599280745fb21b56a18fa720001b851506a2cd1acc8da32505e15ea1dd2431be
|
|
2456
2496
|
type: task
|
|
2457
2497
|
size: 12460
|
|
2458
2498
|
- path: development/tasks/qa-test-design.md
|
|
2459
|
-
hash: sha256:
|
|
2499
|
+
hash: sha256:c0ce54a48804845a4e9bfe24f659a28d4e588b0e088c9febee07cdc4ebd15f44
|
|
2460
2500
|
type: task
|
|
2461
|
-
size:
|
|
2501
|
+
size: 8826
|
|
2462
2502
|
- path: development/tasks/qa-trace-requirements.md
|
|
2463
|
-
hash: sha256:
|
|
2503
|
+
hash: sha256:72d1c8fabeeee0820c15c7ea317545b55a5c1c3cd538c50a9633456fc7d84051
|
|
2464
2504
|
type: task
|
|
2465
|
-
size:
|
|
2505
|
+
size: 11108
|
|
2466
2506
|
- path: development/tasks/release-management.md
|
|
2467
|
-
hash: sha256:
|
|
2507
|
+
hash: sha256:fd83ba9bba32c8df12cf6a04dd33ce9b79991fecfa05e205fe0aafbf1b91801c
|
|
2468
2508
|
type: task
|
|
2469
|
-
size:
|
|
2509
|
+
size: 18970
|
|
2470
2510
|
- path: development/tasks/remove-mcp.md
|
|
2471
2511
|
hash: sha256:d672e0f0500decdefef21a0a10e90b7da60ff587fa169c69767bb3542f71d5d4
|
|
2472
2512
|
type: task
|
|
@@ -2500,13 +2540,13 @@ files:
|
|
|
2500
2540
|
type: task
|
|
2501
2541
|
size: 7800
|
|
2502
2542
|
- path: development/tasks/security-audit.md
|
|
2503
|
-
hash: sha256:
|
|
2543
|
+
hash: sha256:2af4f1b603a0ca3d4a37b6ef986d5e358b2a4c28d4d379b4987fdc496d4a2d02
|
|
2504
2544
|
type: task
|
|
2505
|
-
size:
|
|
2545
|
+
size: 13201
|
|
2506
2546
|
- path: development/tasks/security-scan.md
|
|
2507
|
-
hash: sha256:
|
|
2547
|
+
hash: sha256:4b6b6cca7c84280efb8de055dd1f96ce784bca35c08c7660d7d551f2b370f661
|
|
2508
2548
|
type: task
|
|
2509
|
-
size:
|
|
2549
|
+
size: 18953
|
|
2510
2550
|
- path: development/tasks/self-heal.md
|
|
2511
2551
|
hash: sha256:4a5fe54ba771d5388a86738d7a9ff9cd9aba196a78eed313dc383d02a7957b3a
|
|
2512
2552
|
type: task
|
|
@@ -2516,13 +2556,13 @@ files:
|
|
|
2516
2556
|
type: task
|
|
2517
2557
|
size: 4283
|
|
2518
2558
|
- path: development/tasks/setup-database.md
|
|
2519
|
-
hash: sha256:
|
|
2559
|
+
hash: sha256:b4be60eb0176d79c52fb344d0fa7fc68ec464331efb1174719e4aa03ba12c2c3
|
|
2520
2560
|
type: task
|
|
2521
|
-
size:
|
|
2561
|
+
size: 15582
|
|
2522
2562
|
- path: development/tasks/setup-design-system.md
|
|
2523
|
-
hash: sha256:
|
|
2563
|
+
hash: sha256:e1f834cab907ce616cc1fe316e271bf728f62057c477d289932bcb52bccabda8
|
|
2524
2564
|
type: task
|
|
2525
|
-
size:
|
|
2565
|
+
size: 12627
|
|
2526
2566
|
- path: development/tasks/setup-github.md
|
|
2527
2567
|
hash: sha256:ae7195162f811393f03931d65d6d4c222bc6567ef750dab101875cb046f86470
|
|
2528
2568
|
type: task
|
|
@@ -2540,13 +2580,13 @@ files:
|
|
|
2540
2580
|
type: task
|
|
2541
2581
|
size: 12337
|
|
2542
2582
|
- path: development/tasks/shard-doc.md
|
|
2543
|
-
hash: sha256:
|
|
2583
|
+
hash: sha256:ac9e76cdad8c365546cc6b91e66a2201daba6b2cba06f2bc63204c48a18fbab1
|
|
2544
2584
|
type: task
|
|
2545
|
-
size:
|
|
2585
|
+
size: 14705
|
|
2546
2586
|
- path: development/tasks/sm-create-next-story.md
|
|
2547
|
-
hash: sha256:
|
|
2587
|
+
hash: sha256:c65fc5b65dba52c517ba51988a739eec5e209c78b5976c9d5edb6cc263fac9e7
|
|
2548
2588
|
type: task
|
|
2549
|
-
size:
|
|
2589
|
+
size: 18065
|
|
2550
2590
|
- path: development/tasks/spec-analyze.md
|
|
2551
2591
|
hash: sha256:5a73974cb88ca58274f907416839e8c864a3e35cf832668d3b2c582de3f6b26a
|
|
2552
2592
|
type: task
|
|
@@ -2564,9 +2604,9 @@ files:
|
|
|
2564
2604
|
type: task
|
|
2565
2605
|
size: 13643
|
|
2566
2606
|
- path: development/tasks/spec-gather-requirements.md
|
|
2567
|
-
hash: sha256:
|
|
2607
|
+
hash: sha256:7ed12b65fca5657d218fbfaa40c0a05af5d3e14a17a332c089dd1147d7cb1ca9
|
|
2568
2608
|
type: task
|
|
2569
|
-
size:
|
|
2609
|
+
size: 15182
|
|
2570
2610
|
- path: development/tasks/spec-research-dependencies.md
|
|
2571
2611
|
hash: sha256:28e087134ce19d2c9f3c422604f3414d25bda5f718e0daca7da8c4620f2f62e7
|
|
2572
2612
|
type: task
|
|
@@ -2624,33 +2664,33 @@ files:
|
|
|
2624
2664
|
type: task
|
|
2625
2665
|
size: 11501
|
|
2626
2666
|
- path: development/tasks/sync-documentation.md
|
|
2627
|
-
hash: sha256:
|
|
2667
|
+
hash: sha256:4a109e79bd7179840561b5c19b8f30394d1a719c3477d8e9f49319ad3013aeb1
|
|
2628
2668
|
type: task
|
|
2629
|
-
size:
|
|
2669
|
+
size: 23182
|
|
2630
2670
|
- path: development/tasks/sync-registry-intel.md
|
|
2631
2671
|
hash: sha256:771f14053fc349be2a385f260ea82ce2070216cf6e7b4b593628772c214b5dd7
|
|
2632
2672
|
type: task
|
|
2633
2673
|
size: 1668
|
|
2634
2674
|
- path: development/tasks/tailwind-upgrade.md
|
|
2635
|
-
hash: sha256:
|
|
2675
|
+
hash: sha256:0636474c58bf82fc134867e1e46df4bdd40d257e23cbb26c819c5a45c573b552
|
|
2636
2676
|
type: task
|
|
2637
|
-
size:
|
|
2677
|
+
size: 8149
|
|
2638
2678
|
- path: development/tasks/test-as-user.md
|
|
2639
|
-
hash: sha256:
|
|
2679
|
+
hash: sha256:57bf3789ba78057f253fea9a139f5ca0010e8da4d49081140df2e47bf30bbd6a
|
|
2640
2680
|
type: task
|
|
2641
|
-
size:
|
|
2681
|
+
size: 14040
|
|
2642
2682
|
- path: development/tasks/triage-github-issues.md
|
|
2643
2683
|
hash: sha256:460d80252993ff6da04cec6112918c52df643db8a259bde4c8501a9e88ffa3e5
|
|
2644
2684
|
type: task
|
|
2645
2685
|
size: 10012
|
|
2646
2686
|
- path: development/tasks/undo-last.md
|
|
2647
|
-
hash: sha256:
|
|
2687
|
+
hash: sha256:7929a10ffd4731fc5bb399727cf6feca9faf687e861e81e9308d09eaf8edfe01
|
|
2648
2688
|
type: task
|
|
2649
|
-
size:
|
|
2689
|
+
size: 7522
|
|
2650
2690
|
- path: development/tasks/update-manifest.md
|
|
2651
|
-
hash: sha256:
|
|
2691
|
+
hash: sha256:176da1abf69c2365f1f09c67740cd9b8cf806aa324d66ba2a257662a3f91b3ab
|
|
2652
2692
|
type: task
|
|
2653
|
-
size:
|
|
2693
|
+
size: 9476
|
|
2654
2694
|
- path: development/tasks/update-sinapse.md
|
|
2655
2695
|
hash: sha256:8152c56906792345c8cac62332e251557c51bcb2e53e529cdc98bce969dde950
|
|
2656
2696
|
type: task
|
|
@@ -2660,25 +2700,25 @@ files:
|
|
|
2660
2700
|
type: task
|
|
2661
2701
|
size: 3120
|
|
2662
2702
|
- path: development/tasks/ux-create-wireframe.md
|
|
2663
|
-
hash: sha256:
|
|
2703
|
+
hash: sha256:3781d5b99858158899c7eee441f3c63f10a0546d9c9643914042bc8090a800b7
|
|
2664
2704
|
type: task
|
|
2665
|
-
size:
|
|
2705
|
+
size: 15441
|
|
2666
2706
|
- path: development/tasks/ux-ds-scan-artifact.md
|
|
2667
|
-
hash: sha256:
|
|
2707
|
+
hash: sha256:8e7dcc2120376ed9b722baa9b4133c7e2e169b606a840957794a96246af68717
|
|
2668
2708
|
type: task
|
|
2669
|
-
size:
|
|
2709
|
+
size: 16179
|
|
2670
2710
|
- path: development/tasks/ux-user-research.md
|
|
2671
|
-
hash: sha256:
|
|
2711
|
+
hash: sha256:154f498c7eede3ce9e2481c68e518befad1c83f94af13f031e14e348e360d479
|
|
2672
2712
|
type: task
|
|
2673
|
-
size:
|
|
2713
|
+
size: 13270
|
|
2674
2714
|
- path: development/tasks/validate-agents.md
|
|
2675
2715
|
hash: sha256:82048e2abf2c1278ff0df5fbfe4601bf22ea0450b16d66b8101a366a9bb39c14
|
|
2676
2716
|
type: task
|
|
2677
2717
|
size: 4206
|
|
2678
2718
|
- path: development/tasks/validate-next-story.md
|
|
2679
|
-
hash: sha256:
|
|
2719
|
+
hash: sha256:425002000da0c46d88aabbea481ae20eecddbeef923b8b4765a0dd55004ca2ea
|
|
2680
2720
|
type: task
|
|
2681
|
-
size:
|
|
2721
|
+
size: 16718
|
|
2682
2722
|
- path: development/tasks/validate-tech-preset.md
|
|
2683
2723
|
hash: sha256:4388574067941c01c030886df4969279c4c6952e40cb93f684052384d8c1a5dc
|
|
2684
2724
|
type: task
|
|
@@ -2707,6 +2747,10 @@ files:
|
|
|
2707
2747
|
hash: sha256:9887e0f126e9041f70b8809efd0a659a582d08bd2a5fdd14a0e858b84529d76e
|
|
2708
2748
|
type: template
|
|
2709
2749
|
size: 1106
|
|
2750
|
+
- path: development/templates/approval-table.md
|
|
2751
|
+
hash: sha256:847bca537a5790ba9e636703cf1e36cb6b3cd9d0b8640cee9689eb1ab136a3b0
|
|
2752
|
+
type: template
|
|
2753
|
+
size: 5172
|
|
2710
2754
|
- path: development/templates/chrome-brain/knowledge-base/chrome-brain.md
|
|
2711
2755
|
hash: sha256:4b73f2a5c680aa9260e7c66a0a222a6927a0032784ca803eb309816774a5de84
|
|
2712
2756
|
type: template
|
|
@@ -2732,9 +2776,9 @@ files:
|
|
|
2732
2776
|
type: template
|
|
2733
2777
|
size: 7207
|
|
2734
2778
|
- path: development/templates/chrome-brain/scripts/chrome-ensure.cjs
|
|
2735
|
-
hash: sha256:
|
|
2779
|
+
hash: sha256:5aeecbf96aaf95c9e6b1241c5ef7cf3b846731939c0a06a1e1be243e71392460
|
|
2736
2780
|
type: template
|
|
2737
|
-
size:
|
|
2781
|
+
size: 3579
|
|
2738
2782
|
- path: development/templates/chrome-brain/scripts/chrome-ensure.sh
|
|
2739
2783
|
hash: sha256:eab2018b622c8550381c6d4555f4496595859b98401dff63a3036abf8433ebfa
|
|
2740
2784
|
type: template
|
|
@@ -2996,9 +3040,9 @@ files:
|
|
|
2996
3040
|
type: workflow
|
|
2997
3041
|
size: 2606
|
|
2998
3042
|
- path: development/workflows/spec-pipeline.yaml
|
|
2999
|
-
hash: sha256:
|
|
3043
|
+
hash: sha256:fc739f0f5ec927ed9daecbd0fc74b68017ed548ce445c40b9b1ecd5f1ff2ff4b
|
|
3000
3044
|
type: workflow
|
|
3001
|
-
size:
|
|
3045
|
+
size: 28497
|
|
3002
3046
|
- path: development/workflows/story-development-cycle.yaml
|
|
3003
3047
|
hash: sha256:137fc6d2a7aedb50bbebfa045e877c382399604708ce03477f358f282b76727f
|
|
3004
3048
|
type: workflow
|
|
@@ -3168,9 +3212,9 @@ files:
|
|
|
3168
3212
|
type: script
|
|
3169
3213
|
size: 16195
|
|
3170
3214
|
- path: infrastructure/scripts/changelog-generator.js
|
|
3171
|
-
hash: sha256:
|
|
3215
|
+
hash: sha256:b8e32c70260f8a3401be1e3d8ab1f1fd175bce05a99abb5644c0862241abd863
|
|
3172
3216
|
type: script
|
|
3173
|
-
size:
|
|
3217
|
+
size: 15600
|
|
3174
3218
|
- path: infrastructure/scripts/cicd-discovery.js
|
|
3175
3219
|
hash: sha256:03645cc37ba842aac88bef0723abc39be0e80d3d1846d377be13d771d9cb175d
|
|
3176
3220
|
type: script
|
|
@@ -3420,9 +3464,9 @@ files:
|
|
|
3420
3464
|
type: script
|
|
3421
3465
|
size: 13118
|
|
3422
3466
|
- path: infrastructure/scripts/pattern-extractor.js
|
|
3423
|
-
hash: sha256:
|
|
3467
|
+
hash: sha256:45d2f1cb89f1775504e469f3f5e95395714f8e3a0774e6662c6840a0a215a66b
|
|
3424
3468
|
type: script
|
|
3425
|
-
size:
|
|
3469
|
+
size: 45419
|
|
3426
3470
|
- path: infrastructure/scripts/performance-analyzer.js
|
|
3427
3471
|
hash: sha256:ff90ddb6c6e91d193ef224e02aa893f18e02ead2e10bd376eb5776f9dc5f7206
|
|
3428
3472
|
type: script
|
|
@@ -3548,9 +3592,9 @@ files:
|
|
|
3548
3592
|
type: script
|
|
3549
3593
|
size: 3744
|
|
3550
3594
|
- path: infrastructure/scripts/test-utilities.js
|
|
3551
|
-
hash: sha256:
|
|
3595
|
+
hash: sha256:ea6d0a15a6dbdc1358b7b51bf144f515eae239512fc0bb24d0b2253586eddcb2
|
|
3552
3596
|
type: script
|
|
3553
|
-
size:
|
|
3597
|
+
size: 6545
|
|
3554
3598
|
- path: infrastructure/scripts/tool-resolver.js
|
|
3555
3599
|
hash: sha256:ecd80a34b6c2848b5d7fd9469c4236b435e6173e7e15c8c12ae12da013537487
|
|
3556
3600
|
type: script
|
|
@@ -3560,17 +3604,17 @@ files:
|
|
|
3560
3604
|
type: script
|
|
3561
3605
|
size: 17625
|
|
3562
3606
|
- path: infrastructure/scripts/usage-analytics.js
|
|
3563
|
-
hash: sha256:
|
|
3607
|
+
hash: sha256:d87ff786a64c038aa83f106f8a6e174df696b2beeb68b278747299d33dc0f84b
|
|
3564
3608
|
type: script
|
|
3565
|
-
size:
|
|
3609
|
+
size: 18473
|
|
3566
3610
|
- path: infrastructure/scripts/validate-agents.js
|
|
3567
3611
|
hash: sha256:62f4f46fa2117f633b96b42be5fcf0448cf56408998affee6728e798c8014733
|
|
3568
3612
|
type: script
|
|
3569
3613
|
size: 21894
|
|
3570
3614
|
- path: infrastructure/scripts/validate-claude-integration.js
|
|
3571
|
-
hash: sha256:
|
|
3615
|
+
hash: sha256:e7234c5aa1553a52392c5cee0d85e7166923538aee0747cbd377a31caa377033
|
|
3572
3616
|
type: script
|
|
3573
|
-
size:
|
|
3617
|
+
size: 3358
|
|
3574
3618
|
- path: infrastructure/scripts/validate-codex-command-registry.js
|
|
3575
3619
|
hash: sha256:a37a4c5fc8a4c3a7ce7ba240aeea16abc0a75871751f66eeb84991604ff066bf
|
|
3576
3620
|
type: script
|
|
@@ -4140,9 +4184,9 @@ files:
|
|
|
4140
4184
|
type: template
|
|
4141
4185
|
size: 8295
|
|
4142
4186
|
- path: product/templates/personalized-task-template-v2.md
|
|
4143
|
-
hash: sha256:
|
|
4187
|
+
hash: sha256:a58a20610e106fa8831fcf43085f4e73b3015d92d12041bcb77871a892d46930
|
|
4144
4188
|
type: template
|
|
4145
|
-
size:
|
|
4189
|
+
size: 23814
|
|
4146
4190
|
- path: product/templates/personalized-task-template.md
|
|
4147
4191
|
hash: sha256:f7f4aec9712d580f87394fcdd1360460e33f8e508256a4fdf212b4d215753bb6
|
|
4148
4192
|
type: template
|
|
@@ -4160,9 +4204,9 @@ files:
|
|
|
4160
4204
|
type: template
|
|
4161
4205
|
size: 3243
|
|
4162
4206
|
- path: product/templates/prd-tmpl.yaml
|
|
4163
|
-
hash: sha256:
|
|
4207
|
+
hash: sha256:ae365825677131fc9f5c6762c6a4a036be0737442bcbdb04cdbd4e3e3f547265
|
|
4164
4208
|
type: template
|
|
4165
|
-
size:
|
|
4209
|
+
size: 12512
|
|
4166
4210
|
- path: product/templates/prd-v2.0.hbs
|
|
4167
4211
|
hash: sha256:efcdadfcd994d02cb04f61de67e4b42156e49b64e9374ad57037e60104297134
|
|
4168
4212
|
type: template
|
|
@@ -4208,9 +4252,9 @@ files:
|
|
|
4208
4252
|
type: template
|
|
4209
4253
|
size: 18475
|
|
4210
4254
|
- path: product/templates/statusline/statusline-script.js
|
|
4211
|
-
hash: sha256:
|
|
4255
|
+
hash: sha256:d9488a080a26c46e6fc48d649c6316f44041276583399e90b9446bbc804fed88
|
|
4212
4256
|
type: template
|
|
4213
|
-
size:
|
|
4257
|
+
size: 8957
|
|
4214
4258
|
- path: product/templates/statusline/track-agent-clear.cjs
|
|
4215
4259
|
hash: sha256:3cda606de2463374e60440ba6cae9ca98e39b782b19c6ae39aa7569a1b211f09
|
|
4216
4260
|
type: template
|