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
|
@@ -128,11 +128,11 @@ acceptance-criteria:
|
|
|
128
128
|
|
|
129
129
|
- **Tool:** task-runner
|
|
130
130
|
- **Purpose:** Task execution and orchestration
|
|
131
|
-
- **Source:** .sinapse-ai/core/
|
|
131
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
132
132
|
|
|
133
133
|
- **Tool:** logger
|
|
134
134
|
- **Purpose:** Execution logging and error tracking
|
|
135
|
-
- **Source:** .sinapse-ai/
|
|
135
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
136
136
|
|
|
137
137
|
---
|
|
138
138
|
|
|
@@ -143,7 +143,7 @@ acceptance-criteria:
|
|
|
143
143
|
- **Script:** execute-task.js
|
|
144
144
|
- **Purpose:** Generic task execution wrapper
|
|
145
145
|
- **Language:** JavaScript
|
|
146
|
-
- **Location:** .sinapse-ai/
|
|
146
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
147
147
|
|
|
148
148
|
---
|
|
149
149
|
|
|
@@ -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
|
|
|
@@ -230,7 +230,7 @@ acceptance-criteria:
|
|
|
230
230
|
- **Script:** execute-task.js
|
|
231
231
|
- **Purpose:** Generic task execution wrapper
|
|
232
232
|
- **Language:** JavaScript
|
|
233
|
-
- **Location:** .sinapse-ai/
|
|
233
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
234
234
|
|
|
235
235
|
---
|
|
236
236
|
|
|
@@ -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
|
|
|
@@ -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
|
|
|
@@ -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
|
|
|
@@ -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
|
|
|
@@ -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
|
|
|
@@ -205,10 +205,6 @@ acceptance-criteria:
|
|
|
205
205
|
- **Purpose:** Detect operating system and package manager
|
|
206
206
|
- **Source:** Built-in (process.platform, uname)
|
|
207
207
|
|
|
208
|
-
- **Tool:** cli-checker
|
|
209
|
-
- **Purpose:** Verify CLI installations and versions
|
|
210
|
-
- **Source:** .sinapse-ai/infrastructure/scripts/cli-checker.js
|
|
211
|
-
|
|
212
208
|
- **Tool:** github-cli
|
|
213
209
|
- **Purpose:** Repository creation and authentication
|
|
214
210
|
- **Source:** .sinapse-ai/infrastructure/tools/cli/github-cli.yaml
|
|
@@ -137,11 +137,11 @@ acceptance-criteria:
|
|
|
137
137
|
|
|
138
138
|
- **Tool:** task-runner
|
|
139
139
|
- **Purpose:** Task execution and orchestration
|
|
140
|
-
- **Source:** .sinapse-ai/core/
|
|
140
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
141
141
|
|
|
142
142
|
- **Tool:** logger
|
|
143
143
|
- **Purpose:** Execution logging and error tracking
|
|
144
|
-
- **Source:** .sinapse-ai/
|
|
144
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
145
145
|
|
|
146
146
|
---
|
|
147
147
|
|
|
@@ -152,7 +152,7 @@ acceptance-criteria:
|
|
|
152
152
|
- **Script:** execute-task.js
|
|
153
153
|
- **Purpose:** Generic task execution wrapper
|
|
154
154
|
- **Language:** JavaScript
|
|
155
|
-
- **Location:** .sinapse-ai/
|
|
155
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
156
156
|
|
|
157
157
|
---
|
|
158
158
|
|
|
@@ -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
|
|
|
@@ -135,20 +135,13 @@ acceptance-criteria:
|
|
|
135
135
|
- **Purpose:** File reading, modification, and backup
|
|
136
136
|
- **Source:** Node.js fs module
|
|
137
137
|
|
|
138
|
-
- **Tool:** ast-parser
|
|
139
|
-
- **Purpose:** Parse and modify code safely
|
|
140
|
-
- **Source:** .sinapse-ai/utils/ast-parser.js
|
|
141
|
-
|
|
142
138
|
---
|
|
143
139
|
|
|
144
140
|
## Scripts
|
|
145
141
|
|
|
146
142
|
**Agent-specific code for this task:**
|
|
147
143
|
|
|
148
|
-
-
|
|
149
|
-
- **Purpose:** Safe file modification with backup
|
|
150
|
-
- **Language:** JavaScript
|
|
151
|
-
- **Location:** .sinapse-ai/scripts/modify-file.js
|
|
144
|
+
- N/A
|
|
152
145
|
|
|
153
146
|
---
|
|
154
147
|
|
|
@@ -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
|
|
|
@@ -419,7 +419,7 @@ acceptance-criteria:
|
|
|
419
419
|
- **Script:** execute-task.js
|
|
420
420
|
- **Purpose:** Generic task execution wrapper
|
|
421
421
|
- **Language:** JavaScript
|
|
422
|
-
- **Location:** .sinapse-ai/
|
|
422
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
423
423
|
|
|
424
424
|
---
|
|
425
425
|
|
|
@@ -129,7 +129,7 @@ acceptance-criteria:
|
|
|
129
129
|
|
|
130
130
|
- **Tool:** component-generator
|
|
131
131
|
- **Purpose:** Generate new components from templates
|
|
132
|
-
- **Source:** .sinapse-ai/scripts/component-generator.js
|
|
132
|
+
- **Source:** .sinapse-ai/infrastructure/scripts/component-generator.js
|
|
133
133
|
|
|
134
134
|
- **Tool:** file-system
|
|
135
135
|
- **Purpose:** File creation and validation
|
|
@@ -141,10 +141,7 @@ acceptance-criteria:
|
|
|
141
141
|
|
|
142
142
|
**Agent-specific code for this task:**
|
|
143
143
|
|
|
144
|
-
-
|
|
145
|
-
- **Purpose:** Component creation workflow
|
|
146
|
-
- **Language:** JavaScript
|
|
147
|
-
- **Location:** .sinapse-ai/scripts/create-component.js
|
|
144
|
+
- N/A
|
|
148
145
|
|
|
149
146
|
---
|
|
150
147
|
|
|
@@ -133,7 +133,7 @@ acceptance-criteria:
|
|
|
133
133
|
|
|
134
134
|
- **Tool:** component-generator
|
|
135
135
|
- **Purpose:** Generate new components from templates
|
|
136
|
-
- **Source:** .sinapse-ai/scripts/component-generator.js
|
|
136
|
+
- **Source:** .sinapse-ai/infrastructure/scripts/component-generator.js
|
|
137
137
|
|
|
138
138
|
- **Tool:** file-system
|
|
139
139
|
- **Purpose:** File creation and validation
|
|
@@ -145,10 +145,7 @@ acceptance-criteria:
|
|
|
145
145
|
|
|
146
146
|
**Agent-specific code for this task:**
|
|
147
147
|
|
|
148
|
-
-
|
|
149
|
-
- **Purpose:** Component creation workflow
|
|
150
|
-
- **Language:** JavaScript
|
|
151
|
-
- **Location:** .sinapse-ai/scripts/create-component.js
|
|
148
|
+
- N/A
|
|
152
149
|
|
|
153
150
|
---
|
|
154
151
|
|
|
@@ -133,7 +133,7 @@ acceptance-criteria:
|
|
|
133
133
|
|
|
134
134
|
- **Tool:** component-generator
|
|
135
135
|
- **Purpose:** Generate new components from templates
|
|
136
|
-
- **Source:** .sinapse-ai/scripts/component-generator.js
|
|
136
|
+
- **Source:** .sinapse-ai/infrastructure/scripts/component-generator.js
|
|
137
137
|
|
|
138
138
|
- **Tool:** file-system
|
|
139
139
|
- **Purpose:** File creation and validation
|
|
@@ -145,10 +145,7 @@ acceptance-criteria:
|
|
|
145
145
|
|
|
146
146
|
**Agent-specific code for this task:**
|
|
147
147
|
|
|
148
|
-
-
|
|
149
|
-
- **Purpose:** Component creation workflow
|
|
150
|
-
- **Language:** JavaScript
|
|
151
|
-
- **Location:** .sinapse-ai/scripts/create-component.js
|
|
148
|
+
- N/A
|
|
152
149
|
|
|
153
150
|
---
|
|
154
151
|
|
|
@@ -133,7 +133,7 @@ acceptance-criteria:
|
|
|
133
133
|
|
|
134
134
|
- **Tool:** component-generator
|
|
135
135
|
- **Purpose:** Generate new components from templates
|
|
136
|
-
- **Source:** .sinapse-ai/scripts/component-generator.js
|
|
136
|
+
- **Source:** .sinapse-ai/infrastructure/scripts/component-generator.js
|
|
137
137
|
|
|
138
138
|
- **Tool:** file-system
|
|
139
139
|
- **Purpose:** File creation and validation
|
|
@@ -145,10 +145,7 @@ acceptance-criteria:
|
|
|
145
145
|
|
|
146
146
|
**Agent-specific code for this task:**
|
|
147
147
|
|
|
148
|
-
-
|
|
149
|
-
- **Purpose:** Component creation workflow
|
|
150
|
-
- **Language:** JavaScript
|
|
151
|
-
- **Location:** .sinapse-ai/scripts/create-component.js
|
|
148
|
+
- N/A
|
|
152
149
|
|
|
153
150
|
---
|
|
154
151
|
|
|
@@ -135,11 +135,11 @@ acceptance-criteria:
|
|
|
135
135
|
|
|
136
136
|
- **Tool:** task-runner
|
|
137
137
|
- **Purpose:** Task execution and orchestration
|
|
138
|
-
- **Source:** .sinapse-ai/core/
|
|
138
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
139
139
|
|
|
140
140
|
- **Tool:** logger
|
|
141
141
|
- **Purpose:** Execution logging and error tracking
|
|
142
|
-
- **Source:** .sinapse-ai/
|
|
142
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
143
143
|
|
|
144
144
|
---
|
|
145
145
|
|
|
@@ -150,7 +150,7 @@ acceptance-criteria:
|
|
|
150
150
|
- **Script:** execute-task.js
|
|
151
151
|
- **Purpose:** Generic task execution wrapper
|
|
152
152
|
- **Language:** JavaScript
|
|
153
|
-
- **Location:** .sinapse-ai/
|
|
153
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
154
154
|
|
|
155
155
|
---
|
|
156
156
|
|
|
@@ -135,11 +135,11 @@ acceptance-criteria:
|
|
|
135
135
|
|
|
136
136
|
- **Tool:** task-runner
|
|
137
137
|
- **Purpose:** Task execution and orchestration
|
|
138
|
-
- **Source:** .sinapse-ai/core/
|
|
138
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
139
139
|
|
|
140
140
|
- **Tool:** logger
|
|
141
141
|
- **Purpose:** Execution logging and error tracking
|
|
142
|
-
- **Source:** .sinapse-ai/
|
|
142
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
143
143
|
|
|
144
144
|
---
|
|
145
145
|
|
|
@@ -150,7 +150,7 @@ acceptance-criteria:
|
|
|
150
150
|
- **Script:** execute-task.js
|
|
151
151
|
- **Purpose:** Generic task execution wrapper
|
|
152
152
|
- **Language:** JavaScript
|
|
153
|
-
- **Location:** .sinapse-ai/
|
|
153
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
154
154
|
|
|
155
155
|
---
|
|
156
156
|
|
|
@@ -135,11 +135,11 @@ acceptance-criteria:
|
|
|
135
135
|
|
|
136
136
|
- **Tool:** task-runner
|
|
137
137
|
- **Purpose:** Task execution and orchestration
|
|
138
|
-
- **Source:** .sinapse-ai/core/
|
|
138
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
139
139
|
|
|
140
140
|
- **Tool:** logger
|
|
141
141
|
- **Purpose:** Execution logging and error tracking
|
|
142
|
-
- **Source:** .sinapse-ai/
|
|
142
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
143
143
|
|
|
144
144
|
---
|
|
145
145
|
|
|
@@ -150,7 +150,7 @@ acceptance-criteria:
|
|
|
150
150
|
- **Script:** execute-task.js
|
|
151
151
|
- **Purpose:** Generic task execution wrapper
|
|
152
152
|
- **Language:** JavaScript
|
|
153
|
-
- **Location:** .sinapse-ai/
|
|
153
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
154
154
|
|
|
155
155
|
---
|
|
156
156
|
|
|
@@ -321,25 +321,10 @@ acceptance-criteria:
|
|
|
321
321
|
|
|
322
322
|
```yaml
|
|
323
323
|
**Scripts:**
|
|
324
|
-
- capability-analyzer.js:
|
|
325
|
-
description: Analyze current capabilities and identify improvements
|
|
326
|
-
language: JavaScript
|
|
327
|
-
location: .sinapse-ai/scripts/capability-analyzer.js
|
|
328
|
-
|
|
329
|
-
- improvement-validator.js:
|
|
330
|
-
description: Validate improvement plans against safety rules
|
|
331
|
-
language: JavaScript
|
|
332
|
-
location: .sinapse-ai/scripts/improvement-validator.js
|
|
333
|
-
|
|
334
|
-
- sandbox-tester.js:
|
|
335
|
-
description: Test improvements in isolated sandbox environment
|
|
336
|
-
language: JavaScript
|
|
337
|
-
location: .sinapse-ai/scripts/sandbox-tester.js
|
|
338
|
-
|
|
339
324
|
- backup-manager.js:
|
|
340
325
|
description: Manage backups and rollback operations
|
|
341
326
|
language: JavaScript
|
|
342
|
-
location: .sinapse-ai/scripts/backup-manager.js
|
|
327
|
+
location: .sinapse-ai/infrastructure/scripts/backup-manager.js
|
|
343
328
|
```
|
|
344
329
|
|
|
345
330
|
---
|
|
@@ -141,10 +141,7 @@ acceptance-criteria:
|
|
|
141
141
|
|
|
142
142
|
**Agent-specific code for this task:**
|
|
143
143
|
|
|
144
|
-
-
|
|
145
|
-
- **Purpose:** Documentation generation from templates
|
|
146
|
-
- **Language:** JavaScript
|
|
147
|
-
- **Location:** .sinapse-ai/scripts/generate-docs.js
|
|
144
|
+
- N/A
|
|
148
145
|
|
|
149
146
|
---
|
|
150
147
|
|
|
@@ -123,13 +123,7 @@ acceptance-criteria:
|
|
|
123
123
|
|
|
124
124
|
**External/shared resources used by this task:**
|
|
125
125
|
|
|
126
|
-
-
|
|
127
|
-
- **Purpose:** Generate project structure and config
|
|
128
|
-
- **Source:** .sinapse-ai/scripts/project-scaffolder.js
|
|
129
|
-
|
|
130
|
-
- **Tool:** config-manager
|
|
131
|
-
- **Purpose:** Initialize configuration files
|
|
132
|
-
- **Source:** .sinapse-ai/utils/config-manager.js
|
|
126
|
+
- N/A
|
|
133
127
|
|
|
134
128
|
---
|
|
135
129
|
|
|
@@ -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
|
|
|
@@ -128,11 +128,11 @@ acceptance-criteria:
|
|
|
128
128
|
|
|
129
129
|
- **Tool:** task-runner
|
|
130
130
|
- **Purpose:** Task execution and orchestration
|
|
131
|
-
- **Source:** .sinapse-ai/core/
|
|
131
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
132
132
|
|
|
133
133
|
- **Tool:** logger
|
|
134
134
|
- **Purpose:** Execution logging and error tracking
|
|
135
|
-
- **Source:** .sinapse-ai/
|
|
135
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
136
136
|
|
|
137
137
|
---
|
|
138
138
|
|
|
@@ -143,7 +143,7 @@ acceptance-criteria:
|
|
|
143
143
|
- **Script:** execute-task.js
|
|
144
144
|
- **Purpose:** Generic task execution wrapper
|
|
145
145
|
- **Language:** JavaScript
|
|
146
|
-
- **Location:** .sinapse-ai/
|
|
146
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
147
147
|
|
|
148
148
|
---
|
|
149
149
|
|
|
@@ -131,11 +131,11 @@ acceptance-criteria:
|
|
|
131
131
|
|
|
132
132
|
- **Tool:** task-runner
|
|
133
133
|
- **Purpose:** Task execution and orchestration
|
|
134
|
-
- **Source:** .sinapse-ai/core/
|
|
134
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
135
135
|
|
|
136
136
|
- **Tool:** logger
|
|
137
137
|
- **Purpose:** Execution logging and error tracking
|
|
138
|
-
- **Source:** .sinapse-ai/
|
|
138
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
139
139
|
|
|
140
140
|
---
|
|
141
141
|
|
|
@@ -146,7 +146,7 @@ acceptance-criteria:
|
|
|
146
146
|
- **Script:** execute-task.js
|
|
147
147
|
- **Purpose:** Generic task execution wrapper
|
|
148
148
|
- **Language:** JavaScript
|
|
149
|
-
- **Location:** .sinapse-ai/
|
|
149
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
150
150
|
|
|
151
151
|
---
|
|
152
152
|
|
|
@@ -147,20 +147,13 @@ acceptance-criteria:
|
|
|
147
147
|
- **Purpose:** File reading, modification, and backup
|
|
148
148
|
- **Source:** Node.js fs module
|
|
149
149
|
|
|
150
|
-
- **Tool:** ast-parser
|
|
151
|
-
- **Purpose:** Parse and modify code safely
|
|
152
|
-
- **Source:** .sinapse-ai/utils/ast-parser.js
|
|
153
|
-
|
|
154
150
|
---
|
|
155
151
|
|
|
156
152
|
## Scripts
|
|
157
153
|
|
|
158
154
|
**Agent-specific code for this task:**
|
|
159
155
|
|
|
160
|
-
-
|
|
161
|
-
- **Purpose:** Safe file modification with backup
|
|
162
|
-
- **Language:** JavaScript
|
|
163
|
-
- **Location:** .sinapse-ai/scripts/modify-file.js
|
|
156
|
+
- N/A
|
|
164
157
|
|
|
165
158
|
---
|
|
166
159
|
|
|
@@ -147,20 +147,13 @@ acceptance-criteria:
|
|
|
147
147
|
- **Purpose:** File reading, modification, and backup
|
|
148
148
|
- **Source:** Node.js fs module
|
|
149
149
|
|
|
150
|
-
- **Tool:** ast-parser
|
|
151
|
-
- **Purpose:** Parse and modify code safely
|
|
152
|
-
- **Source:** .sinapse-ai/utils/ast-parser.js
|
|
153
|
-
|
|
154
150
|
---
|
|
155
151
|
|
|
156
152
|
## Scripts
|
|
157
153
|
|
|
158
154
|
**Agent-specific code for this task:**
|
|
159
155
|
|
|
160
|
-
-
|
|
161
|
-
- **Purpose:** Safe file modification with backup
|
|
162
|
-
- **Language:** JavaScript
|
|
163
|
-
- **Location:** .sinapse-ai/scripts/modify-file.js
|
|
156
|
+
- N/A
|
|
164
157
|
|
|
165
158
|
---
|
|
166
159
|
|
|
@@ -165,20 +165,13 @@ acceptance-criteria:
|
|
|
165
165
|
- **Purpose:** File reading, modification, and backup
|
|
166
166
|
- **Source:** Node.js fs module
|
|
167
167
|
|
|
168
|
-
- **Tool:** ast-parser
|
|
169
|
-
- **Purpose:** Parse and modify code safely
|
|
170
|
-
- **Source:** .sinapse-ai/utils/ast-parser.js
|
|
171
|
-
|
|
172
168
|
---
|
|
173
169
|
|
|
174
170
|
## Scripts
|
|
175
171
|
|
|
176
172
|
**Agent-specific code for this task:**
|
|
177
173
|
|
|
178
|
-
-
|
|
179
|
-
- **Purpose:** Safe file modification with backup
|
|
180
|
-
- **Language:** JavaScript
|
|
181
|
-
- **Location:** .sinapse-ai/scripts/modify-file.js
|
|
174
|
+
- N/A
|
|
182
175
|
|
|
183
176
|
---
|
|
184
177
|
|