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
|
@@ -136,11 +136,11 @@ acceptance-criteria:
|
|
|
136
136
|
|
|
137
137
|
- **Tool:** task-runner
|
|
138
138
|
- **Purpose:** Task execution and orchestration
|
|
139
|
-
- **Source:** .sinapse-ai/core/
|
|
139
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
140
140
|
|
|
141
141
|
- **Tool:** logger
|
|
142
142
|
- **Purpose:** Execution logging and error tracking
|
|
143
|
-
- **Source:** .sinapse-ai/
|
|
143
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
144
144
|
|
|
145
145
|
---
|
|
146
146
|
|
|
@@ -151,7 +151,7 @@ acceptance-criteria:
|
|
|
151
151
|
- **Script:** execute-task.js
|
|
152
152
|
- **Purpose:** Generic task execution wrapper
|
|
153
153
|
- **Language:** JavaScript
|
|
154
|
-
- **Location:** .sinapse-ai/
|
|
154
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
155
155
|
|
|
156
156
|
---
|
|
157
157
|
|
|
@@ -213,11 +213,11 @@ acceptance-criteria:
|
|
|
213
213
|
|
|
214
214
|
- **Tool:** task-runner
|
|
215
215
|
- **Purpose:** Task execution and orchestration
|
|
216
|
-
- **Source:** .sinapse-ai/core/
|
|
216
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
217
217
|
|
|
218
218
|
- **Tool:** logger
|
|
219
219
|
- **Purpose:** Execution logging and error tracking
|
|
220
|
-
- **Source:** .sinapse-ai/
|
|
220
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
221
221
|
|
|
222
222
|
---
|
|
223
223
|
|
|
@@ -228,7 +228,7 @@ acceptance-criteria:
|
|
|
228
228
|
- **Script:** execute-task.js
|
|
229
229
|
- **Purpose:** Generic task execution wrapper
|
|
230
230
|
- **Language:** JavaScript
|
|
231
|
-
- **Location:** .sinapse-ai/
|
|
231
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
232
232
|
|
|
233
233
|
---
|
|
234
234
|
|
|
@@ -146,11 +146,11 @@ acceptance-criteria:
|
|
|
146
146
|
|
|
147
147
|
- **Tool:** task-runner
|
|
148
148
|
- **Purpose:** Task execution and orchestration
|
|
149
|
-
- **Source:** .sinapse-ai/core/
|
|
149
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
150
150
|
|
|
151
151
|
- **Tool:** logger
|
|
152
152
|
- **Purpose:** Execution logging and error tracking
|
|
153
|
-
- **Source:** .sinapse-ai/
|
|
153
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
154
154
|
|
|
155
155
|
---
|
|
156
156
|
|
|
@@ -161,7 +161,7 @@ acceptance-criteria:
|
|
|
161
161
|
- **Script:** execute-task.js
|
|
162
162
|
- **Purpose:** Generic task execution wrapper
|
|
163
163
|
- **Language:** JavaScript
|
|
164
|
-
- **Location:** .sinapse-ai/
|
|
164
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
165
165
|
|
|
166
166
|
---
|
|
167
167
|
|
|
@@ -141,11 +141,11 @@ acceptance-criteria:
|
|
|
141
141
|
|
|
142
142
|
- **Tool:** task-runner
|
|
143
143
|
- **Purpose:** Task execution and orchestration
|
|
144
|
-
- **Source:** .sinapse-ai/core/
|
|
144
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
145
145
|
|
|
146
146
|
- **Tool:** logger
|
|
147
147
|
- **Purpose:** Execution logging and error tracking
|
|
148
|
-
- **Source:** .sinapse-ai/
|
|
148
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
149
149
|
|
|
150
150
|
---
|
|
151
151
|
|
|
@@ -156,7 +156,7 @@ acceptance-criteria:
|
|
|
156
156
|
- **Script:** execute-task.js
|
|
157
157
|
- **Purpose:** Generic task execution wrapper
|
|
158
158
|
- **Language:** JavaScript
|
|
159
|
-
- **Location:** .sinapse-ai/
|
|
159
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
160
160
|
|
|
161
161
|
---
|
|
162
162
|
|
|
@@ -136,11 +136,11 @@ acceptance-criteria:
|
|
|
136
136
|
|
|
137
137
|
- **Tool:** task-runner
|
|
138
138
|
- **Purpose:** Task execution and orchestration
|
|
139
|
-
- **Source:** .sinapse-ai/core/
|
|
139
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
140
140
|
|
|
141
141
|
- **Tool:** logger
|
|
142
142
|
- **Purpose:** Execution logging and error tracking
|
|
143
|
-
- **Source:** .sinapse-ai/
|
|
143
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
144
144
|
|
|
145
145
|
---
|
|
146
146
|
|
|
@@ -151,7 +151,7 @@ acceptance-criteria:
|
|
|
151
151
|
- **Script:** execute-task.js
|
|
152
152
|
- **Purpose:** Generic task execution wrapper
|
|
153
153
|
- **Language:** JavaScript
|
|
154
|
-
- **Location:** .sinapse-ai/
|
|
154
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
155
155
|
|
|
156
156
|
---
|
|
157
157
|
|
|
@@ -144,11 +144,11 @@ acceptance-criteria:
|
|
|
144
144
|
|
|
145
145
|
- **Tool:** task-runner
|
|
146
146
|
- **Purpose:** Task execution and orchestration
|
|
147
|
-
- **Source:** .sinapse-ai/core/
|
|
147
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
148
148
|
|
|
149
149
|
- **Tool:** logger
|
|
150
150
|
- **Purpose:** Execution logging and error tracking
|
|
151
|
-
- **Source:** .sinapse-ai/
|
|
151
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
152
152
|
|
|
153
153
|
---
|
|
154
154
|
|
|
@@ -159,7 +159,7 @@ acceptance-criteria:
|
|
|
159
159
|
- **Script:** execute-task.js
|
|
160
160
|
- **Purpose:** Generic task execution wrapper
|
|
161
161
|
- **Language:** JavaScript
|
|
162
|
-
- **Location:** .sinapse-ai/
|
|
162
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
163
163
|
|
|
164
164
|
---
|
|
165
165
|
|
|
@@ -142,11 +142,11 @@ acceptance-criteria:
|
|
|
142
142
|
|
|
143
143
|
- **Tool:** task-runner
|
|
144
144
|
- **Purpose:** Task execution and orchestration
|
|
145
|
-
- **Source:** .sinapse-ai/core/
|
|
145
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
146
146
|
|
|
147
147
|
- **Tool:** logger
|
|
148
148
|
- **Purpose:** Execution logging and error tracking
|
|
149
|
-
- **Source:** .sinapse-ai/
|
|
149
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
150
150
|
|
|
151
151
|
---
|
|
152
152
|
|
|
@@ -157,7 +157,7 @@ acceptance-criteria:
|
|
|
157
157
|
- **Script:** execute-task.js
|
|
158
158
|
- **Purpose:** Generic task execution wrapper
|
|
159
159
|
- **Language:** JavaScript
|
|
160
|
-
- **Location:** .sinapse-ai/
|
|
160
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
161
161
|
|
|
162
162
|
---
|
|
163
163
|
|
|
@@ -572,7 +572,7 @@ acceptance-criteria:
|
|
|
572
572
|
- **Script:** execute-task.js
|
|
573
573
|
- **Purpose:** Generic task execution wrapper
|
|
574
574
|
- **Language:** JavaScript
|
|
575
|
-
- **Location:** .sinapse-ai/
|
|
575
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
576
576
|
|
|
577
577
|
---
|
|
578
578
|
|
|
@@ -129,11 +129,11 @@ acceptance-criteria:
|
|
|
129
129
|
|
|
130
130
|
- **Tool:** task-runner
|
|
131
131
|
- **Purpose:** Task execution and orchestration
|
|
132
|
-
- **Source:** .sinapse-ai/core/
|
|
132
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
133
133
|
|
|
134
134
|
- **Tool:** logger
|
|
135
135
|
- **Purpose:** Execution logging and error tracking
|
|
136
|
-
- **Source:** .sinapse-ai/
|
|
136
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
137
137
|
|
|
138
138
|
---
|
|
139
139
|
|
|
@@ -144,7 +144,7 @@ acceptance-criteria:
|
|
|
144
144
|
- **Script:** execute-task.js
|
|
145
145
|
- **Purpose:** Generic task execution wrapper
|
|
146
146
|
- **Language:** JavaScript
|
|
147
|
-
- **Location:** .sinapse-ai/
|
|
147
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
148
148
|
|
|
149
149
|
---
|
|
150
150
|
|
|
@@ -134,10 +134,6 @@ acceptance-criteria:
|
|
|
134
134
|
|
|
135
135
|
**External/shared resources used by this task:**
|
|
136
136
|
|
|
137
|
-
- **Tool:** validation-engine
|
|
138
|
-
- **Purpose:** Rule-based validation and reporting
|
|
139
|
-
- **Source:** .sinapse-ai/utils/validation-engine.js
|
|
140
|
-
|
|
141
137
|
- **Tool:** schema-validator
|
|
142
138
|
- **Purpose:** JSON/YAML schema validation
|
|
143
139
|
- **Source:** ajv or similar
|
|
@@ -148,10 +144,7 @@ acceptance-criteria:
|
|
|
148
144
|
|
|
149
145
|
**Agent-specific code for this task:**
|
|
150
146
|
|
|
151
|
-
-
|
|
152
|
-
- **Purpose:** Execute validation rules and generate report
|
|
153
|
-
- **Language:** JavaScript
|
|
154
|
-
- **Location:** .sinapse-ai/scripts/run-validation.js
|
|
147
|
+
- N/A
|
|
155
148
|
|
|
156
149
|
---
|
|
157
150
|
|
|
@@ -176,10 +176,7 @@ acceptance-criteria:
|
|
|
176
176
|
|
|
177
177
|
**Agent-specific code for this task:**
|
|
178
178
|
|
|
179
|
-
-
|
|
180
|
-
- **Purpose:** Extract issues from QA report
|
|
181
|
-
- **Language:** JavaScript
|
|
182
|
-
- **Location:** .sinapse-ai/development/scripts/parse-qa-report.js (optional)
|
|
179
|
+
- N/A
|
|
183
180
|
|
|
184
181
|
---
|
|
185
182
|
|
|
@@ -126,10 +126,6 @@ acceptance-criteria:
|
|
|
126
126
|
|
|
127
127
|
**External/shared resources used by this task:**
|
|
128
128
|
|
|
129
|
-
- **Tool:** validation-engine
|
|
130
|
-
- **Purpose:** Rule-based validation and reporting
|
|
131
|
-
- **Source:** .sinapse-ai/utils/validation-engine.js
|
|
132
|
-
|
|
133
129
|
- **Tool:** schema-validator
|
|
134
130
|
- **Purpose:** JSON/YAML schema validation
|
|
135
131
|
- **Source:** ajv or similar
|
|
@@ -140,10 +136,7 @@ acceptance-criteria:
|
|
|
140
136
|
|
|
141
137
|
**Agent-specific code for this task:**
|
|
142
138
|
|
|
143
|
-
-
|
|
144
|
-
- **Purpose:** Execute validation rules and generate report
|
|
145
|
-
- **Language:** JavaScript
|
|
146
|
-
- **Location:** .sinapse-ai/scripts/run-validation.js
|
|
139
|
+
- N/A
|
|
147
140
|
|
|
148
141
|
---
|
|
149
142
|
|
|
@@ -127,10 +127,6 @@ acceptance-criteria:
|
|
|
127
127
|
|
|
128
128
|
**External/shared resources used by this task:**
|
|
129
129
|
|
|
130
|
-
- **Tool:** validation-engine
|
|
131
|
-
- **Purpose:** Rule-based validation and reporting
|
|
132
|
-
- **Source:** .sinapse-ai/utils/validation-engine.js
|
|
133
|
-
|
|
134
130
|
- **Tool:** schema-validator
|
|
135
131
|
- **Purpose:** JSON/YAML schema validation
|
|
136
132
|
- **Source:** ajv or similar
|
|
@@ -141,10 +137,7 @@ acceptance-criteria:
|
|
|
141
137
|
|
|
142
138
|
**Agent-specific code for this task:**
|
|
143
139
|
|
|
144
|
-
-
|
|
145
|
-
- **Purpose:** Execute validation rules and generate report
|
|
146
|
-
- **Language:** JavaScript
|
|
147
|
-
- **Location:** .sinapse-ai/scripts/run-validation.js
|
|
140
|
+
- N/A
|
|
148
141
|
|
|
149
142
|
---
|
|
150
143
|
|
|
@@ -439,10 +439,6 @@ acceptance-criteria:
|
|
|
439
439
|
|
|
440
440
|
**External/shared resources used by this task:**
|
|
441
441
|
|
|
442
|
-
- **Tool:** validation-engine
|
|
443
|
-
- **Purpose:** Rule-based validation and reporting
|
|
444
|
-
- **Source:** .sinapse-ai/utils/validation-engine.js
|
|
445
|
-
|
|
446
442
|
- **Tool:** schema-validator
|
|
447
443
|
- **Purpose:** JSON/YAML schema validation
|
|
448
444
|
- **Source:** ajv or similar
|
|
@@ -453,10 +449,7 @@ acceptance-criteria:
|
|
|
453
449
|
|
|
454
450
|
**Agent-specific code for this task:**
|
|
455
451
|
|
|
456
|
-
-
|
|
457
|
-
- **Purpose:** Execute validation rules and generate report
|
|
458
|
-
- **Language:** JavaScript
|
|
459
|
-
- **Location:** .sinapse-ai/scripts/run-validation.js
|
|
452
|
+
- N/A
|
|
460
453
|
|
|
461
454
|
---
|
|
462
455
|
|
|
@@ -127,10 +127,6 @@ acceptance-criteria:
|
|
|
127
127
|
|
|
128
128
|
**External/shared resources used by this task:**
|
|
129
129
|
|
|
130
|
-
- **Tool:** validation-engine
|
|
131
|
-
- **Purpose:** Rule-based validation and reporting
|
|
132
|
-
- **Source:** .sinapse-ai/utils/validation-engine.js
|
|
133
|
-
|
|
134
130
|
- **Tool:** schema-validator
|
|
135
131
|
- **Purpose:** JSON/YAML schema validation
|
|
136
132
|
- **Source:** ajv or similar
|
|
@@ -141,10 +137,7 @@ acceptance-criteria:
|
|
|
141
137
|
|
|
142
138
|
**Agent-specific code for this task:**
|
|
143
139
|
|
|
144
|
-
-
|
|
145
|
-
- **Purpose:** Execute validation rules and generate report
|
|
146
|
-
- **Language:** JavaScript
|
|
147
|
-
- **Location:** .sinapse-ai/scripts/run-validation.js
|
|
140
|
+
- N/A
|
|
148
141
|
|
|
149
142
|
---
|
|
150
143
|
|
|
@@ -139,10 +139,6 @@ acceptance-criteria:
|
|
|
139
139
|
|
|
140
140
|
**External/shared resources used by this task:**
|
|
141
141
|
|
|
142
|
-
- **Tool:** validation-engine
|
|
143
|
-
- **Purpose:** Rule-based validation and reporting
|
|
144
|
-
- **Source:** .sinapse-ai/utils/validation-engine.js
|
|
145
|
-
|
|
146
142
|
- **Tool:** schema-validator
|
|
147
143
|
- **Purpose:** JSON/YAML schema validation
|
|
148
144
|
- **Source:** ajv or similar
|
|
@@ -153,10 +149,7 @@ acceptance-criteria:
|
|
|
153
149
|
|
|
154
150
|
**Agent-specific code for this task:**
|
|
155
151
|
|
|
156
|
-
-
|
|
157
|
-
- **Purpose:** Execute validation rules and generate report
|
|
158
|
-
- **Language:** JavaScript
|
|
159
|
-
- **Location:** .sinapse-ai/scripts/run-validation.js
|
|
152
|
+
- N/A
|
|
160
153
|
|
|
161
154
|
---
|
|
162
155
|
|
|
@@ -126,10 +126,6 @@ acceptance-criteria:
|
|
|
126
126
|
|
|
127
127
|
**External/shared resources used by this task:**
|
|
128
128
|
|
|
129
|
-
- **Tool:** validation-engine
|
|
130
|
-
- **Purpose:** Rule-based validation and reporting
|
|
131
|
-
- **Source:** .sinapse-ai/utils/validation-engine.js
|
|
132
|
-
|
|
133
129
|
- **Tool:** schema-validator
|
|
134
130
|
- **Purpose:** JSON/YAML schema validation
|
|
135
131
|
- **Source:** ajv or similar
|
|
@@ -140,10 +136,7 @@ acceptance-criteria:
|
|
|
140
136
|
|
|
141
137
|
**Agent-specific code for this task:**
|
|
142
138
|
|
|
143
|
-
-
|
|
144
|
-
- **Purpose:** Execute validation rules and generate report
|
|
145
|
-
- **Language:** JavaScript
|
|
146
|
-
- **Location:** .sinapse-ai/scripts/run-validation.js
|
|
139
|
+
- N/A
|
|
147
140
|
|
|
148
141
|
---
|
|
149
142
|
|
|
@@ -137,10 +137,6 @@ acceptance-criteria:
|
|
|
137
137
|
|
|
138
138
|
**External/shared resources used by this task:**
|
|
139
139
|
|
|
140
|
-
- **Tool:** validation-engine
|
|
141
|
-
- **Purpose:** Rule-based validation and reporting
|
|
142
|
-
- **Source:** .sinapse-ai/utils/validation-engine.js
|
|
143
|
-
|
|
144
140
|
- **Tool:** schema-validator
|
|
145
141
|
- **Purpose:** JSON/YAML schema validation
|
|
146
142
|
- **Source:** ajv or similar
|
|
@@ -151,10 +147,7 @@ acceptance-criteria:
|
|
|
151
147
|
|
|
152
148
|
**Agent-specific code for this task:**
|
|
153
149
|
|
|
154
|
-
-
|
|
155
|
-
- **Purpose:** Execute validation rules and generate report
|
|
156
|
-
- **Language:** JavaScript
|
|
157
|
-
- **Location:** .sinapse-ai/scripts/run-validation.js
|
|
150
|
+
- N/A
|
|
158
151
|
|
|
159
152
|
---
|
|
160
153
|
|
|
@@ -126,10 +126,6 @@ acceptance-criteria:
|
|
|
126
126
|
|
|
127
127
|
**External/shared resources used by this task:**
|
|
128
128
|
|
|
129
|
-
- **Tool:** validation-engine
|
|
130
|
-
- **Purpose:** Rule-based validation and reporting
|
|
131
|
-
- **Source:** .sinapse-ai/utils/validation-engine.js
|
|
132
|
-
|
|
133
129
|
- **Tool:** schema-validator
|
|
134
130
|
- **Purpose:** JSON/YAML schema validation
|
|
135
131
|
- **Source:** ajv or similar
|
|
@@ -140,10 +136,7 @@ acceptance-criteria:
|
|
|
140
136
|
|
|
141
137
|
**Agent-specific code for this task:**
|
|
142
138
|
|
|
143
|
-
-
|
|
144
|
-
- **Purpose:** Execute validation rules and generate report
|
|
145
|
-
- **Language:** JavaScript
|
|
146
|
-
- **Location:** .sinapse-ai/scripts/run-validation.js
|
|
139
|
+
- N/A
|
|
147
140
|
|
|
148
141
|
---
|
|
149
142
|
|
|
@@ -126,10 +126,6 @@ acceptance-criteria:
|
|
|
126
126
|
|
|
127
127
|
**External/shared resources used by this task:**
|
|
128
128
|
|
|
129
|
-
- **Tool:** validation-engine
|
|
130
|
-
- **Purpose:** Rule-based validation and reporting
|
|
131
|
-
- **Source:** .sinapse-ai/utils/validation-engine.js
|
|
132
|
-
|
|
133
129
|
- **Tool:** schema-validator
|
|
134
130
|
- **Purpose:** JSON/YAML schema validation
|
|
135
131
|
- **Source:** ajv or similar
|
|
@@ -140,10 +136,7 @@ acceptance-criteria:
|
|
|
140
136
|
|
|
141
137
|
**Agent-specific code for this task:**
|
|
142
138
|
|
|
143
|
-
-
|
|
144
|
-
- **Purpose:** Execute validation rules and generate report
|
|
145
|
-
- **Language:** JavaScript
|
|
146
|
-
- **Location:** .sinapse-ai/scripts/run-validation.js
|
|
139
|
+
- N/A
|
|
147
140
|
|
|
148
141
|
---
|
|
149
142
|
|
|
@@ -515,7 +515,7 @@ acceptance-criteria:
|
|
|
515
515
|
- **Script:** execute-task.js
|
|
516
516
|
- **Purpose:** Generic task execution wrapper
|
|
517
517
|
- **Language:** JavaScript
|
|
518
|
-
- **Location:** .sinapse-ai/
|
|
518
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
519
519
|
|
|
520
520
|
---
|
|
521
521
|
|
|
@@ -151,10 +151,7 @@ acceptance-criteria:
|
|
|
151
151
|
|
|
152
152
|
**Agent-specific code for this task:**
|
|
153
153
|
|
|
154
|
-
-
|
|
155
|
-
- **Purpose:** Run security scans and generate reports
|
|
156
|
-
- **Language:** JavaScript
|
|
157
|
-
- **Location:** .sinapse-ai/scripts/security-scan.js
|
|
154
|
+
- N/A
|
|
158
155
|
|
|
159
156
|
---
|
|
160
157
|
|
|
@@ -125,13 +125,7 @@ acceptance-criteria:
|
|
|
125
125
|
|
|
126
126
|
**External/shared resources used by this task:**
|
|
127
127
|
|
|
128
|
-
-
|
|
129
|
-
- **Purpose:** Generate project structure and config
|
|
130
|
-
- **Source:** .sinapse-ai/scripts/project-scaffolder.js
|
|
131
|
-
|
|
132
|
-
- **Tool:** config-manager
|
|
133
|
-
- **Purpose:** Initialize configuration files
|
|
134
|
-
- **Source:** .sinapse-ai/utils/config-manager.js
|
|
128
|
+
- N/A
|
|
135
129
|
|
|
136
130
|
---
|
|
137
131
|
|
|
@@ -139,10 +133,7 @@ acceptance-criteria:
|
|
|
139
133
|
|
|
140
134
|
**Agent-specific code for this task:**
|
|
141
135
|
|
|
142
|
-
-
|
|
143
|
-
- **Purpose:** Project initialization workflow
|
|
144
|
-
- **Language:** JavaScript
|
|
145
|
-
- **Location:** .sinapse-ai/scripts/init-project.js
|
|
136
|
+
- N/A
|
|
146
137
|
|
|
147
138
|
---
|
|
148
139
|
|
|
@@ -120,13 +120,7 @@ acceptance-criteria:
|
|
|
120
120
|
|
|
121
121
|
**External/shared resources used by this task:**
|
|
122
122
|
|
|
123
|
-
-
|
|
124
|
-
- **Purpose:** Generate project structure and config
|
|
125
|
-
- **Source:** .sinapse-ai/scripts/project-scaffolder.js
|
|
126
|
-
|
|
127
|
-
- **Tool:** config-manager
|
|
128
|
-
- **Purpose:** Initialize configuration files
|
|
129
|
-
- **Source:** .sinapse-ai/utils/config-manager.js
|
|
123
|
+
- N/A
|
|
130
124
|
|
|
131
125
|
---
|
|
132
126
|
|
|
@@ -134,10 +128,7 @@ acceptance-criteria:
|
|
|
134
128
|
|
|
135
129
|
**Agent-specific code for this task:**
|
|
136
130
|
|
|
137
|
-
-
|
|
138
|
-
- **Purpose:** Project initialization workflow
|
|
139
|
-
- **Language:** JavaScript
|
|
140
|
-
- **Location:** .sinapse-ai/scripts/init-project.js
|
|
131
|
+
- N/A
|
|
141
132
|
|
|
142
133
|
---
|
|
143
134
|
|
|
@@ -194,11 +194,11 @@ acceptance-criteria:
|
|
|
194
194
|
|
|
195
195
|
- **Tool:** task-runner
|
|
196
196
|
- **Purpose:** Task execution and orchestration
|
|
197
|
-
- **Source:** .sinapse-ai/core/
|
|
197
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
198
198
|
|
|
199
199
|
- **Tool:** logger
|
|
200
200
|
- **Purpose:** Execution logging and error tracking
|
|
201
|
-
- **Source:** .sinapse-ai/
|
|
201
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
202
202
|
|
|
203
203
|
---
|
|
204
204
|
|
|
@@ -209,7 +209,7 @@ acceptance-criteria:
|
|
|
209
209
|
- **Script:** execute-task.js
|
|
210
210
|
- **Purpose:** Generic task execution wrapper
|
|
211
211
|
- **Language:** JavaScript
|
|
212
|
-
- **Location:** .sinapse-ai/
|
|
212
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
213
213
|
|
|
214
214
|
---
|
|
215
215
|
|
|
@@ -129,11 +129,11 @@ acceptance-criteria:
|
|
|
129
129
|
|
|
130
130
|
- **Tool:** task-runner
|
|
131
131
|
- **Purpose:** Task execution and orchestration
|
|
132
|
-
- **Source:** .sinapse-ai/core/
|
|
132
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
133
133
|
|
|
134
134
|
- **Tool:** logger
|
|
135
135
|
- **Purpose:** Execution logging and error tracking
|
|
136
|
-
- **Source:** .sinapse-ai/
|
|
136
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
137
137
|
|
|
138
138
|
---
|
|
139
139
|
|
|
@@ -144,7 +144,7 @@ acceptance-criteria:
|
|
|
144
144
|
- **Script:** execute-task.js
|
|
145
145
|
- **Purpose:** Generic task execution wrapper
|
|
146
146
|
- **Language:** JavaScript
|
|
147
|
-
- **Location:** .sinapse-ai/
|
|
147
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
148
148
|
|
|
149
149
|
---
|
|
150
150
|
|
|
@@ -302,6 +302,17 @@ structuring:
|
|
|
302
302
|
|
|
303
303
|
---
|
|
304
304
|
|
|
305
|
+
### Phase 5: Present for Approval
|
|
306
|
+
|
|
307
|
+
After structuring `requirements.json`, present the gathered requirements back to the user as
|
|
308
|
+
scannable **approval tables** following `.sinapse-ai/development/templates/approval-table.md`
|
|
309
|
+
(Requirements schema) — one table for Functional (`| ID | Description | Priority | Source |`),
|
|
310
|
+
one for Non-Functional (`| ID | Category | Requirement | Metric/Target |`), and one for
|
|
311
|
+
Constraints when present. Lead with the verdict header (`── REQUIREMENTS REVIEW · {n} item(s) · status: DRAFT ──`).
|
|
312
|
+
Do NOT report only the count (e.g. "8 FR, 3 NFR") — the user must see and approve the actual rows.
|
|
313
|
+
|
|
314
|
+
---
|
|
315
|
+
|
|
305
316
|
## Output Schema
|
|
306
317
|
|
|
307
318
|
```json
|
|
@@ -223,12 +223,7 @@ acceptance-criteria:
|
|
|
223
223
|
- execute-task.js:
|
|
224
224
|
description: Generic task execution wrapper
|
|
225
225
|
language: JavaScript
|
|
226
|
-
location: .sinapse-ai/
|
|
227
|
-
|
|
228
|
-
- documentation-synchronizer.js:
|
|
229
|
-
description: Core documentation synchronization engine
|
|
230
|
-
language: JavaScript
|
|
231
|
-
location: .sinapse-ai/scripts/documentation-synchronizer.js
|
|
226
|
+
location: .sinapse-ai/core/execution/
|
|
232
227
|
```
|
|
233
228
|
|
|
234
229
|
---
|
|
@@ -133,11 +133,11 @@ acceptance-criteria:
|
|
|
133
133
|
|
|
134
134
|
- **Tool:** task-runner
|
|
135
135
|
- **Purpose:** Task execution and orchestration
|
|
136
|
-
- **Source:** .sinapse-ai/core/
|
|
136
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
137
137
|
|
|
138
138
|
- **Tool:** logger
|
|
139
139
|
- **Purpose:** Execution logging and error tracking
|
|
140
|
-
- **Source:** .sinapse-ai/
|
|
140
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
141
141
|
|
|
142
142
|
---
|
|
143
143
|
|
|
@@ -148,7 +148,7 @@ acceptance-criteria:
|
|
|
148
148
|
- **Script:** execute-task.js
|
|
149
149
|
- **Purpose:** Generic task execution wrapper
|
|
150
150
|
- **Language:** JavaScript
|
|
151
|
-
- **Location:** .sinapse-ai/
|
|
151
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
152
152
|
|
|
153
153
|
---
|
|
154
154
|
|
|
@@ -138,11 +138,11 @@ acceptance-criteria:
|
|
|
138
138
|
|
|
139
139
|
- **Tool:** task-runner
|
|
140
140
|
- **Purpose:** Task execution and orchestration
|
|
141
|
-
- **Source:** .sinapse-ai/core/
|
|
141
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
142
142
|
|
|
143
143
|
- **Tool:** logger
|
|
144
144
|
- **Purpose:** Execution logging and error tracking
|
|
145
|
-
- **Source:** .sinapse-ai/
|
|
145
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
146
146
|
|
|
147
147
|
---
|
|
148
148
|
|
|
@@ -153,7 +153,7 @@ acceptance-criteria:
|
|
|
153
153
|
- **Script:** execute-task.js
|
|
154
154
|
- **Purpose:** Generic task execution wrapper
|
|
155
155
|
- **Language:** JavaScript
|
|
156
|
-
- **Location:** .sinapse-ai/
|
|
156
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
157
157
|
|
|
158
158
|
---
|
|
159
159
|
|