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
|
@@ -300,7 +300,7 @@ routing_table:
|
|
|
300
300
|
orchestrator: copy-orqx (Quill)
|
|
301
301
|
invocation: "/copywriting:agents:copy-orqx"
|
|
302
302
|
domain: "Copywriting, persuasao, headlines, landing pages, email copy, ads copy"
|
|
303
|
-
agents:
|
|
303
|
+
agents: 13
|
|
304
304
|
tasks: 81
|
|
305
305
|
keywords: ["copy", "copywriting", "headline", "persuasao", "CTA", "landing page", "email", "anuncio", "ad copy", "sales page", "VSL", "script"]
|
|
306
306
|
|
|
@@ -327,7 +327,7 @@ routing_table:
|
|
|
327
327
|
orchestrator: finance-orqx (Ledger)
|
|
328
328
|
invocation: "/finance:agents:finance-orqx"
|
|
329
329
|
domain: "Inteligencia financeira, pricing, P&L, budget, unit economics, financial modeling"
|
|
330
|
-
agents:
|
|
330
|
+
agents: 8
|
|
331
331
|
tasks: 45
|
|
332
332
|
keywords: ["financeiro", "finance", "pricing", "P&L", "budget", "unit economics", "modelo financeiro", "receita", "custo", "margem", "ROI", "CAC", "LTV"]
|
|
333
333
|
|
|
@@ -372,7 +372,7 @@ routing_table:
|
|
|
372
372
|
orchestrator: swarm-orqx (Nexus)
|
|
373
373
|
invocation: "/claude:agents:swarm-orqx"
|
|
374
374
|
domain: "Claude Code mastery, prompt engineering, MCP, automacao, hooks, skills, plugins, agent teams, context engineering"
|
|
375
|
-
agents:
|
|
375
|
+
agents: 8
|
|
376
376
|
tasks: 51
|
|
377
377
|
keywords: ["Claude", "prompt", "MCP", "automacao", "agent", "squad", "Claude Code", "prompt engineering", "tool use", "workflow", "hooks", "skills", "plugins"]
|
|
378
378
|
|
|
@@ -408,7 +408,7 @@ routing_table:
|
|
|
408
408
|
orchestrator: cloning-orqx (Helix)
|
|
409
409
|
invocation: "/cloning:agents:cloning-orqx"
|
|
410
410
|
domain: "Clonagem cognitiva, extracao de DNA mental, geracao de agentes a partir de mentes reais"
|
|
411
|
-
agents:
|
|
411
|
+
agents: 9
|
|
412
412
|
tasks: 54
|
|
413
413
|
keywords: ["clone", "clonagem", "extracao", "DNA cognitivo", "mental model", "heuristic", "transcricao", "Whisper", "cognitive profile", "mind", "mente"]
|
|
414
414
|
|
|
@@ -786,7 +786,7 @@ Imperator can provide ecosystem-wide insights by combining capabilities across s
|
|
|
786
786
|
| 16 | cloning | cloning | Helix | Cognitive cloning, mental DNA extraction |
|
|
787
787
|
| 17 | courses | courses | Syllabus | Course creation, workshops, ebooks |
|
|
788
788
|
|
|
789
|
-
**Total ecosystem:** 17 squads, 172 agents, 1,200 tasks
|
|
789
|
+
**Total ecosystem:** 17 squads, 172 agents (160 de squad + 12 core), 1,200 tasks
|
|
790
790
|
|
|
791
791
|
## Cross-Squad Handoffs
|
|
792
792
|
- **Receives from:** Every squad (escalations, cross-squad requests)
|
|
@@ -354,7 +354,7 @@ function main() {
|
|
|
354
354
|
console.log('Usage: node migrate-task-to-v2.js <task-file>');
|
|
355
355
|
console.log('');
|
|
356
356
|
console.log('Example:');
|
|
357
|
-
console.log(' node migrate-task-to-v2.js .sinapse-ai/tasks/dev-develop-story.md');
|
|
357
|
+
console.log(' node migrate-task-to-v2.js .sinapse-ai/development/tasks/dev-develop-story.md');
|
|
358
358
|
process.exit(0);
|
|
359
359
|
}
|
|
360
360
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* Task Format V2.0 Validation Script
|
|
5
5
|
*
|
|
6
|
-
* Validates task files against the V2.0 specification with
|
|
6
|
+
* Validates task files against the V2.0 specification with 12 compliance rules.
|
|
7
7
|
*
|
|
8
8
|
* Usage:
|
|
9
9
|
* node validate-task-v2.js <task-file> # Validate single task
|
|
@@ -27,6 +27,58 @@ const colors = {
|
|
|
27
27
|
reset: '\x1b[0m',
|
|
28
28
|
};
|
|
29
29
|
|
|
30
|
+
// Repo root, resolved from this script's location (.sinapse-ai/development/scripts/).
|
|
31
|
+
// Used by Rule 12 to verify that footer Source/Location pointers reference real files.
|
|
32
|
+
const REPO_ROOT = path.resolve(__dirname, '..', '..', '..');
|
|
33
|
+
|
|
34
|
+
const REPO_SCRIPT_PREFIX = /^(\.sinapse-ai|core|scripts|utils|bin)\//;
|
|
35
|
+
const SCRIPT_EXT = /\.(js|cjs|ts)$/;
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Extract the candidate path token from a raw Source/Location value.
|
|
39
|
+
* Takes the first whitespace-delimited token, strips markdown backticks,
|
|
40
|
+
* a trailing :linenumber, and trailing punctuation.
|
|
41
|
+
*/
|
|
42
|
+
function extractRepoPathToken(rawValue) {
|
|
43
|
+
let v = String(rawValue).trim().split(/\s+/)[0];
|
|
44
|
+
v = v.replace(/^`+/, '').replace(/`+$/, '');
|
|
45
|
+
v = v.replace(/:\d+$/, '');
|
|
46
|
+
v = v.replace(/[)\].,;]+$/, '');
|
|
47
|
+
return v;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Scan only the `## Tools` / `## Scripts` footer sections (both the bold-prose
|
|
52
|
+
* `**Source:**`/`**Location:**` format and the YAML `source:`/`location:` format)
|
|
53
|
+
* and return any repo-script path (.js/.cjs/.ts under .sinapse-ai|core|scripts|utils|bin)
|
|
54
|
+
* that does NOT exist on disk. Prose command/code examples in other sections are ignored.
|
|
55
|
+
*/
|
|
56
|
+
function findMissingFooterScriptPaths(content) {
|
|
57
|
+
const lines = content.split(/\r?\n/);
|
|
58
|
+
const missing = [];
|
|
59
|
+
let inSection = false;
|
|
60
|
+
for (const line of lines) {
|
|
61
|
+
const trimmed = line.trim();
|
|
62
|
+
if (/^##\s+(Tools|Scripts)\b/.test(trimmed)) {
|
|
63
|
+
inSection = true;
|
|
64
|
+
continue;
|
|
65
|
+
}
|
|
66
|
+
if (inSection && (/^##\s/.test(trimmed) || trimmed === '---')) {
|
|
67
|
+
inSection = false;
|
|
68
|
+
}
|
|
69
|
+
if (!inSection) continue;
|
|
70
|
+
|
|
71
|
+
let m = line.match(/\*\*(?:Source|Location):\*\*\s*(.+?)\s*$/);
|
|
72
|
+
if (!m) m = line.match(/^\s*(?:source|location):\s*(.+?)\s*$/);
|
|
73
|
+
if (!m) continue;
|
|
74
|
+
|
|
75
|
+
const token = extractRepoPathToken(m[1]);
|
|
76
|
+
if (!REPO_SCRIPT_PREFIX.test(token) || !SCRIPT_EXT.test(token)) continue;
|
|
77
|
+
if (!fs.existsSync(path.join(REPO_ROOT, token))) missing.push(token);
|
|
78
|
+
}
|
|
79
|
+
return missing;
|
|
80
|
+
}
|
|
81
|
+
|
|
30
82
|
/**
|
|
31
83
|
* Validation rules for V2.0 compliance
|
|
32
84
|
*/
|
|
@@ -142,6 +194,17 @@ const validationRules = [
|
|
|
142
194
|
},
|
|
143
195
|
message: 'Output template markers not found (Duration, Tokens, Metrics)',
|
|
144
196
|
},
|
|
197
|
+
{
|
|
198
|
+
id: 12,
|
|
199
|
+
name: 'Tools/Scripts footer paths exist',
|
|
200
|
+
check: (content) => {
|
|
201
|
+
return findMissingFooterScriptPaths(content).length === 0;
|
|
202
|
+
},
|
|
203
|
+
message: (content) => {
|
|
204
|
+
const missing = findMissingFooterScriptPaths(content);
|
|
205
|
+
return `Tools/Scripts footer references non-existent repo file(s): ${missing.join(', ')}`;
|
|
206
|
+
},
|
|
207
|
+
},
|
|
145
208
|
];
|
|
146
209
|
|
|
147
210
|
/**
|
|
@@ -176,7 +239,7 @@ function validateTask(filePath) {
|
|
|
176
239
|
result.failed.push({
|
|
177
240
|
id: rule.id,
|
|
178
241
|
name: rule.name,
|
|
179
|
-
message: rule.message,
|
|
242
|
+
message: typeof rule.message === 'function' ? rule.message(content) : rule.message,
|
|
180
243
|
});
|
|
181
244
|
result.compliant = false;
|
|
182
245
|
}
|
|
@@ -191,11 +254,11 @@ function validateTask(filePath) {
|
|
|
191
254
|
}
|
|
192
255
|
|
|
193
256
|
/**
|
|
194
|
-
* Validate all tasks in .sinapse-ai/tasks/
|
|
257
|
+
* Validate all tasks in .sinapse-ai/development/tasks/
|
|
195
258
|
* @returns {Object} Summary of validation results
|
|
196
259
|
*/
|
|
197
260
|
function validateAllTasks() {
|
|
198
|
-
const tasksDir = path.join(process.cwd(), '.sinapse-ai', 'tasks');
|
|
261
|
+
const tasksDir = path.join(process.cwd(), '.sinapse-ai', 'development', 'tasks');
|
|
199
262
|
|
|
200
263
|
if (!fs.existsSync(tasksDir)) {
|
|
201
264
|
console.error(`${colors.red}✗ Tasks directory not found: ${tasksDir}${colors.reset}`);
|
|
@@ -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
|
|
|
@@ -139,11 +139,11 @@ acceptance-criteria:
|
|
|
139
139
|
|
|
140
140
|
- **Tool:** task-runner
|
|
141
141
|
- **Purpose:** Task execution and orchestration
|
|
142
|
-
- **Source:** .sinapse-ai/core/
|
|
142
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
143
143
|
|
|
144
144
|
- **Tool:** logger
|
|
145
145
|
- **Purpose:** Execution logging and error tracking
|
|
146
|
-
- **Source:** .sinapse-ai/
|
|
146
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
147
147
|
|
|
148
148
|
---
|
|
149
149
|
|
|
@@ -154,7 +154,7 @@ acceptance-criteria:
|
|
|
154
154
|
- **Script:** execute-task.js
|
|
155
155
|
- **Purpose:** Generic task execution wrapper
|
|
156
156
|
- **Language:** JavaScript
|
|
157
|
-
- **Location:** .sinapse-ai/
|
|
157
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
158
158
|
|
|
159
159
|
---
|
|
160
160
|
|
|
@@ -130,10 +130,6 @@ acceptance-criteria:
|
|
|
130
130
|
|
|
131
131
|
**External/shared resources used by this task:**
|
|
132
132
|
|
|
133
|
-
- **Tool:** code-analyzer
|
|
134
|
-
- **Purpose:** Static code analysis and metrics
|
|
135
|
-
- **Source:** .sinapse-ai/utils/code-analyzer.js
|
|
136
|
-
|
|
137
133
|
- **Tool:** file-system
|
|
138
134
|
- **Purpose:** Recursive directory traversal
|
|
139
135
|
- **Source:** Node.js fs module
|
|
@@ -144,10 +140,7 @@ acceptance-criteria:
|
|
|
144
140
|
|
|
145
141
|
**Agent-specific code for this task:**
|
|
146
142
|
|
|
147
|
-
-
|
|
148
|
-
- **Purpose:** Codebase analysis and reporting
|
|
149
|
-
- **Language:** JavaScript
|
|
150
|
-
- **Location:** .sinapse-ai/scripts/analyze-codebase.js
|
|
143
|
+
- N/A
|
|
151
144
|
|
|
152
145
|
---
|
|
153
146
|
|
|
@@ -138,10 +138,6 @@ acceptance-criteria:
|
|
|
138
138
|
|
|
139
139
|
**External/shared resources used by this task:**
|
|
140
140
|
|
|
141
|
-
- **Tool:** code-analyzer
|
|
142
|
-
- **Purpose:** Static code analysis and metrics
|
|
143
|
-
- **Source:** .sinapse-ai/utils/code-analyzer.js
|
|
144
|
-
|
|
145
141
|
- **Tool:** file-system
|
|
146
142
|
- **Purpose:** Recursive directory traversal
|
|
147
143
|
- **Source:** Node.js fs module
|
|
@@ -152,10 +148,7 @@ acceptance-criteria:
|
|
|
152
148
|
|
|
153
149
|
**Agent-specific code for this task:**
|
|
154
150
|
|
|
155
|
-
-
|
|
156
|
-
- **Purpose:** Codebase analysis and reporting
|
|
157
|
-
- **Language:** JavaScript
|
|
158
|
-
- **Location:** .sinapse-ai/scripts/analyze-codebase.js
|
|
151
|
+
- N/A
|
|
159
152
|
|
|
160
153
|
---
|
|
161
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
|
|
|
@@ -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,10 +131,6 @@ acceptance-criteria:
|
|
|
131
131
|
|
|
132
132
|
**External/shared resources used by this task:**
|
|
133
133
|
|
|
134
|
-
- **Tool:** code-analyzer
|
|
135
|
-
- **Purpose:** Static code analysis and metrics
|
|
136
|
-
- **Source:** .sinapse-ai/utils/code-analyzer.js
|
|
137
|
-
|
|
138
134
|
- **Tool:** file-system
|
|
139
135
|
- **Purpose:** Recursive directory traversal
|
|
140
136
|
- **Source:** Node.js fs module
|
|
@@ -145,10 +141,7 @@ acceptance-criteria:
|
|
|
145
141
|
|
|
146
142
|
**Agent-specific code for this task:**
|
|
147
143
|
|
|
148
|
-
-
|
|
149
|
-
- **Purpose:** Codebase analysis and reporting
|
|
150
|
-
- **Language:** JavaScript
|
|
151
|
-
- **Location:** .sinapse-ai/scripts/analyze-codebase.js
|
|
144
|
+
- N/A
|
|
152
145
|
|
|
153
146
|
---
|
|
154
147
|
|
|
@@ -131,10 +131,7 @@ acceptance-criteria:
|
|
|
131
131
|
|
|
132
132
|
**Agent-specific code for this task:**
|
|
133
133
|
|
|
134
|
-
-
|
|
135
|
-
- **Purpose:** Codebase analysis and reporting
|
|
136
|
-
- **Language:** JavaScript
|
|
137
|
-
- **Location:** .sinapse-ai/scripts/analyze-codebase.js
|
|
134
|
+
- N/A
|
|
138
135
|
|
|
139
136
|
---
|
|
140
137
|
|
|
@@ -129,10 +129,6 @@ acceptance-criteria:
|
|
|
129
129
|
|
|
130
130
|
**External/shared resources used by this task:**
|
|
131
131
|
|
|
132
|
-
- **Tool:** code-analyzer
|
|
133
|
-
- **Purpose:** Static code analysis and metrics
|
|
134
|
-
- **Source:** .sinapse-ai/utils/code-analyzer.js
|
|
135
|
-
|
|
136
132
|
- **Tool:** file-system
|
|
137
133
|
- **Purpose:** Recursive directory traversal
|
|
138
134
|
- **Source:** Node.js fs module
|
|
@@ -143,10 +139,7 @@ acceptance-criteria:
|
|
|
143
139
|
|
|
144
140
|
**Agent-specific code for this task:**
|
|
145
141
|
|
|
146
|
-
-
|
|
147
|
-
- **Purpose:** Codebase analysis and reporting
|
|
148
|
-
- **Language:** JavaScript
|
|
149
|
-
- **Location:** .sinapse-ai/scripts/analyze-codebase.js
|
|
142
|
+
- N/A
|
|
150
143
|
|
|
151
144
|
---
|
|
152
145
|
|
|
@@ -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
|
|
|
@@ -466,11 +466,11 @@ acceptance-criteria:
|
|
|
466
466
|
|
|
467
467
|
- **Tool:** task-runner
|
|
468
468
|
- **Purpose:** Task execution and orchestration
|
|
469
|
-
- **Source:** .sinapse-ai/core/
|
|
469
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
470
470
|
|
|
471
471
|
- **Tool:** logger
|
|
472
472
|
- **Purpose:** Execution logging and error tracking
|
|
473
|
-
- **Source:** .sinapse-ai/
|
|
473
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
474
474
|
|
|
475
475
|
---
|
|
476
476
|
|
|
@@ -481,7 +481,7 @@ acceptance-criteria:
|
|
|
481
481
|
- **Script:** execute-task.js
|
|
482
482
|
- **Purpose:** Generic task execution wrapper
|
|
483
483
|
- **Language:** JavaScript
|
|
484
|
-
- **Location:** .sinapse-ai/
|
|
484
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
485
485
|
|
|
486
486
|
---
|
|
487
487
|
|
|
@@ -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
|
|
|
@@ -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,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
|
|
|
@@ -653,7 +653,7 @@ acceptance-criteria:
|
|
|
653
653
|
- **Script:** execute-task.js
|
|
654
654
|
- **Purpose:** Generic task execution wrapper
|
|
655
655
|
- **Language:** JavaScript
|
|
656
|
-
- **Location:** .sinapse-ai/
|
|
656
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
657
657
|
|
|
658
658
|
---
|
|
659
659
|
|
|
@@ -352,11 +352,11 @@ acceptance-criteria:
|
|
|
352
352
|
|
|
353
353
|
- **Tool:** task-runner
|
|
354
354
|
- **Purpose:** Task execution and orchestration
|
|
355
|
-
- **Source:** .sinapse-ai/core/
|
|
355
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
356
356
|
|
|
357
357
|
- **Tool:** logger
|
|
358
358
|
- **Purpose:** Execution logging and error tracking
|
|
359
|
-
- **Source:** .sinapse-ai/
|
|
359
|
+
- **Source:** .sinapse-ai/core/execution/
|
|
360
360
|
|
|
361
361
|
---
|
|
362
362
|
|
|
@@ -367,7 +367,7 @@ acceptance-criteria:
|
|
|
367
367
|
- **Script:** execute-task.js
|
|
368
368
|
- **Purpose:** Generic task execution wrapper
|
|
369
369
|
- **Language:** JavaScript
|
|
370
|
-
- **Location:** .sinapse-ai/
|
|
370
|
+
- **Location:** .sinapse-ai/core/execution/
|
|
371
371
|
|
|
372
372
|
---
|
|
373
373
|
|
|
@@ -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
|
|
|
@@ -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,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
|
|
|
@@ -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
|
|
|
@@ -143,7 +143,7 @@ acceptance-criteria:
|
|
|
143
143
|
|
|
144
144
|
- **Tool:** component-generator
|
|
145
145
|
- **Purpose:** Generate new components from templates
|
|
146
|
-
- **Source:** .sinapse-ai/scripts/component-generator.js
|
|
146
|
+
- **Source:** .sinapse-ai/infrastructure/scripts/component-generator.js
|
|
147
147
|
|
|
148
148
|
- **Tool:** file-system
|
|
149
149
|
- **Purpose:** File creation and validation
|
|
@@ -155,10 +155,7 @@ acceptance-criteria:
|
|
|
155
155
|
|
|
156
156
|
**Agent-specific code for this task:**
|
|
157
157
|
|
|
158
|
-
-
|
|
159
|
-
- **Purpose:** Component creation workflow
|
|
160
|
-
- **Language:** JavaScript
|
|
161
|
-
- **Location:** .sinapse-ai/scripts/create-component.js
|
|
158
|
+
- N/A
|
|
162
159
|
|
|
163
160
|
---
|
|
164
161
|
|
|
@@ -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
|
|
|
@@ -139,7 +139,7 @@ acceptance-criteria:
|
|
|
139
139
|
|
|
140
140
|
- **Tool:** component-generator
|
|
141
141
|
- **Purpose:** Generate new components from templates
|
|
142
|
-
- **Source:** .sinapse-ai/scripts/component-generator.js
|
|
142
|
+
- **Source:** .sinapse-ai/infrastructure/scripts/component-generator.js
|
|
143
143
|
|
|
144
144
|
- **Tool:** file-system
|
|
145
145
|
- **Purpose:** File creation and validation
|
|
@@ -151,10 +151,7 @@ acceptance-criteria:
|
|
|
151
151
|
|
|
152
152
|
**Agent-specific code for this task:**
|
|
153
153
|
|
|
154
|
-
-
|
|
155
|
-
- **Purpose:** Component creation workflow
|
|
156
|
-
- **Language:** JavaScript
|
|
157
|
-
- **Location:** .sinapse-ai/scripts/create-component.js
|
|
154
|
+
- N/A
|
|
158
155
|
|
|
159
156
|
---
|
|
160
157
|
|