@geraldmaron/construct 1.2.2 → 1.3.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/README.md +7 -10
- package/bin/construct +286 -220
- package/bin/construct-postinstall.mjs +0 -21
- package/commands/work/optimize-prompts.md +1 -1
- package/examples/distribution/sources/adr.md +2 -2
- package/examples/seed-observations/decisions.md +1 -1
- package/lib/artifact-loop-core.mjs +412 -0
- package/lib/artifact-manifest.mjs +6 -0
- package/lib/artifact-release-gate.mjs +115 -49
- package/lib/audit-rules.mjs +2 -4
- package/lib/audit-skills.mjs +32 -20
- package/lib/audit-specialists.mjs +44 -26
- package/lib/auto-docs.mjs +6 -5
- package/lib/brand-prose.mjs +3 -3
- package/lib/brand-tokens.mjs +2 -2
- package/lib/certification/artifact-fixtures.mjs +4 -1
- package/lib/certification/demo-parity.mjs +6 -32
- package/lib/certification/real-llm-scenarios.mjs +58 -13
- package/lib/certification/role-cards.mjs +7 -6
- package/lib/certification/role-overlays.mjs +4 -4
- package/lib/certification/runner.mjs +9 -2
- package/lib/certification/skill-inventory.mjs +34 -22
- package/lib/certification/skill-scenarios.mjs +21 -8
- package/lib/certification/specialist-contracts.mjs +4 -3
- package/lib/certification/specialist-scenarios.mjs +7 -6
- package/lib/certification/status.mjs +5 -4
- package/lib/cli-commands.mjs +56 -57
- package/lib/comment-lint.mjs +1 -5
- package/lib/completions.mjs +20 -2
- package/lib/config/legacy-config-migration.mjs +125 -0
- package/lib/config/schema.mjs +5 -5
- package/lib/config/source-targets.mjs +80 -0
- package/lib/contracts/validate.mjs +119 -51
- package/lib/decisions/golden.mjs +3 -2
- package/lib/decisions/registry.mjs +11 -6
- package/lib/demo-project.mjs +188 -0
- package/lib/demo-recording.mjs +9 -34
- package/lib/demo-script.mjs +2 -2
- package/lib/demo-surface.mjs +13 -131
- package/lib/demo-tour-renderer.mjs +92 -0
- package/lib/demo.mjs +69 -54
- package/lib/diagram-export.mjs +63 -14
- package/lib/doctor/source-checkout.mjs +3 -4
- package/lib/doctor/watchers/consistency.mjs +90 -22
- package/lib/doctor/watchers/credential-parity.mjs +97 -0
- package/lib/doctor/watchers/mcp-protocol.mjs +1 -1
- package/lib/doctor/watchers/service-health.mjs +4 -32
- package/lib/document-export.mjs +73 -9
- package/lib/document-extract.mjs +10 -198
- package/lib/embed/artifact.mjs +2 -3
- package/lib/embed/cli.mjs +1 -1
- package/lib/embed/config.mjs +1 -2
- package/lib/embed/customer-profiles.mjs +1 -1
- package/lib/embed/daemon.mjs +5 -6
- package/lib/embed/demand-fetch.mjs +114 -2
- package/lib/embed/docs-lifecycle.mjs +9 -5
- package/lib/embed/intake-metrics.mjs +2 -2
- package/lib/embed/notifications.mjs +2 -3
- package/lib/embed/recommendation-store.mjs +25 -22
- package/lib/embed/role-framing.mjs +4 -9
- package/lib/embedded-contract/capability.mjs +4 -2
- package/lib/embedded-contract/contract-version.mjs +1 -1
- package/lib/env-config.mjs +2 -2
- package/lib/flavors/loader.mjs +21 -19
- package/lib/graph/build-from-registry.mjs +31 -7
- package/lib/graph/staleness.mjs +1 -1
- package/lib/headhunt.mjs +82 -35
- package/lib/hooks/agent-tracker.mjs +2 -2
- package/lib/hooks/config-protection.mjs +1 -1
- package/lib/hooks/registry-sync.mjs +3 -3
- package/lib/host-capabilities.mjs +5 -5
- package/lib/improvement/controller.mjs +2 -2
- package/lib/init-unified.mjs +19 -21
- package/lib/intake/classify.mjs +26 -0
- package/lib/intake/daemon.mjs +2 -3
- package/lib/intake/prepare.mjs +10 -3
- package/lib/intake/session-prelude.mjs +1 -1
- package/lib/intake/tables/creative.mjs +9 -9
- package/lib/intake/tables/operations.mjs +4 -4
- package/lib/intake/tables/research.mjs +2 -2
- package/lib/integrations/intake-integrations.mjs +9 -10
- package/lib/knowledge/research-store.mjs +2 -2
- package/lib/mcp/server.mjs +104 -61
- package/lib/mcp/tool-budget.mjs +1 -46
- package/lib/mcp/tool-recovery.mjs +44 -0
- package/lib/mcp/tools/artifact-author.mjs +36 -0
- package/lib/mcp/tools/find-tool.mjs +86 -0
- package/lib/mcp/tools/orchestration-run.mjs +107 -69
- package/lib/mcp/tools/project.mjs +4 -3
- package/lib/mcp/tools/{profile.mjs → scope.mjs} +54 -52
- package/lib/mcp/tools/skills.mjs +39 -22
- package/lib/mcp/tools/telemetry.mjs +2 -1
- package/lib/mcp/tools/workflow.mjs +1 -1
- package/lib/mcp-platform-config.mjs +7 -5
- package/lib/migrations/index.mjs +4 -2
- package/lib/migrations/v2-unified-registry.mjs +35 -0
- package/lib/model-router.mjs +203 -36
- package/lib/models/catalog.mjs +25 -9
- package/lib/models/execution-capability-profile.mjs +3 -3
- package/lib/models/execution-policy.mjs +7 -6
- package/lib/models/provider-poll.mjs +18 -4
- package/lib/opencode-config.mjs +56 -1
- package/lib/opencode-runtime-plugin.mjs +13 -10
- package/lib/oracle/artifact-gate.mjs +14 -4
- package/lib/oracle/cli.mjs +2 -0
- package/lib/oracle/dispatch.mjs +18 -1
- package/lib/oracle/execute.mjs +39 -7
- package/lib/oracle/index.mjs +1 -1
- package/lib/oracle/org-graph.mjs +10 -5
- package/lib/oracle/policy.mjs +6 -0
- package/lib/oracle/read-model.mjs +103 -6
- package/lib/oracle/reconcile.mjs +31 -4
- package/lib/oracle/remediation-dispatch.mjs +53 -0
- package/lib/oracle/routing.mjs +5 -0
- package/lib/oracle/synthesize.mjs +80 -3
- package/lib/orchestration/routing-tables.mjs +44 -10
- package/lib/orchestration/runtime.mjs +2 -0
- package/lib/orchestration/worker.mjs +1 -1
- package/lib/orchestration-policy.mjs +351 -62
- package/lib/overrides/resolver.mjs +1 -12
- package/lib/parity.mjs +37 -11
- package/lib/policy/engine.mjs +80 -15
- package/lib/prompt-composer.js +51 -15
- package/lib/prompt-metadata.mjs +3 -2
- package/lib/providers/connection-probe.mjs +58 -0
- package/lib/providers/copilot-auth.mjs +1 -1
- package/lib/providers/credential-bootstrap.mjs +1 -1
- package/lib/providers/op-run.mjs +3 -4
- package/lib/providers/secret-resolver.mjs +31 -0
- package/lib/publish-tooling.mjs +3 -11
- package/lib/publish.mjs +12 -29
- package/lib/reconcile/mcp-entry-reconcile.mjs +14 -9
- package/lib/reflect.mjs +2 -2
- package/lib/registry/agent-manifest.mjs +190 -0
- package/lib/registry/assemble.mjs +133 -0
- package/lib/registry/catalog.mjs +171 -0
- package/lib/registry/cli.mjs +590 -6
- package/lib/registry/consolidation.mjs +5 -4
- package/lib/registry/docs-sync.mjs +67 -0
- package/lib/registry/loader.mjs +147 -0
- package/lib/registry/org-io.mjs +76 -0
- package/lib/registry/retired-paths.mjs +71 -0
- package/lib/registry/surface-map.mjs +5 -7
- package/lib/registry/validator.mjs +438 -0
- package/lib/research-execution-policy.mjs +173 -0
- package/lib/roles/catalog.mjs +4 -9
- package/lib/roles/fence.mjs +107 -1
- package/lib/roles/flavor-bindings.mjs +68 -0
- package/lib/roles/gateway.mjs +140 -29
- package/lib/roles/manifest.mjs +22 -13
- package/lib/roles/router.mjs +1 -1
- package/lib/runtime-env.mjs +1 -1
- package/lib/scopes/enrich.mjs +67 -0
- package/lib/scopes/hooks.mjs +12 -0
- package/lib/{profiles → scopes}/lifecycle.mjs +70 -70
- package/lib/scopes/loader.mjs +104 -0
- package/lib/scopes/rebrand.mjs +32 -0
- package/lib/scopes/research-profile.mjs +16 -0
- package/lib/scopes/teams.mjs +98 -0
- package/lib/service-manager.mjs +1 -117
- package/lib/setup-prompts.mjs +1 -1
- package/lib/setup.mjs +17 -28
- package/lib/skills/composition-graph.mjs +98 -0
- package/lib/skills/router.mjs +80 -0
- package/lib/specialist-contracts.mjs +17 -18
- package/lib/specialists/postconditions.mjs +2 -2
- package/lib/specialists/prompt-schema.mjs +6 -5
- package/lib/specialists/roster.mjs +7 -12
- package/lib/specialists/schema.mjs +9 -6
- package/lib/status.mjs +25 -90
- package/lib/storage/file-lock.mjs +6 -3
- package/lib/telemetry/skill-calls.mjs +1 -1
- package/lib/templates/doc-presentation.mjs +63 -0
- package/lib/templates/visual-requirements.mjs +35 -2
- package/lib/term-format.mjs +107 -2
- package/lib/test-env-setup.mjs +21 -0
- package/lib/ui/components.mjs +42 -0
- package/lib/ui/glyphs.mjs +58 -0
- package/lib/ui/links.mjs +115 -0
- package/lib/ui/theme.mjs +108 -0
- package/lib/uninstall/uninstall.mjs +2 -1
- package/lib/validator.mjs +45 -8
- package/lib/validators/skill-effectiveness.mjs +174 -0
- package/lib/validators/skills.mjs +1 -1
- package/package.json +12 -7
- package/personas/construct.md +12 -3
- package/platforms/claude/CLAUDE.md +1 -1
- package/rules/common/beads-hygiene.md +52 -0
- package/rules/common/neurodivergent-output.md +4 -7
- package/rules/common/research.md +2 -0
- package/scripts/sync-specialists.mjs +260 -49
- package/skills/ai/prompt-optimizer.md +3 -3
- package/skills/brand/output-vibe.md +48 -0
- package/skills/docs/adr-workflow.md +3 -0
- package/skills/docs/backlog-proposal-workflow.md +3 -0
- package/skills/docs/codebase-research-workflow.md +5 -2
- package/skills/docs/customer-profile-workflow.md +3 -0
- package/skills/docs/document-ingest-workflow.md +3 -0
- package/skills/docs/evidence-ingest-workflow.md +4 -1
- package/skills/docs/init-project.md +1 -1
- package/skills/docs/prd-workflow.md +1 -1
- package/skills/docs/prfaq-workflow.md +3 -0
- package/skills/docs/product-intelligence-workflow.md +4 -1
- package/skills/docs/product-signal-workflow.md +3 -0
- package/skills/docs/research-workflow.md +13 -6
- package/skills/docs/runbook-workflow.md +3 -0
- package/skills/docs/strategy-workflow.md +3 -0
- package/skills/docs/user-research-workflow.md +6 -3
- package/skills/operating/orchestration-reference.md +1 -1
- package/skills/roles/{engineer.ai.md → ai-engineer.md} +2 -2
- package/skills/roles/architect.ai-systems.md +1 -1
- package/skills/roles/architect.data.md +1 -1
- package/skills/roles/architect.enterprise.md +1 -1
- package/skills/roles/architect.integration.md +1 -1
- package/skills/roles/architect.md +1 -1
- package/skills/roles/architect.platform.md +1 -1
- package/skills/roles/{product-manager.business-strategy.md → business-strategist.md} +3 -3
- package/skills/roles/data-analyst.experiment.md +1 -1
- package/skills/roles/data-analyst.md +1 -1
- package/skills/roles/data-analyst.product-intelligence.md +1 -1
- package/skills/roles/data-analyst.product.md +1 -1
- package/skills/roles/data-analyst.telemetry.md +1 -1
- package/skills/roles/{engineer.data.md → data-engineer.md} +2 -2
- package/skills/roles/data-engineer.pipeline.md +2 -2
- package/skills/roles/data-engineer.vector-retrieval.md +2 -2
- package/skills/roles/data-engineer.warehouse.md +2 -2
- package/skills/roles/debugger.md +1 -1
- package/skills/roles/designer.accessibility.md +1 -1
- package/skills/roles/designer.md +1 -1
- package/skills/roles/{reviewer.devil-advocate.md → devil-advocate.md} +2 -2
- package/skills/roles/{operator.docs.md → docs-keeper.md} +3 -3
- package/skills/roles/engineer.md +3 -7
- package/skills/roles/{reviewer.evaluator.md → evaluator.md} +2 -2
- package/skills/roles/{researcher.explorer.md → explorer.md} +2 -2
- package/skills/roles/{operator.md → operations.md} +2 -5
- package/skills/roles/orchestrator.md +1 -1
- package/skills/roles/{engineer.platform.md → platform-engineer.md} +2 -2
- package/skills/roles/product-manager.ai-product.md +1 -1
- package/skills/roles/product-manager.enterprise.md +1 -1
- package/skills/roles/product-manager.growth.md +1 -2
- package/skills/roles/product-manager.md +1 -2
- package/skills/roles/product-manager.platform.md +1 -1
- package/skills/roles/product-manager.product.md +1 -1
- package/skills/roles/qa.ai-eval.md +1 -1
- package/skills/roles/qa.api-contract.md +1 -1
- package/skills/roles/qa.data-pipeline.md +1 -1
- package/skills/roles/qa.md +1 -1
- package/skills/roles/qa.web-ui.md +1 -1
- package/skills/roles/{operator.release.md → release-manager.md} +3 -3
- package/skills/roles/researcher.md +1 -1
- package/skills/roles/reviewer.md +1 -1
- package/skills/roles/security.ai.md +1 -1
- package/skills/roles/security.appsec.md +1 -1
- package/skills/roles/security.cloud.md +1 -1
- package/skills/roles/security.legal-compliance.md +1 -1
- package/skills/roles/security.md +1 -1
- package/skills/roles/security.privacy.md +1 -1
- package/skills/roles/security.supply-chain.md +1 -1
- package/skills/roles/{operator.sre.md → sre.md} +3 -3
- package/skills/roles/{qa.test-automation.md → test-automation.md} +2 -2
- package/skills/roles/{reviewer.trace.md → trace-reviewer.md} +2 -2
- package/skills/roles/{researcher.ux.md → ux-researcher.md} +2 -2
- package/skills/routing.json +18 -0
- package/skills/routing.md +1 -1
- package/specialists/artifact-manifest.json +2 -1
- package/specialists/audit-enrichments.json +14 -14
- package/specialists/org/contracts/accessibility-to-qa.json +37 -0
- package/specialists/org/contracts/any-to-business-strategist.json +57 -0
- package/specialists/org/contracts/any-to-debugger.json +38 -0
- package/specialists/org/contracts/any-to-designer.json +33 -0
- package/specialists/org/contracts/any-to-docs-keeper.json +34 -0
- package/specialists/org/contracts/any-to-explorer.json +39 -0
- package/specialists/org/contracts/any-to-sre-incident.json +33 -0
- package/specialists/org/contracts/any-to-trace-reviewer.json +32 -0
- package/specialists/org/contracts/architect-to-ai-engineer.json +32 -0
- package/specialists/org/contracts/architect-to-data-engineer.json +52 -0
- package/specialists/org/contracts/architect-to-devil-advocate.json +38 -0
- package/specialists/org/contracts/architect-to-engineer.json +34 -0
- package/specialists/org/contracts/architect-to-evaluator.json +59 -0
- package/specialists/org/contracts/architect-to-legal-compliance.json +55 -0
- package/specialists/org/contracts/architect-to-operations.json +45 -0
- package/specialists/org/contracts/architect-to-platform-engineer.json +42 -0
- package/specialists/org/contracts/business-strategist-to-product-manager.json +39 -0
- package/specialists/org/contracts/construct-to-orchestrator.json +36 -0
- package/specialists/org/contracts/construct-to-rd-lead.json +53 -0
- package/specialists/org/contracts/data-analyst-to-product-manager.json +43 -0
- package/specialists/org/contracts/data-engineer-to-platform-engineer.json +36 -0
- package/specialists/org/contracts/designer-to-accessibility.json +36 -0
- package/specialists/org/contracts/engineer-to-qa.json +34 -0
- package/specialists/org/contracts/engineer-to-reviewer.json +52 -0
- package/specialists/org/contracts/explorer-to-engineer.json +38 -0
- package/specialists/org/contracts/legal-compliance-to-release-manager.json +43 -0
- package/specialists/org/contracts/platform-engineer-to-engineer.json +31 -0
- package/specialists/org/contracts/product-manager-to-architect.json +71 -0
- package/specialists/org/contracts/product-manager-to-data-analyst.json +49 -0
- package/specialists/org/contracts/product-manager-to-ux-researcher.json +51 -0
- package/specialists/org/contracts/qa-to-release-manager.json +42 -0
- package/specialists/org/contracts/qa-to-test-automation.json +42 -0
- package/specialists/org/contracts/rd-lead-to-architect.json +38 -0
- package/specialists/org/contracts/researcher-to-architect.json +40 -0
- package/specialists/org/contracts/researcher-to-product-manager.json +57 -0
- package/specialists/org/contracts/reviewer-to-security.json +41 -0
- package/specialists/org/contracts/sre-to-release-manager.json +36 -0
- package/specialists/org/contracts/test-automation-to-engineer.json +34 -0
- package/specialists/org/contracts/trace-reviewer-to-sre.json +41 -0
- package/specialists/org/contracts/user-to-construct.json +30 -0
- package/specialists/org/groups/engineering-group.json +43 -0
- package/specialists/org/groups/governance-group.json +38 -0
- package/specialists/org/groups/operations-group.json +41 -0
- package/specialists/org/groups/product-group.json +46 -0
- package/specialists/org/groups/quality-group.json +42 -0
- package/specialists/org/groups/strategy-group.json +41 -0
- package/specialists/org/policies/action-approval.json +13 -0
- package/specialists/org/policies/agents-routing.json +13 -0
- package/specialists/org/policies/architecture.json +20 -0
- package/specialists/org/policies/bash-safety.json +13 -0
- package/specialists/org/policies/beads-hygiene.json +13 -0
- package/specialists/org/policies/bootstrap-state.json +13 -0
- package/specialists/org/policies/code-review.json +13 -0
- package/specialists/org/policies/coding-style.json +13 -0
- package/specialists/org/policies/comments.json +13 -0
- package/specialists/org/policies/commit-approval.json +13 -0
- package/specialists/org/policies/contract-preconditions.json +13 -0
- package/specialists/org/policies/deployment.json +20 -0
- package/specialists/org/policies/description.json +14 -0
- package/specialists/org/policies/design-approval.json +19 -0
- package/specialists/org/policies/doc-ownership.json +13 -0
- package/specialists/org/policies/file-path-fence.json +13 -0
- package/specialists/org/policies/framing.json +13 -0
- package/specialists/org/policies/git-workflow.json +13 -0
- package/specialists/org/policies/incident-response.json +15 -0
- package/specialists/org/policies/intake-triage.json +15 -0
- package/specialists/org/policies/neurodivergent-output.json +13 -0
- package/specialists/org/policies/no-fabrication.json +13 -0
- package/specialists/org/policies/patterns.json +13 -0
- package/specialists/org/policies/quality-gate-approval.json +17 -0
- package/specialists/org/policies/release-gates.json +13 -0
- package/specialists/org/policies/research-evidence.json +13 -0
- package/specialists/org/policies/review-before-change.json +13 -0
- package/specialists/org/policies/rollback.json +15 -0
- package/specialists/org/policies/scope-change.json +20 -0
- package/specialists/org/policies/secret-scan.json +13 -0
- package/specialists/org/policies/security-approval.json +17 -0
- package/specialists/org/policies/security.json +13 -0
- package/specialists/org/policies/session-efficiency.json +13 -0
- package/specialists/org/policies/skill-routing.json +13 -0
- package/specialists/org/policies/strategic-prioritization.json +17 -0
- package/specialists/org/policies/testing.json +13 -0
- package/specialists/org/policies/tool-invisibility.json +14 -0
- package/specialists/org/scopes/creative.json +54 -0
- package/specialists/org/scopes/operations.json +51 -0
- package/specialists/org/scopes/research.json +60 -0
- package/specialists/org/scopes/rnd.json +81 -0
- package/specialists/org/specialists/cx-accessibility.json +69 -0
- package/specialists/org/specialists/cx-ai-engineer.json +75 -0
- package/specialists/org/specialists/cx-architect.json +89 -0
- package/specialists/org/specialists/cx-business-strategist.json +72 -0
- package/specialists/org/specialists/cx-data-analyst.json +68 -0
- package/specialists/org/specialists/cx-data-engineer.json +71 -0
- package/specialists/org/specialists/cx-debugger.json +75 -0
- package/specialists/org/specialists/cx-designer.json +85 -0
- package/specialists/org/specialists/cx-devil-advocate.json +71 -0
- package/specialists/org/specialists/cx-docs-keeper.json +82 -0
- package/specialists/org/specialists/cx-engineer.json +106 -0
- package/specialists/org/specialists/cx-evaluator.json +69 -0
- package/specialists/org/specialists/cx-explorer.json +69 -0
- package/specialists/org/specialists/cx-legal-compliance.json +74 -0
- package/specialists/org/specialists/cx-operations.json +72 -0
- package/specialists/org/specialists/cx-oracle.json +46 -0
- package/specialists/org/specialists/cx-orchestrator.json +81 -0
- package/specialists/org/specialists/cx-platform-engineer.json +80 -0
- package/specialists/org/specialists/cx-product-manager.json +102 -0
- package/specialists/org/specialists/cx-qa.json +79 -0
- package/specialists/org/specialists/cx-rd-lead.json +73 -0
- package/specialists/org/specialists/cx-release-manager.json +77 -0
- package/specialists/org/specialists/cx-researcher.json +82 -0
- package/specialists/org/specialists/cx-reviewer.json +71 -0
- package/specialists/org/specialists/cx-security.json +91 -0
- package/specialists/org/specialists/cx-sre.json +94 -0
- package/specialists/org/specialists/cx-test-automation.json +69 -0
- package/specialists/org/specialists/cx-trace-reviewer.json +69 -0
- package/specialists/org/specialists/cx-ux-researcher.json +68 -0
- package/specialists/org/teams/accessibility-team.json +39 -0
- package/specialists/org/teams/design-team.json +40 -0
- package/specialists/org/teams/engineering-team.json +50 -0
- package/specialists/org/teams/governance-team.json +41 -0
- package/specialists/org/teams/operations-team.json +46 -0
- package/specialists/org/teams/product-management-team.json +45 -0
- package/specialists/org/teams/quality-team.json +49 -0
- package/specialists/org/teams/research-team.json +39 -0
- package/specialists/org/teams/strategy-team.json +48 -0
- package/specialists/org/teams/ux-research-team.json +39 -0
- package/specialists/prompts/_shared/validation-contract.md +1 -1
- package/specialists/prompts/_team-template.md +10 -0
- package/specialists/prompts/cx-accessibility.md +1 -0
- package/specialists/prompts/cx-ai-engineer.md +1 -1
- package/specialists/prompts/cx-business-strategist.md +1 -1
- package/specialists/prompts/cx-data-engineer.md +1 -1
- package/specialists/prompts/cx-designer.md +1 -0
- package/specialists/prompts/cx-devil-advocate.md +1 -1
- package/specialists/prompts/cx-docs-keeper.md +1 -1
- package/specialists/prompts/cx-evaluator.md +1 -1
- package/specialists/prompts/cx-explorer.md +1 -1
- package/specialists/prompts/cx-operations.md +1 -1
- package/specialists/prompts/cx-oracle.md +7 -3
- package/specialists/prompts/cx-orchestrator.md +17 -1
- package/specialists/prompts/cx-platform-engineer.md +1 -1
- package/specialists/prompts/cx-product-manager.md +2 -0
- package/specialists/prompts/cx-release-manager.md +1 -1
- package/specialists/prompts/cx-researcher.md +7 -4
- package/specialists/prompts/cx-sre.md +1 -1
- package/specialists/prompts/cx-test-automation.md +2 -2
- package/specialists/prompts/cx-trace-reviewer.md +3 -3
- package/specialists/prompts/cx-ux-researcher.md +2 -1
- package/templates/demos/scripts/architecture-review-adr.json +30 -0
- package/templates/demos/scripts/capability-contract.json +25 -0
- package/templates/demos/scripts/intake-triage.json +25 -0
- package/templates/demos/scripts/profile-doctor-health.json +25 -0
- package/templates/demos/tapes/agentic-platforms-prd.tape +2 -2
- package/templates/demos/tapes/architecture-review-adr.tape +44 -0
- package/templates/demos/tapes/capability-contract.tape +39 -0
- package/templates/demos/tapes/intake-triage.tape +39 -0
- package/templates/demos/tapes/profile-doctor-health.tape +39 -0
- package/templates/distribution/construct-brand.typ +23 -18
- package/templates/distribution/construct-decision.typ +1 -1
- package/templates/distribution/construct-pdf.typ +1 -1
- package/templates/distribution/construct-prd.typ +1 -1
- package/templates/distribution/construct-research.typ +1 -1
- package/templates/distribution/mermaid-puppeteer.json +8 -0
- package/templates/docs/persona-artifact.md +1 -1
- package/templates/docs/prd.md +6 -0
- package/lib/boundary.mjs +0 -127
- package/lib/certification/dashboard-api.mjs +0 -71
- package/lib/chat/cli.mjs +0 -333
- package/lib/chat/command-suggest.mjs +0 -161
- package/lib/chat/commands.mjs +0 -215
- package/lib/chat/config.mjs +0 -142
- package/lib/chat/context-compactor.mjs +0 -250
- package/lib/chat/context-continuation.mjs +0 -253
- package/lib/chat/continuation-source.mjs +0 -58
- package/lib/chat/demo-guide.mjs +0 -61
- package/lib/chat/design-tokens.mjs +0 -91
- package/lib/chat/desktop-binary.mjs +0 -81
- package/lib/chat/desktop-build.mjs +0 -130
- package/lib/chat/desktop-launcher.mjs +0 -133
- package/lib/chat/evidence.mjs +0 -145
- package/lib/chat/export.mjs +0 -74
- package/lib/chat/harness/driver.mjs +0 -91
- package/lib/chat/list-picker.mjs +0 -112
- package/lib/chat/model-picker.mjs +0 -356
- package/lib/chat/openrouter-fallback.mjs +0 -151
- package/lib/chat/permission-prompt.mjs +0 -33
- package/lib/chat/picker-catalog.mjs +0 -45
- package/lib/chat/policy-telemetry.mjs +0 -34
- package/lib/chat/present.mjs +0 -246
- package/lib/chat/session-context.mjs +0 -39
- package/lib/chat/session-persist.mjs +0 -73
- package/lib/chat/session-restore.mjs +0 -71
- package/lib/chat/session-settings.mjs +0 -53
- package/lib/chat/system-prompt.mjs +0 -52
- package/lib/chat/transparency.mjs +0 -93
- package/lib/chat/tui/color-scheme.mjs +0 -42
- package/lib/chat/tui/markdown.mjs +0 -123
- package/lib/chat/tui/presentation.mjs +0 -100
- package/lib/chat/tui/render.mjs +0 -500
- package/lib/chat/tui/turn-block.mjs +0 -284
- package/lib/chat/tui/turn-present.mjs +0 -18
- package/lib/chat/tui/turn-state.mjs +0 -88
- package/lib/chat/tui/usage.mjs +0 -122
- package/lib/chat/web-commands.mjs +0 -146
- package/lib/chat/web-launcher.mjs +0 -63
- package/lib/chat/web-picker-keys.mjs +0 -46
- package/lib/chat/web-session.mjs +0 -159
- package/lib/config/alias.mjs +0 -57
- package/lib/dashboard-demo.mjs +0 -71
- package/lib/dashboard-static.mjs +0 -175
- package/lib/install/desktop-binary-download.mjs +0 -88
- package/lib/profiles/loader.mjs +0 -123
- package/lib/profiles/rebrand.mjs +0 -46
- package/lib/server/auth.mjs +0 -169
- package/lib/server/chat-loop.mjs +0 -622
- package/lib/server/chat.mjs +0 -336
- package/lib/server/cors.mjs +0 -77
- package/lib/server/csrf.mjs +0 -103
- package/lib/server/demo-preview.mjs +0 -63
- package/lib/server/index.mjs +0 -2641
- package/lib/server/insights.mjs +0 -780
- package/lib/server/langfuse-login.mjs +0 -58
- package/lib/server/rate-limit.mjs +0 -93
- package/lib/server/telemetry-login.mjs +0 -100
- package/lib/server/webhook.mjs +0 -512
- package/specialists/contracts.json +0 -1032
- package/specialists/contracts.schema.json +0 -83
- package/specialists/policy-inventory.json +0 -188
- package/specialists/registry.json +0 -1412
- package/specialists/role-manifests.json +0 -217
- package/specialists/teams.json +0 -94
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "docs-keeper",
|
|
3
|
+
"displayName": "Owns the record of why, not just what — undocumented decisions become tribal knowledge and then disappear.",
|
|
4
|
+
"description": "Owns the record of why, not just what — undocumented decisions become tribal knowledge and then disappear.",
|
|
5
|
+
"role": "docs-keeper",
|
|
6
|
+
"modelTier": "standard",
|
|
7
|
+
"reasoningEffort": "medium",
|
|
8
|
+
"skills": [
|
|
9
|
+
"docs/adr-workflow",
|
|
10
|
+
"docs/runbook-workflow",
|
|
11
|
+
"docs/init-docs",
|
|
12
|
+
"docs/memo-and-decision-capture",
|
|
13
|
+
"docs/document-ingest-workflow"
|
|
14
|
+
],
|
|
15
|
+
"events": [
|
|
16
|
+
"pr.merged.no-docs",
|
|
17
|
+
"changelog.missing",
|
|
18
|
+
"readme.stale",
|
|
19
|
+
"document.stale"
|
|
20
|
+
],
|
|
21
|
+
"fence": {
|
|
22
|
+
"allowedPaths": [
|
|
23
|
+
"docs/**",
|
|
24
|
+
"**/README.md",
|
|
25
|
+
"CHANGELOG.md"
|
|
26
|
+
],
|
|
27
|
+
"allowedBdLabels": [
|
|
28
|
+
"docs",
|
|
29
|
+
"doc-drift",
|
|
30
|
+
"changelog"
|
|
31
|
+
],
|
|
32
|
+
"allowedCommands": [
|
|
33
|
+
"bd create",
|
|
34
|
+
"bd note",
|
|
35
|
+
"bd update",
|
|
36
|
+
"bd label"
|
|
37
|
+
],
|
|
38
|
+
"approvalRequired": [
|
|
39
|
+
"commit",
|
|
40
|
+
"push",
|
|
41
|
+
"edit:lib/**",
|
|
42
|
+
"edit:bin/**",
|
|
43
|
+
"edit:specialists/**"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"docArtifacts": [
|
|
47
|
+
"memo",
|
|
48
|
+
"changelog"
|
|
49
|
+
],
|
|
50
|
+
"watchConditions": [],
|
|
51
|
+
"permissions": {},
|
|
52
|
+
"promptFile": "specialists/prompts/cx-docs-keeper.md",
|
|
53
|
+
"embedOrientation": {
|
|
54
|
+
"focusAreas": [
|
|
55
|
+
"documentation freshness",
|
|
56
|
+
"decision traceability",
|
|
57
|
+
"context completeness",
|
|
58
|
+
"onboarding clarity"
|
|
59
|
+
],
|
|
60
|
+
"riskSignals": [
|
|
61
|
+
"stale docs",
|
|
62
|
+
"undocumented decisions",
|
|
63
|
+
"missing context updates",
|
|
64
|
+
"tribal knowledge growing"
|
|
65
|
+
],
|
|
66
|
+
"artifactBias": [
|
|
67
|
+
"adrs",
|
|
68
|
+
"notes",
|
|
69
|
+
"memos"
|
|
70
|
+
]
|
|
71
|
+
},
|
|
72
|
+
"canEdit": true,
|
|
73
|
+
"claudeTools": "Read,Grep,Glob,LS,Edit,Write,Bash,list_skills,get_skill,search_skills,get_template,list_templates,memory_search,memory_add_observations",
|
|
74
|
+
"internal": true,
|
|
75
|
+
"killSwitchEnv": "CONSTRUCT_ROLE_DOCS_KEEPER",
|
|
76
|
+
"handoffCandidates": [
|
|
77
|
+
"engineer"
|
|
78
|
+
],
|
|
79
|
+
"team": "operations-team",
|
|
80
|
+
"teamId": "operations-team",
|
|
81
|
+
"groupId": "operations-group"
|
|
82
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "engineer",
|
|
3
|
+
"displayName": "Reads before writing — understanding the existing pattern matters more than having the better one.",
|
|
4
|
+
"description": "Reads before writing — understanding the existing pattern matters more than having the better one.",
|
|
5
|
+
"role": "engineer",
|
|
6
|
+
"modelTier": "standard",
|
|
7
|
+
"reasoningEffort": "medium",
|
|
8
|
+
"skills": [
|
|
9
|
+
"development/typescript",
|
|
10
|
+
"development/python",
|
|
11
|
+
"development/go",
|
|
12
|
+
"development/rust",
|
|
13
|
+
"development/java",
|
|
14
|
+
"development/cpp",
|
|
15
|
+
"development/shell",
|
|
16
|
+
"development/swift",
|
|
17
|
+
"development/kotlin",
|
|
18
|
+
"development/mobile-crossplatform",
|
|
19
|
+
"quality-gates/verify-change",
|
|
20
|
+
"utility/clean-code",
|
|
21
|
+
"frameworks/react",
|
|
22
|
+
"frameworks/nextjs",
|
|
23
|
+
"frameworks/django",
|
|
24
|
+
"frameworks/spring-boot",
|
|
25
|
+
"exploration/unknown-codebase-onboarding",
|
|
26
|
+
"exploration/tracer-bullet-method",
|
|
27
|
+
"exploration/dependency-graph-reading"
|
|
28
|
+
],
|
|
29
|
+
"events": [
|
|
30
|
+
"incident.handoff",
|
|
31
|
+
"bug.assigned",
|
|
32
|
+
"feature.assigned"
|
|
33
|
+
],
|
|
34
|
+
"fence": {
|
|
35
|
+
"allowedPaths": [
|
|
36
|
+
"lib/**",
|
|
37
|
+
"bin/**",
|
|
38
|
+
"src/**",
|
|
39
|
+
"app/**",
|
|
40
|
+
"tests/**",
|
|
41
|
+
"docs/**"
|
|
42
|
+
],
|
|
43
|
+
"allowedBdLabels": [
|
|
44
|
+
"bug",
|
|
45
|
+
"feature",
|
|
46
|
+
"task",
|
|
47
|
+
"engineering",
|
|
48
|
+
"fix"
|
|
49
|
+
],
|
|
50
|
+
"allowedCommands": [
|
|
51
|
+
"bd create",
|
|
52
|
+
"bd note",
|
|
53
|
+
"bd update",
|
|
54
|
+
"bd link",
|
|
55
|
+
"bd label",
|
|
56
|
+
"bd close",
|
|
57
|
+
"node",
|
|
58
|
+
"npm",
|
|
59
|
+
"git status",
|
|
60
|
+
"git diff",
|
|
61
|
+
"git log"
|
|
62
|
+
],
|
|
63
|
+
"approvalRequired": [
|
|
64
|
+
"commit",
|
|
65
|
+
"push",
|
|
66
|
+
"edit:specialists/org",
|
|
67
|
+
"edit:lib/setup.mjs",
|
|
68
|
+
"edit:claude/settings.template.json"
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
"docArtifacts": [],
|
|
72
|
+
"watchConditions": [],
|
|
73
|
+
"permissions": {},
|
|
74
|
+
"promptFile": "specialists/prompts/cx-engineer.md",
|
|
75
|
+
"embedOrientation": {
|
|
76
|
+
"focusAreas": [
|
|
77
|
+
"implementation progress",
|
|
78
|
+
"test coverage gaps",
|
|
79
|
+
"build health",
|
|
80
|
+
"PR velocity"
|
|
81
|
+
],
|
|
82
|
+
"riskSignals": [
|
|
83
|
+
"failing CI",
|
|
84
|
+
"stale PRs",
|
|
85
|
+
"untested paths",
|
|
86
|
+
"pattern drift"
|
|
87
|
+
],
|
|
88
|
+
"artifactBias": [
|
|
89
|
+
"notes",
|
|
90
|
+
"adrs"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
"canEdit": true,
|
|
94
|
+
"claudeTools": "Read,Grep,Glob,LS,Edit,Write,Bash,WebSearch,WebFetch,list_skills,get_skill,search_skills,memory_search,memory_add_observations,cx_trace,cx_score",
|
|
95
|
+
"internal": true,
|
|
96
|
+
"killSwitchEnv": "CONSTRUCT_ROLE_ENGINEER",
|
|
97
|
+
"handoffCandidates": [
|
|
98
|
+
"qa",
|
|
99
|
+
"reviewer",
|
|
100
|
+
"security",
|
|
101
|
+
"sre"
|
|
102
|
+
],
|
|
103
|
+
"team": "engineering-team",
|
|
104
|
+
"teamId": "engineering-team",
|
|
105
|
+
"groupId": "engineering-group"
|
|
106
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "evaluator",
|
|
3
|
+
"displayName": "Defines what 'better' means before the work is done — evaluations designed after implementation are confirmation, not measurement.",
|
|
4
|
+
"description": "Defines what 'better' means before the work is done — evaluations designed after implementation are confirmation, not measurement.",
|
|
5
|
+
"role": "evaluator",
|
|
6
|
+
"modelTier": "standard",
|
|
7
|
+
"reasoningEffort": "medium",
|
|
8
|
+
"skills": [
|
|
9
|
+
"ai/prompt-and-eval",
|
|
10
|
+
"quality-gates/verify-quality"
|
|
11
|
+
],
|
|
12
|
+
"events": [
|
|
13
|
+
"eval.regression"
|
|
14
|
+
],
|
|
15
|
+
"fence": {
|
|
16
|
+
"allowedPaths": [
|
|
17
|
+
"docs/evals/**",
|
|
18
|
+
".cx/evals/**",
|
|
19
|
+
"tests/evals/**"
|
|
20
|
+
],
|
|
21
|
+
"allowedBdLabels": [
|
|
22
|
+
"eval",
|
|
23
|
+
"regression-eval"
|
|
24
|
+
],
|
|
25
|
+
"allowedCommands": [
|
|
26
|
+
"bd create",
|
|
27
|
+
"bd note",
|
|
28
|
+
"bd update"
|
|
29
|
+
],
|
|
30
|
+
"approvalRequired": [
|
|
31
|
+
"commit",
|
|
32
|
+
"push",
|
|
33
|
+
"edit:**"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"docArtifacts": [],
|
|
37
|
+
"watchConditions": [],
|
|
38
|
+
"permissions": {},
|
|
39
|
+
"promptFile": "specialists/prompts/cx-evaluator.md",
|
|
40
|
+
"embedOrientation": {
|
|
41
|
+
"focusAreas": [
|
|
42
|
+
"eval coverage",
|
|
43
|
+
"regression detection",
|
|
44
|
+
"baseline drift",
|
|
45
|
+
"failure case representation"
|
|
46
|
+
],
|
|
47
|
+
"riskSignals": [
|
|
48
|
+
"eval sets matching known outputs",
|
|
49
|
+
"cherry-picked baselines",
|
|
50
|
+
"missing failure cases",
|
|
51
|
+
"promotion on too few traces"
|
|
52
|
+
],
|
|
53
|
+
"artifactBias": [
|
|
54
|
+
"notes",
|
|
55
|
+
"adrs"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"canEdit": false,
|
|
59
|
+
"claudeTools": "Read,Grep,Glob,LS,Bash,list_skills,get_skill,search_skills,memory_search,memory_add_observations,cx_trace,cx_score,get_template,list_templates",
|
|
60
|
+
"internal": true,
|
|
61
|
+
"killSwitchEnv": "CONSTRUCT_ROLE_EVALUATOR",
|
|
62
|
+
"handoffCandidates": [
|
|
63
|
+
"engineer",
|
|
64
|
+
"ai-engineer"
|
|
65
|
+
],
|
|
66
|
+
"team": "quality-team",
|
|
67
|
+
"teamId": "quality-team",
|
|
68
|
+
"groupId": "quality-group"
|
|
69
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "explorer",
|
|
3
|
+
"displayName": "Reads before concluding — assumptions about code are wrong more often than assumptions about code are right.",
|
|
4
|
+
"description": "Reads before concluding — assumptions about code are wrong more often than assumptions about code are right.",
|
|
5
|
+
"role": "explorer",
|
|
6
|
+
"modelTier": "fast",
|
|
7
|
+
"reasoningEffort": "medium",
|
|
8
|
+
"skills": [
|
|
9
|
+
"docs/codebase-research-workflow",
|
|
10
|
+
"exploration/repo-map",
|
|
11
|
+
"exploration/unknown-codebase-onboarding",
|
|
12
|
+
"exploration/tracer-bullet-method",
|
|
13
|
+
"exploration/dependency-graph-reading"
|
|
14
|
+
],
|
|
15
|
+
"events": [],
|
|
16
|
+
"fence": {
|
|
17
|
+
"allowedPaths": [
|
|
18
|
+
"docs/explorations/**",
|
|
19
|
+
".cx/explorations/**"
|
|
20
|
+
],
|
|
21
|
+
"allowedBdLabels": [
|
|
22
|
+
"exploration",
|
|
23
|
+
"spike"
|
|
24
|
+
],
|
|
25
|
+
"allowedCommands": [
|
|
26
|
+
"bd create",
|
|
27
|
+
"bd note",
|
|
28
|
+
"bd update"
|
|
29
|
+
],
|
|
30
|
+
"approvalRequired": [
|
|
31
|
+
"commit",
|
|
32
|
+
"push",
|
|
33
|
+
"edit:**"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"docArtifacts": [],
|
|
37
|
+
"watchConditions": [],
|
|
38
|
+
"permissions": {},
|
|
39
|
+
"promptFile": "specialists/prompts/cx-explorer.md",
|
|
40
|
+
"embedOrientation": {
|
|
41
|
+
"focusAreas": [
|
|
42
|
+
"codebase understanding",
|
|
43
|
+
"pattern discovery",
|
|
44
|
+
"dependency mapping",
|
|
45
|
+
"drift detection"
|
|
46
|
+
],
|
|
47
|
+
"riskSignals": [
|
|
48
|
+
"assumptions without verification",
|
|
49
|
+
"incomplete investigation",
|
|
50
|
+
"outdated mental models",
|
|
51
|
+
"undiscovered code paths"
|
|
52
|
+
],
|
|
53
|
+
"artifactBias": [
|
|
54
|
+
"notes"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"canEdit": false,
|
|
58
|
+
"claudeTools": "Read,Grep,Glob,LS,Bash,list_skills,get_skill,search_skills,memory_search,memory_add_observations,get_template,list_templates",
|
|
59
|
+
"internal": true,
|
|
60
|
+
"killSwitchEnv": "CONSTRUCT_ROLE_EXPLORER",
|
|
61
|
+
"handoffCandidates": [
|
|
62
|
+
"engineer",
|
|
63
|
+
"architect",
|
|
64
|
+
"researcher"
|
|
65
|
+
],
|
|
66
|
+
"team": "strategy-team",
|
|
67
|
+
"teamId": "strategy-team",
|
|
68
|
+
"groupId": "strategy-group"
|
|
69
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "legal-compliance",
|
|
3
|
+
"displayName": "Catches compliance risk before the architecture locks — legal remediation after shipping is always more expensive.",
|
|
4
|
+
"description": "Catches compliance risk before the architecture locks — legal remediation after shipping is always more expensive.",
|
|
5
|
+
"role": "legal-compliance",
|
|
6
|
+
"modelTier": "standard",
|
|
7
|
+
"reasoningEffort": "medium",
|
|
8
|
+
"skills": [
|
|
9
|
+
"compliance/license-audit",
|
|
10
|
+
"compliance/data-privacy",
|
|
11
|
+
"compliance/ai-disclosure",
|
|
12
|
+
"compliance/regulatory-review"
|
|
13
|
+
],
|
|
14
|
+
"events": [
|
|
15
|
+
"dep.license",
|
|
16
|
+
"privacy-policy.review"
|
|
17
|
+
],
|
|
18
|
+
"fence": {
|
|
19
|
+
"allowedPaths": [
|
|
20
|
+
"docs/legal/**",
|
|
21
|
+
"docs/compliance/**",
|
|
22
|
+
"docs/security/**",
|
|
23
|
+
".cx/knowledge/**"
|
|
24
|
+
],
|
|
25
|
+
"allowedBdLabels": [
|
|
26
|
+
"legal",
|
|
27
|
+
"compliance",
|
|
28
|
+
"privacy"
|
|
29
|
+
],
|
|
30
|
+
"allowedCommands": [
|
|
31
|
+
"bd create",
|
|
32
|
+
"bd note",
|
|
33
|
+
"bd update"
|
|
34
|
+
],
|
|
35
|
+
"approvalRequired": [
|
|
36
|
+
"commit",
|
|
37
|
+
"push",
|
|
38
|
+
"edit:**"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"docArtifacts": [],
|
|
42
|
+
"watchConditions": [],
|
|
43
|
+
"permissions": {},
|
|
44
|
+
"promptFile": "specialists/prompts/cx-legal-compliance.md",
|
|
45
|
+
"embedOrientation": {
|
|
46
|
+
"focusAreas": [
|
|
47
|
+
"license compliance",
|
|
48
|
+
"data privacy posture",
|
|
49
|
+
"AI disclosure obligations",
|
|
50
|
+
"regulatory changes"
|
|
51
|
+
],
|
|
52
|
+
"riskSignals": [
|
|
53
|
+
"unreviewed dependency licenses",
|
|
54
|
+
"undisclosed AI processing",
|
|
55
|
+
"missing data basis documentation",
|
|
56
|
+
"new jurisdiction exposure"
|
|
57
|
+
],
|
|
58
|
+
"artifactBias": [
|
|
59
|
+
"adrs",
|
|
60
|
+
"memos"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"canEdit": false,
|
|
64
|
+
"claudeTools": "Read,Grep,Glob,LS,WebSearch,WebFetch,list_skills,get_skill,search_skills,memory_search,memory_add_observations,get_template,list_templates",
|
|
65
|
+
"internal": true,
|
|
66
|
+
"killSwitchEnv": "CONSTRUCT_ROLE_LEGAL_COMPLIANCE",
|
|
67
|
+
"handoffCandidates": [
|
|
68
|
+
"security",
|
|
69
|
+
"product-manager"
|
|
70
|
+
],
|
|
71
|
+
"team": "governance-team",
|
|
72
|
+
"teamId": "governance-team",
|
|
73
|
+
"groupId": "governance-group"
|
|
74
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "operations",
|
|
3
|
+
"displayName": "The logistics mind who maps dependencies, sequences, and ownership — because hidden dependencies surface as blocked work.",
|
|
4
|
+
"description": "The logistics mind who maps dependencies, sequences, and ownership — because hidden dependencies surface as blocked work.",
|
|
5
|
+
"role": "operations",
|
|
6
|
+
"modelTier": "standard",
|
|
7
|
+
"reasoningEffort": "medium",
|
|
8
|
+
"skills": [
|
|
9
|
+
"roles/operations",
|
|
10
|
+
"docs/init-project",
|
|
11
|
+
"operating/incident-response",
|
|
12
|
+
"operating/oncall-rotation",
|
|
13
|
+
"operating/change-management"
|
|
14
|
+
],
|
|
15
|
+
"events": [
|
|
16
|
+
"plan.requested"
|
|
17
|
+
],
|
|
18
|
+
"fence": {
|
|
19
|
+
"allowedPaths": [
|
|
20
|
+
"docs/ops/**",
|
|
21
|
+
"docs/operations/**"
|
|
22
|
+
],
|
|
23
|
+
"allowedBdLabels": [
|
|
24
|
+
"ops",
|
|
25
|
+
"operations"
|
|
26
|
+
],
|
|
27
|
+
"allowedCommands": [
|
|
28
|
+
"bd create",
|
|
29
|
+
"bd note",
|
|
30
|
+
"bd update"
|
|
31
|
+
],
|
|
32
|
+
"approvalRequired": [
|
|
33
|
+
"commit",
|
|
34
|
+
"push",
|
|
35
|
+
"edit:**"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"docArtifacts": [],
|
|
39
|
+
"watchConditions": [],
|
|
40
|
+
"permissions": {},
|
|
41
|
+
"promptFile": "specialists/prompts/cx-operations.md",
|
|
42
|
+
"embedOrientation": {
|
|
43
|
+
"focusAreas": [
|
|
44
|
+
"dependency sequencing",
|
|
45
|
+
"ownership clarity",
|
|
46
|
+
"blocker resolution",
|
|
47
|
+
"delivery cadence"
|
|
48
|
+
],
|
|
49
|
+
"riskSignals": [
|
|
50
|
+
"hidden dependencies",
|
|
51
|
+
"unowned tasks",
|
|
52
|
+
"blocked work aging",
|
|
53
|
+
"parallel plans with serial reality"
|
|
54
|
+
],
|
|
55
|
+
"artifactBias": [
|
|
56
|
+
"notes",
|
|
57
|
+
"memos"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
"canEdit": false,
|
|
61
|
+
"claudeTools": "Read,Grep,Glob,LS,Bash,Edit,Write,list_skills,get_skill,search_skills,get_template,list_templates,memory_search,memory_add_observations",
|
|
62
|
+
"internal": true,
|
|
63
|
+
"killSwitchEnv": "CONSTRUCT_ROLE_OPERATIONS",
|
|
64
|
+
"handoffCandidates": [
|
|
65
|
+
"sre",
|
|
66
|
+
"platform-engineer",
|
|
67
|
+
"release-manager"
|
|
68
|
+
],
|
|
69
|
+
"team": "operations-team",
|
|
70
|
+
"teamId": "operations-team",
|
|
71
|
+
"groupId": "operations-group"
|
|
72
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "oracle",
|
|
3
|
+
"displayName": "Meta-controller — synthesizes fleet health gaps from the Oracle read model and routes remediation to owning specialists.",
|
|
4
|
+
"description": "Meta-controller — synthesizes fleet health gaps from the Oracle read model and routes remediation to owning specialists.",
|
|
5
|
+
"role": "oracle",
|
|
6
|
+
"modelTier": "reasoning",
|
|
7
|
+
"reasoningEffort": "high",
|
|
8
|
+
"skills": [
|
|
9
|
+
"ai/orchestration-workflow",
|
|
10
|
+
"exploration/dependency-graph-reading",
|
|
11
|
+
"roles/trace-reviewer"
|
|
12
|
+
],
|
|
13
|
+
"events": [],
|
|
14
|
+
"fence": {},
|
|
15
|
+
"docArtifacts": [],
|
|
16
|
+
"watchConditions": [],
|
|
17
|
+
"permissions": {},
|
|
18
|
+
"promptFile": "specialists/prompts/cx-oracle.md",
|
|
19
|
+
"embedOrientation": {
|
|
20
|
+
"focusAreas": [
|
|
21
|
+
"parity drift",
|
|
22
|
+
"contract violations",
|
|
23
|
+
"doctor escalations",
|
|
24
|
+
"alignment census staleness",
|
|
25
|
+
"outcomes degradation"
|
|
26
|
+
],
|
|
27
|
+
"riskSignals": [
|
|
28
|
+
"unrouted systemic gaps",
|
|
29
|
+
"auto actions needing approval",
|
|
30
|
+
"stale alignment census",
|
|
31
|
+
"missing read-model signals"
|
|
32
|
+
],
|
|
33
|
+
"artifactBias": [
|
|
34
|
+
"notes",
|
|
35
|
+
"memos",
|
|
36
|
+
"adrs"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"canEdit": false,
|
|
40
|
+
"claudeTools": "Read,Grep,Glob,LS,list_skills,get_skill,search_skills,list_teams,suggest_skills,memory_search,memory_add_observations,cx_trace,cx_score",
|
|
41
|
+
"internal": true,
|
|
42
|
+
"killSwitchEnv": "CONSTRUCT_ROLE_ORACLE",
|
|
43
|
+
"team": "strategy-team",
|
|
44
|
+
"teamId": "strategy-team",
|
|
45
|
+
"groupId": "strategy-group"
|
|
46
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "orchestrator",
|
|
3
|
+
"displayName": "Sees the whole board — orchestrates by assembling the right perspectives in the right sequence, routing each request to the minds that will see what others miss.",
|
|
4
|
+
"description": "Sees the whole board — orchestrates by assembling the right perspectives in the right sequence, routing each request to the minds that will see what others miss.",
|
|
5
|
+
"role": "orchestrator",
|
|
6
|
+
"modelTier": "standard",
|
|
7
|
+
"reasoningEffort": "medium",
|
|
8
|
+
"skills": [
|
|
9
|
+
"ai/orchestration-workflow",
|
|
10
|
+
"operating/orchestration-reference",
|
|
11
|
+
"operating/change-management",
|
|
12
|
+
"operating/unstructured-triage"
|
|
13
|
+
],
|
|
14
|
+
"events": [
|
|
15
|
+
"handoff.received"
|
|
16
|
+
],
|
|
17
|
+
"fence": {
|
|
18
|
+
"allowedPaths": [
|
|
19
|
+
"docs/**",
|
|
20
|
+
"plan.md",
|
|
21
|
+
".cx/context.md"
|
|
22
|
+
],
|
|
23
|
+
"allowedBdLabels": [
|
|
24
|
+
"orchestration",
|
|
25
|
+
"workflow",
|
|
26
|
+
"dispatch"
|
|
27
|
+
],
|
|
28
|
+
"allowedCommands": [
|
|
29
|
+
"bd create",
|
|
30
|
+
"bd note",
|
|
31
|
+
"bd update",
|
|
32
|
+
"bd label",
|
|
33
|
+
"bd link"
|
|
34
|
+
],
|
|
35
|
+
"approvalRequired": [
|
|
36
|
+
"commit",
|
|
37
|
+
"push",
|
|
38
|
+
"edit:lib/**",
|
|
39
|
+
"edit:bin/**",
|
|
40
|
+
"edit:specialists/**"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"docArtifacts": [],
|
|
44
|
+
"watchConditions": [],
|
|
45
|
+
"permissions": {},
|
|
46
|
+
"promptFile": "specialists/prompts/cx-orchestrator.md",
|
|
47
|
+
"injectAgentRoster": true,
|
|
48
|
+
"embedOrientation": {
|
|
49
|
+
"focusAreas": [
|
|
50
|
+
"routing accuracy",
|
|
51
|
+
"workload balance",
|
|
52
|
+
"handoff completeness",
|
|
53
|
+
"specialist utilization"
|
|
54
|
+
],
|
|
55
|
+
"riskSignals": [
|
|
56
|
+
"misrouted tasks",
|
|
57
|
+
"overloaded specialists",
|
|
58
|
+
"dropped handoffs",
|
|
59
|
+
"stale queued work"
|
|
60
|
+
],
|
|
61
|
+
"artifactBias": [
|
|
62
|
+
"notes",
|
|
63
|
+
"memos"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"wordCapOverride": 4200,
|
|
67
|
+
"canEdit": false,
|
|
68
|
+
"claudeTools": "Read,Grep,Glob,LS,list_skills,get_skill,search_skills,list_teams,suggest_skills,memory_search,memory_add_observations,cx_trace,cx_score",
|
|
69
|
+
"killSwitchEnv": "CONSTRUCT_ROLE_ORCHESTRATOR",
|
|
70
|
+
"handoffCandidates": [
|
|
71
|
+
"product-manager",
|
|
72
|
+
"architect",
|
|
73
|
+
"engineer",
|
|
74
|
+
"security",
|
|
75
|
+
"qa",
|
|
76
|
+
"sre"
|
|
77
|
+
],
|
|
78
|
+
"team": "strategy-team",
|
|
79
|
+
"teamId": "strategy-team",
|
|
80
|
+
"groupId": "strategy-group"
|
|
81
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "platform-engineer",
|
|
3
|
+
"displayName": "Reduces the tax on the people doing the work — friction compounds, and platform debt is the kind nobody notices until it's critical.",
|
|
4
|
+
"description": "Reduces the tax on the people doing the work — friction compounds, and platform debt is the kind nobody notices until it's critical.",
|
|
5
|
+
"role": "platform-engineer",
|
|
6
|
+
"modelTier": "standard",
|
|
7
|
+
"reasoningEffort": "medium",
|
|
8
|
+
"skills": [
|
|
9
|
+
"devops/ci-cd",
|
|
10
|
+
"devops/monorepo",
|
|
11
|
+
"devops/containerization",
|
|
12
|
+
"devops/dependency-management",
|
|
13
|
+
"devops/devsecops",
|
|
14
|
+
"devops/cost-optimization"
|
|
15
|
+
],
|
|
16
|
+
"events": [
|
|
17
|
+
"infra.change.requested",
|
|
18
|
+
"service.scale.event"
|
|
19
|
+
],
|
|
20
|
+
"fence": {
|
|
21
|
+
"allowedPaths": [
|
|
22
|
+
"docs/platform/**",
|
|
23
|
+
"docs/infra/**",
|
|
24
|
+
"infra/**",
|
|
25
|
+
"terraform/**",
|
|
26
|
+
"k8s/**"
|
|
27
|
+
],
|
|
28
|
+
"allowedBdLabels": [
|
|
29
|
+
"platform",
|
|
30
|
+
"infrastructure",
|
|
31
|
+
"infra"
|
|
32
|
+
],
|
|
33
|
+
"allowedCommands": [
|
|
34
|
+
"bd create",
|
|
35
|
+
"bd note",
|
|
36
|
+
"bd update",
|
|
37
|
+
"bd label"
|
|
38
|
+
],
|
|
39
|
+
"approvalRequired": [
|
|
40
|
+
"commit",
|
|
41
|
+
"push",
|
|
42
|
+
"edit:lib/**",
|
|
43
|
+
"edit:bin/**"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"docArtifacts": [],
|
|
47
|
+
"watchConditions": [],
|
|
48
|
+
"permissions": {},
|
|
49
|
+
"promptFile": "specialists/prompts/cx-platform-engineer.md",
|
|
50
|
+
"embedOrientation": {
|
|
51
|
+
"focusAreas": [
|
|
52
|
+
"developer friction",
|
|
53
|
+
"pipeline health",
|
|
54
|
+
"dependency freshness",
|
|
55
|
+
"build reliability"
|
|
56
|
+
],
|
|
57
|
+
"riskSignals": [
|
|
58
|
+
"slow CI",
|
|
59
|
+
"stale dependencies",
|
|
60
|
+
"manual steps in pipelines",
|
|
61
|
+
"config only author understands"
|
|
62
|
+
],
|
|
63
|
+
"artifactBias": [
|
|
64
|
+
"adrs",
|
|
65
|
+
"notes"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"canEdit": true,
|
|
69
|
+
"claudeTools": "Read,Grep,Glob,LS,Bash,Edit,Write,list_skills,get_skill,search_skills,memory_search,memory_add_observations",
|
|
70
|
+
"internal": true,
|
|
71
|
+
"killSwitchEnv": "CONSTRUCT_ROLE_PLATFORM_ENGINEER",
|
|
72
|
+
"handoffCandidates": [
|
|
73
|
+
"sre",
|
|
74
|
+
"engineer",
|
|
75
|
+
"reviewer"
|
|
76
|
+
],
|
|
77
|
+
"team": "engineering-team",
|
|
78
|
+
"teamId": "engineering-team",
|
|
79
|
+
"groupId": "engineering-group"
|
|
80
|
+
}
|