sinapse-ai 1.17.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/rules/documentation-first.md +6 -0
- package/.sinapse-ai/constitution.md +2 -2
- 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/executors/epic-4-executor.js +3 -0
- package/.sinapse-ai/core/orchestration/gate-evaluator.js +58 -9
- 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 +235 -82
- 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 +5 -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 +2 -5
- package/.sinapse-ai/development/tasks/create-next-story.md +2 -5
- 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/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/chrome-brain/scripts/chrome-ensure.cjs +1 -1
- 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 +313 -313
- 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/statusline/statusline-script.js +7 -3
- package/CHANGELOG.md +79 -17
- 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/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/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 +8 -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/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/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-courses/agents/production-director.md +5 -5
- package/squads/squad-courses/squad.yaml +1 -1
|
@@ -7,7 +7,7 @@
|
|
|
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
12
|
file_count: 1163
|
|
13
13
|
files:
|
|
@@ -192,9 +192,9 @@ files:
|
|
|
192
192
|
type: cli
|
|
193
193
|
size: 5908
|
|
194
194
|
- path: core-config.yaml
|
|
195
|
-
hash: sha256:
|
|
195
|
+
hash: sha256:74bb1d9c7ced33f1242ff6199bc385c2aa5543694a1bd544b64a5ab89775019c
|
|
196
196
|
type: config
|
|
197
|
-
size:
|
|
197
|
+
size: 12918
|
|
198
198
|
- path: core/atlas/atlas-data.js
|
|
199
199
|
hash: sha256:ab6ef91bd2de1498dbe3892a80b5f18d67624db1fb2da74b0e53f83de902f383
|
|
200
200
|
type: core
|
|
@@ -276,9 +276,9 @@ files:
|
|
|
276
276
|
type: core
|
|
277
277
|
size: 15622
|
|
278
278
|
- path: core/code-intel/registry-syncer.js
|
|
279
|
-
hash: sha256:
|
|
279
|
+
hash: sha256:acef8a60679cdd3ca1dec970ae573991c09c2e5e27ba780796c5b6ecf2848032
|
|
280
280
|
type: core
|
|
281
|
-
size:
|
|
281
|
+
size: 13413
|
|
282
282
|
- path: core/config/config-cache.js
|
|
283
283
|
hash: sha256:19a1c2900dd5cc59ddece4303d272415683978e238feb6538e6b41c1eef456a1
|
|
284
284
|
type: core
|
|
@@ -348,13 +348,13 @@ files:
|
|
|
348
348
|
type: documentation
|
|
349
349
|
size: 11580
|
|
350
350
|
- path: core/doctor/checks/agent-memory.js
|
|
351
|
-
hash: sha256:
|
|
351
|
+
hash: sha256:0eaacbec38882749bbaf1e16e5a2f2c1c486596b416debdc780f77a7791a4124
|
|
352
352
|
type: core
|
|
353
|
-
size:
|
|
353
|
+
size: 1737
|
|
354
354
|
- path: core/doctor/checks/claude-md.js
|
|
355
|
-
hash: sha256:
|
|
355
|
+
hash: sha256:c9cda3a367f14ae8845b3c96f90497ee2a316afd6d0cfd0ae9abeb4e4461596a
|
|
356
356
|
type: core
|
|
357
|
-
size:
|
|
357
|
+
size: 1867
|
|
358
358
|
- path: core/doctor/checks/code-intel.js
|
|
359
359
|
hash: sha256:92575328f8cf65e1a24d82eafa7225bf080a60a3aab8de60ddee1737196c0b70
|
|
360
360
|
type: core
|
|
@@ -364,9 +364,9 @@ files:
|
|
|
364
364
|
type: core
|
|
365
365
|
size: 1812
|
|
366
366
|
- path: core/doctor/checks/constitution-consistency.js
|
|
367
|
-
hash: sha256:
|
|
367
|
+
hash: sha256:c4f27ffffabcc2377833abf1e4374366b5e78aa2ee31e7c1ad7050743cea0068
|
|
368
368
|
type: core
|
|
369
|
-
size:
|
|
369
|
+
size: 3262
|
|
370
370
|
- path: core/doctor/checks/core-config.js
|
|
371
371
|
hash: sha256:77b3a167f52a6145aeaf83ac4ce558ec7b8efd66beccfa05ec106367315d7e9a
|
|
372
372
|
type: core
|
|
@@ -384,9 +384,9 @@ files:
|
|
|
384
384
|
type: core
|
|
385
385
|
size: 1202
|
|
386
386
|
- path: core/doctor/checks/hooks-claude-count.js
|
|
387
|
-
hash: sha256:
|
|
387
|
+
hash: sha256:c62ee5b13d947c1ebde985e714a3d0a59d639d32f03f2bb01254131874388eaf
|
|
388
388
|
type: core
|
|
389
|
-
size:
|
|
389
|
+
size: 4038
|
|
390
390
|
- path: core/doctor/checks/ide-sync.js
|
|
391
391
|
hash: sha256:6ff4b422c03ef7f84b0e72ccbe97faf6324dee45da18cd878bfe5e91d00271b9
|
|
392
392
|
type: core
|
|
@@ -412,9 +412,9 @@ files:
|
|
|
412
412
|
type: core
|
|
413
413
|
size: 1494
|
|
414
414
|
- path: core/doctor/checks/settings-json.js
|
|
415
|
-
hash: sha256:
|
|
415
|
+
hash: sha256:7111af8a314f2b132c1253fa10fff17cab7389ee7951ca17b5383bfe159a1f9b
|
|
416
416
|
type: core
|
|
417
|
-
size:
|
|
417
|
+
size: 4133
|
|
418
418
|
- path: core/doctor/checks/skills-count.js
|
|
419
419
|
hash: sha256:2ed67974d87e3b4e4efa84527061f824eb8c79dc3a5925adb149870c6c0faf3c
|
|
420
420
|
type: core
|
|
@@ -432,9 +432,9 @@ files:
|
|
|
432
432
|
type: core
|
|
433
433
|
size: 1807
|
|
434
434
|
- path: core/doctor/index.js
|
|
435
|
-
hash: sha256:
|
|
435
|
+
hash: sha256:7b097a59f21e572d99337013ad6f413a31bdc7ff9419481fe401fed482ddc2a1
|
|
436
436
|
type: core
|
|
437
|
-
size:
|
|
437
|
+
size: 9660
|
|
438
438
|
- path: core/elicitation/agent-elicitation.js
|
|
439
439
|
hash: sha256:92abc291cecff9b8bb9153d5fbac84ad5217cff4d0d01e0495785a939334cd81
|
|
440
440
|
type: elicitation
|
|
@@ -496,9 +496,9 @@ files:
|
|
|
496
496
|
type: core
|
|
497
497
|
size: 34059
|
|
498
498
|
- path: core/execution/build-orchestrator.js
|
|
499
|
-
hash: sha256:
|
|
499
|
+
hash: sha256:ac8adfb8d5ef580641430735a7f351cf96d6bfe8608e8e45b92106ee0d412cb7
|
|
500
500
|
type: core
|
|
501
|
-
size:
|
|
501
|
+
size: 39805
|
|
502
502
|
- path: core/execution/build-state-manager.js
|
|
503
503
|
hash: sha256:3b2fe56bf0e1a480f663a02afbb83c6d11cf89fb56815381c7ccafab948a63ae
|
|
504
504
|
type: core
|
|
@@ -536,9 +536,9 @@ files:
|
|
|
536
536
|
type: core
|
|
537
537
|
size: 11268
|
|
538
538
|
- path: core/external-executors/delegate-cli.js
|
|
539
|
-
hash: sha256:
|
|
539
|
+
hash: sha256:e56313ca703a4fccf64e0eec958ceb9f84e5d7a3f1c84c22b12375a9b5b58bc1
|
|
540
540
|
type: core
|
|
541
|
-
size:
|
|
541
|
+
size: 15388
|
|
542
542
|
- path: core/external-executors/index.js
|
|
543
543
|
hash: sha256:db61bee165e4a7dba3627275d52d6b162e3b2cbf47d31d88beb38682cb8352db
|
|
544
544
|
type: core
|
|
@@ -668,9 +668,9 @@ files:
|
|
|
668
668
|
type: core
|
|
669
669
|
size: 4734
|
|
670
670
|
- path: core/health-check/checks/project/constitution-consistency.js
|
|
671
|
-
hash: sha256:
|
|
671
|
+
hash: sha256:b629aa44a3e085b62a53edf689ae810a1c5acdb09a11f0cca51c9f7b12f9d8ae
|
|
672
672
|
type: core
|
|
673
|
-
size:
|
|
673
|
+
size: 6025
|
|
674
674
|
- path: core/health-check/checks/project/dependencies.js
|
|
675
675
|
hash: sha256:f11f88666cfde93196d3ec81c59ba4956c75a097591d4a5cf0b2effd88db523d
|
|
676
676
|
type: core
|
|
@@ -796,9 +796,9 @@ files:
|
|
|
796
796
|
type: core
|
|
797
797
|
size: 7763
|
|
798
798
|
- path: core/ideation/ideation-engine.js
|
|
799
|
-
hash: sha256:
|
|
799
|
+
hash: sha256:e4973a25c61101d278f102e4ed449421e50d876a274b2c4c2b150d00df97cb39
|
|
800
800
|
type: core
|
|
801
|
-
size:
|
|
801
|
+
size: 27573
|
|
802
802
|
- path: core/ids/circuit-breaker.js
|
|
803
803
|
hash: sha256:d9ff8c6e540902457b17aba668ff67c04d40564ed479993ad3c4807fb8c09c3f
|
|
804
804
|
type: core
|
|
@@ -888,13 +888,13 @@ files:
|
|
|
888
888
|
type: core
|
|
889
889
|
size: 11306
|
|
890
890
|
- path: core/mcp/config-migrator.js
|
|
891
|
-
hash: sha256:
|
|
891
|
+
hash: sha256:9707d54038ee9899e9f87735989e462c3b017fe6275fc67edbec910b4edc4676
|
|
892
892
|
type: core
|
|
893
|
-
size:
|
|
893
|
+
size: 10207
|
|
894
894
|
- path: core/mcp/global-config-manager.js
|
|
895
|
-
hash: sha256:
|
|
895
|
+
hash: sha256:b6b6ea82a2e510e37163a845806f8d27647f72b97e4f6b2c3891cac974331a3b
|
|
896
896
|
type: core
|
|
897
|
-
size:
|
|
897
|
+
size: 9169
|
|
898
898
|
- path: core/mcp/index.js
|
|
899
899
|
hash: sha256:dde1c3defd5aeeac53fe8efd77f9273b257d477e32b13b3d47b4d4bfe842ed66
|
|
900
900
|
type: core
|
|
@@ -904,9 +904,9 @@ files:
|
|
|
904
904
|
type: core
|
|
905
905
|
size: 3840
|
|
906
906
|
- path: core/mcp/symlink-manager.js
|
|
907
|
-
hash: sha256:
|
|
907
|
+
hash: sha256:8d66c2e83266caff174722bd8e153d16687f6c0d0d260d5777f3dba1d1ae8745
|
|
908
908
|
type: core
|
|
909
|
-
size:
|
|
909
|
+
size: 10661
|
|
910
910
|
- path: core/memory/__tests__/active-modules.verify.js
|
|
911
911
|
hash: sha256:f9d19b7afe34a3855795bab464dc5a6d23c1926c5eed05192910f898d6bbefec
|
|
912
912
|
type: core
|
|
@@ -940,9 +940,9 @@ files:
|
|
|
940
940
|
type: core
|
|
941
941
|
size: 8129
|
|
942
942
|
- path: core/orchestration/brownfield-handler.js
|
|
943
|
-
hash: sha256:
|
|
943
|
+
hash: sha256:d4ad190353fc751e874bad5b3013137dcccfc84100edd6cead80c8fa5e83af11
|
|
944
944
|
type: core
|
|
945
|
-
size:
|
|
945
|
+
size: 28745
|
|
946
946
|
- path: core/orchestration/build-command.js
|
|
947
947
|
hash: sha256:b758cfc7c0fad3d0d875460630b9ac7b2c968b82cdec14e9885e0744ee7012d0
|
|
948
948
|
type: core
|
|
@@ -992,9 +992,9 @@ files:
|
|
|
992
992
|
type: core
|
|
993
993
|
size: 9463
|
|
994
994
|
- path: core/orchestration/executors/epic-4-executor.js
|
|
995
|
-
hash: sha256:
|
|
995
|
+
hash: sha256:31d038e4c6603749f61f75284aa626f871864c072aa9ec220a1798d125bbc62c
|
|
996
996
|
type: core
|
|
997
|
-
size:
|
|
997
|
+
size: 9383
|
|
998
998
|
- path: core/orchestration/executors/epic-5-executor.js
|
|
999
999
|
hash: sha256:865224cd6cb1f80c1228e149349aea5c335440201c9047f849d2ec85b73d3f03
|
|
1000
1000
|
type: core
|
|
@@ -1016,9 +1016,9 @@ files:
|
|
|
1016
1016
|
type: core
|
|
1017
1017
|
size: 10211
|
|
1018
1018
|
- path: core/orchestration/gate-evaluator.js
|
|
1019
|
-
hash: sha256:
|
|
1019
|
+
hash: sha256:b898a091ff5c787e4a1d7c02a5e183c4eb6439086187fd8193b69710d3d33cc0
|
|
1020
1020
|
type: core
|
|
1021
|
-
size:
|
|
1021
|
+
size: 18312
|
|
1022
1022
|
- path: core/orchestration/greenfield-handler.js
|
|
1023
1023
|
hash: sha256:33bb2c05c3aee3e02c247afd80e27051a8c0eeb9b32dd3c246d11d5db60773e6
|
|
1024
1024
|
type: core
|
|
@@ -1052,9 +1052,9 @@ files:
|
|
|
1052
1052
|
type: core
|
|
1053
1053
|
size: 4766
|
|
1054
1054
|
- path: core/orchestration/session-state.js
|
|
1055
|
-
hash: sha256:
|
|
1055
|
+
hash: sha256:a4fddcb9eb120ec7a0367ffc07d05cfbf97aa2afc16cc2c18663cf6c3a0d4912
|
|
1056
1056
|
type: core
|
|
1057
|
-
size:
|
|
1057
|
+
size: 25511
|
|
1058
1058
|
- path: core/orchestration/skill-dispatcher.js
|
|
1059
1059
|
hash: sha256:321eee21d44c8c2548a4a989b4fd9bd13782dc95f917098d67c514e0886000f5
|
|
1060
1060
|
type: core
|
|
@@ -1076,13 +1076,13 @@ files:
|
|
|
1076
1076
|
type: core
|
|
1077
1077
|
size: 16495
|
|
1078
1078
|
- path: core/orchestration/terminal-spawner.js
|
|
1079
|
-
hash: sha256:
|
|
1079
|
+
hash: sha256:698bbf0df1d988b98be470528d8f3f261a0ffd6294150fdbb369af1e29ed7fde
|
|
1080
1080
|
type: core
|
|
1081
|
-
size:
|
|
1081
|
+
size: 32247
|
|
1082
1082
|
- path: core/orchestration/workflow-executor.js
|
|
1083
|
-
hash: sha256:
|
|
1083
|
+
hash: sha256:965d6ff60805ba6835192d9bbf2fc9fe10f4ee6e47790533007f41cfc4a4ce4c
|
|
1084
1084
|
type: core
|
|
1085
|
-
size:
|
|
1085
|
+
size: 42484
|
|
1086
1086
|
- path: core/orchestration/workflow-orchestrator.js
|
|
1087
1087
|
hash: sha256:6e97eec88c8261f15bad79c47b0eafcfe39fbda5c837e156fe803802c3a1c18f
|
|
1088
1088
|
type: core
|
|
@@ -1112,9 +1112,9 @@ files:
|
|
|
1112
1112
|
type: core
|
|
1113
1113
|
size: 9004
|
|
1114
1114
|
- path: core/quality-gates/focus-area-recommender.js
|
|
1115
|
-
hash: sha256:
|
|
1115
|
+
hash: sha256:cda110b91a4e68e3c507fda947fbd48ddb22fed8b1104d8dcd88fd45d2cd98e6
|
|
1116
1116
|
type: core
|
|
1117
|
-
size:
|
|
1117
|
+
size: 14714
|
|
1118
1118
|
- path: core/quality-gates/human-review-orchestrator.js
|
|
1119
1119
|
hash: sha256:7f6ba8a63bda8e1619db65feb3d4656a575885347ee4982ec212e1aca8915a5f
|
|
1120
1120
|
type: core
|
|
@@ -1156,9 +1156,9 @@ files:
|
|
|
1156
1156
|
type: core
|
|
1157
1157
|
size: 8176
|
|
1158
1158
|
- path: core/registry/build-registry.js
|
|
1159
|
-
hash: sha256:
|
|
1159
|
+
hash: sha256:af19f04bc201bfc7b6540e1d3f7384441b29447e4a4354ecd6fe15765a171403
|
|
1160
1160
|
type: core
|
|
1161
|
-
size:
|
|
1161
|
+
size: 13867
|
|
1162
1162
|
- path: core/registry/README.md
|
|
1163
1163
|
hash: sha256:98219837cb84b58eaf9cea2acf95837c5860c3369ac35bb226b61a7137fa14b8
|
|
1164
1164
|
type: core
|
|
@@ -1320,17 +1320,17 @@ files:
|
|
|
1320
1320
|
type: core
|
|
1321
1321
|
size: 3552
|
|
1322
1322
|
- path: core/synapse/scripts/generate-constitution.js
|
|
1323
|
-
hash: sha256:
|
|
1323
|
+
hash: sha256:2270f6c9a60e8caeb2296087fd1cf5fb023161665f9fc9cc3f3dcbc669a3d0d0
|
|
1324
1324
|
type: script
|
|
1325
|
-
size:
|
|
1325
|
+
size: 6177
|
|
1326
1326
|
- path: core/synapse/session/session-manager.js
|
|
1327
1327
|
hash: sha256:53b9d4b4903ec54e99eb85fb2a46cee0b9623db1c2e6767a09f4b463d87f0db0
|
|
1328
1328
|
type: core
|
|
1329
1329
|
size: 11186
|
|
1330
1330
|
- path: core/synapse/utils/atomic-write.js
|
|
1331
|
-
hash: sha256:
|
|
1331
|
+
hash: sha256:49d059eceff8053cf7d07fda44f1a399f4fffe2c033a548061fa6fe1a3c939a3
|
|
1332
1332
|
type: core
|
|
1333
|
-
size:
|
|
1333
|
+
size: 2995
|
|
1334
1334
|
- path: core/synapse/utils/paths.js
|
|
1335
1335
|
hash: sha256:f4d91eb000e36212638fe799ccbc11cd1c0050baa9ce739ff4083b675d7be980
|
|
1336
1336
|
type: core
|
|
@@ -1380,25 +1380,25 @@ files:
|
|
|
1380
1380
|
type: data
|
|
1381
1381
|
size: 10998
|
|
1382
1382
|
- path: data/capability-detection.js
|
|
1383
|
-
hash: sha256:
|
|
1383
|
+
hash: sha256:4e49e38fba0051512e691dd1901b91f4a91ba73c1df20e4f7e76cdc000e4d7c0
|
|
1384
1384
|
type: data
|
|
1385
|
-
size:
|
|
1385
|
+
size: 9671
|
|
1386
1386
|
- path: data/entity-registry.yaml
|
|
1387
|
-
hash: sha256:
|
|
1387
|
+
hash: sha256:80005365934bb7e9783ea833d9d1bcd85faec81fe1e2e8232187dbfd529c9304
|
|
1388
1388
|
type: data
|
|
1389
|
-
size:
|
|
1389
|
+
size: 554944
|
|
1390
1390
|
- path: data/learned-patterns.yaml
|
|
1391
1391
|
hash: sha256:1a4cd045c087b9dfd7046ff1464a9d2edb85fba77cf0b6fba14f4bb9004c741e
|
|
1392
1392
|
type: data
|
|
1393
1393
|
size: 69
|
|
1394
1394
|
- path: data/mcp-discipline.js
|
|
1395
|
-
hash: sha256:
|
|
1395
|
+
hash: sha256:fa0876124f522dc9e2d1e7328cf72a3237656a625a2dce45bb76c13969018e16
|
|
1396
1396
|
type: data
|
|
1397
|
-
size:
|
|
1397
|
+
size: 5127
|
|
1398
1398
|
- path: data/mcp-tool-examples.yaml
|
|
1399
|
-
hash: sha256:
|
|
1399
|
+
hash: sha256:96e23f764b551b5e14782713ab01f6741f9b83e09c4f98158f41e8be09b9af84
|
|
1400
1400
|
type: data
|
|
1401
|
-
size:
|
|
1401
|
+
size: 9392
|
|
1402
1402
|
- path: data/rls-security-patterns.md
|
|
1403
1403
|
hash: sha256:ae42a553bb0d783746fc0d97214becf4696b4ecaec714e9302a10e417c39a7bb
|
|
1404
1404
|
type: data
|
|
@@ -1440,17 +1440,17 @@ files:
|
|
|
1440
1440
|
type: data
|
|
1441
1441
|
size: 3406
|
|
1442
1442
|
- path: data/tok2-validation.js
|
|
1443
|
-
hash: sha256:
|
|
1443
|
+
hash: sha256:e0420bd67fb7656c900aac6a87184e1bdcbfe33e5c5438b0c73bc41e401cd85c
|
|
1444
1444
|
type: data
|
|
1445
|
-
size:
|
|
1445
|
+
size: 7072
|
|
1446
1446
|
- path: data/tok3-token-comparison.js
|
|
1447
1447
|
hash: sha256:87ab8a68bf6cd7e3fc54dbba60cbc56e3a490dde1dd805fd294a04c57f5dea1b
|
|
1448
1448
|
type: data
|
|
1449
1449
|
size: 4488
|
|
1450
1450
|
- path: data/tool-registry.yaml
|
|
1451
|
-
hash: sha256:
|
|
1451
|
+
hash: sha256:980d25ed01ab90d0ffa47c892750e312822edb902c876c8db2f7a341a4a08aa1
|
|
1452
1452
|
type: data
|
|
1453
|
-
size:
|
|
1453
|
+
size: 15216
|
|
1454
1454
|
- path: data/tool-search-validation.js
|
|
1455
1455
|
hash: sha256:0ad0396cfb695fda9a966973877ade1475e0b637a10f8bb5ce3d0a76e66fdf39
|
|
1456
1456
|
type: data
|
|
@@ -1520,9 +1520,9 @@ files:
|
|
|
1520
1520
|
type: agent
|
|
1521
1521
|
size: 23745
|
|
1522
1522
|
- path: development/agents/snps-orqx.md
|
|
1523
|
-
hash: sha256:
|
|
1523
|
+
hash: sha256:e236af23b35763597525328603d610caed502a0ecf4de6aa249852ed584eec80
|
|
1524
1524
|
type: agent
|
|
1525
|
-
size:
|
|
1525
|
+
size: 43873
|
|
1526
1526
|
- path: development/agents/sprint-lead.md
|
|
1527
1527
|
hash: sha256:572289b770cdbb0cff9ae2de4b2d19c38ce814fe978df397aa2794297f562c91
|
|
1528
1528
|
type: agent
|
|
@@ -1704,9 +1704,9 @@ files:
|
|
|
1704
1704
|
type: script
|
|
1705
1705
|
size: 21730
|
|
1706
1706
|
- path: development/scripts/migrate-task-to-v2.js
|
|
1707
|
-
hash: sha256:
|
|
1707
|
+
hash: sha256:1ffc4fd44bead88c382ea2e2dc3c4320293978040960e0aa304e87d3579c9d66
|
|
1708
1708
|
type: script
|
|
1709
|
-
size:
|
|
1709
|
+
size: 9467
|
|
1710
1710
|
- path: development/scripts/pattern-learner.js
|
|
1711
1711
|
hash: sha256:8fc513199884abdc7ac011fac381ba1bb695d43fa7d08a655951bf55754749f4
|
|
1712
1712
|
type: script
|
|
@@ -1800,9 +1800,9 @@ files:
|
|
|
1800
1800
|
type: script
|
|
1801
1801
|
size: 6254
|
|
1802
1802
|
- path: development/scripts/validate-task-v2.js
|
|
1803
|
-
hash: sha256:
|
|
1803
|
+
hash: sha256:2778eb0dfcab585ee322ea95fcb931b2f9c0d724eb15f91cb48921a5f56c4256
|
|
1804
1804
|
type: script
|
|
1805
|
-
size:
|
|
1805
|
+
size: 12310
|
|
1806
1806
|
- path: development/scripts/verify-workflow-gaps.js
|
|
1807
1807
|
hash: sha256:714bd35cc8a4c105f2b463c539ac8751cbb16357ff251061960e5300acd2849c
|
|
1808
1808
|
type: script
|
|
@@ -1872,13 +1872,13 @@ files:
|
|
|
1872
1872
|
type: task
|
|
1873
1873
|
size: 10227
|
|
1874
1874
|
- path: development/tasks/advanced-elicitation.md
|
|
1875
|
-
hash: sha256:
|
|
1875
|
+
hash: sha256:779619dcf066f201a68c30ae097e01cdf16aa6553a01a007d756e5aa5fb5609a
|
|
1876
1876
|
type: task
|
|
1877
|
-
size:
|
|
1877
|
+
size: 8736
|
|
1878
1878
|
- path: development/tasks/analyst-facilitate-brainstorming.md
|
|
1879
|
-
hash: sha256:
|
|
1879
|
+
hash: sha256:5e18e2b2afe91ceab5323fa0bcd95afbaa235d8636e9ca1a11eeb0c320a3d3a7
|
|
1880
1880
|
type: task
|
|
1881
|
-
size:
|
|
1881
|
+
size: 9166
|
|
1882
1882
|
- path: development/tasks/analyze-brownfield.md
|
|
1883
1883
|
hash: sha256:b203fe1fa564002879340768d78f597cb0eacaaaf9be4df5245e1d8515288bc2
|
|
1884
1884
|
type: task
|
|
@@ -1888,37 +1888,37 @@ files:
|
|
|
1888
1888
|
type: task
|
|
1889
1889
|
size: 7724
|
|
1890
1890
|
- path: development/tasks/analyze-framework.md
|
|
1891
|
-
hash: sha256:
|
|
1891
|
+
hash: sha256:4043a667b1e10e2cb1f609525dd8300db5e2e116f679682120e4cd1de08149de
|
|
1892
1892
|
type: task
|
|
1893
|
-
size:
|
|
1893
|
+
size: 21577
|
|
1894
1894
|
- path: development/tasks/analyze-performance.md
|
|
1895
|
-
hash: sha256:
|
|
1895
|
+
hash: sha256:481bfd8023d006910bb81e3d75131c6d7a1dfac128dcfe97b65aa7c3639820fd
|
|
1896
1896
|
type: task
|
|
1897
|
-
size:
|
|
1897
|
+
size: 15178
|
|
1898
1898
|
- path: development/tasks/analyze-project-structure.md
|
|
1899
1899
|
hash: sha256:4bc50c86e36941a9aab0bdcf1ad765e93988498d0f2a70dfd7b33d67397e1863
|
|
1900
1900
|
type: task
|
|
1901
1901
|
size: 16236
|
|
1902
1902
|
- path: development/tasks/apply-qa-fixes.md
|
|
1903
|
-
hash: sha256:
|
|
1903
|
+
hash: sha256:bc7445950e04622d197e3bc4c66af893425a5ad286d7ef91061aaa5671386baa
|
|
1904
1904
|
type: task
|
|
1905
|
-
size:
|
|
1905
|
+
size: 9117
|
|
1906
1906
|
- path: development/tasks/architect-analyze-impact.md
|
|
1907
|
-
hash: sha256:
|
|
1907
|
+
hash: sha256:c27b2e642b66968e772b23afd3f2e71aed1612d235a5df7bb1a1468bf82bf37b
|
|
1908
1908
|
type: task
|
|
1909
|
-
size:
|
|
1909
|
+
size: 26668
|
|
1910
1910
|
- path: development/tasks/audit-codebase.md
|
|
1911
|
-
hash: sha256:
|
|
1911
|
+
hash: sha256:7ed763898169e9ef4f199f1d6f23b68c0e5e2c500d150e72fe51fe1119ee6cc9
|
|
1912
1912
|
type: task
|
|
1913
|
-
size:
|
|
1913
|
+
size: 10525
|
|
1914
1914
|
- path: development/tasks/audit-tailwind-config.md
|
|
1915
|
-
hash: sha256:
|
|
1915
|
+
hash: sha256:a4de4414e09d487db0829c6439c05dcc25fd6311ab0b70bd5bb4909add68e4e5
|
|
1916
1916
|
type: task
|
|
1917
|
-
size:
|
|
1917
|
+
size: 7523
|
|
1918
1918
|
- path: development/tasks/audit-utilities.md
|
|
1919
|
-
hash: sha256:
|
|
1919
|
+
hash: sha256:417200f99faa056cbdeb0e51aa9277507fd28041da1e521aa96e5a744184eeed
|
|
1920
1920
|
type: task
|
|
1921
|
-
size:
|
|
1921
|
+
size: 8131
|
|
1922
1922
|
- path: development/tasks/blocks/agent-prompt-template.md
|
|
1923
1923
|
hash: sha256:589c56f7a9bf968905fdf47c65776b67609f96e1b763c170cfa3b4c3529a3cbc
|
|
1924
1924
|
type: task
|
|
@@ -1940,25 +1940,25 @@ files:
|
|
|
1940
1940
|
type: task
|
|
1941
1941
|
size: 5300
|
|
1942
1942
|
- path: development/tasks/bootstrap-shadcn-library.md
|
|
1943
|
-
hash: sha256:
|
|
1943
|
+
hash: sha256:374d142a38bfa4e6ee82d3dcf2fb44acb573f1b38dfbba5bf7dc931ad24e36be
|
|
1944
1944
|
type: task
|
|
1945
|
-
size:
|
|
1945
|
+
size: 7604
|
|
1946
1946
|
- path: development/tasks/brownfield-create-epic.md
|
|
1947
|
-
hash: sha256:
|
|
1947
|
+
hash: sha256:6de7c3a222a979438960ac03d278ad0ca2b3501c48bd27b17e12f77e50e89f20
|
|
1948
1948
|
type: task
|
|
1949
|
-
size:
|
|
1949
|
+
size: 17995
|
|
1950
1950
|
- path: development/tasks/brownfield-create-story.md
|
|
1951
|
-
hash: sha256:
|
|
1951
|
+
hash: sha256:c3a16a3698431e3b9c327c61c64f5f50212cdb9b1fc91ec1a5bea0f957a57131
|
|
1952
1952
|
type: task
|
|
1953
|
-
size:
|
|
1953
|
+
size: 9954
|
|
1954
1954
|
- path: development/tasks/build-autonomous.md
|
|
1955
1955
|
hash: sha256:e8dab3d13ae816a1543a220561024b57d692a39a316ce29efd1ca7c6405ec304
|
|
1956
1956
|
type: task
|
|
1957
1957
|
size: 6544
|
|
1958
1958
|
- path: development/tasks/build-component.md
|
|
1959
|
-
hash: sha256:
|
|
1959
|
+
hash: sha256:f8250b1da525d26971ea060676563886a938c399001d280eac663a6bb105ee71
|
|
1960
1960
|
type: task
|
|
1961
|
-
size:
|
|
1961
|
+
size: 13875
|
|
1962
1962
|
- path: development/tasks/build-resume.md
|
|
1963
1963
|
hash: sha256:5eb57ca6ffbc122c3164ac1fe289eef036db443d9d5d5a8e99c0c92087df31ce
|
|
1964
1964
|
type: task
|
|
@@ -1972,277 +1972,277 @@ files:
|
|
|
1972
1972
|
type: task
|
|
1973
1973
|
size: 4644
|
|
1974
1974
|
- path: development/tasks/calculate-roi.md
|
|
1975
|
-
hash: sha256:
|
|
1975
|
+
hash: sha256:c9e477921a8b4e41efdf72a2a1f5b28befb3bb88788731202e4037768695e6f1
|
|
1976
1976
|
type: task
|
|
1977
|
-
size:
|
|
1977
|
+
size: 11523
|
|
1978
1978
|
- path: development/tasks/check-docs-links.md
|
|
1979
1979
|
hash: sha256:3731fb65d733a738391896ac22a7cea01f32b6468b703daf0b3b8ab8253a167c
|
|
1980
1980
|
type: task
|
|
1981
1981
|
size: 3083
|
|
1982
1982
|
- path: development/tasks/ci-cd-configuration.md
|
|
1983
|
-
hash: sha256:
|
|
1983
|
+
hash: sha256:6699393e14e63c9d4dcca4ed19d77c59c9867f2bfe0176cd0d5f1bed8f4984d1
|
|
1984
1984
|
type: task
|
|
1985
|
-
size:
|
|
1985
|
+
size: 20859
|
|
1986
1986
|
- path: development/tasks/cleanup-utilities.md
|
|
1987
|
-
hash: sha256:
|
|
1987
|
+
hash: sha256:9945631fb01d142ea51cf4f2f6473d3c611168b892e71e6b3b8c218d1b2b77f7
|
|
1988
1988
|
type: task
|
|
1989
|
-
size:
|
|
1989
|
+
size: 17917
|
|
1990
1990
|
- path: development/tasks/cleanup-worktrees.md
|
|
1991
1991
|
hash: sha256:2e6c43425ae86e336884246cb3ab8a6712d5715e34e1dbbfc3f488ae9965303b
|
|
1992
1992
|
type: task
|
|
1993
1993
|
size: 1091
|
|
1994
1994
|
- path: development/tasks/collaborative-edit.md
|
|
1995
|
-
hash: sha256:
|
|
1995
|
+
hash: sha256:3cb6144af3d75ea629526b198200a6a8eb394b0e8cb4b9857dcc5eec08ad5c6a
|
|
1996
1996
|
type: task
|
|
1997
|
-
size:
|
|
1997
|
+
size: 32266
|
|
1998
1998
|
- path: development/tasks/compose-molecule.md
|
|
1999
|
-
hash: sha256:
|
|
1999
|
+
hash: sha256:7cb06d2f43212ae656c126dc062b6319381f798a2ef0fb54ba231e02c9caa1ef
|
|
2000
2000
|
type: task
|
|
2001
|
-
size:
|
|
2001
|
+
size: 6672
|
|
2002
2002
|
- path: development/tasks/consolidate-patterns.md
|
|
2003
|
-
hash: sha256:
|
|
2003
|
+
hash: sha256:c3b19467c77367181b7a9a0d9bad2e3205d1a04474e462ada7c39154f72d4e28
|
|
2004
2004
|
type: task
|
|
2005
|
-
size:
|
|
2005
|
+
size: 11306
|
|
2006
2006
|
- path: development/tasks/correct-course.md
|
|
2007
|
-
hash: sha256:
|
|
2007
|
+
hash: sha256:d74b3093059ead1a894aac34ac8eb4ccf5d0b6cca59a2e57796cddbb1e547cf7
|
|
2008
2008
|
type: task
|
|
2009
|
-
size:
|
|
2009
|
+
size: 11643
|
|
2010
2010
|
- path: development/tasks/create-agent.md
|
|
2011
2011
|
hash: sha256:7dbe6bf44dd3fb5cc8bc868e459f3cc689ff16576fdd91ad0cc7ebf31b34aab8
|
|
2012
2012
|
type: task
|
|
2013
2013
|
size: 31965
|
|
2014
2014
|
- path: development/tasks/create-brownfield-story.md
|
|
2015
|
-
hash: sha256:
|
|
2015
|
+
hash: sha256:326f3154c958927b5a70043c72b0c99d86d8f39439d5d06c977dc84e228102a5
|
|
2016
2016
|
type: task
|
|
2017
|
-
size:
|
|
2017
|
+
size: 23117
|
|
2018
2018
|
- path: development/tasks/create-deep-research-prompt.md
|
|
2019
|
-
hash: sha256:
|
|
2019
|
+
hash: sha256:8a8bf807b9fe388e1fe1a58b06633a28079168831c680b3c6ea9aba5b54e1189
|
|
2020
2020
|
type: task
|
|
2021
|
-
size:
|
|
2021
|
+
size: 12354
|
|
2022
2022
|
- path: development/tasks/create-doc.md
|
|
2023
|
-
hash: sha256:
|
|
2023
|
+
hash: sha256:456d4816011e52e51ad2713db2e59e4f34824e87c2eaca5d15f39d5ac6e1a965
|
|
2024
2024
|
type: task
|
|
2025
|
-
size:
|
|
2025
|
+
size: 10524
|
|
2026
2026
|
- path: development/tasks/create-next-story.md
|
|
2027
|
-
hash: sha256:
|
|
2027
|
+
hash: sha256:abc8613a6167a3249754cba4e95147eb31dcaade6d9aa7af076bebe0a69dda32
|
|
2028
2028
|
type: task
|
|
2029
|
-
size:
|
|
2029
|
+
size: 30800
|
|
2030
2030
|
- path: development/tasks/create-service.md
|
|
2031
2031
|
hash: sha256:5ad5920b06934637f8057e53d5acdbb918c71cd7990bfea41177f74b09f82889
|
|
2032
2032
|
type: task
|
|
2033
2033
|
size: 9912
|
|
2034
2034
|
- path: development/tasks/create-suite.md
|
|
2035
|
-
hash: sha256:
|
|
2035
|
+
hash: sha256:0f12b1d569fa562bcca7007964189095510ee3e9ac6d49ba2cad51cb20fe3f24
|
|
2036
2036
|
type: task
|
|
2037
|
-
size:
|
|
2037
|
+
size: 7264
|
|
2038
2038
|
- path: development/tasks/create-task.md
|
|
2039
|
-
hash: sha256:
|
|
2039
|
+
hash: sha256:1c3e4f1c48c224118053e12815faf694e515cf61ccf2d53ffd550e2d13de5f98
|
|
2040
2040
|
type: task
|
|
2041
|
-
size:
|
|
2041
|
+
size: 9815
|
|
2042
2042
|
- path: development/tasks/create-workflow.md
|
|
2043
|
-
hash: sha256:
|
|
2043
|
+
hash: sha256:c28d43c8599dbdf1ddce19659d6d3185ec733a184d131b0f561025dc9c58c936
|
|
2044
2044
|
type: task
|
|
2045
|
-
size:
|
|
2045
|
+
size: 11620
|
|
2046
2046
|
- path: development/tasks/create-worktree.md
|
|
2047
2047
|
hash: sha256:bcbd555266876c08cf5a1a9e96525f1f70cd421b1361ba8a84b5cf814f854f91
|
|
2048
2048
|
type: task
|
|
2049
2049
|
size: 9221
|
|
2050
2050
|
- path: development/tasks/db-analyze-hotpaths.md
|
|
2051
|
-
hash: sha256:
|
|
2051
|
+
hash: sha256:b7fcc03a126d50d80f79ebc4cb41bdc7fb4c6b633bb83ad07ffa92f3e6cd9979
|
|
2052
2052
|
type: task
|
|
2053
|
-
size:
|
|
2053
|
+
size: 12626
|
|
2054
2054
|
- path: development/tasks/db-apply-migration.md
|
|
2055
|
-
hash: sha256:
|
|
2055
|
+
hash: sha256:99ee48ad5440e8d0b1cf2d04e508652bb310e0dc56b97d1918d7f13f6f479a28
|
|
2056
2056
|
type: task
|
|
2057
|
-
size:
|
|
2057
|
+
size: 7920
|
|
2058
2058
|
- path: development/tasks/db-bootstrap.md
|
|
2059
|
-
hash: sha256:
|
|
2059
|
+
hash: sha256:c92e3dc388589c0984ca037da25077a4b93e843081786a88c33113e0e5fc9d68
|
|
2060
2060
|
type: task
|
|
2061
|
-
size:
|
|
2061
|
+
size: 12906
|
|
2062
2062
|
- path: development/tasks/db-domain-modeling.md
|
|
2063
|
-
hash: sha256:
|
|
2063
|
+
hash: sha256:baa55fb2cda8548360338cd2eb9c44f64c3b7f0e7b9e712ee1f14638b39febe2
|
|
2064
2064
|
type: task
|
|
2065
|
-
size:
|
|
2065
|
+
size: 15262
|
|
2066
2066
|
- path: development/tasks/db-dry-run.md
|
|
2067
|
-
hash: sha256:
|
|
2067
|
+
hash: sha256:73cedbf3f60ed1754a112c02a2ec45a2bd8088b312010a9d7400b80b4c9abb24
|
|
2068
2068
|
type: task
|
|
2069
|
-
size:
|
|
2069
|
+
size: 5808
|
|
2070
2070
|
- path: development/tasks/db-env-check.md
|
|
2071
|
-
hash: sha256:
|
|
2071
|
+
hash: sha256:6ef5574b862eaf8ee0d98088378f2a33c0cebbf86c062b2b57da4df6dd086df1
|
|
2072
2072
|
type: task
|
|
2073
|
-
size:
|
|
2073
|
+
size: 5410
|
|
2074
2074
|
- path: development/tasks/db-explain.md
|
|
2075
|
-
hash: sha256:
|
|
2075
|
+
hash: sha256:2555b5260c486ba7821ad361c4a8204897f38f455fc308875c2030972d608cbd
|
|
2076
2076
|
type: task
|
|
2077
|
-
size:
|
|
2077
|
+
size: 12138
|
|
2078
2078
|
- path: development/tasks/db-impersonate.md
|
|
2079
|
-
hash: sha256:
|
|
2079
|
+
hash: sha256:5340ca09a831694ad178f5aad9b4f9fb169c03df35fb4e8af94b47bcdbeeb3b5
|
|
2080
2080
|
type: task
|
|
2081
|
-
size:
|
|
2081
|
+
size: 9900
|
|
2082
2082
|
- path: development/tasks/db-load-csv.md
|
|
2083
|
-
hash: sha256:
|
|
2083
|
+
hash: sha256:61f57afbd2d75b6fb993858db11ba6d33406188881bb81294aa54816bc7d7c6d
|
|
2084
2084
|
type: task
|
|
2085
|
-
size:
|
|
2085
|
+
size: 11922
|
|
2086
2086
|
- path: development/tasks/db-policy-apply.md
|
|
2087
|
-
hash: sha256:
|
|
2087
|
+
hash: sha256:b3db9f9ccab44c2f220bc21a3cca618eff573613a39996b07dd833e8a4516a7b
|
|
2088
2088
|
type: task
|
|
2089
|
-
size:
|
|
2089
|
+
size: 14750
|
|
2090
2090
|
- path: development/tasks/db-rls-audit.md
|
|
2091
|
-
hash: sha256:
|
|
2091
|
+
hash: sha256:313c00a6d78e4afd8bd75d994ac6f0a52516d9b26c5e327c5f61066353d3d900
|
|
2092
2092
|
type: task
|
|
2093
|
-
size:
|
|
2093
|
+
size: 8612
|
|
2094
2094
|
- path: development/tasks/db-rollback.md
|
|
2095
|
-
hash: sha256:
|
|
2095
|
+
hash: sha256:d278b03476972581baf45d7db77724f6dea9029ee2c53c3c9fb7ddf692aaaff3
|
|
2096
2096
|
type: task
|
|
2097
|
-
size:
|
|
2097
|
+
size: 16113
|
|
2098
2098
|
- path: development/tasks/db-run-sql.md
|
|
2099
|
-
hash: sha256:
|
|
2099
|
+
hash: sha256:adddcbcb2fbd89a1e263e859ed88af6704a48e1b1f101d072692aaa47f96c077
|
|
2100
2100
|
type: task
|
|
2101
|
-
size:
|
|
2101
|
+
size: 11843
|
|
2102
2102
|
- path: development/tasks/db-schema-audit.md
|
|
2103
|
-
hash: sha256:
|
|
2103
|
+
hash: sha256:452ba6ae4427315ac0aae1543dda2cb6908d578f9c09ef1a8b548f7204f9b05e
|
|
2104
2104
|
type: task
|
|
2105
|
-
size:
|
|
2105
|
+
size: 24843
|
|
2106
2106
|
- path: development/tasks/db-seed.md
|
|
2107
|
-
hash: sha256:
|
|
2107
|
+
hash: sha256:01ea551521d1d60a9e00c798cd280ff97d91cefd2ef5f6eb9193824995e7b4d8
|
|
2108
2108
|
type: task
|
|
2109
|
-
size:
|
|
2109
|
+
size: 7908
|
|
2110
2110
|
- path: development/tasks/db-smoke-test.md
|
|
2111
|
-
hash: sha256:
|
|
2111
|
+
hash: sha256:839168824bae7324710f6a427134deae86b8ef3e0e60f484e009b08e8ebf8d76
|
|
2112
2112
|
type: task
|
|
2113
|
-
size:
|
|
2113
|
+
size: 7327
|
|
2114
2114
|
- path: development/tasks/db-snapshot.md
|
|
2115
|
-
hash: sha256:
|
|
2115
|
+
hash: sha256:b6e5841f88df8e600d6e250601b6e7c5a3b0cad128549fd83d0d5802230a675b
|
|
2116
2116
|
type: task
|
|
2117
|
-
size:
|
|
2117
|
+
size: 11413
|
|
2118
2118
|
- path: development/tasks/db-squad-integration.md
|
|
2119
|
-
hash: sha256:
|
|
2119
|
+
hash: sha256:7545179cc75cf584f21f57a26b01de2909b2647263496ca988481ff472474c34
|
|
2120
2120
|
type: task
|
|
2121
|
-
size:
|
|
2121
|
+
size: 16462
|
|
2122
2122
|
- path: development/tasks/db-supabase-setup.md
|
|
2123
|
-
hash: sha256:
|
|
2123
|
+
hash: sha256:6ac9336e18bf206f9729cb367c6bd9f4b69dff4de81cfcb61415273b3de9aa91
|
|
2124
2124
|
type: task
|
|
2125
|
-
size:
|
|
2125
|
+
size: 15705
|
|
2126
2126
|
- path: development/tasks/db-verify-order.md
|
|
2127
|
-
hash: sha256:
|
|
2127
|
+
hash: sha256:716407e7f77a13a00de71ec5cdcbce743c73846ea7e7c1713d274aa196a05b04
|
|
2128
2128
|
type: task
|
|
2129
|
-
size:
|
|
2129
|
+
size: 11188
|
|
2130
2130
|
- path: development/tasks/delegate-to-external-executor.md
|
|
2131
2131
|
hash: sha256:acabae837bce23bc31241fcbc5b1c53137fb7474a9359812d39693252d63300e
|
|
2132
2132
|
type: task
|
|
2133
2133
|
size: 4499
|
|
2134
2134
|
- path: development/tasks/deprecate-component.md
|
|
2135
|
-
hash: sha256:
|
|
2135
|
+
hash: sha256:a32b8834ff6d8a6b2e8fb5eeefca05c55b54cabecf38f23a52a79b2cf5776302
|
|
2136
2136
|
type: task
|
|
2137
|
-
size:
|
|
2137
|
+
size: 29479
|
|
2138
2138
|
- path: development/tasks/dev-apply-qa-fixes.md
|
|
2139
|
-
hash: sha256:
|
|
2139
|
+
hash: sha256:1ef3e99da778ce464cea14cf350b760ae6ab4ee2bfd541f272ff994dff53671b
|
|
2140
2140
|
type: task
|
|
2141
|
-
size:
|
|
2141
|
+
size: 8094
|
|
2142
2142
|
- path: development/tasks/dev-backlog-debt.md
|
|
2143
|
-
hash: sha256:
|
|
2143
|
+
hash: sha256:de102cca4bcdbb5960344db0fec81fe98c0fece6ebdfc3dede5527c6bdd3f954
|
|
2144
2144
|
type: task
|
|
2145
|
-
size:
|
|
2145
|
+
size: 11051
|
|
2146
2146
|
- path: development/tasks/dev-develop-story.md
|
|
2147
|
-
hash: sha256:
|
|
2147
|
+
hash: sha256:1fbdb2f53ae372c4f84becc0f4c9eabbc017c234ff6b1be4dafdd46a1f85bca8
|
|
2148
2148
|
type: task
|
|
2149
|
-
size:
|
|
2149
|
+
size: 28669
|
|
2150
2150
|
- path: development/tasks/dev-improve-code-quality.md
|
|
2151
|
-
hash: sha256:
|
|
2151
|
+
hash: sha256:7f5289a172e69c55b406575fb012a45fd4bfc9af4fe504fff33e07f2a1c65b66
|
|
2152
2152
|
type: task
|
|
2153
|
-
size:
|
|
2153
|
+
size: 24731
|
|
2154
2154
|
- path: development/tasks/dev-optimize-performance.md
|
|
2155
|
-
hash: sha256:
|
|
2155
|
+
hash: sha256:6986bce4a1e51a90650645937311fe703ca0b7e6ae5700f76e9990e9d0f75a34
|
|
2156
2156
|
type: task
|
|
2157
|
-
size:
|
|
2157
|
+
size: 29277
|
|
2158
2158
|
- path: development/tasks/dev-suggest-refactoring.md
|
|
2159
|
-
hash: sha256:
|
|
2159
|
+
hash: sha256:f1b645ac4cad5c88abe83a5f9047830de14f339a601d38d2234a376d086cdb67
|
|
2160
2160
|
type: task
|
|
2161
|
-
size:
|
|
2161
|
+
size: 24678
|
|
2162
2162
|
- path: development/tasks/dev-validate-next-story.md
|
|
2163
|
-
hash: sha256:
|
|
2163
|
+
hash: sha256:cd0494ab1cc3a62bba59c0436081d7af72211d381540581d605c2e97d6ea8ead
|
|
2164
2164
|
type: task
|
|
2165
|
-
size:
|
|
2165
|
+
size: 11362
|
|
2166
2166
|
- path: development/tasks/document-gotchas.md
|
|
2167
2167
|
hash: sha256:20a5771dd6bce351084fbad746efc8067745059091a43baedbf1c665833f4644
|
|
2168
2168
|
type: task
|
|
2169
2169
|
size: 10444
|
|
2170
2170
|
- path: development/tasks/document-project.md
|
|
2171
|
-
hash: sha256:
|
|
2171
|
+
hash: sha256:30545168e0f16ed3b3e0017c8117aaff39134328c1a32d58ff674fb2d0eadc43
|
|
2172
2172
|
type: task
|
|
2173
|
-
size:
|
|
2173
|
+
size: 18036
|
|
2174
2174
|
- path: development/tasks/environment-bootstrap.md
|
|
2175
|
-
hash: sha256:
|
|
2175
|
+
hash: sha256:663694439090bc552ee5a90fb02eb861e3859e9529d3ba50654c1d53316f67e0
|
|
2176
2176
|
type: task
|
|
2177
|
-
size:
|
|
2177
|
+
size: 45576
|
|
2178
2178
|
- path: development/tasks/environment-promotion-pipeline.md
|
|
2179
2179
|
hash: sha256:2bd746e113a94884f45f13c6b67ea9d72b424508ed757810c2fb25521d873b3f
|
|
2180
2180
|
type: task
|
|
2181
2181
|
size: 14667
|
|
2182
2182
|
- path: development/tasks/execute-checklist.md
|
|
2183
|
-
hash: sha256:
|
|
2183
|
+
hash: sha256:fbcc18bff917af83a48dd513c9d970df846d724e5e4e19d2e4835f3072875cdd
|
|
2184
2184
|
type: task
|
|
2185
|
-
size:
|
|
2185
|
+
size: 8809
|
|
2186
2186
|
- path: development/tasks/execute-epic-plan.md
|
|
2187
2187
|
hash: sha256:0825d7dcc0649892d3c4a7b8c0a0c15c1c5750c78d35e79ce0b6a984ac86b8c0
|
|
2188
2188
|
type: task
|
|
2189
2189
|
size: 25716
|
|
2190
2190
|
- path: development/tasks/export-design-tokens-dtcg.md
|
|
2191
|
-
hash: sha256:
|
|
2191
|
+
hash: sha256:ce37d53f78d6ddab720e6d534d9da629497264ed72b620bc4ff1306ad0f6ffeb
|
|
2192
2192
|
type: task
|
|
2193
|
-
size:
|
|
2193
|
+
size: 7226
|
|
2194
2194
|
- path: development/tasks/extend-pattern.md
|
|
2195
|
-
hash: sha256:
|
|
2195
|
+
hash: sha256:5f2f3df146a82fd70ab0847208a0f03bb3ed124bb7f439bce7824e9a410bd5b6
|
|
2196
2196
|
type: task
|
|
2197
|
-
size:
|
|
2197
|
+
size: 5858
|
|
2198
2198
|
- path: development/tasks/extract-patterns.md
|
|
2199
2199
|
hash: sha256:e3e47414b5734267abcbc4c248d9435cb4529a7fc359bb2eaccaa3fa8903a124
|
|
2200
2200
|
type: task
|
|
2201
2201
|
size: 8924
|
|
2202
2202
|
- path: development/tasks/extract-tokens.md
|
|
2203
|
-
hash: sha256:
|
|
2203
|
+
hash: sha256:10fa0f5f0efa747e9ccb1963b979de4904bdbaf33b202b77f6524321b8b312ce
|
|
2204
2204
|
type: task
|
|
2205
|
-
size:
|
|
2205
|
+
size: 13101
|
|
2206
2206
|
- path: development/tasks/facilitate-brainstorming-session.md
|
|
2207
|
-
hash: sha256:
|
|
2207
|
+
hash: sha256:cbe305d1e07999640bb60a06e6ec57bf5af3836bda23abafc898ee91a85396a5
|
|
2208
2208
|
type: task
|
|
2209
|
-
size:
|
|
2209
|
+
size: 13918
|
|
2210
2210
|
- path: development/tasks/generate-agent-handoff.md
|
|
2211
2211
|
hash: sha256:4b409dec3a3fc59d6274a1acab1529532fd29f71b85a1b417cf6d313bbc53b89
|
|
2212
2212
|
type: task
|
|
2213
2213
|
size: 11338
|
|
2214
2214
|
- path: development/tasks/generate-ai-frontend-prompt.md
|
|
2215
|
-
hash: sha256:
|
|
2215
|
+
hash: sha256:16b1b7087472906be7253026d7997f4be09c6bd7217543cd8e9d25edfb59798e
|
|
2216
2216
|
type: task
|
|
2217
|
-
size:
|
|
2217
|
+
size: 9216
|
|
2218
2218
|
- path: development/tasks/generate-documentation.md
|
|
2219
|
-
hash: sha256:
|
|
2219
|
+
hash: sha256:37a05e6b8ba3e39ea62c30f1ac60dd37015d7c5735da2c5581d7d78e49957e73
|
|
2220
2220
|
type: task
|
|
2221
|
-
size:
|
|
2221
|
+
size: 6649
|
|
2222
2222
|
- path: development/tasks/generate-migration-strategy.md
|
|
2223
|
-
hash: sha256:
|
|
2223
|
+
hash: sha256:1d1bdfd7cf0458981f83c34b8f2bfc38b7c6d216c05158e51137ec68401a7847
|
|
2224
2224
|
type: task
|
|
2225
|
-
size:
|
|
2225
|
+
size: 13964
|
|
2226
2226
|
- path: development/tasks/generate-shock-report.md
|
|
2227
|
-
hash: sha256:
|
|
2227
|
+
hash: sha256:5417a810f7fb09bfc1f569f56b3ae482c5bd390b09fe0c0446dcdc8e41293d19
|
|
2228
2228
|
type: task
|
|
2229
|
-
size:
|
|
2229
|
+
size: 13520
|
|
2230
2230
|
- path: development/tasks/github-devops-github-pr-automation.md
|
|
2231
|
-
hash: sha256:
|
|
2231
|
+
hash: sha256:f3ee3181ff2d218df569bbc6ff91a2171480cdb73b9bca236a36104a5063748b
|
|
2232
2232
|
type: task
|
|
2233
|
-
size:
|
|
2233
|
+
size: 19493
|
|
2234
2234
|
- path: development/tasks/github-devops-pre-push-quality-gate.md
|
|
2235
2235
|
hash: sha256:90969a5b843c976b8cd902c55517589c64c88bd4001590dbc4b107703fa12ce6
|
|
2236
2236
|
type: task
|
|
2237
2237
|
size: 24774
|
|
2238
2238
|
- path: development/tasks/github-devops-repository-cleanup.md
|
|
2239
|
-
hash: sha256:
|
|
2239
|
+
hash: sha256:8554eea6d3a73ce9012455726e8c5f2da9257cd570cb06f88a47a8871fe71b07
|
|
2240
2240
|
type: task
|
|
2241
|
-
size:
|
|
2241
|
+
size: 8752
|
|
2242
2242
|
- path: development/tasks/github-devops-version-management.md
|
|
2243
|
-
hash: sha256:
|
|
2243
|
+
hash: sha256:8476eaaf6f5e9ded987b48d4e562db30a861f6f600966b6230500987b8201eba
|
|
2244
2244
|
type: task
|
|
2245
|
-
size:
|
|
2245
|
+
size: 11738
|
|
2246
2246
|
- path: development/tasks/github-issue-triage.md
|
|
2247
2247
|
hash: sha256:eef7e439eba016b1b814bb6761c0191c91afb573e5cd4fdff2ec08c89d1c1d28
|
|
2248
2248
|
type: task
|
|
@@ -2272,33 +2272,33 @@ files:
|
|
|
2272
2272
|
type: task
|
|
2273
2273
|
size: 3473
|
|
2274
2274
|
- path: development/tasks/improve-self.md
|
|
2275
|
-
hash: sha256:
|
|
2275
|
+
hash: sha256:c2e21511eb000140ce7be7f4859c8e50e86c51965991322b66aa98cb26ed4498
|
|
2276
2276
|
type: task
|
|
2277
|
-
size:
|
|
2277
|
+
size: 19105
|
|
2278
2278
|
- path: development/tasks/index-docs.md
|
|
2279
|
-
hash: sha256:
|
|
2279
|
+
hash: sha256:934da9787ef0d5e26313d5fb28942ff76c957ca9079d8c09f84f476ee0902bd3
|
|
2280
2280
|
type: task
|
|
2281
|
-
size:
|
|
2281
|
+
size: 9782
|
|
2282
2282
|
- path: development/tasks/infrastructure-assessment.md
|
|
2283
2283
|
hash: sha256:477f61cc6f4e77f5773a0d6ac773b8409321495d4a29778fb16583845fdb8b56
|
|
2284
2284
|
type: task
|
|
2285
2285
|
size: 12106
|
|
2286
2286
|
- path: development/tasks/init-project-status.md
|
|
2287
|
-
hash: sha256:
|
|
2287
|
+
hash: sha256:8c2de37e78feac175312ac28150450e6ad5aa10d27826b5cb83d6bcdaeeca351
|
|
2288
2288
|
type: task
|
|
2289
|
-
size:
|
|
2289
|
+
size: 10795
|
|
2290
2290
|
- path: development/tasks/integrate-squad.md
|
|
2291
|
-
hash: sha256:
|
|
2291
|
+
hash: sha256:7827159f7177b417b41b37e32d0b140221839b9eef877a3d142a01dca0d954bd
|
|
2292
2292
|
type: task
|
|
2293
|
-
size:
|
|
2293
|
+
size: 6815
|
|
2294
2294
|
- path: development/tasks/kb-mode-interaction.md
|
|
2295
|
-
hash: sha256:
|
|
2295
|
+
hash: sha256:9ab60327e33b7cf547eb7517095262cba25fb26f67a575752cb204d35ca791e1
|
|
2296
2296
|
type: task
|
|
2297
|
-
size:
|
|
2297
|
+
size: 7185
|
|
2298
2298
|
- path: development/tasks/learn-patterns.md
|
|
2299
|
-
hash: sha256:
|
|
2299
|
+
hash: sha256:a45e6a19260deeea1958c51c9a895293b7866de894ef36e7636c95c3a884019b
|
|
2300
2300
|
type: task
|
|
2301
|
-
size:
|
|
2301
|
+
size: 26890
|
|
2302
2302
|
- path: development/tasks/list-mcps.md
|
|
2303
2303
|
hash: sha256:cac66f5235352e0efddee807f140891d10357b5793a8f6e9e4456b8239a538d3
|
|
2304
2304
|
type: task
|
|
@@ -2320,17 +2320,17 @@ files:
|
|
|
2320
2320
|
type: task
|
|
2321
2321
|
size: 1164
|
|
2322
2322
|
- path: development/tasks/modify-agent.md
|
|
2323
|
-
hash: sha256:
|
|
2323
|
+
hash: sha256:39a63f1248ac0c58a955b1bfe1fb089d697d1e42c951c1a4a010e4d74855b8f1
|
|
2324
2324
|
type: task
|
|
2325
|
-
size:
|
|
2325
|
+
size: 9580
|
|
2326
2326
|
- path: development/tasks/modify-task.md
|
|
2327
|
-
hash: sha256:
|
|
2327
|
+
hash: sha256:e763b83c72717981052bb18500e62051498b5f324af924d3ed00d27419e5d485
|
|
2328
2328
|
type: task
|
|
2329
|
-
size:
|
|
2329
|
+
size: 10611
|
|
2330
2330
|
- path: development/tasks/modify-workflow.md
|
|
2331
|
-
hash: sha256:
|
|
2331
|
+
hash: sha256:7880bb97b8c7e691644f4155146df5420c33c2ed66b7ee7c73ac11618d0cf9ed
|
|
2332
2332
|
type: task
|
|
2333
|
-
size:
|
|
2333
|
+
size: 13093
|
|
2334
2334
|
- path: development/tasks/next.md
|
|
2335
2335
|
hash: sha256:d734907caed4a2ff30aecb17e8b1ca8db1dc50657f7274051f4384a8969d7972
|
|
2336
2336
|
type: task
|
|
@@ -2372,49 +2372,49 @@ files:
|
|
|
2372
2372
|
type: task
|
|
2373
2373
|
size: 21399
|
|
2374
2374
|
- path: development/tasks/po-backlog-add.md
|
|
2375
|
-
hash: sha256:
|
|
2375
|
+
hash: sha256:2dc9bbe52bccb577bfdf8359d29d1a88b3512b5e7c93da9ee4a0c3f274da69c7
|
|
2376
2376
|
type: task
|
|
2377
|
-
size:
|
|
2377
|
+
size: 8317
|
|
2378
2378
|
- path: development/tasks/po-close-story.md
|
|
2379
2379
|
hash: sha256:7ba7f8374269933bc5d543a70901a6953b7925a62530ee019cae0fdccc691ee7
|
|
2380
2380
|
type: task
|
|
2381
2381
|
size: 10955
|
|
2382
2382
|
- path: development/tasks/po-manage-story-backlog.md
|
|
2383
|
-
hash: sha256:
|
|
2383
|
+
hash: sha256:02c2601ba50db029bf015ddec7f74bf6a84d63b6c8255c0790b91db1916d0a12
|
|
2384
2384
|
type: task
|
|
2385
|
-
size:
|
|
2385
|
+
size: 14214
|
|
2386
2386
|
- path: development/tasks/po-pull-story-from-clickup.md
|
|
2387
|
-
hash: sha256:
|
|
2387
|
+
hash: sha256:3934798feee06ebe2f376439a94167f9e4937b78946773bc0221e50bae1b604a
|
|
2388
2388
|
type: task
|
|
2389
|
-
size:
|
|
2389
|
+
size: 13471
|
|
2390
2390
|
- path: development/tasks/po-pull-story.md
|
|
2391
|
-
hash: sha256:
|
|
2391
|
+
hash: sha256:662c25e571d34d282be1241fe3848a254f3928e01d7b90a5ee5624707e8dd86e
|
|
2392
2392
|
type: task
|
|
2393
|
-
size:
|
|
2393
|
+
size: 7219
|
|
2394
2394
|
- path: development/tasks/po-stories-index.md
|
|
2395
|
-
hash: sha256:
|
|
2395
|
+
hash: sha256:5feff70afc7e6c37def813807fa93e62bbc516308035e8a5f00767c52ab931a4
|
|
2396
2396
|
type: task
|
|
2397
|
-
size:
|
|
2397
|
+
size: 7611
|
|
2398
2398
|
- path: development/tasks/po-sync-story-to-clickup.md
|
|
2399
|
-
hash: sha256:
|
|
2399
|
+
hash: sha256:c895229ea28573ff735b31165a11316bc60bb5785f9963d3d76631e88b29be9d
|
|
2400
2400
|
type: task
|
|
2401
|
-
size:
|
|
2401
|
+
size: 10969
|
|
2402
2402
|
- path: development/tasks/po-sync-story.md
|
|
2403
|
-
hash: sha256:
|
|
2403
|
+
hash: sha256:95a45db4bc1deda3f92062d4f80ed0f2ec0740eabaac3b66eb91e030e3366c91
|
|
2404
2404
|
type: task
|
|
2405
|
-
size:
|
|
2405
|
+
size: 6899
|
|
2406
2406
|
- path: development/tasks/pr-automation.md
|
|
2407
|
-
hash: sha256:
|
|
2407
|
+
hash: sha256:55bb995b1f8b45e37da250f2298650d4de8204270a9950bf9055ea36b41d8f24
|
|
2408
2408
|
type: task
|
|
2409
|
-
size:
|
|
2409
|
+
size: 19066
|
|
2410
2410
|
- path: development/tasks/project-status.md
|
|
2411
2411
|
hash: sha256:57ca26ffce1e6def31aba60cd32c7a07c6de7d3f983956391010693d31a286dd
|
|
2412
2412
|
type: task
|
|
2413
2413
|
size: 8685
|
|
2414
2414
|
- path: development/tasks/propose-modification.md
|
|
2415
|
-
hash: sha256:
|
|
2415
|
+
hash: sha256:a2108710745c7038af14233fb542780532de33823fa7c0f8c30185fd4aa2c09b
|
|
2416
2416
|
type: task
|
|
2417
|
-
size:
|
|
2417
|
+
size: 23893
|
|
2418
2418
|
- path: development/tasks/publish-npm.md
|
|
2419
2419
|
hash: sha256:c075c87c592bb88976477480123d40cb226f5edb896abf52e78c8ae1840a25e6
|
|
2420
2420
|
type: task
|
|
@@ -2428,17 +2428,17 @@ files:
|
|
|
2428
2428
|
type: task
|
|
2429
2429
|
size: 13991
|
|
2430
2430
|
- path: development/tasks/qa-backlog-add-followup.md
|
|
2431
|
-
hash: sha256:
|
|
2431
|
+
hash: sha256:4ade9d807b32ba31c88c88529bbcc9a0bd78bed9de4e2ad84f7835f24446f3ce
|
|
2432
2432
|
type: task
|
|
2433
|
-
size:
|
|
2433
|
+
size: 9925
|
|
2434
2434
|
- path: development/tasks/qa-browser-console-check.md
|
|
2435
2435
|
hash: sha256:b46de57772fc562d10199a6e310d5b178c4c3141e5d8d1df9107e01d0d3438ac
|
|
2436
2436
|
type: task
|
|
2437
2437
|
size: 6828
|
|
2438
2438
|
- path: development/tasks/qa-create-fix-request.md
|
|
2439
|
-
hash: sha256:
|
|
2439
|
+
hash: sha256:dc9f5b773f99cc0103ddfbcfad8d01c2c3803294a87f342919567c95200a5681
|
|
2440
2440
|
type: task
|
|
2441
|
-
size:
|
|
2441
|
+
size: 13398
|
|
2442
2442
|
- path: development/tasks/qa-evidence-requirements.md
|
|
2443
2443
|
hash: sha256:68fdd266c602d7480efedb997c48f2afe40217ce88283a1aeab9d6fb09cc6665
|
|
2444
2444
|
type: task
|
|
@@ -2452,13 +2452,13 @@ files:
|
|
|
2452
2452
|
type: task
|
|
2453
2453
|
size: 15920
|
|
2454
2454
|
- path: development/tasks/qa-gate.md
|
|
2455
|
-
hash: sha256:
|
|
2455
|
+
hash: sha256:2c51b2110e7c00432bd724df0248861d278275b2512673d2b6d951da32d618bd
|
|
2456
2456
|
type: task
|
|
2457
|
-
size:
|
|
2457
|
+
size: 10485
|
|
2458
2458
|
- path: development/tasks/qa-generate-tests.md
|
|
2459
|
-
hash: sha256:
|
|
2459
|
+
hash: sha256:2162064f8bf0a35461f4b2bb87389bccccbc73c59de378b5c73df97305fa8718
|
|
2460
2460
|
type: task
|
|
2461
|
-
size:
|
|
2461
|
+
size: 36801
|
|
2462
2462
|
- path: development/tasks/qa-library-validation.md
|
|
2463
2463
|
hash: sha256:8fc0828087e49efebbcf29e5b796783a514a340d8402f641c5f787a4a0291480
|
|
2464
2464
|
type: task
|
|
@@ -2468,45 +2468,45 @@ files:
|
|
|
2468
2468
|
type: task
|
|
2469
2469
|
size: 13063
|
|
2470
2470
|
- path: development/tasks/qa-nfr-assess.md
|
|
2471
|
-
hash: sha256:
|
|
2471
|
+
hash: sha256:ca9028e22ee2ab98ed6fa34db461011d853c3c0e0c5d3a7ac46ef8231d00f69c
|
|
2472
2472
|
type: task
|
|
2473
|
-
size:
|
|
2473
|
+
size: 11853
|
|
2474
2474
|
- path: development/tasks/qa-review-build.md
|
|
2475
2475
|
hash: sha256:11f3374377b5ffd3d6cd2d962574d40b96caa3e0ff19d91c74103e7505678636
|
|
2476
2476
|
type: task
|
|
2477
2477
|
size: 31228
|
|
2478
2478
|
- path: development/tasks/qa-review-proposal.md
|
|
2479
|
-
hash: sha256:
|
|
2479
|
+
hash: sha256:713f7cbc6aa9b84bf60ab01c7c4c6990e94397aeb9f7aeb6d143fceca53963f2
|
|
2480
2480
|
type: task
|
|
2481
|
-
size:
|
|
2481
|
+
size: 34984
|
|
2482
2482
|
- path: development/tasks/qa-review-story.md
|
|
2483
|
-
hash: sha256:
|
|
2483
|
+
hash: sha256:6921f5e37f613f1d53fba5fd942206c184a9f5027e852a0f2e433101cc21a1b2
|
|
2484
2484
|
type: task
|
|
2485
|
-
size:
|
|
2485
|
+
size: 24386
|
|
2486
2486
|
- path: development/tasks/qa-risk-profile.md
|
|
2487
|
-
hash: sha256:
|
|
2487
|
+
hash: sha256:fde330be237bb72cfee1550bb8066ff08cf8530d4725304a4f5923520432bfb2
|
|
2488
2488
|
type: task
|
|
2489
|
-
size:
|
|
2489
|
+
size: 12881
|
|
2490
2490
|
- path: development/tasks/qa-run-tests.md
|
|
2491
|
-
hash: sha256:
|
|
2491
|
+
hash: sha256:4d00a463b29c8f7df5c1ef5d9349f4bcaa8143f77e6848c5b27726fa81f5131f
|
|
2492
2492
|
type: task
|
|
2493
|
-
size:
|
|
2493
|
+
size: 5543
|
|
2494
2494
|
- path: development/tasks/qa-security-checklist.md
|
|
2495
2495
|
hash: sha256:599280745fb21b56a18fa720001b851506a2cd1acc8da32505e15ea1dd2431be
|
|
2496
2496
|
type: task
|
|
2497
2497
|
size: 12460
|
|
2498
2498
|
- path: development/tasks/qa-test-design.md
|
|
2499
|
-
hash: sha256:
|
|
2499
|
+
hash: sha256:c0ce54a48804845a4e9bfe24f659a28d4e588b0e088c9febee07cdc4ebd15f44
|
|
2500
2500
|
type: task
|
|
2501
|
-
size:
|
|
2501
|
+
size: 8826
|
|
2502
2502
|
- path: development/tasks/qa-trace-requirements.md
|
|
2503
|
-
hash: sha256:
|
|
2503
|
+
hash: sha256:72d1c8fabeeee0820c15c7ea317545b55a5c1c3cd538c50a9633456fc7d84051
|
|
2504
2504
|
type: task
|
|
2505
|
-
size:
|
|
2505
|
+
size: 11108
|
|
2506
2506
|
- path: development/tasks/release-management.md
|
|
2507
|
-
hash: sha256:
|
|
2507
|
+
hash: sha256:fd83ba9bba32c8df12cf6a04dd33ce9b79991fecfa05e205fe0aafbf1b91801c
|
|
2508
2508
|
type: task
|
|
2509
|
-
size:
|
|
2509
|
+
size: 18970
|
|
2510
2510
|
- path: development/tasks/remove-mcp.md
|
|
2511
2511
|
hash: sha256:d672e0f0500decdefef21a0a10e90b7da60ff587fa169c69767bb3542f71d5d4
|
|
2512
2512
|
type: task
|
|
@@ -2540,13 +2540,13 @@ files:
|
|
|
2540
2540
|
type: task
|
|
2541
2541
|
size: 7800
|
|
2542
2542
|
- path: development/tasks/security-audit.md
|
|
2543
|
-
hash: sha256:
|
|
2543
|
+
hash: sha256:2af4f1b603a0ca3d4a37b6ef986d5e358b2a4c28d4d379b4987fdc496d4a2d02
|
|
2544
2544
|
type: task
|
|
2545
|
-
size:
|
|
2545
|
+
size: 13201
|
|
2546
2546
|
- path: development/tasks/security-scan.md
|
|
2547
|
-
hash: sha256:
|
|
2547
|
+
hash: sha256:4b6b6cca7c84280efb8de055dd1f96ce784bca35c08c7660d7d551f2b370f661
|
|
2548
2548
|
type: task
|
|
2549
|
-
size:
|
|
2549
|
+
size: 18953
|
|
2550
2550
|
- path: development/tasks/self-heal.md
|
|
2551
2551
|
hash: sha256:4a5fe54ba771d5388a86738d7a9ff9cd9aba196a78eed313dc383d02a7957b3a
|
|
2552
2552
|
type: task
|
|
@@ -2556,13 +2556,13 @@ files:
|
|
|
2556
2556
|
type: task
|
|
2557
2557
|
size: 4283
|
|
2558
2558
|
- path: development/tasks/setup-database.md
|
|
2559
|
-
hash: sha256:
|
|
2559
|
+
hash: sha256:b4be60eb0176d79c52fb344d0fa7fc68ec464331efb1174719e4aa03ba12c2c3
|
|
2560
2560
|
type: task
|
|
2561
|
-
size:
|
|
2561
|
+
size: 15582
|
|
2562
2562
|
- path: development/tasks/setup-design-system.md
|
|
2563
|
-
hash: sha256:
|
|
2563
|
+
hash: sha256:e1f834cab907ce616cc1fe316e271bf728f62057c477d289932bcb52bccabda8
|
|
2564
2564
|
type: task
|
|
2565
|
-
size:
|
|
2565
|
+
size: 12627
|
|
2566
2566
|
- path: development/tasks/setup-github.md
|
|
2567
2567
|
hash: sha256:ae7195162f811393f03931d65d6d4c222bc6567ef750dab101875cb046f86470
|
|
2568
2568
|
type: task
|
|
@@ -2580,13 +2580,13 @@ files:
|
|
|
2580
2580
|
type: task
|
|
2581
2581
|
size: 12337
|
|
2582
2582
|
- path: development/tasks/shard-doc.md
|
|
2583
|
-
hash: sha256:
|
|
2583
|
+
hash: sha256:ac9e76cdad8c365546cc6b91e66a2201daba6b2cba06f2bc63204c48a18fbab1
|
|
2584
2584
|
type: task
|
|
2585
|
-
size:
|
|
2585
|
+
size: 14705
|
|
2586
2586
|
- path: development/tasks/sm-create-next-story.md
|
|
2587
|
-
hash: sha256:
|
|
2587
|
+
hash: sha256:c65fc5b65dba52c517ba51988a739eec5e209c78b5976c9d5edb6cc263fac9e7
|
|
2588
2588
|
type: task
|
|
2589
|
-
size:
|
|
2589
|
+
size: 18065
|
|
2590
2590
|
- path: development/tasks/spec-analyze.md
|
|
2591
2591
|
hash: sha256:5a73974cb88ca58274f907416839e8c864a3e35cf832668d3b2c582de3f6b26a
|
|
2592
2592
|
type: task
|
|
@@ -2664,33 +2664,33 @@ files:
|
|
|
2664
2664
|
type: task
|
|
2665
2665
|
size: 11501
|
|
2666
2666
|
- path: development/tasks/sync-documentation.md
|
|
2667
|
-
hash: sha256:
|
|
2667
|
+
hash: sha256:4a109e79bd7179840561b5c19b8f30394d1a719c3477d8e9f49319ad3013aeb1
|
|
2668
2668
|
type: task
|
|
2669
|
-
size:
|
|
2669
|
+
size: 23182
|
|
2670
2670
|
- path: development/tasks/sync-registry-intel.md
|
|
2671
2671
|
hash: sha256:771f14053fc349be2a385f260ea82ce2070216cf6e7b4b593628772c214b5dd7
|
|
2672
2672
|
type: task
|
|
2673
2673
|
size: 1668
|
|
2674
2674
|
- path: development/tasks/tailwind-upgrade.md
|
|
2675
|
-
hash: sha256:
|
|
2675
|
+
hash: sha256:0636474c58bf82fc134867e1e46df4bdd40d257e23cbb26c819c5a45c573b552
|
|
2676
2676
|
type: task
|
|
2677
|
-
size:
|
|
2677
|
+
size: 8149
|
|
2678
2678
|
- path: development/tasks/test-as-user.md
|
|
2679
|
-
hash: sha256:
|
|
2679
|
+
hash: sha256:57bf3789ba78057f253fea9a139f5ca0010e8da4d49081140df2e47bf30bbd6a
|
|
2680
2680
|
type: task
|
|
2681
|
-
size:
|
|
2681
|
+
size: 14040
|
|
2682
2682
|
- path: development/tasks/triage-github-issues.md
|
|
2683
2683
|
hash: sha256:460d80252993ff6da04cec6112918c52df643db8a259bde4c8501a9e88ffa3e5
|
|
2684
2684
|
type: task
|
|
2685
2685
|
size: 10012
|
|
2686
2686
|
- path: development/tasks/undo-last.md
|
|
2687
|
-
hash: sha256:
|
|
2687
|
+
hash: sha256:7929a10ffd4731fc5bb399727cf6feca9faf687e861e81e9308d09eaf8edfe01
|
|
2688
2688
|
type: task
|
|
2689
|
-
size:
|
|
2689
|
+
size: 7522
|
|
2690
2690
|
- path: development/tasks/update-manifest.md
|
|
2691
|
-
hash: sha256:
|
|
2691
|
+
hash: sha256:176da1abf69c2365f1f09c67740cd9b8cf806aa324d66ba2a257662a3f91b3ab
|
|
2692
2692
|
type: task
|
|
2693
|
-
size:
|
|
2693
|
+
size: 9476
|
|
2694
2694
|
- path: development/tasks/update-sinapse.md
|
|
2695
2695
|
hash: sha256:8152c56906792345c8cac62332e251557c51bcb2e53e529cdc98bce969dde950
|
|
2696
2696
|
type: task
|
|
@@ -2700,25 +2700,25 @@ files:
|
|
|
2700
2700
|
type: task
|
|
2701
2701
|
size: 3120
|
|
2702
2702
|
- path: development/tasks/ux-create-wireframe.md
|
|
2703
|
-
hash: sha256:
|
|
2703
|
+
hash: sha256:3781d5b99858158899c7eee441f3c63f10a0546d9c9643914042bc8090a800b7
|
|
2704
2704
|
type: task
|
|
2705
|
-
size:
|
|
2705
|
+
size: 15441
|
|
2706
2706
|
- path: development/tasks/ux-ds-scan-artifact.md
|
|
2707
|
-
hash: sha256:
|
|
2707
|
+
hash: sha256:8e7dcc2120376ed9b722baa9b4133c7e2e169b606a840957794a96246af68717
|
|
2708
2708
|
type: task
|
|
2709
|
-
size:
|
|
2709
|
+
size: 16179
|
|
2710
2710
|
- path: development/tasks/ux-user-research.md
|
|
2711
|
-
hash: sha256:
|
|
2711
|
+
hash: sha256:154f498c7eede3ce9e2481c68e518befad1c83f94af13f031e14e348e360d479
|
|
2712
2712
|
type: task
|
|
2713
|
-
size:
|
|
2713
|
+
size: 13270
|
|
2714
2714
|
- path: development/tasks/validate-agents.md
|
|
2715
2715
|
hash: sha256:82048e2abf2c1278ff0df5fbfe4601bf22ea0450b16d66b8101a366a9bb39c14
|
|
2716
2716
|
type: task
|
|
2717
2717
|
size: 4206
|
|
2718
2718
|
- path: development/tasks/validate-next-story.md
|
|
2719
|
-
hash: sha256:
|
|
2719
|
+
hash: sha256:425002000da0c46d88aabbea481ae20eecddbeef923b8b4765a0dd55004ca2ea
|
|
2720
2720
|
type: task
|
|
2721
|
-
size:
|
|
2721
|
+
size: 16718
|
|
2722
2722
|
- path: development/tasks/validate-tech-preset.md
|
|
2723
2723
|
hash: sha256:4388574067941c01c030886df4969279c4c6952e40cb93f684052384d8c1a5dc
|
|
2724
2724
|
type: task
|
|
@@ -2776,9 +2776,9 @@ files:
|
|
|
2776
2776
|
type: template
|
|
2777
2777
|
size: 7207
|
|
2778
2778
|
- path: development/templates/chrome-brain/scripts/chrome-ensure.cjs
|
|
2779
|
-
hash: sha256:
|
|
2779
|
+
hash: sha256:5aeecbf96aaf95c9e6b1241c5ef7cf3b846731939c0a06a1e1be243e71392460
|
|
2780
2780
|
type: template
|
|
2781
|
-
size:
|
|
2781
|
+
size: 3579
|
|
2782
2782
|
- path: development/templates/chrome-brain/scripts/chrome-ensure.sh
|
|
2783
2783
|
hash: sha256:eab2018b622c8550381c6d4555f4496595859b98401dff63a3036abf8433ebfa
|
|
2784
2784
|
type: template
|
|
@@ -3212,9 +3212,9 @@ files:
|
|
|
3212
3212
|
type: script
|
|
3213
3213
|
size: 16195
|
|
3214
3214
|
- path: infrastructure/scripts/changelog-generator.js
|
|
3215
|
-
hash: sha256:
|
|
3215
|
+
hash: sha256:b8e32c70260f8a3401be1e3d8ab1f1fd175bce05a99abb5644c0862241abd863
|
|
3216
3216
|
type: script
|
|
3217
|
-
size:
|
|
3217
|
+
size: 15600
|
|
3218
3218
|
- path: infrastructure/scripts/cicd-discovery.js
|
|
3219
3219
|
hash: sha256:03645cc37ba842aac88bef0723abc39be0e80d3d1846d377be13d771d9cb175d
|
|
3220
3220
|
type: script
|
|
@@ -3464,9 +3464,9 @@ files:
|
|
|
3464
3464
|
type: script
|
|
3465
3465
|
size: 13118
|
|
3466
3466
|
- path: infrastructure/scripts/pattern-extractor.js
|
|
3467
|
-
hash: sha256:
|
|
3467
|
+
hash: sha256:45d2f1cb89f1775504e469f3f5e95395714f8e3a0774e6662c6840a0a215a66b
|
|
3468
3468
|
type: script
|
|
3469
|
-
size:
|
|
3469
|
+
size: 45419
|
|
3470
3470
|
- path: infrastructure/scripts/performance-analyzer.js
|
|
3471
3471
|
hash: sha256:ff90ddb6c6e91d193ef224e02aa893f18e02ead2e10bd376eb5776f9dc5f7206
|
|
3472
3472
|
type: script
|
|
@@ -3592,9 +3592,9 @@ files:
|
|
|
3592
3592
|
type: script
|
|
3593
3593
|
size: 3744
|
|
3594
3594
|
- path: infrastructure/scripts/test-utilities.js
|
|
3595
|
-
hash: sha256:
|
|
3595
|
+
hash: sha256:ea6d0a15a6dbdc1358b7b51bf144f515eae239512fc0bb24d0b2253586eddcb2
|
|
3596
3596
|
type: script
|
|
3597
|
-
size:
|
|
3597
|
+
size: 6545
|
|
3598
3598
|
- path: infrastructure/scripts/tool-resolver.js
|
|
3599
3599
|
hash: sha256:ecd80a34b6c2848b5d7fd9469c4236b435e6173e7e15c8c12ae12da013537487
|
|
3600
3600
|
type: script
|
|
@@ -3604,17 +3604,17 @@ files:
|
|
|
3604
3604
|
type: script
|
|
3605
3605
|
size: 17625
|
|
3606
3606
|
- path: infrastructure/scripts/usage-analytics.js
|
|
3607
|
-
hash: sha256:
|
|
3607
|
+
hash: sha256:d87ff786a64c038aa83f106f8a6e174df696b2beeb68b278747299d33dc0f84b
|
|
3608
3608
|
type: script
|
|
3609
|
-
size:
|
|
3609
|
+
size: 18473
|
|
3610
3610
|
- path: infrastructure/scripts/validate-agents.js
|
|
3611
3611
|
hash: sha256:62f4f46fa2117f633b96b42be5fcf0448cf56408998affee6728e798c8014733
|
|
3612
3612
|
type: script
|
|
3613
3613
|
size: 21894
|
|
3614
3614
|
- path: infrastructure/scripts/validate-claude-integration.js
|
|
3615
|
-
hash: sha256:
|
|
3615
|
+
hash: sha256:e7234c5aa1553a52392c5cee0d85e7166923538aee0747cbd377a31caa377033
|
|
3616
3616
|
type: script
|
|
3617
|
-
size:
|
|
3617
|
+
size: 3358
|
|
3618
3618
|
- path: infrastructure/scripts/validate-codex-command-registry.js
|
|
3619
3619
|
hash: sha256:a37a4c5fc8a4c3a7ce7ba240aeea16abc0a75871751f66eeb84991604ff066bf
|
|
3620
3620
|
type: script
|
|
@@ -4184,9 +4184,9 @@ files:
|
|
|
4184
4184
|
type: template
|
|
4185
4185
|
size: 8295
|
|
4186
4186
|
- path: product/templates/personalized-task-template-v2.md
|
|
4187
|
-
hash: sha256:
|
|
4187
|
+
hash: sha256:a58a20610e106fa8831fcf43085f4e73b3015d92d12041bcb77871a892d46930
|
|
4188
4188
|
type: template
|
|
4189
|
-
size:
|
|
4189
|
+
size: 23814
|
|
4190
4190
|
- path: product/templates/personalized-task-template.md
|
|
4191
4191
|
hash: sha256:f7f4aec9712d580f87394fcdd1360460e33f8e508256a4fdf212b4d215753bb6
|
|
4192
4192
|
type: template
|
|
@@ -4252,9 +4252,9 @@ files:
|
|
|
4252
4252
|
type: template
|
|
4253
4253
|
size: 18475
|
|
4254
4254
|
- path: product/templates/statusline/statusline-script.js
|
|
4255
|
-
hash: sha256:
|
|
4255
|
+
hash: sha256:d9488a080a26c46e6fc48d649c6316f44041276583399e90b9446bbc804fed88
|
|
4256
4256
|
type: template
|
|
4257
|
-
size:
|
|
4257
|
+
size: 8957
|
|
4258
4258
|
- path: product/templates/statusline/track-agent-clear.cjs
|
|
4259
4259
|
hash: sha256:3cda606de2463374e60440ba6cae9ca98e39b782b19c6ae39aa7569a1b211f09
|
|
4260
4260
|
type: template
|