@lssm/lib.contracts-spec 17.3.2
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/LICENSE +21 -0
- package/README.md +1727 -0
- package/dist/acp/acp.feature.d.ts +1 -0
- package/dist/acp/acp.feature.js +1 -0
- package/dist/acp/capabilities/acpTransport.capability.d.ts +11 -0
- package/dist/acp/capabilities/acpTransport.capability.js +4 -0
- package/dist/acp/capabilities/index.d.ts +1 -0
- package/dist/acp/capabilities/index.js +1 -0
- package/dist/acp/commands/acpFsAccess.command.d.ts +38 -0
- package/dist/acp/commands/acpFsAccess.command.js +4 -0
- package/dist/acp/commands/acpPromptTurn.command.d.ts +39 -0
- package/dist/acp/commands/acpPromptTurn.command.js +4 -0
- package/dist/acp/commands/acpSessionInit.command.d.ts +42 -0
- package/dist/acp/commands/acpSessionInit.command.js +4 -0
- package/dist/acp/commands/acpSessionResume.command.d.ts +26 -0
- package/dist/acp/commands/acpSessionResume.command.js +4 -0
- package/dist/acp/commands/acpSessionStop.command.d.ts +34 -0
- package/dist/acp/commands/acpSessionStop.command.js +4 -0
- package/dist/acp/commands/acpTerminalExec.command.d.ts +42 -0
- package/dist/acp/commands/acpTerminalExec.command.js +4 -0
- package/dist/acp/commands/acpToolCalls.command.d.ts +28 -0
- package/dist/acp/commands/acpToolCalls.command.js +4 -0
- package/dist/acp/commands/index.d.ts +7 -0
- package/dist/acp/commands/index.js +1 -0
- package/dist/acp/constants.d.ts +4 -0
- package/dist/acp/constants.js +1 -0
- package/dist/acp/contracts.d.ts +181 -0
- package/dist/acp/contracts.js +1 -0
- package/dist/acp/index.d.ts +5 -0
- package/dist/acp/index.js +1 -0
- package/dist/adaptive-shell/index.d.ts +2 -0
- package/dist/adaptive-shell/index.js +1 -0
- package/dist/adaptive-shell/types.d.ts +179 -0
- package/dist/adaptive-shell/types.js +0 -0
- package/dist/adaptive-shell/validation.d.ts +5 -0
- package/dist/adaptive-shell/validation.js +1 -0
- package/dist/adoption-catalog/index.d.ts +696 -0
- package/dist/adoption-catalog/index.js +1 -0
- package/dist/agent/agent.feature.d.ts +11 -0
- package/dist/agent/agent.feature.js +4 -0
- package/dist/agent/capabilities/agentExecution.capability.d.ts +1 -0
- package/dist/agent/capabilities/agentExecution.capability.js +1 -0
- package/dist/agent/capabilities/index.d.ts +1 -0
- package/dist/agent/capabilities/index.js +1 -0
- package/dist/agent/commands/agentApprovals.command.d.ts +42 -0
- package/dist/agent/commands/agentApprovals.command.js +4 -0
- package/dist/agent/commands/agentCancel.command.d.ts +38 -0
- package/dist/agent/commands/agentCancel.command.js +4 -0
- package/dist/agent/commands/agentRun.command.d.ts +69 -0
- package/dist/agent/commands/agentRun.command.js +4 -0
- package/dist/agent/commands/agentTaskOps.command.d.ts +94 -0
- package/dist/agent/commands/agentTaskOps.command.js +1 -0
- package/dist/agent/commands/graphCompose.command.d.ts +114 -0
- package/dist/agent/commands/graphCompose.command.js +1 -0
- package/dist/agent/commands/graphEdit.command.d.ts +75 -0
- package/dist/agent/commands/graphEdit.command.js +25 -0
- package/dist/agent/commands/graphOps.command.d.ts +198 -0
- package/dist/agent/commands/graphOps.command.js +31 -0
- package/dist/agent/commands/graphRefactor.command.d.ts +86 -0
- package/dist/agent/commands/graphRefactor.command.js +1 -0
- package/dist/agent/commands/graphSuggestEvolution.command.d.ts +90 -0
- package/dist/agent/commands/graphSuggestEvolution.command.js +35 -0
- package/dist/agent/commands/index.d.ts +9 -0
- package/dist/agent/commands/index.js +1 -0
- package/dist/agent/constants.d.ts +4 -0
- package/dist/agent/constants.js +1 -0
- package/dist/agent/contracts.d.ts +462 -0
- package/dist/agent/contracts.js +1 -0
- package/dist/agent/events/agentApprovalRequested.event.d.ts +47 -0
- package/dist/agent/events/agentApprovalRequested.event.js +4 -0
- package/dist/agent/events/agentRunCompleted.event.d.ts +55 -0
- package/dist/agent/events/agentRunCompleted.event.js +4 -0
- package/dist/agent/events/agentRunFailed.event.d.ts +71 -0
- package/dist/agent/events/agentRunFailed.event.js +4 -0
- package/dist/agent/events/agentRunStarted.event.d.ts +55 -0
- package/dist/agent/events/agentRunStarted.event.js +4 -0
- package/dist/agent/events/index.d.ts +4 -0
- package/dist/agent/events/index.js +1 -0
- package/dist/agent/forms/agentRun.form.d.ts +33 -0
- package/dist/agent/forms/agentRun.form.js +4 -0
- package/dist/agent/forms/index.d.ts +1 -0
- package/dist/agent/forms/index.js +1 -0
- package/dist/agent/graph-conversation.d.ts +157 -0
- package/dist/agent/graph-conversation.js +19 -0
- package/dist/agent/index.d.ts +16 -0
- package/dist/agent/index.js +1 -0
- package/dist/agent/presentations/agentRunAudit.presentation.d.ts +11 -0
- package/dist/agent/presentations/agentRunAudit.presentation.js +4 -0
- package/dist/agent/presentations/index.d.ts +1 -0
- package/dist/agent/presentations/index.js +1 -0
- package/dist/agent/protocol/application-signature.d.ts +43 -0
- package/dist/agent/protocol/application-signature.js +1 -0
- package/dist/agent/protocol/application.d.ts +114 -0
- package/dist/agent/protocol/application.js +4 -0
- package/dist/agent/protocol/automation/automation.test-fixture.d.ts +210 -0
- package/dist/agent/protocol/automation/automation.test-fixture.js +1 -0
- package/dist/agent/protocol/automation/contracts.d.ts +174 -0
- package/dist/agent/protocol/automation/contracts.js +4 -0
- package/dist/agent/protocol/automation/definition-validation.d.ts +9 -0
- package/dist/agent/protocol/automation/definition-validation.js +1 -0
- package/dist/agent/protocol/automation/digests.d.ts +11 -0
- package/dist/agent/protocol/automation/digests.js +1 -0
- package/dist/agent/protocol/automation/index.d.ts +4 -0
- package/dist/agent/protocol/automation/index.js +1 -0
- package/dist/agent/protocol/automation/lifecycle-validation.d.ts +27 -0
- package/dist/agent/protocol/automation/lifecycle-validation.js +1 -0
- package/dist/agent/protocol/automation/lifecycle.d.ts +362 -0
- package/dist/agent/protocol/automation/lifecycle.js +1 -0
- package/dist/agent/protocol/automation/run-validation.d.ts +17 -0
- package/dist/agent/protocol/automation/run-validation.js +1 -0
- package/dist/agent/protocol/automation/validation.d.ts +3 -0
- package/dist/agent/protocol/automation/validation.js +1 -0
- package/dist/agent/protocol/bindings.d.ts +25 -0
- package/dist/agent/protocol/bindings.js +1 -0
- package/dist/agent/protocol/budget.d.ts +48 -0
- package/dist/agent/protocol/budget.js +1 -0
- package/dist/agent/protocol/common.d.ts +128 -0
- package/dist/agent/protocol/common.js +1 -0
- package/dist/agent/protocol/delegation.d.ts +345 -0
- package/dist/agent/protocol/delegation.js +1 -0
- package/dist/agent/protocol/execution.d.ts +229 -0
- package/dist/agent/protocol/execution.js +1 -0
- package/dist/agent/protocol/graph-validation.d.ts +20 -0
- package/dist/agent/protocol/graph-validation.js +1 -0
- package/dist/agent/protocol/help.d.ts +200 -0
- package/dist/agent/protocol/help.js +1 -0
- package/dist/agent/protocol/index.d.ts +23 -0
- package/dist/agent/protocol/index.js +1 -0
- package/dist/agent/protocol/markdown-migration.d.ts +55 -0
- package/dist/agent/protocol/markdown-migration.js +1 -0
- package/dist/agent/protocol/memory-governance.d.ts +237 -0
- package/dist/agent/protocol/memory-governance.js +1 -0
- package/dist/agent/protocol/memory-validation.d.ts +19 -0
- package/dist/agent/protocol/memory-validation.js +1 -0
- package/dist/agent/protocol/memory.d.ts +139 -0
- package/dist/agent/protocol/memory.js +1 -0
- package/dist/agent/protocol/model-fallback-validation-v2.d.ts +15 -0
- package/dist/agent/protocol/model-fallback-validation-v2.js +1 -0
- package/dist/agent/protocol/model-fallback-validation.d.ts +12 -0
- package/dist/agent/protocol/model-fallback-validation.js +1 -0
- package/dist/agent/protocol/model-invocation-profile.d.ts +21 -0
- package/dist/agent/protocol/model-invocation-profile.js +1 -0
- package/dist/agent/protocol/model-route-contracts-v2.d.ts +180 -0
- package/dist/agent/protocol/model-route-contracts-v2.js +1 -0
- package/dist/agent/protocol/model-route-contracts.d.ts +104 -0
- package/dist/agent/protocol/model-route-contracts.js +1 -0
- package/dist/agent/protocol/model-routing-migration.d.ts +16 -0
- package/dist/agent/protocol/model-routing-migration.js +1 -0
- package/dist/agent/protocol/model-routing-v2.d.ts +309 -0
- package/dist/agent/protocol/model-routing-v2.js +1 -0
- package/dist/agent/protocol/model-routing-v2.test-fixtures.d.ts +590 -0
- package/dist/agent/protocol/model-routing-v2.test-fixtures.js +1 -0
- package/dist/agent/protocol/model-routing.d.ts +206 -0
- package/dist/agent/protocol/model-routing.js +1 -0
- package/dist/agent/protocol/model-routing.test-fixtures.d.ts +157 -0
- package/dist/agent/protocol/model-routing.test-fixtures.js +1 -0
- package/dist/agent/protocol/model-selection-validation-v2.d.ts +37 -0
- package/dist/agent/protocol/model-selection-validation-v2.js +1 -0
- package/dist/agent/protocol/model-selection-validation.d.ts +21 -0
- package/dist/agent/protocol/model-selection-validation.js +1 -0
- package/dist/agent/protocol/model-serving-validation-v2.d.ts +6 -0
- package/dist/agent/protocol/model-serving-validation-v2.js +1 -0
- package/dist/agent/protocol/planning.d.ts +159 -0
- package/dist/agent/protocol/planning.js +1 -0
- package/dist/agent/protocol/reflection.d.ts +73 -0
- package/dist/agent/protocol/reflection.js +1 -0
- package/dist/agent/protocol/task-result-validation.d.ts +6 -0
- package/dist/agent/protocol/task-result-validation.js +1 -0
- package/dist/agent/queries/agentArtifacts.query.d.ts +68 -0
- package/dist/agent/queries/agentArtifacts.query.js +4 -0
- package/dist/agent/queries/agentStatus.query.d.ts +76 -0
- package/dist/agent/queries/agentStatus.query.js +4 -0
- package/dist/agent/queries/index.d.ts +2 -0
- package/dist/agent/queries/index.js +1 -0
- package/dist/agent/registry.d.ts +41 -0
- package/dist/agent/registry.js +1 -0
- package/dist/agent/runner.d.ts +62 -0
- package/dist/agent/runner.js +1 -0
- package/dist/agent/spec.d.ts +264 -0
- package/dist/agent/spec.js +10 -0
- package/dist/agent/task-tree.d.ts +44 -0
- package/dist/agent/task-tree.js +22 -0
- package/dist/agent/views/agentRuns.dataView.d.ts +94 -0
- package/dist/agent/views/agentRuns.dataView.js +4 -0
- package/dist/agent/views/index.d.ts +1 -0
- package/dist/agent/views/index.js +1 -0
- package/dist/agent-platform/baseline-suites.d.ts +17 -0
- package/dist/agent-platform/baseline-suites.js +1 -0
- package/dist/agent-platform/digest.d.ts +1 -0
- package/dist/agent-platform/digest.js +1 -0
- package/dist/agent-platform/index.d.ts +5 -0
- package/dist/agent-platform/index.js +1 -0
- package/dist/agent-platform/types.d.ts +149 -0
- package/dist/agent-platform/types.js +1 -0
- package/dist/agent-platform/validation-v2.d.ts +40 -0
- package/dist/agent-platform/validation-v2.js +1 -0
- package/dist/agent-platform/validation.d.ts +86 -0
- package/dist/agent-platform/validation.js +1 -0
- package/dist/agent-step-observability/index.d.ts +2 -0
- package/dist/agent-step-observability/index.js +1 -0
- package/dist/agent-step-observability/types.d.ts +130 -0
- package/dist/agent-step-observability/types.js +0 -0
- package/dist/agent-step-observability/validation.d.ts +324 -0
- package/dist/agent-step-observability/validation.js +1 -0
- package/dist/agentic-interaction/constants.d.ts +4 -0
- package/dist/agentic-interaction/constants.js +1 -0
- package/dist/agentic-interaction/contracts.d.ts +156 -0
- package/dist/agentic-interaction/contracts.js +1 -0
- package/dist/agentic-interaction/index.d.ts +6 -0
- package/dist/agentic-interaction/index.js +1 -0
- package/dist/agentpacks/evidence-audit-validation.d.ts +185 -0
- package/dist/agentpacks/evidence-audit-validation.js +1 -0
- package/dist/agentpacks/evidence-canonicalization.d.ts +5 -0
- package/dist/agentpacks/evidence-canonicalization.js +2 -0
- package/dist/agentpacks/evidence-fixtures.d.ts +5 -0
- package/dist/agentpacks/evidence-fixtures.js +1 -0
- package/dist/agentpacks/evidence-schema-primitives.d.ts +56 -0
- package/dist/agentpacks/evidence-schema-primitives.js +1 -0
- package/dist/agentpacks/evidence-trace-validation.d.ts +444 -0
- package/dist/agentpacks/evidence-trace-validation.js +1 -0
- package/dist/agentpacks/evidence-types.d.ts +145 -0
- package/dist/agentpacks/evidence-types.js +0 -0
- package/dist/agentpacks/evidence-validation.d.ts +8 -0
- package/dist/agentpacks/evidence-validation.js +1 -0
- package/dist/agentpacks/index.d.ts +123 -0
- package/dist/agentpacks/index.js +1 -0
- package/dist/agentpacks/types.d.ts +160 -0
- package/dist/agentpacks/types.js +0 -0
- package/dist/agentpacks/validation.d.ts +1688 -0
- package/dist/agentpacks/validation.js +1 -0
- package/dist/ai-improvement/contracts-v2.d.ts +147 -0
- package/dist/ai-improvement/contracts-v2.js +1 -0
- package/dist/ai-improvement/evidence.d.ts +5 -0
- package/dist/ai-improvement/evidence.js +1 -0
- package/dist/ai-improvement/index.d.ts +6 -0
- package/dist/ai-improvement/index.js +1 -0
- package/dist/ai-improvement/policy.d.ts +33 -0
- package/dist/ai-improvement/policy.js +1 -0
- package/dist/ai-improvement/types.d.ts +60 -0
- package/dist/ai-improvement/types.js +0 -0
- package/dist/ai-improvement/validation-v2.d.ts +761 -0
- package/dist/ai-improvement/validation-v2.js +1 -0
- package/dist/ai-improvement/validation.d.ts +130 -0
- package/dist/ai-improvement/validation.js +1 -0
- package/dist/analytics/index.d.ts +6 -0
- package/dist/analytics/index.js +0 -0
- package/dist/analytics/semantic-spec.d.ts +60 -0
- package/dist/analytics/semantic-spec.js +0 -0
- package/dist/app-config/app-config.capability.d.ts +1 -0
- package/dist/app-config/app-config.capability.js +1 -0
- package/dist/app-config/app-config.contracts.d.ts +239 -0
- package/dist/app-config/app-config.contracts.js +1 -0
- package/dist/app-config/app-config.feature.d.ts +5 -0
- package/dist/app-config/app-config.feature.js +1 -0
- package/dist/app-config/branding.d.js +0 -0
- package/dist/app-config/branding.d.ts +184 -0
- package/dist/app-config/branding.js +0 -0
- package/dist/app-config/events.d.ts +115 -0
- package/dist/app-config/events.js +1 -0
- package/dist/app-config/index.d.ts +10 -0
- package/dist/app-config/index.js +1 -0
- package/dist/app-config/integrations.d.js +0 -0
- package/dist/app-config/integrations.d.ts +65 -0
- package/dist/app-config/integrations.js +0 -0
- package/dist/app-config/lifecycle-contracts.d.ts +265 -0
- package/dist/app-config/lifecycle-contracts.js +1 -0
- package/dist/app-config/lifecycle.d.js +0 -0
- package/dist/app-config/lifecycle.d.ts +23 -0
- package/dist/app-config/lifecycle.js +0 -0
- package/dist/app-config/runtime.d.js +0 -0
- package/dist/app-config/runtime.d.ts +124 -0
- package/dist/app-config/runtime.js +1 -0
- package/dist/app-config/spec.d.js +0 -0
- package/dist/app-config/spec.d.ts +220 -0
- package/dist/app-config/spec.js +162 -0
- package/dist/app-config/validation.d.ts +51 -0
- package/dist/app-config/validation.js +1 -0
- package/dist/app-submission-readiness/admin-rules.contracts.d.ts +145 -0
- package/dist/app-submission-readiness/admin-rules.contracts.js +1 -0
- package/dist/app-submission-readiness/assets.contracts.d.ts +89 -0
- package/dist/app-submission-readiness/assets.contracts.js +1 -0
- package/dist/app-submission-readiness/audit.contracts.d.ts +53 -0
- package/dist/app-submission-readiness/audit.contracts.js +1 -0
- package/dist/app-submission-readiness/constants.d.ts +24 -0
- package/dist/app-submission-readiness/constants.js +1 -0
- package/dist/app-submission-readiness/contracts.d.ts +20 -0
- package/dist/app-submission-readiness/contracts.js +1 -0
- package/dist/app-submission-readiness/events.d.ts +194 -0
- package/dist/app-submission-readiness/events.js +1 -0
- package/dist/app-submission-readiness/fixtures.d.ts +2 -0
- package/dist/app-submission-readiness/fixtures.js +1 -0
- package/dist/app-submission-readiness/index.d.ts +8 -0
- package/dist/app-submission-readiness/index.js +1 -0
- package/dist/app-submission-readiness/legal-links.contracts.d.ts +93 -0
- package/dist/app-submission-readiness/legal-links.contracts.js +1 -0
- package/dist/app-submission-readiness/manifests.contracts.d.ts +97 -0
- package/dist/app-submission-readiness/manifests.contracts.js +1 -0
- package/dist/app-submission-readiness/markdown-report.d.ts +7 -0
- package/dist/app-submission-readiness/markdown-report.js +3 -0
- package/dist/app-submission-readiness/privacy-disclosures.contracts.d.ts +101 -0
- package/dist/app-submission-readiness/privacy-disclosures.contracts.js +1 -0
- package/dist/app-submission-readiness/project.contracts.d.ts +137 -0
- package/dist/app-submission-readiness/project.contracts.js +1 -0
- package/dist/app-submission-readiness/provider-capabilities.d.ts +58 -0
- package/dist/app-submission-readiness/provider-capabilities.js +1 -0
- package/dist/app-submission-readiness/provider-capabilities.seeds.d.ts +25 -0
- package/dist/app-submission-readiness/provider-capabilities.seeds.js +1 -0
- package/dist/app-submission-readiness/registry.d.ts +1172 -0
- package/dist/app-submission-readiness/registry.js +1 -0
- package/dist/app-submission-readiness/rejection-response.contracts.d.ts +49 -0
- package/dist/app-submission-readiness/rejection-response.contracts.js +1 -0
- package/dist/app-submission-readiness/reports.contracts.d.ts +85 -0
- package/dist/app-submission-readiness/reports.contracts.js +1 -0
- package/dist/app-submission-readiness/reviewer-access.contracts.d.ts +93 -0
- package/dist/app-submission-readiness/reviewer-access.contracts.js +1 -0
- package/dist/app-submission-readiness/runtime.d.ts +9 -0
- package/dist/app-submission-readiness/runtime.js +1 -0
- package/dist/app-submission-readiness/sdk-inventory.contracts.d.ts +69 -0
- package/dist/app-submission-readiness/sdk-inventory.contracts.js +1 -0
- package/dist/app-submission-readiness/store-integrations.contracts.d.ts +85 -0
- package/dist/app-submission-readiness/store-integrations.contracts.js +1 -0
- package/dist/app-submission-readiness/types.d.ts +76 -0
- package/dist/app-submission-readiness/types.js +0 -0
- package/dist/capabilities/agent-workflow.d.js +0 -0
- package/dist/capabilities/agent-workflow.d.ts +52 -0
- package/dist/capabilities/agent-workflow.js +1 -0
- package/dist/capabilities/capabilities.d.js +0 -0
- package/dist/capabilities/capabilities.d.ts +109 -0
- package/dist/capabilities/capabilities.js +187 -0
- package/dist/capabilities/context.d.js +0 -0
- package/dist/capabilities/context.d.ts +110 -0
- package/dist/capabilities/context.js +1 -0
- package/dist/capabilities/guards.d.js +0 -0
- package/dist/capabilities/guards.d.ts +121 -0
- package/dist/capabilities/guards.js +1 -0
- package/dist/capabilities/index.d.js +1 -0
- package/dist/capabilities/index.d.ts +7 -0
- package/dist/capabilities/index.js +1 -0
- package/dist/capabilities/meeting-recorder.d.js +0 -0
- package/dist/capabilities/meeting-recorder.d.ts +5 -0
- package/dist/capabilities/meeting-recorder.js +1 -0
- package/dist/capabilities/openbanking.d.js +0 -0
- package/dist/capabilities/openbanking.d.ts +5 -0
- package/dist/capabilities/openbanking.js +1 -0
- package/dist/capabilities/validation.d.js +0 -0
- package/dist/capabilities/validation.d.ts +79 -0
- package/dist/capabilities/validation.js +1 -0
- package/dist/cli/command-pack.d.ts +37 -0
- package/dist/cli/command-pack.js +16 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +1 -0
- package/dist/companyos/auth-production-topology.d.ts +24 -0
- package/dist/companyos/auth-production-topology.js +1 -0
- package/dist/companyos/booking-surfaces.d.ts +50 -0
- package/dist/companyos/booking-surfaces.js +1 -0
- package/dist/companyos/calendar-intelligence.d.ts +129 -0
- package/dist/companyos/calendar-intelligence.js +1 -0
- package/dist/companyos/calendar-microsoft-personal-discovery.d.ts +32 -0
- package/dist/companyos/calendar-microsoft-personal-discovery.js +1 -0
- package/dist/companyos/calendar-microsoft-personal-http.d.ts +32 -0
- package/dist/companyos/calendar-microsoft-personal-http.js +1 -0
- package/dist/companyos/calendar-microsoft-personal-selection.d.ts +38 -0
- package/dist/companyos/calendar-microsoft-personal-selection.js +1 -0
- package/dist/companyos/calendar-private-draft-preview.d.ts +144 -0
- package/dist/companyos/calendar-private-draft-preview.js +1 -0
- package/dist/companyos/commands/autonomousWorkOrderTransition.command.d.ts +63 -0
- package/dist/companyos/commands/autonomousWorkOrderTransition.command.js +1 -0
- package/dist/companyos/commands/builderReadinessEvaluate.command.d.ts +81 -0
- package/dist/companyos/commands/builderReadinessEvaluate.command.js +1 -0
- package/dist/companyos/commands/contextSetActive.command.d.ts +58 -0
- package/dist/companyos/commands/contextSetActive.command.js +1 -0
- package/dist/companyos/commands/decisionPacketAttest.command.d.ts +194 -0
- package/dist/companyos/commands/decisionPacketAttest.command.js +1 -0
- package/dist/companyos/commands/decisionPacketFounderApprove.command.d.ts +202 -0
- package/dist/companyos/commands/decisionPacketFounderApprove.command.js +1 -0
- package/dist/companyos/commands/index.d.ts +29 -0
- package/dist/companyos/commands/index.js +1 -0
- package/dist/companyos/commands/integrationConfigureByok.command.d.ts +32 -0
- package/dist/companyos/commands/integrationConfigureByok.command.js +1 -0
- package/dist/companyos/commands/integrationConfigureManaged.command.d.ts +32 -0
- package/dist/companyos/commands/integrationConfigureManaged.command.js +1 -0
- package/dist/companyos/commands/onboardingPreferencesComplete.command.d.ts +51 -0
- package/dist/companyos/commands/onboardingPreferencesComplete.command.js +8 -0
- package/dist/companyos/commands/organizationSetActive.command.d.ts +25 -0
- package/dist/companyos/commands/organizationSetActive.command.js +1 -0
- package/dist/companyos/commands/personaPreviewSet.command.d.ts +35 -0
- package/dist/companyos/commands/personaPreviewSet.command.js +7 -0
- package/dist/companyos/commands/personalBriefingCalendarsSelect.command.d.ts +32 -0
- package/dist/companyos/commands/personalBriefingCalendarsSelect.command.js +12 -0
- package/dist/companyos/commands/personalBriefingDeliveryRetry.command.d.ts +30 -0
- package/dist/companyos/commands/personalBriefingDeliveryRetry.command.js +8 -0
- package/dist/companyos/commands/personalBriefingGoogleOAuthComplete.command.d.ts +30 -0
- package/dist/companyos/commands/personalBriefingGoogleOAuthComplete.command.js +6 -0
- package/dist/companyos/commands/personalBriefingGoogleOAuthStart.command.d.ts +22 -0
- package/dist/companyos/commands/personalBriefingGoogleOAuthStart.command.js +6 -0
- package/dist/companyos/commands/personalBriefingMicrosoftDisconnect.command.d.ts +17 -0
- package/dist/companyos/commands/personalBriefingMicrosoftDisconnect.command.js +5 -0
- package/dist/companyos/commands/personalBriefingMicrosoftOAuthComplete.command.d.ts +30 -0
- package/dist/companyos/commands/personalBriefingMicrosoftOAuthComplete.command.js +9 -0
- package/dist/companyos/commands/personalBriefingMicrosoftOAuthStart.command.d.ts +17 -0
- package/dist/companyos/commands/personalBriefingMicrosoftOAuthStart.command.js +6 -0
- package/dist/companyos/commands/personalBriefingPreferencesUpdate.command.d.ts +60 -0
- package/dist/companyos/commands/personalBriefingPreferencesUpdate.command.js +11 -0
- package/dist/companyos/commands/personalBriefingPreviewSend.command.d.ts +46 -0
- package/dist/companyos/commands/personalBriefingPreviewSend.command.js +15 -0
- package/dist/companyos/commands/personalContextDisable.command.d.ts +37 -0
- package/dist/companyos/commands/personalContextDisable.command.js +1 -0
- package/dist/companyos/commands/personalContextEnsure.command.d.ts +45 -0
- package/dist/companyos/commands/personalContextEnsure.command.js +1 -0
- package/dist/companyos/commands/personalDailyOperationCreate.command.d.ts +24 -0
- package/dist/companyos/commands/personalDailyOperationCreate.command.js +1 -0
- package/dist/companyos/commands/personalDailyOperationTransition.command.d.ts +20 -0
- package/dist/companyos/commands/personalDailyOperationTransition.command.js +1 -0
- package/dist/companyos/commands/reviewCardDecide.command.d.ts +54 -0
- package/dist/companyos/commands/reviewCardDecide.command.js +1 -0
- package/dist/companyos/commands/shellPreferencesUpdate.command.d.ts +47 -0
- package/dist/companyos/commands/shellPreferencesUpdate.command.js +6 -0
- package/dist/companyos/commands/tenantOnboard.command.d.ts +32 -0
- package/dist/companyos/commands/tenantOnboard.command.js +1 -0
- package/dist/companyos/commands/tenantUpdate.command.d.ts +24 -0
- package/dist/companyos/commands/tenantUpdate.command.js +1 -0
- package/dist/companyos/commands/weeklyReportApprove.command.d.ts +54 -0
- package/dist/companyos/commands/weeklyReportApprove.command.js +1 -0
- package/dist/companyos/commands/workflowStart.command.d.ts +28 -0
- package/dist/companyos/commands/workflowStart.command.js +1 -0
- package/dist/companyos/company-intelligence/api-schemas.d.ts +232 -0
- package/dist/companyos/company-intelligence/api-schemas.js +1 -0
- package/dist/companyos/company-intelligence/api.d.ts +44 -0
- package/dist/companyos/company-intelligence/api.js +1 -0
- package/dist/companyos/company-intelligence/commands.d.ts +517 -0
- package/dist/companyos/company-intelligence/commands.js +1 -0
- package/dist/companyos/company-intelligence/events.d.ts +369 -0
- package/dist/companyos/company-intelligence/events.js +1 -0
- package/dist/companyos/company-intelligence/index.d.ts +8 -0
- package/dist/companyos/company-intelligence/index.js +1 -0
- package/dist/companyos/company-intelligence/models.d.ts +77 -0
- package/dist/companyos/company-intelligence/models.js +1 -0
- package/dist/companyos/company-intelligence/operations.d.ts +124 -0
- package/dist/companyos/company-intelligence/operations.js +1 -0
- package/dist/companyos/company-intelligence/queries.d.ts +183 -0
- package/dist/companyos/company-intelligence/queries.js +1 -0
- package/dist/companyos/company-intelligence/registry.d.ts +634 -0
- package/dist/companyos/company-intelligence/registry.js +1 -0
- package/dist/companyos/company-intelligence/surface.d.ts +45 -0
- package/dist/companyos/company-intelligence/surface.js +1 -0
- package/dist/companyos/company-metrics/commands.d.ts +1079 -0
- package/dist/companyos/company-metrics/commands.js +3 -0
- package/dist/companyos/company-metrics/events.d.ts +383 -0
- package/dist/companyos/company-metrics/events.js +3 -0
- package/dist/companyos/company-metrics/index.d.ts +5 -0
- package/dist/companyos/company-metrics/index.js +1 -0
- package/dist/companyos/company-metrics/queries.d.ts +367 -0
- package/dist/companyos/company-metrics/queries.js +3 -0
- package/dist/companyos/company-metrics/registry.d.ts +913 -0
- package/dist/companyos/company-metrics/registry.js +1 -0
- package/dist/companyos/company-metrics/shared.d.ts +72 -0
- package/dist/companyos/company-metrics/shared.js +1 -0
- package/dist/companyos/constants.d.ts +25 -0
- package/dist/companyos/constants.js +1 -0
- package/dist/companyos/index.d.ts +21 -0
- package/dist/companyos/index.js +1 -0
- package/dist/companyos/live-workspace-surfaces.d.ts +6 -0
- package/dist/companyos/live-workspace-surfaces.js +1 -0
- package/dist/companyos/organization-bootstrap.d.ts +103 -0
- package/dist/companyos/organization-bootstrap.js +1 -0
- package/dist/companyos/organization-seed-contract.d.ts +126 -0
- package/dist/companyos/organization-seed-contract.js +1 -0
- package/dist/companyos/organization-seed-manifest.d.ts +11 -0
- package/dist/companyos/organization-seed-manifest.js +1 -0
- package/dist/companyos/organization-seed-profile-manifest.d.ts +4 -0
- package/dist/companyos/organization-seed-profile-manifest.js +1 -0
- package/dist/companyos/organization-seed.d.ts +2 -0
- package/dist/companyos/organization-seed.js +1 -0
- package/dist/companyos/organization-self-service.d.ts +157 -0
- package/dist/companyos/organization-self-service.js +1 -0
- package/dist/companyos/production-semantics.d.ts +116 -0
- package/dist/companyos/production-semantics.js +1 -0
- package/dist/companyos/projections.d.ts +247 -0
- package/dist/companyos/projections.js +1 -0
- package/dist/companyos/public-composition.d.ts +742 -0
- package/dist/companyos/public-composition.js +1 -0
- package/dist/companyos/queries/approvalReasons.query.d.ts +25 -0
- package/dist/companyos/queries/approvalReasons.query.js +1 -0
- package/dist/companyos/queries/builderEvidenceReceiptGet.query.d.ts +75 -0
- package/dist/companyos/queries/builderEvidenceReceiptGet.query.js +1 -0
- package/dist/companyos/queries/builderReleaseCapsuleGet.query.d.ts +67 -0
- package/dist/companyos/queries/builderReleaseCapsuleGet.query.js +1 -0
- package/dist/companyos/queries/builderReplayPacketGet.query.d.ts +64 -0
- package/dist/companyos/queries/builderReplayPacketGet.query.js +1 -0
- package/dist/companyos/queries/contextList.query.d.ts +218 -0
- package/dist/companyos/queries/contextList.query.js +1 -0
- package/dist/companyos/queries/designPartnerReadinessGet.query.d.ts +154 -0
- package/dist/companyos/queries/designPartnerReadinessGet.query.js +1 -0
- package/dist/companyos/queries/evidenceGetReceipt.query.d.ts +63 -0
- package/dist/companyos/queries/evidenceGetReceipt.query.js +1 -0
- package/dist/companyos/queries/evidenceVerifyHash.query.d.ts +24 -0
- package/dist/companyos/queries/evidenceVerifyHash.query.js +1 -0
- package/dist/companyos/queries/graphQuery.query.d.ts +186 -0
- package/dist/companyos/queries/graphQuery.query.js +1 -0
- package/dist/companyos/queries/graphQueryByPolicy.query.d.ts +81 -0
- package/dist/companyos/queries/graphQueryByPolicy.query.js +1 -0
- package/dist/companyos/queries/healthApi.query.d.ts +23 -0
- package/dist/companyos/queries/healthApi.query.js +1 -0
- package/dist/companyos/queries/healthWebsocket.query.d.ts +23 -0
- package/dist/companyos/queries/healthWebsocket.query.js +1 -0
- package/dist/companyos/queries/healthWorker.query.d.ts +63 -0
- package/dist/companyos/queries/healthWorker.query.js +1 -0
- package/dist/companyos/queries/index.d.ts +29 -0
- package/dist/companyos/queries/index.js +1 -0
- package/dist/companyos/queries/integrationListProviders.query.d.ts +29 -0
- package/dist/companyos/queries/integrationListProviders.query.js +1 -0
- package/dist/companyos/queries/integrationStatus.query.d.ts +42 -0
- package/dist/companyos/queries/integrationStatus.query.js +1 -0
- package/dist/companyos/queries/organizationList.query.d.ts +64 -0
- package/dist/companyos/queries/organizationList.query.js +1 -0
- package/dist/companyos/queries/personalBriefingCalendarsList.query.d.ts +22 -0
- package/dist/companyos/queries/personalBriefingCalendarsList.query.js +6 -0
- package/dist/companyos/queries/personalBriefingStatus.query.d.ts +49 -0
- package/dist/companyos/queries/personalBriefingStatus.query.js +13 -0
- package/dist/companyos/queries/personalContextProvisioningStatus.query.d.ts +28 -0
- package/dist/companyos/queries/personalContextProvisioningStatus.query.js +1 -0
- package/dist/companyos/queries/personalDailyOperations.query.d.ts +17 -0
- package/dist/companyos/queries/personalDailyOperations.query.js +1 -0
- package/dist/companyos/queries/replayGetPacket.query.d.ts +56 -0
- package/dist/companyos/queries/replayGetPacket.query.js +1 -0
- package/dist/companyos/queries/replayListByTenant.query.d.ts +54 -0
- package/dist/companyos/queries/replayListByTenant.query.js +1 -0
- package/dist/companyos/queries/sessionAuthorityGet.query.d.ts +76 -0
- package/dist/companyos/queries/sessionAuthorityGet.query.js +1 -0
- package/dist/companyos/queries/shellPreferencesGet.query.d.ts +38 -0
- package/dist/companyos/queries/shellPreferencesGet.query.js +7 -0
- package/dist/companyos/queries/tenantGet.query.d.ts +79 -0
- package/dist/companyos/queries/tenantGet.query.js +1 -0
- package/dist/companyos/queries/tenantList.query.d.ts +58 -0
- package/dist/companyos/queries/tenantList.query.js +1 -0
- package/dist/companyos/queries/workflowGetStatus.query.d.ts +68 -0
- package/dist/companyos/queries/workflowGetStatus.query.js +1 -0
- package/dist/companyos/queries/workflowList.query.d.ts +56 -0
- package/dist/companyos/queries/workflowList.query.js +1 -0
- package/dist/companyos/queries/workspaceList.query.d.ts +69 -0
- package/dist/companyos/queries/workspaceList.query.js +1 -0
- package/dist/companyos/registry.d.ts +3614 -0
- package/dist/companyos/registry.js +1 -0
- package/dist/companyos/shell-preferences.d.ts +122 -0
- package/dist/companyos/shell-preferences.js +1 -0
- package/dist/content-analysis/constants.d.ts +10 -0
- package/dist/content-analysis/constants.js +1 -0
- package/dist/content-analysis/events.d.ts +307 -0
- package/dist/content-analysis/events.js +3 -0
- package/dist/content-analysis/index.d.ts +5 -0
- package/dist/content-analysis/index.js +1 -0
- package/dist/content-analysis/operations.d.ts +554 -0
- package/dist/content-analysis/operations.js +6 -0
- package/dist/content-analysis/registry.d.ts +9 -0
- package/dist/content-analysis/registry.js +1 -0
- package/dist/content-analysis/types.d.ts +90 -0
- package/dist/content-analysis/types.js +0 -0
- package/dist/content-generation/capabilities.d.ts +4 -0
- package/dist/content-generation/capabilities.js +1 -0
- package/dist/content-generation/content-generation.feature.d.ts +1 -0
- package/dist/content-generation/content-generation.feature.js +1 -0
- package/dist/content-generation/contracts.d.ts +1557 -0
- package/dist/content-generation/contracts.js +4 -0
- package/dist/content-generation/index.d.ts +5 -0
- package/dist/content-generation/index.js +1 -0
- package/dist/content-generation/media-status.d.ts +53 -0
- package/dist/content-generation/media-status.js +1 -0
- package/dist/content-generation/ports.d.ts +42 -0
- package/dist/content-generation/ports.js +0 -0
- package/dist/content-generation/rights-operations.d.ts +479 -0
- package/dist/content-generation/rights-operations.js +1 -0
- package/dist/content-generation/rights-withdrawal.d.ts +44 -0
- package/dist/content-generation/rights-withdrawal.js +1 -0
- package/dist/content-generation/rights.d.ts +79 -0
- package/dist/content-generation/rights.js +1 -0
- package/dist/content-generation/types.d.ts +84 -0
- package/dist/content-generation/types.js +1 -0
- package/dist/context/agent-context-validation.d.ts +38 -0
- package/dist/context/agent-context-validation.js +4 -0
- package/dist/context/agent-context.d.ts +310 -0
- package/dist/context/agent-context.js +1 -0
- package/dist/context/capabilities/contextSystem.capability.d.ts +11 -0
- package/dist/context/capabilities/contextSystem.capability.js +4 -0
- package/dist/context/capabilities/index.d.ts +1 -0
- package/dist/context/capabilities/index.js +1 -0
- package/dist/context/commands/contextPackSnapshot.command.d.ts +61 -0
- package/dist/context/commands/contextPackSnapshot.command.js +4 -0
- package/dist/context/commands/index.d.ts +1 -0
- package/dist/context/commands/index.js +1 -0
- package/dist/context/constants.d.ts +4 -0
- package/dist/context/constants.js +1 -0
- package/dist/context/context.feature.d.ts +1 -0
- package/dist/context/context.feature.js +1 -0
- package/dist/context/contracts.d.ts +369 -0
- package/dist/context/contracts.js +1 -0
- package/dist/context/events/contextSnapshotCreated.event.d.ts +63 -0
- package/dist/context/events/contextSnapshotCreated.event.js +4 -0
- package/dist/context/events/index.d.ts +1 -0
- package/dist/context/events/index.js +1 -0
- package/dist/context/forms/contextPackSearch.form.d.ts +29 -0
- package/dist/context/forms/contextPackSearch.form.js +4 -0
- package/dist/context/forms/index.d.ts +1 -0
- package/dist/context/forms/index.js +1 -0
- package/dist/context/index.d.ts +12 -0
- package/dist/context/index.js +1 -0
- package/dist/context/presentations/contextSnapshot.presentation.d.ts +11 -0
- package/dist/context/presentations/contextSnapshot.presentation.js +4 -0
- package/dist/context/presentations/index.d.ts +1 -0
- package/dist/context/presentations/index.js +1 -0
- package/dist/context/queries/contextPackDescribe.query.d.ts +87 -0
- package/dist/context/queries/contextPackDescribe.query.js +4 -0
- package/dist/context/queries/contextPackSearch.query.d.ts +90 -0
- package/dist/context/queries/contextPackSearch.query.js +4 -0
- package/dist/context/queries/index.d.ts +2 -0
- package/dist/context/queries/index.js +1 -0
- package/dist/context/views/contextSnapshots.dataView.d.ts +104 -0
- package/dist/context/views/contextSnapshots.dataView.js +4 -0
- package/dist/context/views/index.d.ts +1 -0
- package/dist/context/views/index.js +1 -0
- package/dist/contract-registry/index.d.ts +3 -0
- package/dist/contract-registry/index.js +1 -0
- package/dist/contract-registry/schemas.d.ts +135 -0
- package/dist/contract-registry/schemas.js +1 -0
- package/dist/contract-registry/types.d.ts +42 -0
- package/dist/contract-registry/types.js +0 -0
- package/dist/contracts-spec.feature.d.ts +1 -0
- package/dist/contracts-spec.feature.js +1 -0
- package/dist/control-plane/approval-kernel.d.ts +178 -0
- package/dist/control-plane/approval-kernel.js +1 -0
- package/dist/control-plane/capabilities/controlPlaneApproval.capability.d.ts +1 -0
- package/dist/control-plane/capabilities/controlPlaneApproval.capability.js +1 -0
- package/dist/control-plane/capabilities/controlPlaneAudit.capability.d.ts +1 -0
- package/dist/control-plane/capabilities/controlPlaneAudit.capability.js +1 -0
- package/dist/control-plane/capabilities/controlPlaneChannelRuntime.capability.d.ts +1 -0
- package/dist/control-plane/capabilities/controlPlaneChannelRuntime.capability.js +1 -0
- package/dist/control-plane/capabilities/controlPlaneCore.capability.d.ts +1 -0
- package/dist/control-plane/capabilities/controlPlaneCore.capability.js +1 -0
- package/dist/control-plane/capabilities/controlPlaneSkillRegistry.capability.d.ts +1 -0
- package/dist/control-plane/capabilities/controlPlaneSkillRegistry.capability.js +1 -0
- package/dist/control-plane/capabilities/index.d.ts +5 -0
- package/dist/control-plane/capabilities/index.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionAbort.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionAbort.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionApprove.command.d.ts +61 -0
- package/dist/control-plane/commands/controlPlaneExecutionApprove.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionCancel.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionCancel.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionEvidenceExport.command.d.ts +48 -0
- package/dist/control-plane/commands/controlPlaneExecutionEvidenceExport.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionPause.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionPause.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionReject.command.d.ts +61 -0
- package/dist/control-plane/commands/controlPlaneExecutionReject.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionResume.command.d.ts +24 -0
- package/dist/control-plane/commands/controlPlaneExecutionResume.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionRetry.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionRetry.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionShutdown.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionShutdown.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionStart.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionStart.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneIntentSubmit.command.d.ts +47 -0
- package/dist/control-plane/commands/controlPlaneIntentSubmit.command.js +1 -0
- package/dist/control-plane/commands/controlPlanePlanCompile.command.d.ts +39 -0
- package/dist/control-plane/commands/controlPlanePlanCompile.command.js +1 -0
- package/dist/control-plane/commands/controlPlanePlanVerify.command.d.ts +33 -0
- package/dist/control-plane/commands/controlPlanePlanVerify.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneSkillDisable.command.d.ts +36 -0
- package/dist/control-plane/commands/controlPlaneSkillDisable.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneSkillInstall.command.d.ts +237 -0
- package/dist/control-plane/commands/controlPlaneSkillInstall.command.js +1 -0
- package/dist/control-plane/commands/index.d.ts +15 -0
- package/dist/control-plane/commands/index.js +1 -0
- package/dist/control-plane/connect-materialization.d.ts +101 -0
- package/dist/control-plane/connect-materialization.js +1 -0
- package/dist/control-plane/constants.d.ts +4 -0
- package/dist/control-plane/constants.js +1 -0
- package/dist/control-plane/contracts.d.ts +1661 -0
- package/dist/control-plane/contracts.js +1 -0
- package/dist/control-plane/control-plane.feature.d.ts +1 -0
- package/dist/control-plane/control-plane.feature.js +1 -0
- package/dist/control-plane/events/controlPlaneExecutionCompleted.event.d.ts +37 -0
- package/dist/control-plane/events/controlPlaneExecutionCompleted.event.js +1 -0
- package/dist/control-plane/events/controlPlaneExecutionFailed.event.d.ts +53 -0
- package/dist/control-plane/events/controlPlaneExecutionFailed.event.js +1 -0
- package/dist/control-plane/events/controlPlaneExecutionStepBlocked.event.d.ts +45 -0
- package/dist/control-plane/events/controlPlaneExecutionStepBlocked.event.js +1 -0
- package/dist/control-plane/events/controlPlaneExecutionStepCompleted.event.d.ts +37 -0
- package/dist/control-plane/events/controlPlaneExecutionStepCompleted.event.js +1 -0
- package/dist/control-plane/events/controlPlaneExecutionStepStarted.event.d.ts +37 -0
- package/dist/control-plane/events/controlPlaneExecutionStepStarted.event.js +1 -0
- package/dist/control-plane/events/controlPlaneIntentReceived.event.d.ts +45 -0
- package/dist/control-plane/events/controlPlaneIntentReceived.event.js +1 -0
- package/dist/control-plane/events/controlPlanePlanCompiled.event.d.ts +37 -0
- package/dist/control-plane/events/controlPlanePlanCompiled.event.js +1 -0
- package/dist/control-plane/events/controlPlanePlanRejected.event.d.ts +39 -0
- package/dist/control-plane/events/controlPlanePlanRejected.event.js +1 -0
- package/dist/control-plane/events/controlPlaneSkillInstalled.event.d.ts +61 -0
- package/dist/control-plane/events/controlPlaneSkillInstalled.event.js +1 -0
- package/dist/control-plane/events/controlPlaneSkillRejected.event.d.ts +81 -0
- package/dist/control-plane/events/controlPlaneSkillRejected.event.js +1 -0
- package/dist/control-plane/events/index.d.ts +10 -0
- package/dist/control-plane/events/index.js +1 -0
- package/dist/control-plane/hook-authority-digest.d.ts +5 -0
- package/dist/control-plane/hook-authority-digest.js +1 -0
- package/dist/control-plane/hook-authority-immutable.d.ts +2 -0
- package/dist/control-plane/hook-authority-immutable.js +1 -0
- package/dist/control-plane/hook-authority-records.d.ts +68 -0
- package/dist/control-plane/hook-authority-records.js +0 -0
- package/dist/control-plane/hook-authority-reference-adapter.d.ts +13 -0
- package/dist/control-plane/hook-authority-reference-adapter.js +1 -0
- package/dist/control-plane/hook-authority-reference-binding.d.ts +2 -0
- package/dist/control-plane/hook-authority-reference-binding.js +1 -0
- package/dist/control-plane/hook-authority-reference-capability.d.ts +8 -0
- package/dist/control-plane/hook-authority-reference-capability.js +1 -0
- package/dist/control-plane/hook-authority-reference-clock.d.ts +7 -0
- package/dist/control-plane/hook-authority-reference-clock.js +1 -0
- package/dist/control-plane/hook-authority-reference-helpers.d.ts +5 -0
- package/dist/control-plane/hook-authority-reference-helpers.js +1 -0
- package/dist/control-plane/hook-authority-reference-invoke.d.ts +2 -0
- package/dist/control-plane/hook-authority-reference-invoke.js +1 -0
- package/dist/control-plane/hook-authority-reference-leases.d.ts +6 -0
- package/dist/control-plane/hook-authority-reference-leases.js +1 -0
- package/dist/control-plane/hook-authority-reference-lock.d.ts +3 -0
- package/dist/control-plane/hook-authority-reference-lock.js +1 -0
- package/dist/control-plane/hook-authority-reference-result.d.ts +2 -0
- package/dist/control-plane/hook-authority-reference-result.js +1 -0
- package/dist/control-plane/hook-authority-reference-session.d.ts +5 -0
- package/dist/control-plane/hook-authority-reference-session.js +1 -0
- package/dist/control-plane/hook-authority-reference-state.d.ts +24 -0
- package/dist/control-plane/hook-authority-reference-state.js +1 -0
- package/dist/control-plane/hook-authority-reference-validation.d.ts +3 -0
- package/dist/control-plane/hook-authority-reference-validation.js +1 -0
- package/dist/control-plane/hook-authority-test-body.d.ts +7 -0
- package/dist/control-plane/hook-authority-test-body.js +1 -0
- package/dist/control-plane/hook-authority-test-fixtures.d.ts +5 -0
- package/dist/control-plane/hook-authority-test-fixtures.js +1 -0
- package/dist/control-plane/hook-authority-validation-events.d.ts +3 -0
- package/dist/control-plane/hook-authority-validation-events.js +1 -0
- package/dist/control-plane/hook-authority-validation-objects.d.ts +3 -0
- package/dist/control-plane/hook-authority-validation-objects.js +1 -0
- package/dist/control-plane/hook-authority-validation-paths.d.ts +2 -0
- package/dist/control-plane/hook-authority-validation-paths.js +1 -0
- package/dist/control-plane/hook-authority-validation-primitives.d.ts +8 -0
- package/dist/control-plane/hook-authority-validation-primitives.js +1 -0
- package/dist/control-plane/hook-authority-validation-request.d.ts +3 -0
- package/dist/control-plane/hook-authority-validation-request.js +1 -0
- package/dist/control-plane/hook-authority-validation.d.ts +6 -0
- package/dist/control-plane/hook-authority-validation.js +1 -0
- package/dist/control-plane/hook-authority.d.ts +180 -0
- package/dist/control-plane/hook-authority.js +1 -0
- package/dist/control-plane/index.d.ts +15 -0
- package/dist/control-plane/index.js +1 -0
- package/dist/control-plane/policies/controlPlaneMessaging.policy.d.ts +1 -0
- package/dist/control-plane/policies/controlPlaneMessaging.policy.js +1 -0
- package/dist/control-plane/policies/index.d.ts +1 -0
- package/dist/control-plane/policies/index.js +1 -0
- package/dist/control-plane/queries/controlPlaneExecutionGet.query.d.ts +82 -0
- package/dist/control-plane/queries/controlPlaneExecutionGet.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneExecutionLane.models.d.ts +174 -0
- package/dist/control-plane/queries/controlPlaneExecutionLane.models.js +1 -0
- package/dist/control-plane/queries/controlPlaneExecutionLaneGet.query.d.ts +100 -0
- package/dist/control-plane/queries/controlPlaneExecutionLaneGet.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneExecutionLaneList.query.d.ts +82 -0
- package/dist/control-plane/queries/controlPlaneExecutionLaneList.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneExecutionList.query.d.ts +79 -0
- package/dist/control-plane/queries/controlPlaneExecutionList.query.js +1 -0
- package/dist/control-plane/queries/controlPlanePolicyExplain.query.d.ts +29 -0
- package/dist/control-plane/queries/controlPlanePolicyExplain.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneSkillList.query.d.ts +54 -0
- package/dist/control-plane/queries/controlPlaneSkillList.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneSkillVerify.query.d.ts +214 -0
- package/dist/control-plane/queries/controlPlaneSkillVerify.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneTraceGet.query.d.ts +42 -0
- package/dist/control-plane/queries/controlPlaneTraceGet.query.js +1 -0
- package/dist/control-plane/queries/index.d.ts +9 -0
- package/dist/control-plane/queries/index.js +1 -0
- package/dist/control-plane/repository-authority-bootstrap.d.ts +42 -0
- package/dist/control-plane/repository-authority-bootstrap.js +1 -0
- package/dist/control-plane/skills/index.d.ts +5 -0
- package/dist/control-plane/skills/index.js +1 -0
- package/dist/control-plane/skills/schema.d.ts +174 -0
- package/dist/control-plane/skills/schema.js +1 -0
- package/dist/control-plane/skills/signer.d.ts +16 -0
- package/dist/control-plane/skills/signer.js +4 -0
- package/dist/control-plane/skills/types.d.ts +73 -0
- package/dist/control-plane/skills/types.js +0 -0
- package/dist/control-plane/skills/validator.d.ts +2 -0
- package/dist/control-plane/skills/validator.js +1 -0
- package/dist/control-plane/skills/verifier.d.ts +9 -0
- package/dist/control-plane/skills/verifier.js +1 -0
- package/dist/creative-intelligence/constants.d.ts +9 -0
- package/dist/creative-intelligence/constants.js +1 -0
- package/dist/creative-intelligence/events.d.ts +318 -0
- package/dist/creative-intelligence/events.js +3 -0
- package/dist/creative-intelligence/index.d.ts +5 -0
- package/dist/creative-intelligence/index.js +1 -0
- package/dist/creative-intelligence/operations.d.ts +756 -0
- package/dist/creative-intelligence/operations.js +6 -0
- package/dist/creative-intelligence/registry.d.ts +9 -0
- package/dist/creative-intelligence/registry.js +1 -0
- package/dist/creative-intelligence/types.d.ts +94 -0
- package/dist/creative-intelligence/types.js +0 -0
- package/dist/creator-operations/campaign.d.ts +94 -0
- package/dist/creator-operations/campaign.js +1 -0
- package/dist/creator-operations/common.d.ts +24 -0
- package/dist/creator-operations/common.js +1 -0
- package/dist/creator-operations/index.d.ts +7 -0
- package/dist/creator-operations/index.js +1 -0
- package/dist/creator-operations/operation-inputs.d.ts +147 -0
- package/dist/creator-operations/operation-inputs.js +1 -0
- package/dist/creator-operations/operations.d.ts +858 -0
- package/dist/creator-operations/operations.js +23 -0
- package/dist/creator-operations/ports.d.ts +67 -0
- package/dist/creator-operations/ports.js +0 -0
- package/dist/creator-operations/submission.d.ts +49 -0
- package/dist/creator-operations/submission.js +1 -0
- package/dist/creator-operations/training-course.d.ts +33 -0
- package/dist/creator-operations/training-course.js +1 -0
- package/dist/creator-operations/training-operations.d.ts +102 -0
- package/dist/creator-operations/training-operations.js +1 -0
- package/dist/creator-operations/training-progress-operation.d.ts +25 -0
- package/dist/creator-operations/training-progress-operation.js +1 -0
- package/dist/creator-operations/training-quiz-operation.d.ts +59 -0
- package/dist/creator-operations/training-quiz-operation.js +1 -0
- package/dist/creator-operations/training-quiz-read.d.ts +50 -0
- package/dist/creator-operations/training-quiz-read.js +1 -0
- package/dist/creator-operations/training-quiz-view.d.ts +18 -0
- package/dist/creator-operations/training-quiz-view.js +1 -0
- package/dist/creator-operations/training-quiz.d.ts +88 -0
- package/dist/creator-operations/training-quiz.js +1 -0
- package/dist/creator-operations/training.d.ts +158 -0
- package/dist/creator-operations/training.js +1 -0
- package/dist/creator-operations/wallet.d.ts +73 -0
- package/dist/creator-operations/wallet.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-events.d.ts +841 -0
- package/dist/customer-support/ai-outcome-evaluation-events.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-operations.d.ts +2360 -0
- package/dist/customer-support/ai-outcome-evaluation-operations.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-output-schemas.d.ts +628 -0
- package/dist/customer-support/ai-outcome-evaluation-output-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-projection-schemas.d.ts +288 -0
- package/dist/customer-support/ai-outcome-evaluation-projection-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-query-schemas.d.ts +528 -0
- package/dist/customer-support/ai-outcome-evaluation-query-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-schemas.d.ts +183 -0
- package/dist/customer-support/ai-outcome-evaluation-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation.d.ts +173 -0
- package/dist/customer-support/ai-outcome-evaluation.js +1 -0
- package/dist/customer-support/ai-outcome-event-delivery-schemas.d.ts +45 -0
- package/dist/customer-support/ai-outcome-event-delivery-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-event-delivery.d.ts +68 -0
- package/dist/customer-support/ai-outcome-event-delivery.js +0 -0
- package/dist/customer-support/ai-outcome-event-digest.d.ts +2 -0
- package/dist/customer-support/ai-outcome-event-digest.js +1 -0
- package/dist/customer-support/ai-outcome-learning-events.d.ts +331 -0
- package/dist/customer-support/ai-outcome-learning-events.js +1 -0
- package/dist/customer-support/ai-outcome-learning-operations.d.ts +623 -0
- package/dist/customer-support/ai-outcome-learning-operations.js +1 -0
- package/dist/customer-support/ai-outcome-learning-schema-support.d.ts +4 -0
- package/dist/customer-support/ai-outcome-learning-schema-support.js +1 -0
- package/dist/customer-support/ai-outcome-learning-schemas.d.ts +485 -0
- package/dist/customer-support/ai-outcome-learning-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-learning.d.ts +115 -0
- package/dist/customer-support/ai-outcome-learning.js +1 -0
- package/dist/customer-support/attachment-safety-operations.d.ts +424 -0
- package/dist/customer-support/attachment-safety-operations.js +1 -0
- package/dist/customer-support/attachment-safety-schemas.d.ts +208 -0
- package/dist/customer-support/attachment-safety-schemas.js +1 -0
- package/dist/customer-support/attachment-safety.d.ts +87 -0
- package/dist/customer-support/attachment-safety.js +13 -0
- package/dist/customer-support/authos-session.d.ts +83 -0
- package/dist/customer-support/authos-session.js +10 -0
- package/dist/customer-support/billing-entitlement-events.d.ts +275 -0
- package/dist/customer-support/billing-entitlement-events.js +1 -0
- package/dist/customer-support/billing-entitlement-input-schemas.d.ts +61 -0
- package/dist/customer-support/billing-entitlement-input-schemas.js +1 -0
- package/dist/customer-support/billing-entitlement-operations.d.ts +731 -0
- package/dist/customer-support/billing-entitlement-operations.js +1 -0
- package/dist/customer-support/billing-entitlement-output-schemas.d.ts +410 -0
- package/dist/customer-support/billing-entitlement-output-schemas.js +1 -0
- package/dist/customer-support/billing-entitlement-schema-primitives.d.ts +21 -0
- package/dist/customer-support/billing-entitlement-schema-primitives.js +1 -0
- package/dist/customer-support/billing-entitlements.d.ts +108 -0
- package/dist/customer-support/billing-entitlements.js +1 -0
- package/dist/customer-support/capability-matrix-evidence.d.ts +9 -0
- package/dist/customer-support/capability-matrix-evidence.js +1 -0
- package/dist/customer-support/capability-matrix-registries.d.ts +21 -0
- package/dist/customer-support/capability-matrix-registries.js +1 -0
- package/dist/customer-support/capability-matrix-validation-evidence.d.ts +4 -0
- package/dist/customer-support/capability-matrix-validation-evidence.js +1 -0
- package/dist/customer-support/capability-matrix-validation-helpers.d.ts +5 -0
- package/dist/customer-support/capability-matrix-validation-helpers.js +1 -0
- package/dist/customer-support/capability-matrix-validation.d.ts +7 -0
- package/dist/customer-support/capability-matrix-validation.js +1 -0
- package/dist/customer-support/capability-matrix.d.ts +101 -0
- package/dist/customer-support/capability-matrix.js +3 -0
- package/dist/customer-support/case-assignments.d.ts +60 -0
- package/dist/customer-support/case-assignments.js +19 -0
- package/dist/customer-support/case-cursor.d.ts +17 -0
- package/dist/customer-support/case-cursor.js +8 -0
- package/dist/customer-support/case-lifecycle-event-schemas.d.ts +42 -0
- package/dist/customer-support/case-lifecycle-event-schemas.js +1 -0
- package/dist/customer-support/case-lifecycle.d.ts +268 -0
- package/dist/customer-support/case-lifecycle.js +8 -0
- package/dist/customer-support/case-presence.d.ts +221 -0
- package/dist/customer-support/case-presence.js +11 -0
- package/dist/customer-support/case-relations.d.ts +63 -0
- package/dist/customer-support/case-relations.js +14 -0
- package/dist/customer-support/company-action-events.d.ts +586 -0
- package/dist/customer-support/company-action-events.js +1 -0
- package/dist/customer-support/company-action-input-schemas.d.ts +113 -0
- package/dist/customer-support/company-action-input-schemas.js +1 -0
- package/dist/customer-support/company-action-operations.d.ts +1284 -0
- package/dist/customer-support/company-action-operations.js +1 -0
- package/dist/customer-support/company-action-output-schemas.d.ts +370 -0
- package/dist/customer-support/company-action-output-schemas.js +1 -0
- package/dist/customer-support/company-action-plans.d.ts +179 -0
- package/dist/customer-support/company-action-plans.js +1 -0
- package/dist/customer-support/company-action-schema-primitives.d.ts +20 -0
- package/dist/customer-support/company-action-schema-primitives.js +1 -0
- package/dist/customer-support/core.d.ts +143 -0
- package/dist/customer-support/core.js +1 -0
- package/dist/customer-support/crypto-lifecycle.d.ts +143 -0
- package/dist/customer-support/crypto-lifecycle.js +12 -0
- package/dist/customer-support/crypto-rotation-drill-events.d.ts +514 -0
- package/dist/customer-support/crypto-rotation-drill-events.js +1 -0
- package/dist/customer-support/crypto-rotation-drill-input-schemas.d.ts +125 -0
- package/dist/customer-support/crypto-rotation-drill-input-schemas.js +1 -0
- package/dist/customer-support/crypto-rotation-drill-operations.d.ts +997 -0
- package/dist/customer-support/crypto-rotation-drill-operations.js +1 -0
- package/dist/customer-support/crypto-rotation-drill-output-schemas.d.ts +392 -0
- package/dist/customer-support/crypto-rotation-drill-output-schemas.js +1 -0
- package/dist/customer-support/crypto-rotation-drill-schema-primitives.d.ts +21 -0
- package/dist/customer-support/crypto-rotation-drill-schema-primitives.js +1 -0
- package/dist/customer-support/crypto-rotation-drill.d.ts +142 -0
- package/dist/customer-support/crypto-rotation-drill.js +1 -0
- package/dist/customer-support/crypto-rotation-operations.d.ts +947 -0
- package/dist/customer-support/crypto-rotation-operations.js +1 -0
- package/dist/customer-support/crypto-rotation-schemas.d.ts +282 -0
- package/dist/customer-support/crypto-rotation-schemas.js +1 -0
- package/dist/customer-support/crypto-rotation.d.ts +141 -0
- package/dist/customer-support/crypto-rotation.js +10 -0
- package/dist/customer-support/csat-input-digest.d.ts +3 -0
- package/dist/customer-support/csat-input-digest.js +1 -0
- package/dist/customer-support/csat-invitation-job-schemas.d.ts +134 -0
- package/dist/customer-support/csat-invitation-job-schemas.js +1 -0
- package/dist/customer-support/csat-invitation-jobs.d.ts +83 -0
- package/dist/customer-support/csat-invitation-jobs.js +0 -0
- package/dist/customer-support/csat-operation-schemas.d.ts +264 -0
- package/dist/customer-support/csat-operation-schemas.js +1 -0
- package/dist/customer-support/csat-operations.d.ts +409 -0
- package/dist/customer-support/csat-operations.js +1 -0
- package/dist/customer-support/csat-schema-support.d.ts +1 -0
- package/dist/customer-support/csat-schema-support.js +1 -0
- package/dist/customer-support/csat-survey-events.d.ts +134 -0
- package/dist/customer-support/csat-survey-events.js +1 -0
- package/dist/customer-support/csat-survey-operations.d.ts +260 -0
- package/dist/customer-support/csat-survey-operations.js +1 -0
- package/dist/customer-support/csat-survey-schemas.d.ts +203 -0
- package/dist/customer-support/csat-survey-schemas.js +1 -0
- package/dist/customer-support/csat-surveys.d.ts +78 -0
- package/dist/customer-support/csat-surveys.js +15 -0
- package/dist/customer-support/csat.d.ts +80 -0
- package/dist/customer-support/csat.js +12 -0
- package/dist/customer-support/customer-session-consent-operations.d.ts +983 -0
- package/dist/customer-support/customer-session-consent-operations.js +1 -0
- package/dist/customer-support/customer-session-consent-output-schemas.d.ts +108 -0
- package/dist/customer-support/customer-session-consent-output-schemas.js +1 -0
- package/dist/customer-support/customer-session-consent-schemas.d.ts +172 -0
- package/dist/customer-support/customer-session-consent-schemas.js +1 -0
- package/dist/customer-support/customer-session-consent.d.ts +160 -0
- package/dist/customer-support/customer-session-consent.js +14 -0
- package/dist/customer-support/customer-session-schema-support.d.ts +30 -0
- package/dist/customer-support/customer-session-schema-support.js +1 -0
- package/dist/customer-support/customer-support.feature.d.ts +11 -0
- package/dist/customer-support/customer-support.feature.js +3 -0
- package/dist/customer-support/data-lifecycle-events.d.ts +409 -0
- package/dist/customer-support/data-lifecycle-events.js +1 -0
- package/dist/customer-support/data-lifecycle-input-schemas.d.ts +146 -0
- package/dist/customer-support/data-lifecycle-input-schemas.js +1 -0
- package/dist/customer-support/data-lifecycle-operations.d.ts +1028 -0
- package/dist/customer-support/data-lifecycle-operations.js +1 -0
- package/dist/customer-support/data-lifecycle-output-schemas.d.ts +429 -0
- package/dist/customer-support/data-lifecycle-output-schemas.js +1 -0
- package/dist/customer-support/data-lifecycle-ports.d.ts +115 -0
- package/dist/customer-support/data-lifecycle-ports.js +0 -0
- package/dist/customer-support/data-lifecycle-schema-primitives.d.ts +29 -0
- package/dist/customer-support/data-lifecycle-schema-primitives.js +1 -0
- package/dist/customer-support/data-lifecycle-schema-validation.d.ts +11 -0
- package/dist/customer-support/data-lifecycle-schema-validation.js +1 -0
- package/dist/customer-support/data-lifecycle.d.ts +98 -0
- package/dist/customer-support/data-lifecycle.js +5 -0
- package/dist/customer-support/errors.d.ts +18 -0
- package/dist/customer-support/errors.js +6 -0
- package/dist/customer-support/event-validation.d.ts +7 -0
- package/dist/customer-support/event-validation.js +1 -0
- package/dist/customer-support/events.d.ts +5436 -0
- package/dist/customer-support/events.js +1 -0
- package/dist/customer-support/export-artifact-access-schemas.d.ts +223 -0
- package/dist/customer-support/export-artifact-access-schemas.js +1 -0
- package/dist/customer-support/export-artifact-access-validation.d.ts +14 -0
- package/dist/customer-support/export-artifact-access-validation.js +1 -0
- package/dist/customer-support/export-artifact-access.d.ts +93 -0
- package/dist/customer-support/export-artifact-access.js +1 -0
- package/dist/customer-support/export-artifact-event-schemas.d.ts +131 -0
- package/dist/customer-support/export-artifact-event-schemas.js +1 -0
- package/dist/customer-support/export-artifact-lifecycle-schemas.d.ts +152 -0
- package/dist/customer-support/export-artifact-lifecycle-schemas.js +1 -0
- package/dist/customer-support/export-artifact-lifecycle.d.ts +86 -0
- package/dist/customer-support/export-artifact-lifecycle.js +1 -0
- package/dist/customer-support/export-artifact-storage.d.ts +117 -0
- package/dist/customer-support/export-artifact-storage.js +0 -0
- package/dist/customer-support/export-events.d.ts +1251 -0
- package/dist/customer-support/export-events.js +1 -0
- package/dist/customer-support/export-input-schemas.d.ts +118 -0
- package/dist/customer-support/export-input-schemas.js +1 -0
- package/dist/customer-support/export-operations.d.ts +1471 -0
- package/dist/customer-support/export-operations.js +1 -0
- package/dist/customer-support/export-output-schemas.d.ts +284 -0
- package/dist/customer-support/export-output-schemas.js +1 -0
- package/dist/customer-support/export-schemas.d.ts +3 -0
- package/dist/customer-support/export-schemas.js +1 -0
- package/dist/customer-support/exports.d.ts +148 -0
- package/dist/customer-support/exports.js +1 -0
- package/dist/customer-support/identity-resolution-operations.d.ts +983 -0
- package/dist/customer-support/identity-resolution-operations.js +1 -0
- package/dist/customer-support/identity-resolution-output-schemas.d.ts +286 -0
- package/dist/customer-support/identity-resolution-output-schemas.js +1 -0
- package/dist/customer-support/identity-resolution-schemas.d.ts +107 -0
- package/dist/customer-support/identity-resolution-schemas.js +1 -0
- package/dist/customer-support/identity-resolution.d.ts +135 -0
- package/dist/customer-support/identity-resolution.js +18 -0
- package/dist/customer-support/index.d.ts +195 -0
- package/dist/customer-support/index.js +1 -0
- package/dist/customer-support/internal-note-operations.d.ts +1152 -0
- package/dist/customer-support/internal-note-operations.js +1 -0
- package/dist/customer-support/internal-note-schemas.d.ts +593 -0
- package/dist/customer-support/internal-note-schemas.js +1 -0
- package/dist/customer-support/internal-notes.d.ts +173 -0
- package/dist/customer-support/internal-notes.js +27 -0
- package/dist/customer-support/job-runtime.d.ts +86 -0
- package/dist/customer-support/job-runtime.js +13 -0
- package/dist/customer-support/knowledge-authority-citation-schema.d.ts +37 -0
- package/dist/customer-support/knowledge-authority-citation-schema.js +1 -0
- package/dist/customer-support/knowledge-authority-digest.d.ts +2 -0
- package/dist/customer-support/knowledge-authority-digest.js +1 -0
- package/dist/customer-support/knowledge-authority-operations.d.ts +332 -0
- package/dist/customer-support/knowledge-authority-operations.js +1 -0
- package/dist/customer-support/knowledge-authority-schema-primitives.d.ts +22 -0
- package/dist/customer-support/knowledge-authority-schema-primitives.js +1 -0
- package/dist/customer-support/knowledge-authority-schemas.d.ts +325 -0
- package/dist/customer-support/knowledge-authority-schemas.js +1 -0
- package/dist/customer-support/knowledge-authority.d.ts +84 -0
- package/dist/customer-support/knowledge-authority.js +1 -0
- package/dist/customer-support/live-chat-binding-activity-digest.d.ts +17 -0
- package/dist/customer-support/live-chat-binding-activity-digest.js +1 -0
- package/dist/customer-support/live-chat-continuity-events.d.ts +118 -0
- package/dist/customer-support/live-chat-continuity-events.js +1 -0
- package/dist/customer-support/live-chat-continuity-operations.d.ts +379 -0
- package/dist/customer-support/live-chat-continuity-operations.js +1 -0
- package/dist/customer-support/live-chat-continuity-schemas.d.ts +256 -0
- package/dist/customer-support/live-chat-continuity-schemas.js +1 -0
- package/dist/customer-support/live-chat-continuity.d.ts +83 -0
- package/dist/customer-support/live-chat-continuity.js +9 -0
- package/dist/customer-support/membership-capabilities.d.ts +13 -0
- package/dist/customer-support/membership-capabilities.js +1 -0
- package/dist/customer-support/membership-operation-schemas.d.ts +519 -0
- package/dist/customer-support/membership-operation-schemas.js +1 -0
- package/dist/customer-support/membership-operations.d.ts +1011 -0
- package/dist/customer-support/membership-operations.js +1 -0
- package/dist/customer-support/memberships.d.ts +134 -0
- package/dist/customer-support/memberships.js +24 -0
- package/dist/customer-support/metadata-operations.d.ts +811 -0
- package/dist/customer-support/metadata-operations.js +1 -0
- package/dist/customer-support/metadata-output-schemas.d.ts +414 -0
- package/dist/customer-support/metadata-output-schemas.js +1 -0
- package/dist/customer-support/metadata-schema-validation.d.ts +25 -0
- package/dist/customer-support/metadata-schema-validation.js +1 -0
- package/dist/customer-support/metadata-schemas.d.ts +209 -0
- package/dist/customer-support/metadata-schemas.js +1 -0
- package/dist/customer-support/metadata.d.ts +116 -0
- package/dist/customer-support/metadata.js +12 -0
- package/dist/customer-support/notification-operations.d.ts +980 -0
- package/dist/customer-support/notification-operations.js +1 -0
- package/dist/customer-support/notification-output-schemas.d.ts +350 -0
- package/dist/customer-support/notification-output-schemas.js +1 -0
- package/dist/customer-support/notification-schemas.d.ts +187 -0
- package/dist/customer-support/notification-schemas.js +1 -0
- package/dist/customer-support/notifications.d.ts +207 -0
- package/dist/customer-support/notifications.js +17 -0
- package/dist/customer-support/opa-handoff-operations.d.ts +580 -0
- package/dist/customer-support/opa-handoff-operations.js +1 -0
- package/dist/customer-support/opa-handoff-schemas.d.ts +250 -0
- package/dist/customer-support/opa-handoff-schemas.js +1 -0
- package/dist/customer-support/opa-handoffs.d.ts +85 -0
- package/dist/customer-support/opa-handoffs.js +6 -0
- package/dist/customer-support/operation-schemas.d.ts +563 -0
- package/dist/customer-support/operation-schemas.js +1 -0
- package/dist/customer-support/operations.d.ts +17887 -0
- package/dist/customer-support/operations.js +9 -0
- package/dist/customer-support/platform-authority-binding-registry.d.ts +7 -0
- package/dist/customer-support/platform-authority-binding-registry.js +1 -0
- package/dist/customer-support/platform-authority-bindings.d.ts +107 -0
- package/dist/customer-support/platform-authority-bindings.js +1 -0
- package/dist/customer-support/platform-authority-doc.d.ts +10 -0
- package/dist/customer-support/platform-authority-doc.js +3 -0
- package/dist/customer-support/platform-authority.d.ts +117 -0
- package/dist/customer-support/platform-authority.js +1 -0
- package/dist/customer-support/platform-ports.d.ts +202 -0
- package/dist/customer-support/platform-ports.js +9 -0
- package/dist/customer-support/policies.d.ts +38 -0
- package/dist/customer-support/policies.js +0 -0
- package/dist/customer-support/ports.d.ts +84 -0
- package/dist/customer-support/ports.js +0 -0
- package/dist/customer-support/provider.d.ts +49 -0
- package/dist/customer-support/provider.js +0 -0
- package/dist/customer-support/report-export-events.d.ts +218 -0
- package/dist/customer-support/report-export-events.js +1 -0
- package/dist/customer-support/report-export-operations.d.ts +571 -0
- package/dist/customer-support/report-export-operations.js +1 -0
- package/dist/customer-support/report-export-schemas.d.ts +294 -0
- package/dist/customer-support/report-export-schemas.js +1 -0
- package/dist/customer-support/report-export.d.ts +34 -0
- package/dist/customer-support/report-export.js +0 -0
- package/dist/customer-support/reporting-definition-schemas.d.ts +310 -0
- package/dist/customer-support/reporting-definition-schemas.js +1 -0
- package/dist/customer-support/reporting-definition-validation.d.ts +3 -0
- package/dist/customer-support/reporting-definition-validation.js +1 -0
- package/dist/customer-support/reporting-doc.d.ts +11 -0
- package/dist/customer-support/reporting-doc.js +3 -0
- package/dist/customer-support/reporting-event-schemas.d.ts +225 -0
- package/dist/customer-support/reporting-event-schemas.js +1 -0
- package/dist/customer-support/reporting-events.d.ts +781 -0
- package/dist/customer-support/reporting-events.js +1 -0
- package/dist/customer-support/reporting-metric-compatibility.d.ts +2 -0
- package/dist/customer-support/reporting-metric-compatibility.js +1 -0
- package/dist/customer-support/reporting-operations.d.ts +1593 -0
- package/dist/customer-support/reporting-operations.js +1 -0
- package/dist/customer-support/reporting-port.d.ts +17 -0
- package/dist/customer-support/reporting-port.js +0 -0
- package/dist/customer-support/reporting-query-schemas.d.ts +259 -0
- package/dist/customer-support/reporting-query-schemas.js +1 -0
- package/dist/customer-support/reporting-query-validation.d.ts +3 -0
- package/dist/customer-support/reporting-query-validation.js +1 -0
- package/dist/customer-support/reporting-record-schemas.d.ts +93 -0
- package/dist/customer-support/reporting-record-schemas.js +1 -0
- package/dist/customer-support/reporting-schema-primitives.d.ts +49 -0
- package/dist/customer-support/reporting-schema-primitives.js +1 -0
- package/dist/customer-support/reporting-schemas.d.ts +4 -0
- package/dist/customer-support/reporting-schemas.js +1 -0
- package/dist/customer-support/reporting.d.ts +148 -0
- package/dist/customer-support/reporting.js +1 -0
- package/dist/customer-support/routing-administration.d.ts +83 -0
- package/dist/customer-support/routing-administration.js +12 -0
- package/dist/customer-support/routing-operation-schemas.d.ts +379 -0
- package/dist/customer-support/routing-operation-schemas.js +1 -0
- package/dist/customer-support/routing-operations.d.ts +631 -0
- package/dist/customer-support/routing-operations.js +1 -0
- package/dist/customer-support/search-view-operations.d.ts +915 -0
- package/dist/customer-support/search-view-operations.js +1 -0
- package/dist/customer-support/search-view-output-schemas.d.ts +509 -0
- package/dist/customer-support/search-view-output-schemas.js +1 -0
- package/dist/customer-support/search-view-schemas.d.ts +192 -0
- package/dist/customer-support/search-view-schemas.js +1 -0
- package/dist/customer-support/search-views.d.ts +104 -0
- package/dist/customer-support/search-views.js +19 -0
- package/dist/customer-support/service-profile-operations.d.ts +675 -0
- package/dist/customer-support/service-profile-operations.js +1 -0
- package/dist/customer-support/service-profile-output-schemas.d.ts +126 -0
- package/dist/customer-support/service-profile-output-schemas.js +1 -0
- package/dist/customer-support/service-profile-party-schema.d.ts +17 -0
- package/dist/customer-support/service-profile-party-schema.js +1 -0
- package/dist/customer-support/service-profile-schemas.d.ts +124 -0
- package/dist/customer-support/service-profile-schemas.js +1 -0
- package/dist/customer-support/service-profile.d.ts +82 -0
- package/dist/customer-support/service-profile.js +16 -0
- package/dist/customer-support/signed-webhook-events.d.ts +621 -0
- package/dist/customer-support/signed-webhook-events.js +1 -0
- package/dist/customer-support/signed-webhook-input-schemas.d.ts +206 -0
- package/dist/customer-support/signed-webhook-input-schemas.js +1 -0
- package/dist/customer-support/signed-webhook-operations.d.ts +1745 -0
- package/dist/customer-support/signed-webhook-operations.js +1 -0
- package/dist/customer-support/signed-webhook-output-schemas.d.ts +613 -0
- package/dist/customer-support/signed-webhook-output-schemas.js +1 -0
- package/dist/customer-support/signed-webhook-ports.d.ts +112 -0
- package/dist/customer-support/signed-webhook-ports.js +0 -0
- package/dist/customer-support/signed-webhook-schema-primitives.d.ts +26 -0
- package/dist/customer-support/signed-webhook-schema-primitives.js +1 -0
- package/dist/customer-support/signed-webhook-schemas.d.ts +125 -0
- package/dist/customer-support/signed-webhook-schemas.js +1 -0
- package/dist/customer-support/signed-webhook-value-validation.d.ts +3 -0
- package/dist/customer-support/signed-webhook-value-validation.js +1 -0
- package/dist/customer-support/signed-webhook-wire-schema.d.ts +37 -0
- package/dist/customer-support/signed-webhook-wire-schema.js +1 -0
- package/dist/customer-support/signed-webhook-wire.d.ts +65 -0
- package/dist/customer-support/signed-webhook-wire.js +1 -0
- package/dist/customer-support/signed-webhooks.d.ts +116 -0
- package/dist/customer-support/signed-webhooks.js +1 -0
- package/dist/customer-support/skills-routing-operations.d.ts +554 -0
- package/dist/customer-support/skills-routing-operations.js +1 -0
- package/dist/customer-support/skills-routing-output-schemas.d.ts +229 -0
- package/dist/customer-support/skills-routing-output-schemas.js +1 -0
- package/dist/customer-support/skills-routing-schemas.d.ts +104 -0
- package/dist/customer-support/skills-routing-schemas.js +1 -0
- package/dist/customer-support/skills-routing.d.ts +104 -0
- package/dist/customer-support/skills-routing.js +16 -0
- package/dist/customer-support/sla-administration.d.ts +150 -0
- package/dist/customer-support/sla-administration.js +15 -0
- package/dist/customer-support/sla-operation-schemas.d.ts +304 -0
- package/dist/customer-support/sla-operation-schemas.js +1 -0
- package/dist/customer-support/sla-operations.d.ts +863 -0
- package/dist/customer-support/sla-operations.js +1 -0
- package/dist/customer-support/sla-policy-operation-schemas.d.ts +447 -0
- package/dist/customer-support/sla-policy-operation-schemas.js +1 -0
- package/dist/customer-support/sla-schema-validation.d.ts +11 -0
- package/dist/customer-support/sla-schema-validation.js +1 -0
- package/dist/customer-support/slo-incident-alert-input-schemas.d.ts +134 -0
- package/dist/customer-support/slo-incident-alert-input-schemas.js +1 -0
- package/dist/customer-support/slo-incident-alert.d.ts +26 -0
- package/dist/customer-support/slo-incident-alert.js +0 -0
- package/dist/customer-support/slo-incident-assessment-input-schemas.d.ts +239 -0
- package/dist/customer-support/slo-incident-assessment-input-schemas.js +1 -0
- package/dist/customer-support/slo-incident-assessment-output-schemas.d.ts +237 -0
- package/dist/customer-support/slo-incident-assessment-output-schemas.js +1 -0
- package/dist/customer-support/slo-incident-doc.d.ts +11 -0
- package/dist/customer-support/slo-incident-doc.js +12 -0
- package/dist/customer-support/slo-incident-event-delivery.d.ts +62 -0
- package/dist/customer-support/slo-incident-event-delivery.js +0 -0
- package/dist/customer-support/slo-incident-event-schemas.d.ts +677 -0
- package/dist/customer-support/slo-incident-event-schemas.js +1 -0
- package/dist/customer-support/slo-incident-event-types.d.ts +54 -0
- package/dist/customer-support/slo-incident-event-types.js +0 -0
- package/dist/customer-support/slo-incident-events.d.ts +1702 -0
- package/dist/customer-support/slo-incident-events.js +1 -0
- package/dist/customer-support/slo-incident-input-schemas.d.ts +126 -0
- package/dist/customer-support/slo-incident-input-schemas.js +1 -0
- package/dist/customer-support/slo-incident-operation-output-schemas.d.ts +961 -0
- package/dist/customer-support/slo-incident-operation-output-schemas.js +1 -0
- package/dist/customer-support/slo-incident-operations.d.ts +3331 -0
- package/dist/customer-support/slo-incident-operations.js +1 -0
- package/dist/customer-support/slo-incident-output-schemas.d.ts +170 -0
- package/dist/customer-support/slo-incident-output-schemas.js +1 -0
- package/dist/customer-support/slo-incident-ports.d.ts +49 -0
- package/dist/customer-support/slo-incident-ports.js +0 -0
- package/dist/customer-support/slo-incident-profile.d.ts +17 -0
- package/dist/customer-support/slo-incident-profile.js +0 -0
- package/dist/customer-support/slo-incident-results.d.ts +27 -0
- package/dist/customer-support/slo-incident-results.js +0 -0
- package/dist/customer-support/slo-incident-schema-support.d.ts +49 -0
- package/dist/customer-support/slo-incident-schema-support.js +1 -0
- package/dist/customer-support/slo-incident.d.ts +167 -0
- package/dist/customer-support/slo-incident.js +1 -0
- package/dist/customer-support/slo-qualification-authorization-schemas.d.ts +88 -0
- package/dist/customer-support/slo-qualification-authorization-schemas.js +1 -0
- package/dist/customer-support/slo-qualification-authorization.d.ts +46 -0
- package/dist/customer-support/slo-qualification-authorization.js +0 -0
- package/dist/customer-support/slo-qualification-plan.d.ts +61 -0
- package/dist/customer-support/slo-qualification-plan.js +1 -0
- package/dist/customer-support/workspace-administration.d.ts +59 -0
- package/dist/customer-support/workspace-administration.js +12 -0
- package/dist/customer-support/workspace-brand-locale-residency-events.d.ts +68 -0
- package/dist/customer-support/workspace-brand-locale-residency-events.js +1 -0
- package/dist/customer-support/workspace-brand-locale-residency-operations.d.ts +785 -0
- package/dist/customer-support/workspace-brand-locale-residency-operations.js +1 -0
- package/dist/customer-support/workspace-brand-locale-residency-schema-validation.d.ts +7 -0
- package/dist/customer-support/workspace-brand-locale-residency-schema-validation.js +1 -0
- package/dist/customer-support/workspace-brand-locale-residency-schemas.d.ts +510 -0
- package/dist/customer-support/workspace-brand-locale-residency-schemas.js +1 -0
- package/dist/customer-support/workspace-brand-locale-residency.d.ts +98 -0
- package/dist/customer-support/workspace-brand-locale-residency.js +9 -0
- package/dist/customer-support/workspace-migration-operations.d.ts +3026 -0
- package/dist/customer-support/workspace-migration-operations.js +1 -0
- package/dist/customer-support/workspace-migration-schemas.d.ts +618 -0
- package/dist/customer-support/workspace-migration-schemas.js +1 -0
- package/dist/customer-support/workspace-migration.d.ts +99 -0
- package/dist/customer-support/workspace-migration.js +8 -0
- package/dist/customer-support/workspace-onboarding-operations.d.ts +364 -0
- package/dist/customer-support/workspace-onboarding-operations.js +1 -0
- package/dist/customer-support/workspace-onboarding-schemas.d.ts +230 -0
- package/dist/customer-support/workspace-onboarding-schemas.js +1 -0
- package/dist/customer-support/workspace-onboarding.d.ts +66 -0
- package/dist/customer-support/workspace-onboarding.js +14 -0
- package/dist/customer-support/workspace-operation-schemas.d.ts +264 -0
- package/dist/customer-support/workspace-operation-schemas.js +1 -0
- package/dist/customer-support/workspace-operations.d.ts +425 -0
- package/dist/customer-support/workspace-operations.js +1 -0
- package/dist/data-views/annotation.d.js +0 -0
- package/dist/data-views/annotation.d.ts +78 -0
- package/dist/data-views/annotation.js +10 -0
- package/dist/data-views/data-views.d.ts +3 -0
- package/dist/data-views/data-views.js +1 -0
- package/dist/data-views/edit-form-resolution.d.js +0 -0
- package/dist/data-views/edit-form-resolution.d.ts +48 -0
- package/dist/data-views/edit-form-resolution.js +1 -0
- package/dist/data-views/filter-scope.d.js +0 -0
- package/dist/data-views/filter-scope.d.ts +17 -0
- package/dist/data-views/filter-scope.js +1 -0
- package/dist/data-views/graph-export.d.js +0 -0
- package/dist/data-views/graph-export.d.ts +80 -0
- package/dist/data-views/graph-export.js +2 -0
- package/dist/data-views/graph-filter-codec.d.js +0 -0
- package/dist/data-views/graph-filter-codec.d.ts +21 -0
- package/dist/data-views/graph-filter-codec.js +2 -0
- package/dist/data-views/graph-filter-spec.d.js +0 -0
- package/dist/data-views/graph-filter-spec.d.ts +53 -0
- package/dist/data-views/graph-filter-spec.js +2 -0
- package/dist/data-views/graph-spec.d.js +0 -0
- package/dist/data-views/graph-spec.d.ts +125 -0
- package/dist/data-views/graph-spec.js +80 -0
- package/dist/data-views/graph-subscription.d.js +0 -0
- package/dist/data-views/graph-subscription.d.ts +131 -0
- package/dist/data-views/graph-subscription.js +3 -0
- package/dist/data-views/i18n-constraint.d.js +1 -0
- package/dist/data-views/i18n-constraint.d.ts +78 -0
- package/dist/data-views/i18n-constraint.js +0 -0
- package/dist/data-views/index.d.js +1 -0
- package/dist/data-views/index.d.ts +25 -0
- package/dist/data-views/index.js +1 -0
- package/dist/data-views/layout-spec.d.js +0 -0
- package/dist/data-views/layout-spec.d.ts +140 -0
- package/dist/data-views/layout-spec.js +2 -0
- package/dist/data-views/query-generator.d.ts +67 -0
- package/dist/data-views/query-generator.js +1 -0
- package/dist/data-views/registry.d.js +0 -0
- package/dist/data-views/registry.d.ts +12 -0
- package/dist/data-views/registry.js +1 -0
- package/dist/data-views/report/contractVerificationTable.d.ts +89 -0
- package/dist/data-views/report/contractVerificationTable.js +29 -0
- package/dist/data-views/runtime.d.ts +25 -0
- package/dist/data-views/runtime.js +1 -0
- package/dist/data-views/saved-view.d.js +0 -0
- package/dist/data-views/saved-view.d.ts +56 -0
- package/dist/data-views/saved-view.js +1 -0
- package/dist/data-views/spec.d.js +0 -0
- package/dist/data-views/spec.d.ts +63 -0
- package/dist/data-views/spec.js +23 -0
- package/dist/data-views/story-slide.d.js +0 -0
- package/dist/data-views/story-slide.d.ts +131 -0
- package/dist/data-views/story-slide.js +2 -0
- package/dist/data-views/types.d.js +0 -0
- package/dist/data-views/types.d.ts +725 -0
- package/dist/data-views/types.js +0 -0
- package/dist/database/capabilities/databaseContext.capability.d.ts +11 -0
- package/dist/database/capabilities/databaseContext.capability.js +4 -0
- package/dist/database/capabilities/index.d.ts +1 -0
- package/dist/database/capabilities/index.js +1 -0
- package/dist/database/commands/databaseMutationExecute.command.d.ts +107 -0
- package/dist/database/commands/databaseMutationExecute.command.js +4 -0
- package/dist/database/commands/databaseMutationPlan.command.d.ts +134 -0
- package/dist/database/commands/databaseMutationPlan.command.js +4 -0
- package/dist/database/commands/index.d.ts +2 -0
- package/dist/database/commands/index.js +1 -0
- package/dist/database/constants.d.ts +4 -0
- package/dist/database/constants.js +1 -0
- package/dist/database/contracts.d.ts +561 -0
- package/dist/database/contracts.js +1 -0
- package/dist/database/database.feature.d.ts +1 -0
- package/dist/database/database.feature.js +1 -0
- package/dist/database/economic-evidence.d.ts +11 -0
- package/dist/database/economic-evidence.js +1 -0
- package/dist/database/index.d.ts +9 -0
- package/dist/database/index.js +1 -0
- package/dist/database/queries/databaseDictionaryGet.query.d.ts +60 -0
- package/dist/database/queries/databaseDictionaryGet.query.js +4 -0
- package/dist/database/queries/databaseMigrationsList.query.d.ts +72 -0
- package/dist/database/queries/databaseMigrationsList.query.js +4 -0
- package/dist/database/queries/databaseQueryReadonly.query.d.ts +67 -0
- package/dist/database/queries/databaseQueryReadonly.query.js +4 -0
- package/dist/database/queries/databaseRelationalQuery.query.d.ts +191 -0
- package/dist/database/queries/databaseRelationalQuery.query.js +9 -0
- package/dist/database/queries/databaseSchemaDescribe.query.d.ts +98 -0
- package/dist/database/queries/databaseSchemaDescribe.query.js +4 -0
- package/dist/database/queries/index.d.ts +5 -0
- package/dist/database/queries/index.js +1 -0
- package/dist/database/tables/capabilityEdges.table.d.ts +16 -0
- package/dist/database/tables/capabilityEdges.table.js +1 -0
- package/dist/database/tables/capabilityNodes.table.d.ts +16 -0
- package/dist/database/tables/capabilityNodes.table.js +1 -0
- package/dist/database/tables/databaseTables.d.ts +292 -0
- package/dist/database/tables/databaseTables.js +1 -0
- package/dist/database/tables/index.d.ts +6 -0
- package/dist/database/tables/index.js +1 -0
- package/dist/database/tables/organizationGrants.table.d.ts +10 -0
- package/dist/database/tables/organizationGrants.table.js +1 -0
- package/dist/database/tables/organizationTenantBindings.table.d.ts +16 -0
- package/dist/database/tables/organizationTenantBindings.table.js +1 -0
- package/dist/database/tables/workspaces.table.d.ts +23 -0
- package/dist/database/tables/workspaces.table.js +1 -0
- package/dist/database/views/databaseSchemas.dataView.d.ts +86 -0
- package/dist/database/views/databaseSchemas.dataView.js +4 -0
- package/dist/database/views/index.d.ts +1 -0
- package/dist/database/views/index.js +1 -0
- package/dist/decisioning/decisioning.feature.d.js +0 -0
- package/dist/decisioning/decisioning.feature.d.ts +22 -0
- package/dist/decisioning/decisioning.feature.js +5 -0
- package/dist/decisioning/evaluation-events.d.js +1 -0
- package/dist/decisioning/evaluation-events.d.ts +373 -0
- package/dist/decisioning/evaluation-events.js +1 -0
- package/dist/decisioning/evaluation-evidence-administration-operations.d.js +0 -0
- package/dist/decisioning/evaluation-evidence-administration-operations.d.ts +291 -0
- package/dist/decisioning/evaluation-evidence-administration-operations.js +1 -0
- package/dist/decisioning/evaluation-evidence-administration-schemas.d.js +1 -0
- package/dist/decisioning/evaluation-evidence-administration-schemas.d.ts +210 -0
- package/dist/decisioning/evaluation-evidence-administration-schemas.js +1 -0
- package/dist/decisioning/evaluation-evidence-administration.d.js +0 -0
- package/dist/decisioning/evaluation-evidence-administration.d.ts +34 -0
- package/dist/decisioning/evaluation-evidence-administration.js +0 -0
- package/dist/decisioning/evaluation-evidence-output-schemas.d.js +1 -0
- package/dist/decisioning/evaluation-evidence-output-schemas.d.ts +142 -0
- package/dist/decisioning/evaluation-evidence-output-schemas.js +1 -0
- package/dist/decisioning/evaluation-input-schemas.d.js +1 -0
- package/dist/decisioning/evaluation-input-schemas.d.ts +89 -0
- package/dist/decisioning/evaluation-input-schemas.js +1 -0
- package/dist/decisioning/evaluation-output-primitives.d.js +1 -0
- package/dist/decisioning/evaluation-output-primitives.d.ts +51 -0
- package/dist/decisioning/evaluation-output-primitives.js +1 -0
- package/dist/decisioning/evaluation-output-schemas.d.js +1 -0
- package/dist/decisioning/evaluation-output-schemas.d.ts +133 -0
- package/dist/decisioning/evaluation-output-schemas.js +1 -0
- package/dist/decisioning/evaluation-schema-validation.d.js +0 -0
- package/dist/decisioning/evaluation-schema-validation.d.ts +8 -0
- package/dist/decisioning/evaluation-schema-validation.js +1 -0
- package/dist/decisioning/evaluation-trace-output-schema.d.js +0 -0
- package/dist/decisioning/evaluation-trace-output-schema.d.ts +9 -0
- package/dist/decisioning/evaluation-trace-output-schema.js +1 -0
- package/dist/decisioning/evaluation.d.js +0 -0
- package/dist/decisioning/evaluation.d.ts +126 -0
- package/dist/decisioning/evaluation.js +0 -0
- package/dist/decisioning/index.d.js +1 -0
- package/dist/decisioning/index.d.ts +16 -0
- package/dist/decisioning/index.js +1 -0
- package/dist/decisioning/lifecycle-events.d.js +0 -0
- package/dist/decisioning/lifecycle-events.d.ts +108 -0
- package/dist/decisioning/lifecycle-events.js +1 -0
- package/dist/decisioning/lifecycle-input-schemas.d.js +1 -0
- package/dist/decisioning/lifecycle-input-schemas.d.ts +73 -0
- package/dist/decisioning/lifecycle-input-schemas.js +1 -0
- package/dist/decisioning/lifecycle-operations.d.js +1 -0
- package/dist/decisioning/lifecycle-operations.d.ts +882 -0
- package/dist/decisioning/lifecycle-operations.js +7 -0
- package/dist/decisioning/lifecycle-output-schemas.d.js +1 -0
- package/dist/decisioning/lifecycle-output-schemas.d.ts +237 -0
- package/dist/decisioning/lifecycle-output-schemas.js +1 -0
- package/dist/decisioning/lifecycle.d.js +0 -0
- package/dist/decisioning/lifecycle.d.ts +72 -0
- package/dist/decisioning/lifecycle.js +1 -0
- package/dist/decisioning/operation-metadata.d.js +0 -0
- package/dist/decisioning/operation-metadata.d.ts +76 -0
- package/dist/decisioning/operation-metadata.js +1 -0
- package/dist/decisioning/operations.d.js +0 -0
- package/dist/decisioning/operations.d.ts +3282 -0
- package/dist/decisioning/operations.js +1 -0
- package/dist/decisioning/predicate-evaluation.d.js +0 -0
- package/dist/decisioning/predicate-evaluation.d.ts +6 -0
- package/dist/decisioning/predicate-evaluation.js +1 -0
- package/dist/decisioning/predicate.d.js +0 -0
- package/dist/decisioning/predicate.d.ts +24 -0
- package/dist/decisioning/predicate.js +1 -0
- package/dist/decisioning/types.d.js +1 -0
- package/dist/decisioning/types.d.ts +89 -0
- package/dist/decisioning/types.js +0 -0
- package/dist/decisioning/validation-diagnostics.d.js +0 -0
- package/dist/decisioning/validation-diagnostics.d.ts +17 -0
- package/dist/decisioning/validation-diagnostics.js +1 -0
- package/dist/decisioning/validation-policy.d.js +0 -0
- package/dist/decisioning/validation-policy.d.ts +14 -0
- package/dist/decisioning/validation-policy.js +1 -0
- package/dist/decisioning/validation-shape.d.js +0 -0
- package/dist/decisioning/validation-shape.d.ts +4 -0
- package/dist/decisioning/validation-shape.js +1 -0
- package/dist/decisioning/validation.d.js +1 -0
- package/dist/decisioning/validation.d.ts +5 -0
- package/dist/decisioning/validation.js +1 -0
- package/dist/delivery/authority.d.ts +301 -0
- package/dist/delivery/authority.js +1 -0
- package/dist/delivery/autonomy-context.d.ts +19 -0
- package/dist/delivery/autonomy-context.js +1 -0
- package/dist/delivery/chain.d.ts +396 -0
- package/dist/delivery/chain.js +1 -0
- package/dist/delivery/ci-budget.d.ts +197 -0
- package/dist/delivery/ci-budget.js +1 -0
- package/dist/delivery/contracts.d.ts +133 -0
- package/dist/delivery/contracts.js +1 -0
- package/dist/delivery/index.d.ts +9 -0
- package/dist/delivery/index.js +1 -0
- package/dist/delivery/manual-author-attestation.d.ts +67 -0
- package/dist/delivery/manual-author-attestation.js +1 -0
- package/dist/delivery/primitives.d.js +0 -0
- package/dist/delivery/primitives.d.ts +68 -0
- package/dist/delivery/primitives.js +1 -0
- package/dist/delivery/project-profile.d.ts +173 -0
- package/dist/delivery/project-profile.js +1 -0
- package/dist/delivery/scoped-autonomy.d.ts +110 -0
- package/dist/delivery/scoped-autonomy.js +1 -0
- package/dist/design-packs/index.d.js +1 -0
- package/dist/design-packs/index.d.ts +11 -0
- package/dist/design-packs/index.js +1 -0
- package/dist/design-packs/inheritance.d.js +0 -0
- package/dist/design-packs/inheritance.d.ts +4 -0
- package/dist/design-packs/inheritance.js +1 -0
- package/dist/design-packs/legacy-theme.d.js +0 -0
- package/dist/design-packs/legacy-theme.d.ts +12 -0
- package/dist/design-packs/legacy-theme.js +1 -0
- package/dist/design-packs/operations.d.js +1 -0
- package/dist/design-packs/operations.d.ts +1883 -0
- package/dist/design-packs/operations.js +3 -0
- package/dist/design-packs/patch-validation.d.js +0 -0
- package/dist/design-packs/patch-validation.d.ts +2 -0
- package/dist/design-packs/patch-validation.js +1 -0
- package/dist/design-packs/patch-value-validation.d.js +0 -0
- package/dist/design-packs/patch-value-validation.d.ts +3 -0
- package/dist/design-packs/patch-value-validation.js +1 -0
- package/dist/design-packs/patches.d.js +1 -0
- package/dist/design-packs/patches.d.ts +35 -0
- package/dist/design-packs/patches.js +1 -0
- package/dist/design-packs/policy.d.js +0 -0
- package/dist/design-packs/policy.d.ts +37 -0
- package/dist/design-packs/policy.js +0 -0
- package/dist/design-packs/ports.d.js +0 -0
- package/dist/design-packs/ports.d.ts +79 -0
- package/dist/design-packs/ports.js +0 -0
- package/dist/design-packs/records.d.js +0 -0
- package/dist/design-packs/records.d.ts +73 -0
- package/dist/design-packs/records.js +0 -0
- package/dist/design-packs/registry.d.js +0 -0
- package/dist/design-packs/registry.d.ts +9 -0
- package/dist/design-packs/registry.js +1 -0
- package/dist/design-packs/resolution-helpers.d.js +0 -0
- package/dist/design-packs/resolution-helpers.d.ts +6 -0
- package/dist/design-packs/resolution-helpers.js +1 -0
- package/dist/design-packs/runtime.d.js +0 -0
- package/dist/design-packs/runtime.d.ts +31 -0
- package/dist/design-packs/runtime.js +1 -0
- package/dist/design-packs/types.d.js +0 -0
- package/dist/design-packs/types.d.ts +47 -0
- package/dist/design-packs/types.js +1 -0
- package/dist/design-packs/validation.d.js +0 -0
- package/dist/design-packs/validation.d.ts +18 -0
- package/dist/design-packs/validation.js +1 -0
- package/dist/docs/capabilities/documentationSystem.capability.d.js +0 -0
- package/dist/docs/capabilities/documentationSystem.capability.d.ts +1 -0
- package/dist/docs/capabilities/documentationSystem.capability.js +1 -0
- package/dist/docs/capabilities/index.d.js +1 -0
- package/dist/docs/capabilities/index.d.ts +1 -0
- package/dist/docs/capabilities/index.js +1 -0
- package/dist/docs/commands/docsGenerate.command.d.js +0 -0
- package/dist/docs/commands/docsGenerate.command.d.ts +97 -0
- package/dist/docs/commands/docsGenerate.command.js +4 -0
- package/dist/docs/commands/docsPublish.command.d.js +0 -0
- package/dist/docs/commands/docsPublish.command.d.ts +66 -0
- package/dist/docs/commands/docsPublish.command.js +4 -0
- package/dist/docs/commands/index.d.js +1 -0
- package/dist/docs/commands/index.d.ts +2 -0
- package/dist/docs/commands/index.js +1 -0
- package/dist/docs/constants.d.js +0 -0
- package/dist/docs/constants.d.ts +4 -0
- package/dist/docs/constants.js +1 -0
- package/dist/docs/contracts.d.js +0 -0
- package/dist/docs/contracts.d.ts +711 -0
- package/dist/docs/contracts.js +1 -0
- package/dist/docs/docblocks.manifest.generated.d.js +0 -0
- package/dist/docs/docblocks.manifest.generated.d.ts +239 -0
- package/dist/docs/docblocks.manifest.generated.js +3215 -0
- package/dist/docs/docs.feature.d.js +0 -0
- package/dist/docs/docs.feature.d.ts +14 -0
- package/dist/docs/docs.feature.js +365 -0
- package/dist/docs/events/docsGenerated.event.d.js +0 -0
- package/dist/docs/events/docsGenerated.event.d.ts +55 -0
- package/dist/docs/events/docsGenerated.event.js +1 -0
- package/dist/docs/events/docsPublished.event.d.js +0 -0
- package/dist/docs/events/docsPublished.event.d.ts +63 -0
- package/dist/docs/events/docsPublished.event.js +1 -0
- package/dist/docs/events/index.d.js +1 -0
- package/dist/docs/events/index.d.ts +2 -0
- package/dist/docs/events/index.js +1 -0
- package/dist/docs/forms/docsSearch.form.d.js +0 -0
- package/dist/docs/forms/docsSearch.form.d.ts +15 -0
- package/dist/docs/forms/docsSearch.form.js +1 -0
- package/dist/docs/forms/index.d.js +1 -0
- package/dist/docs/forms/index.d.ts +1 -0
- package/dist/docs/forms/index.js +1 -0
- package/dist/docs/index.d.js +1 -0
- package/dist/docs/index.d.ts +15 -0
- package/dist/docs/index.js +1 -0
- package/dist/docs/manifest-builder.d.ts +13 -0
- package/dist/docs/manifest-builder.js +1 -0
- package/dist/docs/manifest.d.js +0 -0
- package/dist/docs/manifest.d.ts +18 -0
- package/dist/docs/manifest.js +1 -0
- package/dist/docs/presentations/docsLayout.presentation.d.js +0 -0
- package/dist/docs/presentations/docsLayout.presentation.d.ts +1 -0
- package/dist/docs/presentations/docsLayout.presentation.js +1 -0
- package/dist/docs/presentations/docsReferencePage.presentation.d.js +0 -0
- package/dist/docs/presentations/docsReferencePage.presentation.d.ts +1 -0
- package/dist/docs/presentations/docsReferencePage.presentation.js +1 -0
- package/dist/docs/presentations/index.d.js +1 -0
- package/dist/docs/presentations/index.d.ts +2 -0
- package/dist/docs/presentations/index.js +1 -0
- package/dist/docs/presentations.d.js +0 -0
- package/dist/docs/presentations.d.ts +27 -0
- package/dist/docs/presentations.js +1 -0
- package/dist/docs/queries/contractReference.query.d.js +0 -0
- package/dist/docs/queries/contractReference.query.d.ts +220 -0
- package/dist/docs/queries/contractReference.query.js +4 -0
- package/dist/docs/queries/docsIndex.query.d.js +0 -0
- package/dist/docs/queries/docsIndex.query.d.ts +275 -0
- package/dist/docs/queries/docsIndex.query.js +4 -0
- package/dist/docs/queries/index.d.js +1 -0
- package/dist/docs/queries/index.d.ts +2 -0
- package/dist/docs/queries/index.js +1 -0
- package/dist/docs/registry.d.js +0 -0
- package/dist/docs/registry.d.ts +20 -0
- package/dist/docs/registry.js +1 -0
- package/dist/docs/types.d.js +0 -0
- package/dist/docs/types.d.ts +37 -0
- package/dist/docs/types.js +0 -0
- package/dist/docs/views/contractReference.dataView.d.js +0 -0
- package/dist/docs/views/contractReference.dataView.d.ts +78 -0
- package/dist/docs/views/contractReference.dataView.js +1 -0
- package/dist/docs/views/docsIndex.dataView.d.js +0 -0
- package/dist/docs/views/docsIndex.dataView.d.ts +119 -0
- package/dist/docs/views/docsIndex.dataView.js +1 -0
- package/dist/docs/views/exampleCatalog.dataView.d.js +0 -0
- package/dist/docs/views/exampleCatalog.dataView.d.ts +97 -0
- package/dist/docs/views/exampleCatalog.dataView.js +4 -0
- package/dist/docs/views/index.d.js +1 -0
- package/dist/docs/views/index.d.ts +3 -0
- package/dist/docs/views/index.js +1 -0
- package/dist/editions/companyos-scenario.d.ts +39 -0
- package/dist/editions/companyos-scenario.js +1 -0
- package/dist/editions/connect-gates.d.ts +30 -0
- package/dist/editions/connect-gates.js +1 -0
- package/dist/editions/delivery-audit.d.ts +25 -0
- package/dist/editions/delivery-audit.js +1 -0
- package/dist/editions/docs.d.ts +2 -0
- package/dist/editions/docs.js +45 -0
- package/dist/editions/editor/fixtures.d.ts +3 -0
- package/dist/editions/editor/fixtures.js +1 -0
- package/dist/editions/editor/index.d.ts +4 -0
- package/dist/editions/editor/index.js +1 -0
- package/dist/editions/editor/resolver.d.ts +2 -0
- package/dist/editions/editor/resolver.js +1 -0
- package/dist/editions/editor/schema.d.ts +246 -0
- package/dist/editions/editor/schema.js +1 -0
- package/dist/editions/editor/types.d.ts +100 -0
- package/dist/editions/editor/types.js +0 -0
- package/dist/editions/enterprise-guardrails.d.ts +25 -0
- package/dist/editions/enterprise-guardrails.js +1 -0
- package/dist/editions/evidence-boundary.d.ts +10 -0
- package/dist/editions/evidence-boundary.js +1 -0
- package/dist/editions/experiments.d.ts +57 -0
- package/dist/editions/experiments.js +1 -0
- package/dist/editions/fixtures.d.ts +3 -0
- package/dist/editions/fixtures.js +1 -0
- package/dist/editions/full-loop-gate.d.ts +6 -0
- package/dist/editions/full-loop-gate.js +1 -0
- package/dist/editions/harness-evidence.d.ts +41 -0
- package/dist/editions/harness-evidence.js +1 -0
- package/dist/editions/improvement-types.d.ts +52 -0
- package/dist/editions/improvement-types.js +0 -0
- package/dist/editions/improvement.d.ts +12 -0
- package/dist/editions/improvement.js +1 -0
- package/dist/editions/index.d.ts +23 -0
- package/dist/editions/index.js +1 -0
- package/dist/editions/intelligence-coach.d.ts +37 -0
- package/dist/editions/intelligence-coach.js +1 -0
- package/dist/editions/knowledge-provenance.d.ts +42 -0
- package/dist/editions/knowledge-provenance.js +1 -0
- package/dist/editions/ontology-boundary.d.ts +18 -0
- package/dist/editions/ontology-boundary.js +1 -0
- package/dist/editions/operation-specs.d.ts +206 -0
- package/dist/editions/operation-specs.js +1 -0
- package/dist/editions/rollback.d.ts +67 -0
- package/dist/editions/rollback.js +1 -0
- package/dist/editions/runtime-wiring.d.ts +18 -0
- package/dist/editions/runtime-wiring.js +1 -0
- package/dist/editions/schema.d.ts +216 -0
- package/dist/editions/schema.js +1 -0
- package/dist/editions/storage-file.d.ts +31 -0
- package/dist/editions/storage-file.js +1 -0
- package/dist/editions/storage-hybrid.d.ts +42 -0
- package/dist/editions/storage-hybrid.js +1 -0
- package/dist/editions/storage-parity.d.ts +16 -0
- package/dist/editions/storage-parity.js +1 -0
- package/dist/editions/storage.d.ts +49 -0
- package/dist/editions/storage.js +1 -0
- package/dist/editions/types.d.ts +109 -0
- package/dist/editions/types.js +0 -0
- package/dist/editions/validation.d.ts +5 -0
- package/dist/editions/validation.js +1 -0
- package/dist/entities/compatibility.d.ts +55 -0
- package/dist/entities/compatibility.js +20 -0
- package/dist/entities/defineContractEdge.d.js +0 -0
- package/dist/entities/defineContractEdge.d.ts +49 -0
- package/dist/entities/defineContractEdge.js +41 -0
- package/dist/entities/defineContractEntity.d.js +0 -0
- package/dist/entities/defineContractEntity.d.ts +97 -0
- package/dist/entities/defineContractEntity.js +80 -0
- package/dist/entities/index.d.ts +9 -0
- package/dist/entities/index.js +1 -0
- package/dist/entities/registry.d.js +0 -0
- package/dist/entities/registry.d.ts +58 -0
- package/dist/entities/registry.js +1 -0
- package/dist/entities/types.d.js +0 -0
- package/dist/entities/types.d.ts +109 -0
- package/dist/entities/types.js +1 -0
- package/dist/events.d.js +0 -0
- package/dist/events.d.ts +142 -0
- package/dist/events.js +1 -0
- package/dist/examples/define.d.ts +5 -0
- package/dist/examples/define.js +1 -0
- package/dist/examples/index.d.ts +9 -0
- package/dist/examples/index.js +141 -0
- package/dist/examples/registry.d.ts +38 -0
- package/dist/examples/registry.js +1 -0
- package/dist/examples/schema.d.ts +278 -0
- package/dist/examples/schema.js +1 -0
- package/dist/examples/types.d.ts +162 -0
- package/dist/examples/types.js +1 -0
- package/dist/examples/validation.d.ts +61 -0
- package/dist/examples/validation.js +1 -0
- package/dist/experience-coverage/index.d.ts +3 -0
- package/dist/experience-coverage/index.js +1 -0
- package/dist/experience-coverage/scoring.d.ts +9 -0
- package/dist/experience-coverage/scoring.js +1 -0
- package/dist/experience-coverage/types.d.ts +94 -0
- package/dist/experience-coverage/types.js +1 -0
- package/dist/experience-coverage/validation.d.ts +8 -0
- package/dist/experience-coverage/validation.js +1 -0
- package/dist/experiments/evaluator.d.ts +33 -0
- package/dist/experiments/evaluator.js +1 -0
- package/dist/experiments/spec-resolver.d.js +0 -0
- package/dist/experiments/spec-resolver.d.ts +12 -0
- package/dist/experiments/spec-resolver.js +0 -0
- package/dist/experiments/spec.d.js +0 -0
- package/dist/experiments/spec.d.ts +81 -0
- package/dist/experiments/spec.js +128 -0
- package/dist/feature-hubs/federation.d.ts +44 -0
- package/dist/feature-hubs/federation.js +1 -0
- package/dist/feature-hubs/index.d.ts +6 -0
- package/dist/feature-hubs/index.js +1 -0
- package/dist/feature-hubs/policy.d.ts +30 -0
- package/dist/feature-hubs/policy.js +0 -0
- package/dist/feature-hubs/ports.d.ts +69 -0
- package/dist/feature-hubs/ports.js +0 -0
- package/dist/feature-hubs/registry.d.ts +28 -0
- package/dist/feature-hubs/registry.js +0 -0
- package/dist/feature-hubs/social-intent-ports.d.ts +30 -0
- package/dist/feature-hubs/social-intent-ports.js +0 -0
- package/dist/feature-hubs/social-media.d.ts +48 -0
- package/dist/feature-hubs/social-media.js +0 -0
- package/dist/feature-hubs/social-provider-v2.d.ts +53 -0
- package/dist/feature-hubs/social-provider-v2.js +14 -0
- package/dist/feature-hubs/social-scheduling-operations.d.ts +651 -0
- package/dist/feature-hubs/social-scheduling-operations.js +17 -0
- package/dist/feature-hubs/social-scheduling.d.ts +133 -0
- package/dist/feature-hubs/social-scheduling.js +1 -0
- package/dist/feature-hubs/types.d.ts +89 -0
- package/dist/feature-hubs/types.js +1 -0
- package/dist/features/index.d.js +1 -0
- package/dist/features/index.d.ts +6 -0
- package/dist/features/index.js +1 -0
- package/dist/features/install.d.js +0 -0
- package/dist/features/install.d.ts +38 -0
- package/dist/features/install.js +1 -0
- package/dist/features/registry.d.js +0 -0
- package/dist/features/registry.d.ts +21 -0
- package/dist/features/registry.js +1 -0
- package/dist/features/types.d.js +0 -0
- package/dist/features/types.d.ts +108 -0
- package/dist/features/types.js +62 -0
- package/dist/features/validate-bundle-requires.d.js +1 -0
- package/dist/features/validate-bundle-requires.d.ts +29 -0
- package/dist/features/validate-bundle-requires.js +1 -0
- package/dist/features/validation.d.js +0 -0
- package/dist/features/validation.d.ts +21 -0
- package/dist/features/validation.js +1 -0
- package/dist/forms/entity-bound-forms.d.js +0 -0
- package/dist/forms/entity-bound-forms.d.ts +8 -0
- package/dist/forms/entity-bound-forms.js +30 -0
- package/dist/forms/entity-bound.d.ts +1 -0
- package/dist/forms/entity-bound.js +1 -0
- package/dist/forms/forms.d.js +1 -0
- package/dist/forms/forms.d.ts +875 -0
- package/dist/forms/forms.js +1 -0
- package/dist/forms/index.d.js +1 -0
- package/dist/forms/index.d.ts +21 -0
- package/dist/forms/index.js +1 -0
- package/dist/forms/marketing.forms.d.js +0 -0
- package/dist/forms/marketing.forms.d.ts +71 -0
- package/dist/forms/marketing.forms.js +1 -0
- package/dist/forms/platform-ai-validation.d.js +0 -0
- package/dist/forms/platform-ai-validation.d.ts +3 -0
- package/dist/forms/platform-ai-validation.js +1 -0
- package/dist/forms/platform-capability.d.js +0 -0
- package/dist/forms/platform-capability.d.ts +3 -0
- package/dist/forms/platform-capability.js +1 -0
- package/dist/forms/platform-compiler.d.js +0 -0
- package/dist/forms/platform-compiler.d.ts +4 -0
- package/dist/forms/platform-compiler.js +1 -0
- package/dist/forms/platform-decision-graph.d.js +0 -0
- package/dist/forms/platform-decision-graph.d.ts +6 -0
- package/dist/forms/platform-decision-graph.js +1 -0
- package/dist/forms/platform-docs.d.js +0 -0
- package/dist/forms/platform-docs.d.ts +18 -0
- package/dist/forms/platform-docs.js +1 -0
- package/dist/forms/platform-document-doc.d.js +0 -0
- package/dist/forms/platform-document-doc.d.ts +8 -0
- package/dist/forms/platform-document-doc.js +1 -0
- package/dist/forms/platform-document.d.js +0 -0
- package/dist/forms/platform-document.d.ts +187 -0
- package/dist/forms/platform-document.js +1 -0
- package/dist/forms/platform-ecosystem-operations.d.js +0 -0
- package/dist/forms/platform-ecosystem-operations.d.ts +8 -0
- package/dist/forms/platform-ecosystem-operations.js +1 -0
- package/dist/forms/platform-features.d.js +0 -0
- package/dist/forms/platform-features.d.ts +1 -0
- package/dist/forms/platform-features.js +1 -0
- package/dist/forms/platform-form-spec-serialization.d.js +0 -0
- package/dist/forms/platform-form-spec-serialization.d.ts +4 -0
- package/dist/forms/platform-form-spec-serialization.js +1 -0
- package/dist/forms/platform-form-spec-validation.d.js +0 -0
- package/dist/forms/platform-form-spec-validation.d.ts +6 -0
- package/dist/forms/platform-form-spec-validation.js +1 -0
- package/dist/forms/platform-locale-validation.d.js +0 -0
- package/dist/forms/platform-locale-validation.d.ts +3 -0
- package/dist/forms/platform-locale-validation.js +1 -0
- package/dist/forms/platform-operation-catalog.d.js +0 -0
- package/dist/forms/platform-operation-catalog.d.ts +1 -0
- package/dist/forms/platform-operation-catalog.js +1 -0
- package/dist/forms/platform-operation-errors.d.js +0 -0
- package/dist/forms/platform-operation-errors.d.ts +146 -0
- package/dist/forms/platform-operation-errors.js +1 -0
- package/dist/forms/platform-operations.d.js +0 -0
- package/dist/forms/platform-operations.d.ts +13 -0
- package/dist/forms/platform-operations.js +1 -0
- package/dist/forms/platform-product.d.js +0 -0
- package/dist/forms/platform-product.d.ts +13 -0
- package/dist/forms/platform-product.js +1 -0
- package/dist/forms/platform-registry.d.js +0 -0
- package/dist/forms/platform-registry.d.ts +4 -0
- package/dist/forms/platform-registry.js +1 -0
- package/dist/forms/platform-response-extension.d.js +0 -0
- package/dist/forms/platform-response-extension.d.ts +14 -0
- package/dist/forms/platform-response-extension.js +0 -0
- package/dist/forms/platform-validation.d.js +0 -0
- package/dist/forms/platform-validation.d.ts +11 -0
- package/dist/forms/platform-validation.js +1 -0
- package/dist/forms/richFieldsShowcase.form.d.js +0 -0
- package/dist/forms/richFieldsShowcase.form.d.ts +39 -0
- package/dist/forms/richFieldsShowcase.form.js +1 -0
- package/dist/graph-artifacts/codebase.d.ts +240 -0
- package/dist/graph-artifacts/codebase.js +1 -0
- package/dist/graph-artifacts/common.d.ts +114 -0
- package/dist/graph-artifacts/common.js +1 -0
- package/dist/graph-artifacts/contracts.d.ts +299 -0
- package/dist/graph-artifacts/contracts.js +1 -0
- package/dist/graph-artifacts/drift.d.ts +97 -0
- package/dist/graph-artifacts/drift.js +1 -0
- package/dist/graph-artifacts/generation.d.ts +102 -0
- package/dist/graph-artifacts/generation.js +1 -0
- package/dist/graph-artifacts/index.d.ts +6 -0
- package/dist/graph-artifacts/index.js +1 -0
- package/dist/graph-artifacts/links.d.ts +218 -0
- package/dist/graph-artifacts/links.js +1 -0
- package/dist/harness/capabilities/harnessEvaluation.capability.d.ts +1 -0
- package/dist/harness/capabilities/harnessEvaluation.capability.js +1 -0
- package/dist/harness/capabilities/harnessEvidence.capability.d.ts +1 -0
- package/dist/harness/capabilities/harnessEvidence.capability.js +1 -0
- package/dist/harness/capabilities/harnessExecution.capability.d.ts +1 -0
- package/dist/harness/capabilities/harnessExecution.capability.js +1 -0
- package/dist/harness/capabilities/harnessTargeting.capability.d.ts +1 -0
- package/dist/harness/capabilities/harnessTargeting.capability.js +1 -0
- package/dist/harness/capabilities/index.d.ts +4 -0
- package/dist/harness/capabilities/index.js +1 -0
- package/dist/harness/commands/harnessEvaluationRun.command.d.ts +91 -0
- package/dist/harness/commands/harnessEvaluationRun.command.js +1 -0
- package/dist/harness/commands/harnessRunCancel.command.d.ts +24 -0
- package/dist/harness/commands/harnessRunCancel.command.js +1 -0
- package/dist/harness/commands/harnessRunStart.command.d.ts +168 -0
- package/dist/harness/commands/harnessRunStart.command.js +1 -0
- package/dist/harness/commands/index.d.ts +3 -0
- package/dist/harness/commands/index.js +1 -0
- package/dist/harness/constants.d.ts +4 -0
- package/dist/harness/constants.js +1 -0
- package/dist/harness/contracts.d.ts +1065 -0
- package/dist/harness/contracts.js +1 -0
- package/dist/harness/events/harnessEvaluationCompleted.event.d.ts +45 -0
- package/dist/harness/events/harnessEvaluationCompleted.event.js +1 -0
- package/dist/harness/events/harnessEvidenceCaptured.event.d.ts +37 -0
- package/dist/harness/events/harnessEvidenceCaptured.event.js +1 -0
- package/dist/harness/events/harnessRunCompleted.event.d.ts +37 -0
- package/dist/harness/events/harnessRunCompleted.event.js +1 -0
- package/dist/harness/events/harnessRunFailed.event.d.ts +37 -0
- package/dist/harness/events/harnessRunFailed.event.js +1 -0
- package/dist/harness/events/harnessRunStarted.event.d.ts +45 -0
- package/dist/harness/events/harnessRunStarted.event.js +1 -0
- package/dist/harness/events/harnessStepBlocked.event.d.ts +37 -0
- package/dist/harness/events/harnessStepBlocked.event.js +1 -0
- package/dist/harness/events/harnessStepCompleted.event.d.ts +37 -0
- package/dist/harness/events/harnessStepCompleted.event.js +1 -0
- package/dist/harness/events/harnessStepStarted.event.d.ts +45 -0
- package/dist/harness/events/harnessStepStarted.event.js +1 -0
- package/dist/harness/events/index.d.ts +8 -0
- package/dist/harness/events/index.js +1 -0
- package/dist/harness/harness.feature.d.ts +11 -0
- package/dist/harness/harness.feature.js +1 -0
- package/dist/harness/index.d.ts +11 -0
- package/dist/harness/index.js +1 -0
- package/dist/harness/models.d.ts +330 -0
- package/dist/harness/models.js +1 -0
- package/dist/harness/presentations/harnessRunAudit.presentation.d.ts +1 -0
- package/dist/harness/presentations/harnessRunAudit.presentation.js +1 -0
- package/dist/harness/presentations/index.d.ts +1 -0
- package/dist/harness/presentations/index.js +1 -0
- package/dist/harness/queries/harnessEvaluationGet.query.d.ts +72 -0
- package/dist/harness/queries/harnessEvaluationGet.query.js +1 -0
- package/dist/harness/queries/harnessEvidenceGet.query.d.ts +53 -0
- package/dist/harness/queries/harnessEvidenceGet.query.js +1 -0
- package/dist/harness/queries/harnessEvidenceList.query.d.ts +66 -0
- package/dist/harness/queries/harnessEvidenceList.query.js +1 -0
- package/dist/harness/queries/harnessRunGet.query.d.ts +137 -0
- package/dist/harness/queries/harnessRunGet.query.js +1 -0
- package/dist/harness/queries/harnessTargetResolve.query.d.ts +59 -0
- package/dist/harness/queries/harnessTargetResolve.query.js +1 -0
- package/dist/harness/queries/index.d.ts +5 -0
- package/dist/harness/queries/index.js +1 -0
- package/dist/harness/types.d.ts +210 -0
- package/dist/harness/types.js +1 -0
- package/dist/harness/views/harnessEvaluations.dataView.d.ts +74 -0
- package/dist/harness/views/harnessEvaluations.dataView.js +1 -0
- package/dist/harness/views/harnessEvidence.dataView.d.ts +74 -0
- package/dist/harness/views/harnessEvidence.dataView.js +1 -0
- package/dist/harness/views/harnessRuns.dataView.d.ts +74 -0
- package/dist/harness/views/harnessRuns.dataView.js +1 -0
- package/dist/harness/views/index.d.ts +3 -0
- package/dist/harness/views/index.js +1 -0
- package/dist/index.d.ts +76 -0
- package/dist/index.js +1 -0
- package/dist/install.d.js +1 -0
- package/dist/install.d.ts +77 -0
- package/dist/install.js +1 -0
- package/dist/job-application/constants.d.ts +14 -0
- package/dist/job-application/constants.js +1 -0
- package/dist/job-application/events.d.ts +977 -0
- package/dist/job-application/events.js +1 -0
- package/dist/job-application/index.d.ts +7 -0
- package/dist/job-application/index.js +1 -0
- package/dist/job-application/operation-definitions.d.ts +2023 -0
- package/dist/job-application/operation-definitions.js +1 -0
- package/dist/job-application/operations.d.ts +1999 -0
- package/dist/job-application/operations.js +1 -0
- package/dist/job-application/registry.d.ts +10 -0
- package/dist/job-application/registry.js +1 -0
- package/dist/job-application/transport.d.ts +13 -0
- package/dist/job-application/transport.js +1 -0
- package/dist/job-application/types.d.ts +172 -0
- package/dist/job-application/types.js +1 -0
- package/dist/job-application/validation.d.ts +180 -0
- package/dist/job-application/validation.js +1 -0
- package/dist/jobs/define-job.d.ts +14 -0
- package/dist/jobs/define-job.js +1 -0
- package/dist/jobs/durable-queue-v2/admission-validation.d.ts +3 -0
- package/dist/jobs/durable-queue-v2/admission-validation.js +1 -0
- package/dist/jobs/durable-queue-v2/capability.d.ts +118 -0
- package/dist/jobs/durable-queue-v2/capability.js +1 -0
- package/dist/jobs/durable-queue-v2/digests.d.ts +15 -0
- package/dist/jobs/durable-queue-v2/digests.js +1 -0
- package/dist/jobs/durable-queue-v2/envelope.d.ts +113 -0
- package/dist/jobs/durable-queue-v2/envelope.js +1 -0
- package/dist/jobs/durable-queue-v2/index.d.ts +8 -0
- package/dist/jobs/durable-queue-v2/index.js +1 -0
- package/dist/jobs/durable-queue-v2/lifecycle.d.ts +160 -0
- package/dist/jobs/durable-queue-v2/lifecycle.js +1 -0
- package/dist/jobs/durable-queue-v2/primitives.d.ts +43 -0
- package/dist/jobs/durable-queue-v2/primitives.js +1 -0
- package/dist/jobs/durable-queue-v2/test-fixtures.d.ts +91 -0
- package/dist/jobs/durable-queue-v2/test-fixtures.js +1 -0
- package/dist/jobs/durable-queue-v2/validation.d.ts +13 -0
- package/dist/jobs/durable-queue-v2/validation.js +1 -0
- package/dist/jobs/durable-queue-v2/workload.d.ts +34 -0
- package/dist/jobs/durable-queue-v2/workload.js +1 -0
- package/dist/jobs/index.d.ts +4 -0
- package/dist/jobs/index.js +1 -0
- package/dist/jobs/queue.d.js +0 -0
- package/dist/jobs/queue.d.ts +129 -0
- package/dist/jobs/queue.js +1 -0
- package/dist/jobs/spec.d.js +0 -0
- package/dist/jobs/spec.d.ts +36 -0
- package/dist/jobs/spec.js +1 -0
- package/dist/jsonschema.d.ts +39 -0
- package/dist/jsonschema.js +1 -0
- package/dist/knowledge/binding.d.js +0 -0
- package/dist/knowledge/binding.d.ts +28 -0
- package/dist/knowledge/binding.js +0 -0
- package/dist/knowledge/index.d.ts +6 -0
- package/dist/knowledge/index.js +1 -0
- package/dist/knowledge/knowledge.capability.d.ts +1 -0
- package/dist/knowledge/knowledge.capability.js +1 -0
- package/dist/knowledge/knowledge.feature.d.ts +5 -0
- package/dist/knowledge/knowledge.feature.js +1 -0
- package/dist/knowledge/operation-models.d.ts +338 -0
- package/dist/knowledge/operation-models.js +1 -0
- package/dist/knowledge/operations.d.ts +384 -0
- package/dist/knowledge/operations.js +1 -0
- package/dist/knowledge/registry.d.js +0 -0
- package/dist/knowledge/registry.d.ts +6 -0
- package/dist/knowledge/registry.js +1 -0
- package/dist/knowledge/source.d.js +0 -0
- package/dist/knowledge/source.d.ts +96 -0
- package/dist/knowledge/source.js +1 -0
- package/dist/knowledge/spaces/email-threads.d.ts +4 -0
- package/dist/knowledge/spaces/email-threads.js +1 -0
- package/dist/knowledge/spaces/financial-docs.d.ts +4 -0
- package/dist/knowledge/spaces/financial-docs.js +1 -0
- package/dist/knowledge/spaces/financial-overview.d.ts +4 -0
- package/dist/knowledge/spaces/financial-overview.js +1 -0
- package/dist/knowledge/spaces/index.d.ts +6 -0
- package/dist/knowledge/spaces/index.js +1 -0
- package/dist/knowledge/spaces/product-canon.d.ts +4 -0
- package/dist/knowledge/spaces/product-canon.js +1 -0
- package/dist/knowledge/spaces/support-faq.d.ts +4 -0
- package/dist/knowledge/spaces/support-faq.js +1 -0
- package/dist/knowledge/spaces/uploaded-docs.d.ts +4 -0
- package/dist/knowledge/spaces/uploaded-docs.js +1 -0
- package/dist/knowledge/spec.d.js +1 -0
- package/dist/knowledge/spec.d.ts +74 -0
- package/dist/knowledge/spec.js +172 -0
- package/dist/llm/exporters.d.ts +75 -0
- package/dist/llm/exporters.js +9 -0
- package/dist/llm/index.d.ts +12 -0
- package/dist/llm/index.js +1 -0
- package/dist/llm/prompts.d.ts +53 -0
- package/dist/llm/prompts.js +237 -0
- package/dist/llm/types.d.ts +224 -0
- package/dist/llm/types.js +0 -0
- package/dist/markdown.d.ts +16 -0
- package/dist/markdown.js +3 -0
- package/dist/marketing/fixtures.d.ts +3 -0
- package/dist/marketing/fixtures.js +1 -0
- package/dist/marketing/forms.d.ts +32 -0
- package/dist/marketing/forms.js +1 -0
- package/dist/marketing/index.d.ts +4 -0
- package/dist/marketing/index.js +1 -0
- package/dist/marketing/types.d.ts +217 -0
- package/dist/marketing/types.js +0 -0
- package/dist/marketing/validation.d.ts +17 -0
- package/dist/marketing/validation.js +3 -0
- package/dist/migrations.d.ts +67 -0
- package/dist/migrations.js +69 -0
- package/dist/model-registry.d.ts +9 -0
- package/dist/model-registry.js +1 -0
- package/dist/navigation/index.d.ts +11 -0
- package/dist/navigation/index.js +1 -0
- package/dist/navigation/nav-graph.d.ts +79 -0
- package/dist/navigation/nav-graph.js +69 -0
- package/dist/navigation/nav-surface.d.ts +138 -0
- package/dist/navigation/nav-surface.js +70 -0
- package/dist/navigation/registry.d.ts +69 -0
- package/dist/navigation/registry.js +1 -0
- package/dist/node/acp/acp.feature.js +1 -0
- package/dist/node/acp/capabilities/acpTransport.capability.js +4 -0
- package/dist/node/acp/capabilities/index.js +1 -0
- package/dist/node/acp/commands/acpFsAccess.command.js +4 -0
- package/dist/node/acp/commands/acpPromptTurn.command.js +4 -0
- package/dist/node/acp/commands/acpSessionInit.command.js +4 -0
- package/dist/node/acp/commands/acpSessionResume.command.js +4 -0
- package/dist/node/acp/commands/acpSessionStop.command.js +4 -0
- package/dist/node/acp/commands/acpTerminalExec.command.js +4 -0
- package/dist/node/acp/commands/acpToolCalls.command.js +4 -0
- package/dist/node/acp/commands/index.js +1 -0
- package/dist/node/acp/constants.js +1 -0
- package/dist/node/acp/contracts.js +1 -0
- package/dist/node/acp/index.js +1 -0
- package/dist/node/adaptive-shell/index.js +1 -0
- package/dist/node/adaptive-shell/types.js +0 -0
- package/dist/node/adaptive-shell/validation.js +1 -0
- package/dist/node/adoption-catalog/index.js +1 -0
- package/dist/node/agent/agent.feature.js +4 -0
- package/dist/node/agent/capabilities/agentExecution.capability.js +1 -0
- package/dist/node/agent/capabilities/index.js +1 -0
- package/dist/node/agent/commands/agentApprovals.command.js +4 -0
- package/dist/node/agent/commands/agentCancel.command.js +4 -0
- package/dist/node/agent/commands/agentRun.command.js +4 -0
- package/dist/node/agent/commands/agentTaskOps.command.js +1 -0
- package/dist/node/agent/commands/graphCompose.command.js +1 -0
- package/dist/node/agent/commands/graphEdit.command.js +25 -0
- package/dist/node/agent/commands/graphOps.command.js +31 -0
- package/dist/node/agent/commands/graphRefactor.command.js +1 -0
- package/dist/node/agent/commands/graphSuggestEvolution.command.js +35 -0
- package/dist/node/agent/commands/index.js +1 -0
- package/dist/node/agent/constants.js +1 -0
- package/dist/node/agent/contracts.js +1 -0
- package/dist/node/agent/events/agentApprovalRequested.event.js +4 -0
- package/dist/node/agent/events/agentRunCompleted.event.js +4 -0
- package/dist/node/agent/events/agentRunFailed.event.js +4 -0
- package/dist/node/agent/events/agentRunStarted.event.js +4 -0
- package/dist/node/agent/events/index.js +1 -0
- package/dist/node/agent/forms/agentRun.form.js +4 -0
- package/dist/node/agent/forms/index.js +1 -0
- package/dist/node/agent/graph-conversation.js +19 -0
- package/dist/node/agent/index.js +1 -0
- package/dist/node/agent/presentations/agentRunAudit.presentation.js +4 -0
- package/dist/node/agent/presentations/index.js +1 -0
- package/dist/node/agent/protocol/application-signature.js +1 -0
- package/dist/node/agent/protocol/application.js +4 -0
- package/dist/node/agent/protocol/automation/automation.test-fixture.js +1 -0
- package/dist/node/agent/protocol/automation/contracts.js +4 -0
- package/dist/node/agent/protocol/automation/definition-validation.js +1 -0
- package/dist/node/agent/protocol/automation/digests.js +1 -0
- package/dist/node/agent/protocol/automation/index.js +1 -0
- package/dist/node/agent/protocol/automation/lifecycle-validation.js +1 -0
- package/dist/node/agent/protocol/automation/lifecycle.js +1 -0
- package/dist/node/agent/protocol/automation/run-validation.js +1 -0
- package/dist/node/agent/protocol/automation/validation.js +1 -0
- package/dist/node/agent/protocol/bindings.js +1 -0
- package/dist/node/agent/protocol/budget.js +1 -0
- package/dist/node/agent/protocol/common.js +1 -0
- package/dist/node/agent/protocol/delegation.js +1 -0
- package/dist/node/agent/protocol/execution.js +1 -0
- package/dist/node/agent/protocol/graph-validation.js +1 -0
- package/dist/node/agent/protocol/help.js +1 -0
- package/dist/node/agent/protocol/index.js +1 -0
- package/dist/node/agent/protocol/markdown-migration.js +1 -0
- package/dist/node/agent/protocol/memory-governance.js +1 -0
- package/dist/node/agent/protocol/memory-validation.js +1 -0
- package/dist/node/agent/protocol/memory.js +1 -0
- package/dist/node/agent/protocol/model-fallback-validation-v2.js +1 -0
- package/dist/node/agent/protocol/model-fallback-validation.js +1 -0
- package/dist/node/agent/protocol/model-invocation-profile.js +1 -0
- package/dist/node/agent/protocol/model-route-contracts-v2.js +1 -0
- package/dist/node/agent/protocol/model-route-contracts.js +1 -0
- package/dist/node/agent/protocol/model-routing-migration.js +1 -0
- package/dist/node/agent/protocol/model-routing-v2.js +1 -0
- package/dist/node/agent/protocol/model-routing-v2.test-fixtures.js +1 -0
- package/dist/node/agent/protocol/model-routing.js +1 -0
- package/dist/node/agent/protocol/model-routing.test-fixtures.js +1 -0
- package/dist/node/agent/protocol/model-selection-validation-v2.js +1 -0
- package/dist/node/agent/protocol/model-selection-validation.js +1 -0
- package/dist/node/agent/protocol/model-serving-validation-v2.js +1 -0
- package/dist/node/agent/protocol/planning.js +1 -0
- package/dist/node/agent/protocol/reflection.js +1 -0
- package/dist/node/agent/protocol/task-result-validation.js +1 -0
- package/dist/node/agent/queries/agentArtifacts.query.js +4 -0
- package/dist/node/agent/queries/agentStatus.query.js +4 -0
- package/dist/node/agent/queries/index.js +1 -0
- package/dist/node/agent/registry.js +1 -0
- package/dist/node/agent/runner.js +1 -0
- package/dist/node/agent/spec.js +10 -0
- package/dist/node/agent/task-tree.js +22 -0
- package/dist/node/agent/views/agentRuns.dataView.js +4 -0
- package/dist/node/agent/views/index.js +1 -0
- package/dist/node/agent-platform/baseline-suites.js +1 -0
- package/dist/node/agent-platform/digest.js +1 -0
- package/dist/node/agent-platform/index.js +1 -0
- package/dist/node/agent-platform/types.js +1 -0
- package/dist/node/agent-platform/validation-v2.js +1 -0
- package/dist/node/agent-platform/validation.js +1 -0
- package/dist/node/agent-step-observability/index.js +1 -0
- package/dist/node/agent-step-observability/types.js +0 -0
- package/dist/node/agent-step-observability/validation.js +1 -0
- package/dist/node/agentic-interaction/constants.js +1 -0
- package/dist/node/agentic-interaction/contracts.js +1 -0
- package/dist/node/agentic-interaction/index.js +1 -0
- package/dist/node/agentpacks/evidence-audit-validation.js +1 -0
- package/dist/node/agentpacks/evidence-canonicalization.js +2 -0
- package/dist/node/agentpacks/evidence-fixtures.js +1 -0
- package/dist/node/agentpacks/evidence-schema-primitives.js +1 -0
- package/dist/node/agentpacks/evidence-trace-validation.js +1 -0
- package/dist/node/agentpacks/evidence-types.js +0 -0
- package/dist/node/agentpacks/evidence-validation.js +1 -0
- package/dist/node/agentpacks/index.js +1 -0
- package/dist/node/agentpacks/types.js +0 -0
- package/dist/node/agentpacks/validation.js +1 -0
- package/dist/node/ai-improvement/contracts-v2.js +1 -0
- package/dist/node/ai-improvement/evidence.js +1 -0
- package/dist/node/ai-improvement/index.js +1 -0
- package/dist/node/ai-improvement/policy.js +1 -0
- package/dist/node/ai-improvement/types.js +0 -0
- package/dist/node/ai-improvement/validation-v2.js +1 -0
- package/dist/node/ai-improvement/validation.js +1 -0
- package/dist/node/analytics/index.js +0 -0
- package/dist/node/analytics/semantic-spec.js +0 -0
- package/dist/node/app-config/app-config.capability.js +1 -0
- package/dist/node/app-config/app-config.contracts.js +1 -0
- package/dist/node/app-config/app-config.feature.js +1 -0
- package/dist/node/app-config/branding.d.js +0 -0
- package/dist/node/app-config/branding.js +0 -0
- package/dist/node/app-config/events.js +1 -0
- package/dist/node/app-config/index.js +1 -0
- package/dist/node/app-config/integrations.d.js +0 -0
- package/dist/node/app-config/integrations.js +0 -0
- package/dist/node/app-config/lifecycle-contracts.js +1 -0
- package/dist/node/app-config/lifecycle.d.js +0 -0
- package/dist/node/app-config/lifecycle.js +0 -0
- package/dist/node/app-config/runtime.d.js +0 -0
- package/dist/node/app-config/runtime.js +1 -0
- package/dist/node/app-config/spec.d.js +0 -0
- package/dist/node/app-config/spec.js +162 -0
- package/dist/node/app-config/validation.js +1 -0
- package/dist/node/app-submission-readiness/admin-rules.contracts.js +1 -0
- package/dist/node/app-submission-readiness/assets.contracts.js +1 -0
- package/dist/node/app-submission-readiness/audit.contracts.js +1 -0
- package/dist/node/app-submission-readiness/constants.js +1 -0
- package/dist/node/app-submission-readiness/contracts.js +1 -0
- package/dist/node/app-submission-readiness/events.js +1 -0
- package/dist/node/app-submission-readiness/fixtures.js +1 -0
- package/dist/node/app-submission-readiness/index.js +1 -0
- package/dist/node/app-submission-readiness/legal-links.contracts.js +1 -0
- package/dist/node/app-submission-readiness/manifests.contracts.js +1 -0
- package/dist/node/app-submission-readiness/markdown-report.js +3 -0
- package/dist/node/app-submission-readiness/privacy-disclosures.contracts.js +1 -0
- package/dist/node/app-submission-readiness/project.contracts.js +1 -0
- package/dist/node/app-submission-readiness/provider-capabilities.js +1 -0
- package/dist/node/app-submission-readiness/provider-capabilities.seeds.js +1 -0
- package/dist/node/app-submission-readiness/registry.js +1 -0
- package/dist/node/app-submission-readiness/rejection-response.contracts.js +1 -0
- package/dist/node/app-submission-readiness/reports.contracts.js +1 -0
- package/dist/node/app-submission-readiness/reviewer-access.contracts.js +1 -0
- package/dist/node/app-submission-readiness/runtime.js +1 -0
- package/dist/node/app-submission-readiness/sdk-inventory.contracts.js +1 -0
- package/dist/node/app-submission-readiness/store-integrations.contracts.js +1 -0
- package/dist/node/app-submission-readiness/types.js +0 -0
- package/dist/node/capabilities/agent-workflow.d.js +0 -0
- package/dist/node/capabilities/agent-workflow.js +1 -0
- package/dist/node/capabilities/capabilities.d.js +0 -0
- package/dist/node/capabilities/capabilities.js +187 -0
- package/dist/node/capabilities/context.d.js +0 -0
- package/dist/node/capabilities/context.js +1 -0
- package/dist/node/capabilities/guards.d.js +0 -0
- package/dist/node/capabilities/guards.js +1 -0
- package/dist/node/capabilities/index.d.js +1 -0
- package/dist/node/capabilities/index.js +1 -0
- package/dist/node/capabilities/meeting-recorder.d.js +0 -0
- package/dist/node/capabilities/meeting-recorder.js +1 -0
- package/dist/node/capabilities/openbanking.d.js +0 -0
- package/dist/node/capabilities/openbanking.js +1 -0
- package/dist/node/capabilities/validation.d.js +0 -0
- package/dist/node/capabilities/validation.js +1 -0
- package/dist/node/cli/command-pack.js +16 -0
- package/dist/node/cli/index.js +1 -0
- package/dist/node/companyos/auth-production-topology.js +1 -0
- package/dist/node/companyos/booking-surfaces.js +1 -0
- package/dist/node/companyos/calendar-intelligence.js +1 -0
- package/dist/node/companyos/calendar-microsoft-personal-discovery.js +1 -0
- package/dist/node/companyos/calendar-microsoft-personal-http.js +1 -0
- package/dist/node/companyos/calendar-microsoft-personal-selection.js +1 -0
- package/dist/node/companyos/calendar-private-draft-preview.js +1 -0
- package/dist/node/companyos/commands/autonomousWorkOrderTransition.command.js +1 -0
- package/dist/node/companyos/commands/builderReadinessEvaluate.command.js +1 -0
- package/dist/node/companyos/commands/contextSetActive.command.js +1 -0
- package/dist/node/companyos/commands/decisionPacketAttest.command.js +1 -0
- package/dist/node/companyos/commands/decisionPacketFounderApprove.command.js +1 -0
- package/dist/node/companyos/commands/index.js +1 -0
- package/dist/node/companyos/commands/integrationConfigureByok.command.js +1 -0
- package/dist/node/companyos/commands/integrationConfigureManaged.command.js +1 -0
- package/dist/node/companyos/commands/onboardingPreferencesComplete.command.js +8 -0
- package/dist/node/companyos/commands/organizationSetActive.command.js +1 -0
- package/dist/node/companyos/commands/personaPreviewSet.command.js +7 -0
- package/dist/node/companyos/commands/personalBriefingCalendarsSelect.command.js +12 -0
- package/dist/node/companyos/commands/personalBriefingDeliveryRetry.command.js +8 -0
- package/dist/node/companyos/commands/personalBriefingGoogleOAuthComplete.command.js +6 -0
- package/dist/node/companyos/commands/personalBriefingGoogleOAuthStart.command.js +6 -0
- package/dist/node/companyos/commands/personalBriefingMicrosoftDisconnect.command.js +5 -0
- package/dist/node/companyos/commands/personalBriefingMicrosoftOAuthComplete.command.js +9 -0
- package/dist/node/companyos/commands/personalBriefingMicrosoftOAuthStart.command.js +6 -0
- package/dist/node/companyos/commands/personalBriefingPreferencesUpdate.command.js +11 -0
- package/dist/node/companyos/commands/personalBriefingPreviewSend.command.js +15 -0
- package/dist/node/companyos/commands/personalContextDisable.command.js +1 -0
- package/dist/node/companyos/commands/personalContextEnsure.command.js +1 -0
- package/dist/node/companyos/commands/personalDailyOperationCreate.command.js +1 -0
- package/dist/node/companyos/commands/personalDailyOperationTransition.command.js +1 -0
- package/dist/node/companyos/commands/reviewCardDecide.command.js +1 -0
- package/dist/node/companyos/commands/shellPreferencesUpdate.command.js +6 -0
- package/dist/node/companyos/commands/tenantOnboard.command.js +1 -0
- package/dist/node/companyos/commands/tenantUpdate.command.js +1 -0
- package/dist/node/companyos/commands/weeklyReportApprove.command.js +1 -0
- package/dist/node/companyos/commands/workflowStart.command.js +1 -0
- package/dist/node/companyos/company-intelligence/api-schemas.js +1 -0
- package/dist/node/companyos/company-intelligence/api.js +1 -0
- package/dist/node/companyos/company-intelligence/commands.js +1 -0
- package/dist/node/companyos/company-intelligence/events.js +1 -0
- package/dist/node/companyos/company-intelligence/index.js +1 -0
- package/dist/node/companyos/company-intelligence/models.js +1 -0
- package/dist/node/companyos/company-intelligence/operations.js +1 -0
- package/dist/node/companyos/company-intelligence/queries.js +1 -0
- package/dist/node/companyos/company-intelligence/registry.js +1 -0
- package/dist/node/companyos/company-intelligence/surface.js +1 -0
- package/dist/node/companyos/company-metrics/commands.js +3 -0
- package/dist/node/companyos/company-metrics/events.js +3 -0
- package/dist/node/companyos/company-metrics/index.js +1 -0
- package/dist/node/companyos/company-metrics/queries.js +3 -0
- package/dist/node/companyos/company-metrics/registry.js +1 -0
- package/dist/node/companyos/company-metrics/shared.js +1 -0
- package/dist/node/companyos/constants.js +1 -0
- package/dist/node/companyos/index.js +1 -0
- package/dist/node/companyos/live-workspace-surfaces.js +1 -0
- package/dist/node/companyos/organization-bootstrap.js +1 -0
- package/dist/node/companyos/organization-seed-contract.js +1 -0
- package/dist/node/companyos/organization-seed-manifest.js +1 -0
- package/dist/node/companyos/organization-seed-profile-manifest.js +1 -0
- package/dist/node/companyos/organization-seed.js +1 -0
- package/dist/node/companyos/organization-self-service.js +1 -0
- package/dist/node/companyos/production-semantics.js +1 -0
- package/dist/node/companyos/projections.js +1 -0
- package/dist/node/companyos/public-composition.js +1 -0
- package/dist/node/companyos/queries/approvalReasons.query.js +1 -0
- package/dist/node/companyos/queries/builderEvidenceReceiptGet.query.js +1 -0
- package/dist/node/companyos/queries/builderReleaseCapsuleGet.query.js +1 -0
- package/dist/node/companyos/queries/builderReplayPacketGet.query.js +1 -0
- package/dist/node/companyos/queries/contextList.query.js +1 -0
- package/dist/node/companyos/queries/designPartnerReadinessGet.query.js +1 -0
- package/dist/node/companyos/queries/evidenceGetReceipt.query.js +1 -0
- package/dist/node/companyos/queries/evidenceVerifyHash.query.js +1 -0
- package/dist/node/companyos/queries/graphQuery.query.js +1 -0
- package/dist/node/companyos/queries/graphQueryByPolicy.query.js +1 -0
- package/dist/node/companyos/queries/healthApi.query.js +1 -0
- package/dist/node/companyos/queries/healthWebsocket.query.js +1 -0
- package/dist/node/companyos/queries/healthWorker.query.js +1 -0
- package/dist/node/companyos/queries/index.js +1 -0
- package/dist/node/companyos/queries/integrationListProviders.query.js +1 -0
- package/dist/node/companyos/queries/integrationStatus.query.js +1 -0
- package/dist/node/companyos/queries/organizationList.query.js +1 -0
- package/dist/node/companyos/queries/personalBriefingCalendarsList.query.js +6 -0
- package/dist/node/companyos/queries/personalBriefingStatus.query.js +13 -0
- package/dist/node/companyos/queries/personalContextProvisioningStatus.query.js +1 -0
- package/dist/node/companyos/queries/personalDailyOperations.query.js +1 -0
- package/dist/node/companyos/queries/replayGetPacket.query.js +1 -0
- package/dist/node/companyos/queries/replayListByTenant.query.js +1 -0
- package/dist/node/companyos/queries/sessionAuthorityGet.query.js +1 -0
- package/dist/node/companyos/queries/shellPreferencesGet.query.js +7 -0
- package/dist/node/companyos/queries/tenantGet.query.js +1 -0
- package/dist/node/companyos/queries/tenantList.query.js +1 -0
- package/dist/node/companyos/queries/workflowGetStatus.query.js +1 -0
- package/dist/node/companyos/queries/workflowList.query.js +1 -0
- package/dist/node/companyos/queries/workspaceList.query.js +1 -0
- package/dist/node/companyos/registry.js +1 -0
- package/dist/node/companyos/shell-preferences.js +1 -0
- package/dist/node/content-analysis/constants.js +1 -0
- package/dist/node/content-analysis/events.js +3 -0
- package/dist/node/content-analysis/index.js +1 -0
- package/dist/node/content-analysis/operations.js +6 -0
- package/dist/node/content-analysis/registry.js +1 -0
- package/dist/node/content-analysis/types.js +0 -0
- package/dist/node/content-generation/capabilities.js +1 -0
- package/dist/node/content-generation/content-generation.feature.js +1 -0
- package/dist/node/content-generation/contracts.js +4 -0
- package/dist/node/content-generation/index.js +1 -0
- package/dist/node/content-generation/media-status.js +1 -0
- package/dist/node/content-generation/ports.js +0 -0
- package/dist/node/content-generation/rights-operations.js +1 -0
- package/dist/node/content-generation/rights-withdrawal.js +1 -0
- package/dist/node/content-generation/rights.js +1 -0
- package/dist/node/content-generation/types.js +1 -0
- package/dist/node/context/agent-context-validation.js +4 -0
- package/dist/node/context/agent-context.js +1 -0
- package/dist/node/context/capabilities/contextSystem.capability.js +4 -0
- package/dist/node/context/capabilities/index.js +1 -0
- package/dist/node/context/commands/contextPackSnapshot.command.js +4 -0
- package/dist/node/context/commands/index.js +1 -0
- package/dist/node/context/constants.js +1 -0
- package/dist/node/context/context.feature.js +1 -0
- package/dist/node/context/contracts.js +1 -0
- package/dist/node/context/events/contextSnapshotCreated.event.js +4 -0
- package/dist/node/context/events/index.js +1 -0
- package/dist/node/context/forms/contextPackSearch.form.js +4 -0
- package/dist/node/context/forms/index.js +1 -0
- package/dist/node/context/index.js +1 -0
- package/dist/node/context/presentations/contextSnapshot.presentation.js +4 -0
- package/dist/node/context/presentations/index.js +1 -0
- package/dist/node/context/queries/contextPackDescribe.query.js +4 -0
- package/dist/node/context/queries/contextPackSearch.query.js +4 -0
- package/dist/node/context/queries/index.js +1 -0
- package/dist/node/context/views/contextSnapshots.dataView.js +4 -0
- package/dist/node/context/views/index.js +1 -0
- package/dist/node/contract-registry/index.js +1 -0
- package/dist/node/contract-registry/schemas.js +1 -0
- package/dist/node/contract-registry/types.js +0 -0
- package/dist/node/contracts-spec.feature.js +1 -0
- package/dist/node/control-plane/approval-kernel.js +1 -0
- package/dist/node/control-plane/capabilities/controlPlaneApproval.capability.js +1 -0
- package/dist/node/control-plane/capabilities/controlPlaneAudit.capability.js +1 -0
- package/dist/node/control-plane/capabilities/controlPlaneChannelRuntime.capability.js +1 -0
- package/dist/node/control-plane/capabilities/controlPlaneCore.capability.js +1 -0
- package/dist/node/control-plane/capabilities/controlPlaneSkillRegistry.capability.js +1 -0
- package/dist/node/control-plane/capabilities/index.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionAbort.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionApprove.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionCancel.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionEvidenceExport.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionPause.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionReject.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionResume.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionRetry.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionShutdown.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionStart.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneIntentSubmit.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlanePlanCompile.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlanePlanVerify.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneSkillDisable.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneSkillInstall.command.js +1 -0
- package/dist/node/control-plane/commands/index.js +1 -0
- package/dist/node/control-plane/connect-materialization.js +1 -0
- package/dist/node/control-plane/constants.js +1 -0
- package/dist/node/control-plane/contracts.js +1 -0
- package/dist/node/control-plane/control-plane.feature.js +1 -0
- package/dist/node/control-plane/events/controlPlaneExecutionCompleted.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneExecutionFailed.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneExecutionStepBlocked.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneExecutionStepCompleted.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneExecutionStepStarted.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneIntentReceived.event.js +1 -0
- package/dist/node/control-plane/events/controlPlanePlanCompiled.event.js +1 -0
- package/dist/node/control-plane/events/controlPlanePlanRejected.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneSkillInstalled.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneSkillRejected.event.js +1 -0
- package/dist/node/control-plane/events/index.js +1 -0
- package/dist/node/control-plane/hook-authority-digest.js +1 -0
- package/dist/node/control-plane/hook-authority-immutable.js +1 -0
- package/dist/node/control-plane/hook-authority-records.js +0 -0
- package/dist/node/control-plane/hook-authority-reference-adapter.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-binding.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-capability.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-clock.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-helpers.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-invoke.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-leases.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-lock.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-result.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-session.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-state.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-validation.js +1 -0
- package/dist/node/control-plane/hook-authority-test-body.js +1 -0
- package/dist/node/control-plane/hook-authority-test-fixtures.js +1 -0
- package/dist/node/control-plane/hook-authority-validation-events.js +1 -0
- package/dist/node/control-plane/hook-authority-validation-objects.js +1 -0
- package/dist/node/control-plane/hook-authority-validation-paths.js +1 -0
- package/dist/node/control-plane/hook-authority-validation-primitives.js +1 -0
- package/dist/node/control-plane/hook-authority-validation-request.js +1 -0
- package/dist/node/control-plane/hook-authority-validation.js +1 -0
- package/dist/node/control-plane/hook-authority.js +1 -0
- package/dist/node/control-plane/index.js +1 -0
- package/dist/node/control-plane/policies/controlPlaneMessaging.policy.js +1 -0
- package/dist/node/control-plane/policies/index.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneExecutionGet.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneExecutionLane.models.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneExecutionLaneGet.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneExecutionLaneList.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneExecutionList.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlanePolicyExplain.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneSkillList.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneSkillVerify.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneTraceGet.query.js +1 -0
- package/dist/node/control-plane/queries/index.js +1 -0
- package/dist/node/control-plane/repository-authority-bootstrap.js +1 -0
- package/dist/node/control-plane/skills/index.js +1 -0
- package/dist/node/control-plane/skills/schema.js +1 -0
- package/dist/node/control-plane/skills/signer.js +4 -0
- package/dist/node/control-plane/skills/types.js +0 -0
- package/dist/node/control-plane/skills/validator.js +1 -0
- package/dist/node/control-plane/skills/verifier.js +1 -0
- package/dist/node/creative-intelligence/constants.js +1 -0
- package/dist/node/creative-intelligence/events.js +3 -0
- package/dist/node/creative-intelligence/index.js +1 -0
- package/dist/node/creative-intelligence/operations.js +6 -0
- package/dist/node/creative-intelligence/registry.js +1 -0
- package/dist/node/creative-intelligence/types.js +0 -0
- package/dist/node/creator-operations/campaign.js +1 -0
- package/dist/node/creator-operations/common.js +1 -0
- package/dist/node/creator-operations/index.js +1 -0
- package/dist/node/creator-operations/operation-inputs.js +1 -0
- package/dist/node/creator-operations/operations.js +23 -0
- package/dist/node/creator-operations/ports.js +0 -0
- package/dist/node/creator-operations/submission.js +1 -0
- package/dist/node/creator-operations/training-course.js +1 -0
- package/dist/node/creator-operations/training-operations.js +1 -0
- package/dist/node/creator-operations/training-progress-operation.js +1 -0
- package/dist/node/creator-operations/training-quiz-operation.js +1 -0
- package/dist/node/creator-operations/training-quiz-read.js +1 -0
- package/dist/node/creator-operations/training-quiz-view.js +1 -0
- package/dist/node/creator-operations/training-quiz.js +1 -0
- package/dist/node/creator-operations/training.js +1 -0
- package/dist/node/creator-operations/wallet.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-events.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-operations.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-output-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-projection-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-query-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation.js +1 -0
- package/dist/node/customer-support/ai-outcome-event-delivery-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-event-delivery.js +0 -0
- package/dist/node/customer-support/ai-outcome-event-digest.js +1 -0
- package/dist/node/customer-support/ai-outcome-learning-events.js +1 -0
- package/dist/node/customer-support/ai-outcome-learning-operations.js +1 -0
- package/dist/node/customer-support/ai-outcome-learning-schema-support.js +1 -0
- package/dist/node/customer-support/ai-outcome-learning-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-learning.js +1 -0
- package/dist/node/customer-support/attachment-safety-operations.js +1 -0
- package/dist/node/customer-support/attachment-safety-schemas.js +1 -0
- package/dist/node/customer-support/attachment-safety.js +13 -0
- package/dist/node/customer-support/authos-session.js +10 -0
- package/dist/node/customer-support/billing-entitlement-events.js +1 -0
- package/dist/node/customer-support/billing-entitlement-input-schemas.js +1 -0
- package/dist/node/customer-support/billing-entitlement-operations.js +1 -0
- package/dist/node/customer-support/billing-entitlement-output-schemas.js +1 -0
- package/dist/node/customer-support/billing-entitlement-schema-primitives.js +1 -0
- package/dist/node/customer-support/billing-entitlements.js +1 -0
- package/dist/node/customer-support/capability-matrix-evidence.js +1 -0
- package/dist/node/customer-support/capability-matrix-registries.js +1 -0
- package/dist/node/customer-support/capability-matrix-validation-evidence.js +1 -0
- package/dist/node/customer-support/capability-matrix-validation-helpers.js +1 -0
- package/dist/node/customer-support/capability-matrix-validation.js +1 -0
- package/dist/node/customer-support/capability-matrix.js +3 -0
- package/dist/node/customer-support/case-assignments.js +19 -0
- package/dist/node/customer-support/case-cursor.js +8 -0
- package/dist/node/customer-support/case-lifecycle-event-schemas.js +1 -0
- package/dist/node/customer-support/case-lifecycle.js +8 -0
- package/dist/node/customer-support/case-presence.js +11 -0
- package/dist/node/customer-support/case-relations.js +14 -0
- package/dist/node/customer-support/company-action-events.js +1 -0
- package/dist/node/customer-support/company-action-input-schemas.js +1 -0
- package/dist/node/customer-support/company-action-operations.js +1 -0
- package/dist/node/customer-support/company-action-output-schemas.js +1 -0
- package/dist/node/customer-support/company-action-plans.js +1 -0
- package/dist/node/customer-support/company-action-schema-primitives.js +1 -0
- package/dist/node/customer-support/core.js +1 -0
- package/dist/node/customer-support/crypto-lifecycle.js +12 -0
- package/dist/node/customer-support/crypto-rotation-drill-events.js +1 -0
- package/dist/node/customer-support/crypto-rotation-drill-input-schemas.js +1 -0
- package/dist/node/customer-support/crypto-rotation-drill-operations.js +1 -0
- package/dist/node/customer-support/crypto-rotation-drill-output-schemas.js +1 -0
- package/dist/node/customer-support/crypto-rotation-drill-schema-primitives.js +1 -0
- package/dist/node/customer-support/crypto-rotation-drill.js +1 -0
- package/dist/node/customer-support/crypto-rotation-operations.js +1 -0
- package/dist/node/customer-support/crypto-rotation-schemas.js +1 -0
- package/dist/node/customer-support/crypto-rotation.js +10 -0
- package/dist/node/customer-support/csat-input-digest.js +1 -0
- package/dist/node/customer-support/csat-invitation-job-schemas.js +1 -0
- package/dist/node/customer-support/csat-invitation-jobs.js +0 -0
- package/dist/node/customer-support/csat-operation-schemas.js +1 -0
- package/dist/node/customer-support/csat-operations.js +1 -0
- package/dist/node/customer-support/csat-schema-support.js +1 -0
- package/dist/node/customer-support/csat-survey-events.js +1 -0
- package/dist/node/customer-support/csat-survey-operations.js +1 -0
- package/dist/node/customer-support/csat-survey-schemas.js +1 -0
- package/dist/node/customer-support/csat-surveys.js +15 -0
- package/dist/node/customer-support/csat.js +12 -0
- package/dist/node/customer-support/customer-session-consent-operations.js +1 -0
- package/dist/node/customer-support/customer-session-consent-output-schemas.js +1 -0
- package/dist/node/customer-support/customer-session-consent-schemas.js +1 -0
- package/dist/node/customer-support/customer-session-consent.js +14 -0
- package/dist/node/customer-support/customer-session-schema-support.js +1 -0
- package/dist/node/customer-support/customer-support.feature.js +3 -0
- package/dist/node/customer-support/data-lifecycle-events.js +1 -0
- package/dist/node/customer-support/data-lifecycle-input-schemas.js +1 -0
- package/dist/node/customer-support/data-lifecycle-operations.js +1 -0
- package/dist/node/customer-support/data-lifecycle-output-schemas.js +1 -0
- package/dist/node/customer-support/data-lifecycle-ports.js +0 -0
- package/dist/node/customer-support/data-lifecycle-schema-primitives.js +1 -0
- package/dist/node/customer-support/data-lifecycle-schema-validation.js +1 -0
- package/dist/node/customer-support/data-lifecycle.js +5 -0
- package/dist/node/customer-support/errors.js +6 -0
- package/dist/node/customer-support/event-validation.js +1 -0
- package/dist/node/customer-support/events.js +1 -0
- package/dist/node/customer-support/export-artifact-access-schemas.js +1 -0
- package/dist/node/customer-support/export-artifact-access-validation.js +1 -0
- package/dist/node/customer-support/export-artifact-access.js +1 -0
- package/dist/node/customer-support/export-artifact-event-schemas.js +1 -0
- package/dist/node/customer-support/export-artifact-lifecycle-schemas.js +1 -0
- package/dist/node/customer-support/export-artifact-lifecycle.js +1 -0
- package/dist/node/customer-support/export-artifact-storage.js +0 -0
- package/dist/node/customer-support/export-events.js +1 -0
- package/dist/node/customer-support/export-input-schemas.js +1 -0
- package/dist/node/customer-support/export-operations.js +1 -0
- package/dist/node/customer-support/export-output-schemas.js +1 -0
- package/dist/node/customer-support/export-schemas.js +1 -0
- package/dist/node/customer-support/exports.js +1 -0
- package/dist/node/customer-support/identity-resolution-operations.js +1 -0
- package/dist/node/customer-support/identity-resolution-output-schemas.js +1 -0
- package/dist/node/customer-support/identity-resolution-schemas.js +1 -0
- package/dist/node/customer-support/identity-resolution.js +18 -0
- package/dist/node/customer-support/index.js +1 -0
- package/dist/node/customer-support/internal-note-operations.js +1 -0
- package/dist/node/customer-support/internal-note-schemas.js +1 -0
- package/dist/node/customer-support/internal-notes.js +27 -0
- package/dist/node/customer-support/job-runtime.js +13 -0
- package/dist/node/customer-support/knowledge-authority-citation-schema.js +1 -0
- package/dist/node/customer-support/knowledge-authority-digest.js +1 -0
- package/dist/node/customer-support/knowledge-authority-operations.js +1 -0
- package/dist/node/customer-support/knowledge-authority-schema-primitives.js +1 -0
- package/dist/node/customer-support/knowledge-authority-schemas.js +1 -0
- package/dist/node/customer-support/knowledge-authority.js +1 -0
- package/dist/node/customer-support/live-chat-binding-activity-digest.js +1 -0
- package/dist/node/customer-support/live-chat-continuity-events.js +1 -0
- package/dist/node/customer-support/live-chat-continuity-operations.js +1 -0
- package/dist/node/customer-support/live-chat-continuity-schemas.js +1 -0
- package/dist/node/customer-support/live-chat-continuity.js +9 -0
- package/dist/node/customer-support/membership-capabilities.js +1 -0
- package/dist/node/customer-support/membership-operation-schemas.js +1 -0
- package/dist/node/customer-support/membership-operations.js +1 -0
- package/dist/node/customer-support/memberships.js +24 -0
- package/dist/node/customer-support/metadata-operations.js +1 -0
- package/dist/node/customer-support/metadata-output-schemas.js +1 -0
- package/dist/node/customer-support/metadata-schema-validation.js +1 -0
- package/dist/node/customer-support/metadata-schemas.js +1 -0
- package/dist/node/customer-support/metadata.js +12 -0
- package/dist/node/customer-support/notification-operations.js +1 -0
- package/dist/node/customer-support/notification-output-schemas.js +1 -0
- package/dist/node/customer-support/notification-schemas.js +1 -0
- package/dist/node/customer-support/notifications.js +17 -0
- package/dist/node/customer-support/opa-handoff-operations.js +1 -0
- package/dist/node/customer-support/opa-handoff-schemas.js +1 -0
- package/dist/node/customer-support/opa-handoffs.js +6 -0
- package/dist/node/customer-support/operation-schemas.js +1 -0
- package/dist/node/customer-support/operations.js +9 -0
- package/dist/node/customer-support/platform-authority-binding-registry.js +1 -0
- package/dist/node/customer-support/platform-authority-bindings.js +1 -0
- package/dist/node/customer-support/platform-authority-doc.js +3 -0
- package/dist/node/customer-support/platform-authority.js +1 -0
- package/dist/node/customer-support/platform-ports.js +9 -0
- package/dist/node/customer-support/policies.js +0 -0
- package/dist/node/customer-support/ports.js +0 -0
- package/dist/node/customer-support/provider.js +0 -0
- package/dist/node/customer-support/report-export-events.js +1 -0
- package/dist/node/customer-support/report-export-operations.js +1 -0
- package/dist/node/customer-support/report-export-schemas.js +1 -0
- package/dist/node/customer-support/report-export.js +0 -0
- package/dist/node/customer-support/reporting-definition-schemas.js +1 -0
- package/dist/node/customer-support/reporting-definition-validation.js +1 -0
- package/dist/node/customer-support/reporting-doc.js +3 -0
- package/dist/node/customer-support/reporting-event-schemas.js +1 -0
- package/dist/node/customer-support/reporting-events.js +1 -0
- package/dist/node/customer-support/reporting-metric-compatibility.js +1 -0
- package/dist/node/customer-support/reporting-operations.js +1 -0
- package/dist/node/customer-support/reporting-port.js +0 -0
- package/dist/node/customer-support/reporting-query-schemas.js +1 -0
- package/dist/node/customer-support/reporting-query-validation.js +1 -0
- package/dist/node/customer-support/reporting-record-schemas.js +1 -0
- package/dist/node/customer-support/reporting-schema-primitives.js +1 -0
- package/dist/node/customer-support/reporting-schemas.js +1 -0
- package/dist/node/customer-support/reporting.js +1 -0
- package/dist/node/customer-support/routing-administration.js +12 -0
- package/dist/node/customer-support/routing-operation-schemas.js +1 -0
- package/dist/node/customer-support/routing-operations.js +1 -0
- package/dist/node/customer-support/search-view-operations.js +1 -0
- package/dist/node/customer-support/search-view-output-schemas.js +1 -0
- package/dist/node/customer-support/search-view-schemas.js +1 -0
- package/dist/node/customer-support/search-views.js +19 -0
- package/dist/node/customer-support/service-profile-operations.js +1 -0
- package/dist/node/customer-support/service-profile-output-schemas.js +1 -0
- package/dist/node/customer-support/service-profile-party-schema.js +1 -0
- package/dist/node/customer-support/service-profile-schemas.js +1 -0
- package/dist/node/customer-support/service-profile.js +16 -0
- package/dist/node/customer-support/signed-webhook-events.js +1 -0
- package/dist/node/customer-support/signed-webhook-input-schemas.js +1 -0
- package/dist/node/customer-support/signed-webhook-operations.js +1 -0
- package/dist/node/customer-support/signed-webhook-output-schemas.js +1 -0
- package/dist/node/customer-support/signed-webhook-ports.js +0 -0
- package/dist/node/customer-support/signed-webhook-schema-primitives.js +1 -0
- package/dist/node/customer-support/signed-webhook-schemas.js +1 -0
- package/dist/node/customer-support/signed-webhook-value-validation.js +1 -0
- package/dist/node/customer-support/signed-webhook-wire-schema.js +1 -0
- package/dist/node/customer-support/signed-webhook-wire.js +1 -0
- package/dist/node/customer-support/signed-webhooks.js +1 -0
- package/dist/node/customer-support/skills-routing-operations.js +1 -0
- package/dist/node/customer-support/skills-routing-output-schemas.js +1 -0
- package/dist/node/customer-support/skills-routing-schemas.js +1 -0
- package/dist/node/customer-support/skills-routing.js +16 -0
- package/dist/node/customer-support/sla-administration.js +15 -0
- package/dist/node/customer-support/sla-operation-schemas.js +1 -0
- package/dist/node/customer-support/sla-operations.js +1 -0
- package/dist/node/customer-support/sla-policy-operation-schemas.js +1 -0
- package/dist/node/customer-support/sla-schema-validation.js +1 -0
- package/dist/node/customer-support/slo-incident-alert-input-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-alert.js +0 -0
- package/dist/node/customer-support/slo-incident-assessment-input-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-assessment-output-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-doc.js +12 -0
- package/dist/node/customer-support/slo-incident-event-delivery.js +0 -0
- package/dist/node/customer-support/slo-incident-event-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-event-types.js +0 -0
- package/dist/node/customer-support/slo-incident-events.js +1 -0
- package/dist/node/customer-support/slo-incident-input-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-operation-output-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-operations.js +1 -0
- package/dist/node/customer-support/slo-incident-output-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-ports.js +0 -0
- package/dist/node/customer-support/slo-incident-profile.js +0 -0
- package/dist/node/customer-support/slo-incident-results.js +0 -0
- package/dist/node/customer-support/slo-incident-schema-support.js +1 -0
- package/dist/node/customer-support/slo-incident.js +1 -0
- package/dist/node/customer-support/slo-qualification-authorization-schemas.js +1 -0
- package/dist/node/customer-support/slo-qualification-authorization.js +0 -0
- package/dist/node/customer-support/slo-qualification-plan.js +1 -0
- package/dist/node/customer-support/workspace-administration.js +12 -0
- package/dist/node/customer-support/workspace-brand-locale-residency-events.js +1 -0
- package/dist/node/customer-support/workspace-brand-locale-residency-operations.js +1 -0
- package/dist/node/customer-support/workspace-brand-locale-residency-schema-validation.js +1 -0
- package/dist/node/customer-support/workspace-brand-locale-residency-schemas.js +1 -0
- package/dist/node/customer-support/workspace-brand-locale-residency.js +9 -0
- package/dist/node/customer-support/workspace-migration-operations.js +1 -0
- package/dist/node/customer-support/workspace-migration-schemas.js +1 -0
- package/dist/node/customer-support/workspace-migration.js +8 -0
- package/dist/node/customer-support/workspace-onboarding-operations.js +1 -0
- package/dist/node/customer-support/workspace-onboarding-schemas.js +1 -0
- package/dist/node/customer-support/workspace-onboarding.js +14 -0
- package/dist/node/customer-support/workspace-operation-schemas.js +1 -0
- package/dist/node/customer-support/workspace-operations.js +1 -0
- package/dist/node/data-views/annotation.d.js +0 -0
- package/dist/node/data-views/annotation.js +28 -0
- package/dist/node/data-views/data-views.js +1 -0
- package/dist/node/data-views/edit-form-resolution.d.js +0 -0
- package/dist/node/data-views/edit-form-resolution.js +1 -0
- package/dist/node/data-views/filter-scope.d.js +0 -0
- package/dist/node/data-views/filter-scope.js +1 -0
- package/dist/node/data-views/graph-export.d.js +0 -0
- package/dist/node/data-views/graph-export.js +2 -0
- package/dist/node/data-views/graph-filter-codec.d.js +0 -0
- package/dist/node/data-views/graph-filter-codec.js +2 -0
- package/dist/node/data-views/graph-filter-spec.d.js +0 -0
- package/dist/node/data-views/graph-filter-spec.js +2 -0
- package/dist/node/data-views/graph-spec.d.js +0 -0
- package/dist/node/data-views/graph-spec.js +80 -0
- package/dist/node/data-views/graph-subscription.d.js +0 -0
- package/dist/node/data-views/graph-subscription.js +3 -0
- package/dist/node/data-views/i18n-constraint.d.js +1 -0
- package/dist/node/data-views/i18n-constraint.js +0 -0
- package/dist/node/data-views/index.d.js +1 -0
- package/dist/node/data-views/index.js +1 -0
- package/dist/node/data-views/layout-spec.d.js +0 -0
- package/dist/node/data-views/layout-spec.js +2 -0
- package/dist/node/data-views/query-generator.js +1 -0
- package/dist/node/data-views/registry.d.js +0 -0
- package/dist/node/data-views/registry.js +1 -0
- package/dist/node/data-views/report/contractVerificationTable.js +29 -0
- package/dist/node/data-views/runtime.js +1 -0
- package/dist/node/data-views/saved-view.d.js +0 -0
- package/dist/node/data-views/saved-view.js +19 -0
- package/dist/node/data-views/spec.d.js +0 -0
- package/dist/node/data-views/spec.js +23 -0
- package/dist/node/data-views/story-slide.d.js +0 -0
- package/dist/node/data-views/story-slide.js +2 -0
- package/dist/node/data-views/types.d.js +0 -0
- package/dist/node/data-views/types.js +0 -0
- package/dist/node/database/capabilities/databaseContext.capability.js +4 -0
- package/dist/node/database/capabilities/index.js +1 -0
- package/dist/node/database/commands/databaseMutationExecute.command.js +4 -0
- package/dist/node/database/commands/databaseMutationPlan.command.js +4 -0
- package/dist/node/database/commands/index.js +1 -0
- package/dist/node/database/constants.js +1 -0
- package/dist/node/database/contracts.js +1 -0
- package/dist/node/database/database.feature.js +1 -0
- package/dist/node/database/economic-evidence.js +1 -0
- package/dist/node/database/index.js +1 -0
- package/dist/node/database/queries/databaseDictionaryGet.query.js +4 -0
- package/dist/node/database/queries/databaseMigrationsList.query.js +4 -0
- package/dist/node/database/queries/databaseQueryReadonly.query.js +4 -0
- package/dist/node/database/queries/databaseRelationalQuery.query.js +9 -0
- package/dist/node/database/queries/databaseSchemaDescribe.query.js +4 -0
- package/dist/node/database/queries/index.js +1 -0
- package/dist/node/database/tables/capabilityEdges.table.js +1 -0
- package/dist/node/database/tables/capabilityNodes.table.js +1 -0
- package/dist/node/database/tables/databaseTables.js +1 -0
- package/dist/node/database/tables/index.js +1 -0
- package/dist/node/database/tables/organizationGrants.table.js +1 -0
- package/dist/node/database/tables/organizationTenantBindings.table.js +1 -0
- package/dist/node/database/tables/workspaces.table.js +1 -0
- package/dist/node/database/views/databaseSchemas.dataView.js +4 -0
- package/dist/node/database/views/index.js +1 -0
- package/dist/node/decisioning/decisioning.feature.d.js +0 -0
- package/dist/node/decisioning/decisioning.feature.js +5 -0
- package/dist/node/decisioning/evaluation-events.d.js +1 -0
- package/dist/node/decisioning/evaluation-events.js +1 -0
- package/dist/node/decisioning/evaluation-evidence-administration-operations.d.js +0 -0
- package/dist/node/decisioning/evaluation-evidence-administration-operations.js +1 -0
- package/dist/node/decisioning/evaluation-evidence-administration-schemas.d.js +1 -0
- package/dist/node/decisioning/evaluation-evidence-administration-schemas.js +1 -0
- package/dist/node/decisioning/evaluation-evidence-administration.d.js +0 -0
- package/dist/node/decisioning/evaluation-evidence-administration.js +0 -0
- package/dist/node/decisioning/evaluation-evidence-output-schemas.d.js +1 -0
- package/dist/node/decisioning/evaluation-evidence-output-schemas.js +1 -0
- package/dist/node/decisioning/evaluation-input-schemas.d.js +1 -0
- package/dist/node/decisioning/evaluation-input-schemas.js +1 -0
- package/dist/node/decisioning/evaluation-output-primitives.d.js +1 -0
- package/dist/node/decisioning/evaluation-output-primitives.js +1 -0
- package/dist/node/decisioning/evaluation-output-schemas.d.js +1 -0
- package/dist/node/decisioning/evaluation-output-schemas.js +1 -0
- package/dist/node/decisioning/evaluation-schema-validation.d.js +0 -0
- package/dist/node/decisioning/evaluation-schema-validation.js +1 -0
- package/dist/node/decisioning/evaluation-trace-output-schema.d.js +0 -0
- package/dist/node/decisioning/evaluation-trace-output-schema.js +1 -0
- package/dist/node/decisioning/evaluation.d.js +0 -0
- package/dist/node/decisioning/evaluation.js +0 -0
- package/dist/node/decisioning/index.d.js +1 -0
- package/dist/node/decisioning/index.js +1 -0
- package/dist/node/decisioning/lifecycle-events.d.js +0 -0
- package/dist/node/decisioning/lifecycle-events.js +1 -0
- package/dist/node/decisioning/lifecycle-input-schemas.d.js +1 -0
- package/dist/node/decisioning/lifecycle-input-schemas.js +1 -0
- package/dist/node/decisioning/lifecycle-operations.d.js +1 -0
- package/dist/node/decisioning/lifecycle-operations.js +7 -0
- package/dist/node/decisioning/lifecycle-output-schemas.d.js +1 -0
- package/dist/node/decisioning/lifecycle-output-schemas.js +1 -0
- package/dist/node/decisioning/lifecycle.d.js +0 -0
- package/dist/node/decisioning/lifecycle.js +1 -0
- package/dist/node/decisioning/operation-metadata.d.js +0 -0
- package/dist/node/decisioning/operation-metadata.js +1 -0
- package/dist/node/decisioning/operations.d.js +0 -0
- package/dist/node/decisioning/operations.js +1 -0
- package/dist/node/decisioning/predicate-evaluation.d.js +0 -0
- package/dist/node/decisioning/predicate-evaluation.js +1 -0
- package/dist/node/decisioning/predicate.d.js +0 -0
- package/dist/node/decisioning/predicate.js +1 -0
- package/dist/node/decisioning/types.d.js +1 -0
- package/dist/node/decisioning/types.js +0 -0
- package/dist/node/decisioning/validation-diagnostics.d.js +0 -0
- package/dist/node/decisioning/validation-diagnostics.js +1 -0
- package/dist/node/decisioning/validation-policy.d.js +0 -0
- package/dist/node/decisioning/validation-policy.js +1 -0
- package/dist/node/decisioning/validation-shape.d.js +0 -0
- package/dist/node/decisioning/validation-shape.js +1 -0
- package/dist/node/decisioning/validation.d.js +1 -0
- package/dist/node/decisioning/validation.js +1 -0
- package/dist/node/delivery/authority.js +1 -0
- package/dist/node/delivery/autonomy-context.js +1 -0
- package/dist/node/delivery/chain.js +1 -0
- package/dist/node/delivery/ci-budget.js +1 -0
- package/dist/node/delivery/contracts.js +1 -0
- package/dist/node/delivery/index.js +1 -0
- package/dist/node/delivery/manual-author-attestation.js +1 -0
- package/dist/node/delivery/primitives.d.js +0 -0
- package/dist/node/delivery/primitives.js +1 -0
- package/dist/node/delivery/project-profile.js +1 -0
- package/dist/node/delivery/scoped-autonomy.js +1 -0
- package/dist/node/design-packs/index.d.js +1 -0
- package/dist/node/design-packs/index.js +1 -0
- package/dist/node/design-packs/inheritance.d.js +0 -0
- package/dist/node/design-packs/inheritance.js +1 -0
- package/dist/node/design-packs/legacy-theme.d.js +0 -0
- package/dist/node/design-packs/legacy-theme.js +1 -0
- package/dist/node/design-packs/operations.d.js +1 -0
- package/dist/node/design-packs/operations.js +3 -0
- package/dist/node/design-packs/patch-validation.d.js +0 -0
- package/dist/node/design-packs/patch-validation.js +1 -0
- package/dist/node/design-packs/patch-value-validation.d.js +0 -0
- package/dist/node/design-packs/patch-value-validation.js +1 -0
- package/dist/node/design-packs/patches.d.js +1 -0
- package/dist/node/design-packs/patches.js +1 -0
- package/dist/node/design-packs/policy.d.js +0 -0
- package/dist/node/design-packs/policy.js +0 -0
- package/dist/node/design-packs/ports.d.js +0 -0
- package/dist/node/design-packs/ports.js +0 -0
- package/dist/node/design-packs/records.d.js +0 -0
- package/dist/node/design-packs/records.js +0 -0
- package/dist/node/design-packs/registry.d.js +0 -0
- package/dist/node/design-packs/registry.js +1 -0
- package/dist/node/design-packs/resolution-helpers.d.js +0 -0
- package/dist/node/design-packs/resolution-helpers.js +1 -0
- package/dist/node/design-packs/runtime.d.js +0 -0
- package/dist/node/design-packs/runtime.js +1 -0
- package/dist/node/design-packs/types.d.js +0 -0
- package/dist/node/design-packs/types.js +1 -0
- package/dist/node/design-packs/validation.d.js +0 -0
- package/dist/node/design-packs/validation.js +1 -0
- package/dist/node/docs/capabilities/documentationSystem.capability.d.js +0 -0
- package/dist/node/docs/capabilities/documentationSystem.capability.js +1 -0
- package/dist/node/docs/capabilities/index.d.js +1 -0
- package/dist/node/docs/capabilities/index.js +1 -0
- package/dist/node/docs/commands/docsGenerate.command.d.js +0 -0
- package/dist/node/docs/commands/docsGenerate.command.js +4 -0
- package/dist/node/docs/commands/docsPublish.command.d.js +0 -0
- package/dist/node/docs/commands/docsPublish.command.js +4 -0
- package/dist/node/docs/commands/index.d.js +1 -0
- package/dist/node/docs/commands/index.js +1 -0
- package/dist/node/docs/constants.d.js +0 -0
- package/dist/node/docs/constants.js +1 -0
- package/dist/node/docs/contracts.d.js +0 -0
- package/dist/node/docs/contracts.js +1 -0
- package/dist/node/docs/docblocks.manifest.generated.d.js +0 -0
- package/dist/node/docs/docblocks.manifest.generated.js +3215 -0
- package/dist/node/docs/docs.feature.d.js +0 -0
- package/dist/node/docs/docs.feature.js +365 -0
- package/dist/node/docs/events/docsGenerated.event.d.js +0 -0
- package/dist/node/docs/events/docsGenerated.event.js +1 -0
- package/dist/node/docs/events/docsPublished.event.d.js +0 -0
- package/dist/node/docs/events/docsPublished.event.js +1 -0
- package/dist/node/docs/events/index.d.js +1 -0
- package/dist/node/docs/events/index.js +1 -0
- package/dist/node/docs/forms/docsSearch.form.d.js +0 -0
- package/dist/node/docs/forms/docsSearch.form.js +1 -0
- package/dist/node/docs/forms/index.d.js +1 -0
- package/dist/node/docs/forms/index.js +1 -0
- package/dist/node/docs/index.d.js +1 -0
- package/dist/node/docs/index.js +1 -0
- package/dist/node/docs/manifest-builder.js +1 -0
- package/dist/node/docs/manifest.d.js +0 -0
- package/dist/node/docs/manifest.js +1 -0
- package/dist/node/docs/presentations/docsLayout.presentation.d.js +0 -0
- package/dist/node/docs/presentations/docsLayout.presentation.js +1 -0
- package/dist/node/docs/presentations/docsReferencePage.presentation.d.js +0 -0
- package/dist/node/docs/presentations/docsReferencePage.presentation.js +1 -0
- package/dist/node/docs/presentations/index.d.js +1 -0
- package/dist/node/docs/presentations/index.js +1 -0
- package/dist/node/docs/presentations.d.js +0 -0
- package/dist/node/docs/presentations.js +1 -0
- package/dist/node/docs/queries/contractReference.query.d.js +0 -0
- package/dist/node/docs/queries/contractReference.query.js +4 -0
- package/dist/node/docs/queries/docsIndex.query.d.js +0 -0
- package/dist/node/docs/queries/docsIndex.query.js +4 -0
- package/dist/node/docs/queries/index.d.js +1 -0
- package/dist/node/docs/queries/index.js +1 -0
- package/dist/node/docs/registry.d.js +0 -0
- package/dist/node/docs/registry.js +1 -0
- package/dist/node/docs/types.d.js +0 -0
- package/dist/node/docs/types.js +0 -0
- package/dist/node/docs/views/contractReference.dataView.d.js +0 -0
- package/dist/node/docs/views/contractReference.dataView.js +1 -0
- package/dist/node/docs/views/docsIndex.dataView.d.js +0 -0
- package/dist/node/docs/views/docsIndex.dataView.js +1 -0
- package/dist/node/docs/views/exampleCatalog.dataView.d.js +0 -0
- package/dist/node/docs/views/exampleCatalog.dataView.js +4 -0
- package/dist/node/docs/views/index.d.js +1 -0
- package/dist/node/docs/views/index.js +1 -0
- package/dist/node/editions/companyos-scenario.js +1 -0
- package/dist/node/editions/connect-gates.js +1 -0
- package/dist/node/editions/delivery-audit.js +1 -0
- package/dist/node/editions/docs.js +45 -0
- package/dist/node/editions/editor/fixtures.js +1 -0
- package/dist/node/editions/editor/index.js +1 -0
- package/dist/node/editions/editor/resolver.js +1 -0
- package/dist/node/editions/editor/schema.js +1 -0
- package/dist/node/editions/editor/types.js +0 -0
- package/dist/node/editions/enterprise-guardrails.js +1 -0
- package/dist/node/editions/evidence-boundary.js +1 -0
- package/dist/node/editions/experiments.js +1 -0
- package/dist/node/editions/fixtures.js +1 -0
- package/dist/node/editions/full-loop-gate.js +1 -0
- package/dist/node/editions/harness-evidence.js +1 -0
- package/dist/node/editions/improvement-types.js +0 -0
- package/dist/node/editions/improvement.js +1 -0
- package/dist/node/editions/index.js +1 -0
- package/dist/node/editions/intelligence-coach.js +1 -0
- package/dist/node/editions/knowledge-provenance.js +1 -0
- package/dist/node/editions/ontology-boundary.js +1 -0
- package/dist/node/editions/operation-specs.js +1 -0
- package/dist/node/editions/rollback.js +1 -0
- package/dist/node/editions/runtime-wiring.js +1 -0
- package/dist/node/editions/schema.js +1 -0
- package/dist/node/editions/storage-file.js +1 -0
- package/dist/node/editions/storage-hybrid.js +1 -0
- package/dist/node/editions/storage-parity.js +1 -0
- package/dist/node/editions/storage.js +1 -0
- package/dist/node/editions/types.js +0 -0
- package/dist/node/editions/validation.js +1 -0
- package/dist/node/entities/compatibility.js +20 -0
- package/dist/node/entities/defineContractEdge.d.js +0 -0
- package/dist/node/entities/defineContractEdge.js +41 -0
- package/dist/node/entities/defineContractEntity.d.js +0 -0
- package/dist/node/entities/defineContractEntity.js +80 -0
- package/dist/node/entities/index.js +1 -0
- package/dist/node/entities/registry.d.js +0 -0
- package/dist/node/entities/registry.js +1 -0
- package/dist/node/entities/types.d.js +0 -0
- package/dist/node/entities/types.js +1 -0
- package/dist/node/events.d.js +0 -0
- package/dist/node/events.js +1 -0
- package/dist/node/examples/define.js +1 -0
- package/dist/node/examples/index.js +141 -0
- package/dist/node/examples/registry.js +1 -0
- package/dist/node/examples/schema.js +1 -0
- package/dist/node/examples/types.js +1 -0
- package/dist/node/examples/validation.js +1 -0
- package/dist/node/experience-coverage/index.js +1 -0
- package/dist/node/experience-coverage/scoring.js +1 -0
- package/dist/node/experience-coverage/types.js +1 -0
- package/dist/node/experience-coverage/validation.js +1 -0
- package/dist/node/experiments/evaluator.js +1 -0
- package/dist/node/experiments/spec-resolver.d.js +0 -0
- package/dist/node/experiments/spec-resolver.js +0 -0
- package/dist/node/experiments/spec.d.js +0 -0
- package/dist/node/experiments/spec.js +128 -0
- package/dist/node/feature-hubs/federation.js +1 -0
- package/dist/node/feature-hubs/index.js +1 -0
- package/dist/node/feature-hubs/policy.js +0 -0
- package/dist/node/feature-hubs/ports.js +0 -0
- package/dist/node/feature-hubs/registry.js +0 -0
- package/dist/node/feature-hubs/social-intent-ports.js +0 -0
- package/dist/node/feature-hubs/social-media.js +0 -0
- package/dist/node/feature-hubs/social-provider-v2.js +14 -0
- package/dist/node/feature-hubs/social-scheduling-operations.js +17 -0
- package/dist/node/feature-hubs/social-scheduling.js +1 -0
- package/dist/node/feature-hubs/types.js +1 -0
- package/dist/node/features/index.d.js +1 -0
- package/dist/node/features/index.js +1 -0
- package/dist/node/features/install.d.js +0 -0
- package/dist/node/features/install.js +1 -0
- package/dist/node/features/registry.d.js +0 -0
- package/dist/node/features/registry.js +1 -0
- package/dist/node/features/types.d.js +0 -0
- package/dist/node/features/types.js +62 -0
- package/dist/node/features/validate-bundle-requires.d.js +1 -0
- package/dist/node/features/validate-bundle-requires.js +1 -0
- package/dist/node/features/validation.d.js +0 -0
- package/dist/node/features/validation.js +1 -0
- package/dist/node/forms/entity-bound-forms.d.js +0 -0
- package/dist/node/forms/entity-bound-forms.js +30 -0
- package/dist/node/forms/entity-bound.js +1 -0
- package/dist/node/forms/forms.d.js +1 -0
- package/dist/node/forms/forms.js +1 -0
- package/dist/node/forms/index.d.js +1 -0
- package/dist/node/forms/index.js +1 -0
- package/dist/node/forms/marketing.forms.d.js +0 -0
- package/dist/node/forms/marketing.forms.js +1 -0
- package/dist/node/forms/platform-ai-validation.d.js +0 -0
- package/dist/node/forms/platform-ai-validation.js +1 -0
- package/dist/node/forms/platform-capability.d.js +0 -0
- package/dist/node/forms/platform-capability.js +1 -0
- package/dist/node/forms/platform-compiler.d.js +0 -0
- package/dist/node/forms/platform-compiler.js +1 -0
- package/dist/node/forms/platform-decision-graph.d.js +0 -0
- package/dist/node/forms/platform-decision-graph.js +1 -0
- package/dist/node/forms/platform-docs.d.js +0 -0
- package/dist/node/forms/platform-docs.js +1 -0
- package/dist/node/forms/platform-document-doc.d.js +0 -0
- package/dist/node/forms/platform-document-doc.js +1 -0
- package/dist/node/forms/platform-document.d.js +0 -0
- package/dist/node/forms/platform-document.js +1 -0
- package/dist/node/forms/platform-ecosystem-operations.d.js +0 -0
- package/dist/node/forms/platform-ecosystem-operations.js +1 -0
- package/dist/node/forms/platform-features.d.js +0 -0
- package/dist/node/forms/platform-features.js +1 -0
- package/dist/node/forms/platform-form-spec-serialization.d.js +0 -0
- package/dist/node/forms/platform-form-spec-serialization.js +1 -0
- package/dist/node/forms/platform-form-spec-validation.d.js +0 -0
- package/dist/node/forms/platform-form-spec-validation.js +1 -0
- package/dist/node/forms/platform-locale-validation.d.js +0 -0
- package/dist/node/forms/platform-locale-validation.js +1 -0
- package/dist/node/forms/platform-operation-catalog.d.js +0 -0
- package/dist/node/forms/platform-operation-catalog.js +1 -0
- package/dist/node/forms/platform-operation-errors.d.js +0 -0
- package/dist/node/forms/platform-operation-errors.js +1 -0
- package/dist/node/forms/platform-operations.d.js +0 -0
- package/dist/node/forms/platform-operations.js +1 -0
- package/dist/node/forms/platform-product.d.js +0 -0
- package/dist/node/forms/platform-product.js +1 -0
- package/dist/node/forms/platform-registry.d.js +0 -0
- package/dist/node/forms/platform-registry.js +1 -0
- package/dist/node/forms/platform-response-extension.d.js +0 -0
- package/dist/node/forms/platform-response-extension.js +0 -0
- package/dist/node/forms/platform-validation.d.js +0 -0
- package/dist/node/forms/platform-validation.js +1 -0
- package/dist/node/forms/richFieldsShowcase.form.d.js +0 -0
- package/dist/node/forms/richFieldsShowcase.form.js +1 -0
- package/dist/node/graph-artifacts/codebase.js +1 -0
- package/dist/node/graph-artifacts/common.js +1 -0
- package/dist/node/graph-artifacts/contracts.js +1 -0
- package/dist/node/graph-artifacts/drift.js +1 -0
- package/dist/node/graph-artifacts/generation.js +1 -0
- package/dist/node/graph-artifacts/index.js +1 -0
- package/dist/node/graph-artifacts/links.js +1 -0
- package/dist/node/harness/capabilities/harnessEvaluation.capability.js +1 -0
- package/dist/node/harness/capabilities/harnessEvidence.capability.js +1 -0
- package/dist/node/harness/capabilities/harnessExecution.capability.js +1 -0
- package/dist/node/harness/capabilities/harnessTargeting.capability.js +1 -0
- package/dist/node/harness/capabilities/index.js +1 -0
- package/dist/node/harness/commands/harnessEvaluationRun.command.js +1 -0
- package/dist/node/harness/commands/harnessRunCancel.command.js +1 -0
- package/dist/node/harness/commands/harnessRunStart.command.js +1 -0
- package/dist/node/harness/commands/index.js +1 -0
- package/dist/node/harness/constants.js +1 -0
- package/dist/node/harness/contracts.js +1 -0
- package/dist/node/harness/events/harnessEvaluationCompleted.event.js +1 -0
- package/dist/node/harness/events/harnessEvidenceCaptured.event.js +1 -0
- package/dist/node/harness/events/harnessRunCompleted.event.js +1 -0
- package/dist/node/harness/events/harnessRunFailed.event.js +1 -0
- package/dist/node/harness/events/harnessRunStarted.event.js +1 -0
- package/dist/node/harness/events/harnessStepBlocked.event.js +1 -0
- package/dist/node/harness/events/harnessStepCompleted.event.js +1 -0
- package/dist/node/harness/events/harnessStepStarted.event.js +1 -0
- package/dist/node/harness/events/index.js +1 -0
- package/dist/node/harness/harness.feature.js +1 -0
- package/dist/node/harness/index.js +1 -0
- package/dist/node/harness/models.js +1 -0
- package/dist/node/harness/presentations/harnessRunAudit.presentation.js +1 -0
- package/dist/node/harness/presentations/index.js +1 -0
- package/dist/node/harness/queries/harnessEvaluationGet.query.js +1 -0
- package/dist/node/harness/queries/harnessEvidenceGet.query.js +1 -0
- package/dist/node/harness/queries/harnessEvidenceList.query.js +1 -0
- package/dist/node/harness/queries/harnessRunGet.query.js +1 -0
- package/dist/node/harness/queries/harnessTargetResolve.query.js +1 -0
- package/dist/node/harness/queries/index.js +1 -0
- package/dist/node/harness/types.js +1 -0
- package/dist/node/harness/views/harnessEvaluations.dataView.js +1 -0
- package/dist/node/harness/views/harnessEvidence.dataView.js +1 -0
- package/dist/node/harness/views/harnessRuns.dataView.js +1 -0
- package/dist/node/harness/views/index.js +1 -0
- package/dist/node/index.js +1 -0
- package/dist/node/install.d.js +1 -0
- package/dist/node/install.js +1 -0
- package/dist/node/job-application/constants.js +1 -0
- package/dist/node/job-application/events.js +1 -0
- package/dist/node/job-application/index.js +1 -0
- package/dist/node/job-application/operation-definitions.js +1 -0
- package/dist/node/job-application/operations.js +1 -0
- package/dist/node/job-application/registry.js +1 -0
- package/dist/node/job-application/transport.js +1 -0
- package/dist/node/job-application/types.js +1 -0
- package/dist/node/job-application/validation.js +1 -0
- package/dist/node/jobs/define-job.js +1 -0
- package/dist/node/jobs/durable-queue-v2/admission-validation.js +1 -0
- package/dist/node/jobs/durable-queue-v2/capability.js +1 -0
- package/dist/node/jobs/durable-queue-v2/digests.js +1 -0
- package/dist/node/jobs/durable-queue-v2/envelope.js +1 -0
- package/dist/node/jobs/durable-queue-v2/index.js +1 -0
- package/dist/node/jobs/durable-queue-v2/lifecycle.js +1 -0
- package/dist/node/jobs/durable-queue-v2/primitives.js +1 -0
- package/dist/node/jobs/durable-queue-v2/test-fixtures.js +1 -0
- package/dist/node/jobs/durable-queue-v2/validation.js +1 -0
- package/dist/node/jobs/durable-queue-v2/workload.js +1 -0
- package/dist/node/jobs/index.js +1 -0
- package/dist/node/jobs/queue.d.js +0 -0
- package/dist/node/jobs/queue.js +1 -0
- package/dist/node/jobs/spec.d.js +0 -0
- package/dist/node/jobs/spec.js +1 -0
- package/dist/node/jsonschema.js +1 -0
- package/dist/node/knowledge/binding.d.js +0 -0
- package/dist/node/knowledge/binding.js +0 -0
- package/dist/node/knowledge/index.js +1 -0
- package/dist/node/knowledge/knowledge.capability.js +1 -0
- package/dist/node/knowledge/knowledge.feature.js +1 -0
- package/dist/node/knowledge/operation-models.js +1 -0
- package/dist/node/knowledge/operations.js +1 -0
- package/dist/node/knowledge/registry.d.js +0 -0
- package/dist/node/knowledge/registry.js +1 -0
- package/dist/node/knowledge/source.d.js +0 -0
- package/dist/node/knowledge/source.js +1 -0
- package/dist/node/knowledge/spaces/email-threads.js +1 -0
- package/dist/node/knowledge/spaces/financial-docs.js +1 -0
- package/dist/node/knowledge/spaces/financial-overview.js +1 -0
- package/dist/node/knowledge/spaces/index.js +1 -0
- package/dist/node/knowledge/spaces/product-canon.js +1 -0
- package/dist/node/knowledge/spaces/support-faq.js +1 -0
- package/dist/node/knowledge/spaces/uploaded-docs.js +1 -0
- package/dist/node/knowledge/spec.d.js +1 -0
- package/dist/node/knowledge/spec.js +172 -0
- package/dist/node/llm/exporters.js +9 -0
- package/dist/node/llm/index.js +1 -0
- package/dist/node/llm/prompts.js +237 -0
- package/dist/node/llm/types.js +0 -0
- package/dist/node/markdown.js +3 -0
- package/dist/node/marketing/fixtures.js +1 -0
- package/dist/node/marketing/forms.js +1 -0
- package/dist/node/marketing/index.js +1 -0
- package/dist/node/marketing/types.js +0 -0
- package/dist/node/marketing/validation.js +3 -0
- package/dist/node/migrations.js +69 -0
- package/dist/node/model-registry.js +1 -0
- package/dist/node/navigation/index.js +1 -0
- package/dist/node/navigation/nav-graph.js +69 -0
- package/dist/node/navigation/nav-surface.js +70 -0
- package/dist/node/navigation/registry.js +1 -0
- package/dist/node/notifications/contracts.js +1 -0
- package/dist/node/notifications/index.js +1 -0
- package/dist/node/notifications/notifications.capability.js +1 -0
- package/dist/node/notifications/notifications.feature.js +1 -0
- package/dist/node/observability/database-signals.js +1 -0
- package/dist/node/observability/evidence-record.js +1 -0
- package/dist/node/observability/index.js +1 -0
- package/dist/node/observability/signal-spec.js +1 -0
- package/dist/node/onboarding-base.js +1 -0
- package/dist/node/ontology/autonomous-work-order.fixture.js +1 -0
- package/dist/node/ontology/companyos.js +1 -0
- package/dist/node/ontology/defineOntologyEdge.js +1 -0
- package/dist/node/ontology/defineOntologyNode.js +1 -0
- package/dist/node/ontology/evidence.js +1 -0
- package/dist/node/ontology/graph.js +1 -0
- package/dist/node/ontology/index.js +1 -0
- package/dist/node/ontology/kinds.js +1 -0
- package/dist/node/ontology/ref.js +1 -0
- package/dist/node/ontology/registry.js +1 -0
- package/dist/node/ontology/safety.js +1 -0
- package/dist/node/ontology/types.js +0 -0
- package/dist/node/openapi.js +38 -0
- package/dist/node/operations/agent/archive.command.d.js +0 -0
- package/dist/node/operations/agent/archive.command.js +1 -0
- package/dist/node/operations/agent/assign-tool.command.d.js +0 -0
- package/dist/node/operations/agent/assign-tool.command.js +1 -0
- package/dist/node/operations/agent/clone.command.d.js +0 -0
- package/dist/node/operations/agent/clone.command.js +1 -0
- package/dist/node/operations/agent/create.command.d.js +0 -0
- package/dist/node/operations/agent/create.command.js +1 -0
- package/dist/node/operations/agent/fleet-health.query.d.js +0 -0
- package/dist/node/operations/agent/fleet-health.query.js +1 -0
- package/dist/node/operations/agent/get.query.d.js +0 -0
- package/dist/node/operations/agent/get.query.js +1 -0
- package/dist/node/operations/agent/import-memory.command.js +1 -0
- package/dist/node/operations/agent/list.query.d.js +0 -0
- package/dist/node/operations/agent/list.query.js +1 -0
- package/dist/node/operations/agent/pause.command.d.js +0 -0
- package/dist/node/operations/agent/pause.command.js +1 -0
- package/dist/node/operations/agent/set-autonomy.command.d.js +0 -0
- package/dist/node/operations/agent/set-autonomy.command.js +1 -0
- package/dist/node/operations/agent/set-risk-tier.command.d.js +0 -0
- package/dist/node/operations/agent/set-risk-tier.command.js +1 -0
- package/dist/node/operations/agent/shared-schemas.d.js +0 -0
- package/dist/node/operations/agent/shared-schemas.js +1 -0
- package/dist/node/operations/agent/start.command.d.js +0 -0
- package/dist/node/operations/agent/start.command.js +1 -0
- package/dist/node/operations/agent/stop.command.d.js +0 -0
- package/dist/node/operations/agent/stop.command.js +1 -0
- package/dist/node/operations/agent/update.command.d.js +0 -0
- package/dist/node/operations/agent/update.command.js +1 -0
- package/dist/node/operations/approval.d.js +0 -0
- package/dist/node/operations/approval.js +1 -0
- package/dist/node/operations/audit/event.export.command.d.js +0 -0
- package/dist/node/operations/audit/event.export.command.js +1 -0
- package/dist/node/operations/audit/event.get.query.d.js +0 -0
- package/dist/node/operations/audit/event.get.query.js +1 -0
- package/dist/node/operations/audit/event.list.query.d.js +0 -0
- package/dist/node/operations/audit/event.list.query.js +1 -0
- package/dist/node/operations/audit/evidence.attach.command.d.js +0 -0
- package/dist/node/operations/audit/evidence.attach.command.js +1 -0
- package/dist/node/operations/audit/pipeline.health.query.d.js +0 -0
- package/dist/node/operations/audit/pipeline.health.query.js +1 -0
- package/dist/node/operations/audit/shared-schemas.d.js +0 -0
- package/dist/node/operations/audit/shared-schemas.js +1 -0
- package/dist/node/operations/ceremony-authority.d.js +0 -0
- package/dist/node/operations/ceremony-authority.js +1 -0
- package/dist/node/operations/coach/agent-suggest-tool.command.d.js +0 -0
- package/dist/node/operations/coach/agent-suggest-tool.command.js +1 -0
- package/dist/node/operations/coach/governance-suggest-constraint.command.d.js +0 -0
- package/dist/node/operations/coach/governance-suggest-constraint.command.js +1 -0
- package/dist/node/operations/coach/review-summarize.command.d.js +0 -0
- package/dist/node/operations/coach/review-summarize.command.js +1 -0
- package/dist/node/operations/coach/shared-schemas.d.js +0 -0
- package/dist/node/operations/coach/shared-schemas.js +1 -0
- package/dist/node/operations/coach/workflow-suggest-step.command.d.js +0 -0
- package/dist/node/operations/coach/workflow-suggest-step.command.js +1 -0
- package/dist/node/operations/economic-evidence.d.js +0 -0
- package/dist/node/operations/economic-evidence.js +1 -0
- package/dist/node/operations/fleet/health-snapshot.query.d.js +0 -0
- package/dist/node/operations/fleet/health-snapshot.query.js +1 -0
- package/dist/node/operations/fleet/metrics-summary.query.d.js +0 -0
- package/dist/node/operations/fleet/metrics-summary.query.js +1 -0
- package/dist/node/operations/fleet/roi-snapshot.query.d.js +0 -0
- package/dist/node/operations/fleet/roi-snapshot.query.js +1 -0
- package/dist/node/operations/fleet/shared-schemas.d.js +0 -0
- package/dist/node/operations/fleet/shared-schemas.js +1 -0
- package/dist/node/operations/governance/constraint.add.command.d.js +1 -0
- package/dist/node/operations/governance/constraint.add.command.js +1 -0
- package/dist/node/operations/governance/constraint.remove.command.d.js +0 -0
- package/dist/node/operations/governance/constraint.remove.command.js +1 -0
- package/dist/node/operations/governance/notification.dispatch.command.d.js +0 -0
- package/dist/node/operations/governance/notification.dispatch.command.js +1 -0
- package/dist/node/operations/governance/policy.get.query.d.js +0 -0
- package/dist/node/operations/governance/policy.get.query.js +1 -0
- package/dist/node/operations/governance/policy.health.query.d.js +0 -0
- package/dist/node/operations/governance/policy.health.query.js +1 -0
- package/dist/node/operations/governance/policy.list.query.d.js +1 -0
- package/dist/node/operations/governance/policy.list.query.js +1 -0
- package/dist/node/operations/governance/policy.simulate.query.d.js +0 -0
- package/dist/node/operations/governance/policy.simulate.query.js +1 -0
- package/dist/node/operations/governance/policy.update.command.d.js +1 -0
- package/dist/node/operations/governance/policy.update.command.js +1 -0
- package/dist/node/operations/governance/shared-schemas.d.js +0 -0
- package/dist/node/operations/governance/shared-schemas.js +1 -0
- package/dist/node/operations/index.d.js +1 -0
- package/dist/node/operations/index.js +1 -0
- package/dist/node/operations/integrations/audit.list_for_integration.command.d.js +1 -0
- package/dist/node/operations/integrations/audit.list_for_integration.command.js +1 -0
- package/dist/node/operations/integrations/config.get.command.d.js +0 -0
- package/dist/node/operations/integrations/config.get.command.js +1 -0
- package/dist/node/operations/integrations/config.update.command.d.js +0 -0
- package/dist/node/operations/integrations/config.update.command.js +1 -0
- package/dist/node/operations/integrations/connections.list.command.d.js +1 -0
- package/dist/node/operations/integrations/connections.list.command.js +1 -0
- package/dist/node/operations/integrations/credentials.list.command.d.js +1 -0
- package/dist/node/operations/integrations/credentials.list.command.js +1 -0
- package/dist/node/operations/integrations/credentials.request_rotation.command.d.js +0 -0
- package/dist/node/operations/integrations/credentials.request_rotation.command.js +1 -0
- package/dist/node/operations/integrations/credentials.revoke.command.d.js +0 -0
- package/dist/node/operations/integrations/credentials.revoke.command.js +1 -0
- package/dist/node/operations/integrations/credentials.rotate.command.d.js +0 -0
- package/dist/node/operations/integrations/credentials.rotate.command.js +1 -0
- package/dist/node/operations/integrations/index.js +1 -0
- package/dist/node/operations/integrations/integrations.connect.command.d.js +0 -0
- package/dist/node/operations/integrations/integrations.connect.command.js +1 -0
- package/dist/node/operations/integrations/integrations.disconnect.command.d.js +0 -0
- package/dist/node/operations/integrations/integrations.disconnect.command.js +1 -0
- package/dist/node/operations/integrations/integrations.get.command.d.js +0 -0
- package/dist/node/operations/integrations/integrations.get.command.js +1 -0
- package/dist/node/operations/integrations/integrations.list.command.d.js +1 -0
- package/dist/node/operations/integrations/integrations.list.command.js +1 -0
- package/dist/node/operations/integrations/registry.d.js +0 -0
- package/dist/node/operations/integrations/registry.js +1 -0
- package/dist/node/operations/integrations/secrets.link.command.d.js +0 -0
- package/dist/node/operations/integrations/secrets.link.command.js +1 -0
- package/dist/node/operations/integrations/secrets.list.command.d.js +1 -0
- package/dist/node/operations/integrations/secrets.list.command.js +1 -0
- package/dist/node/operations/integrations/secrets.reveal_once_audit_only.command.d.js +0 -0
- package/dist/node/operations/integrations/secrets.reveal_once_audit_only.command.js +1 -0
- package/dist/node/operations/integrations/secrets.unlink.command.d.js +0 -0
- package/dist/node/operations/integrations/secrets.unlink.command.js +1 -0
- package/dist/node/operations/integrations/shared-schemas.d.js +0 -0
- package/dist/node/operations/integrations/shared-schemas.js +1 -0
- package/dist/node/operations/integrations/syncs.list.command.d.js +1 -0
- package/dist/node/operations/integrations/syncs.list.command.js +1 -0
- package/dist/node/operations/integrations/syncs.pause.command.d.js +0 -0
- package/dist/node/operations/integrations/syncs.pause.command.js +1 -0
- package/dist/node/operations/integrations/syncs.resume.command.d.js +0 -0
- package/dist/node/operations/integrations/syncs.resume.command.js +1 -0
- package/dist/node/operations/integrations/syncs.run_now.command.d.js +0 -0
- package/dist/node/operations/integrations/syncs.run_now.command.js +1 -0
- package/dist/node/operations/integrations/syncs.update_schedule.command.d.js +0 -0
- package/dist/node/operations/integrations/syncs.update_schedule.command.js +1 -0
- package/dist/node/operations/marketing.d.js +1 -0
- package/dist/node/operations/marketing.handlers.d.js +0 -0
- package/dist/node/operations/marketing.handlers.js +1 -0
- package/dist/node/operations/marketing.js +14 -0
- package/dist/node/operations/operation.d.js +0 -0
- package/dist/node/operations/operation.js +1 -0
- package/dist/node/operations/reference-detail.js +1 -0
- package/dist/node/operations/reference-resolve.js +3 -0
- package/dist/node/operations/registry.agent.d.js +0 -0
- package/dist/node/operations/registry.agent.js +1 -0
- package/dist/node/operations/registry.audit.d.js +0 -0
- package/dist/node/operations/registry.audit.js +1 -0
- package/dist/node/operations/registry.coach.d.js +0 -0
- package/dist/node/operations/registry.coach.js +1 -0
- package/dist/node/operations/registry.d.js +1 -0
- package/dist/node/operations/registry.domains.d.js +0 -0
- package/dist/node/operations/registry.domains.js +1 -0
- package/dist/node/operations/registry.fleet.d.js +0 -0
- package/dist/node/operations/registry.fleet.js +1 -0
- package/dist/node/operations/registry.governance.d.js +0 -0
- package/dist/node/operations/registry.governance.js +1 -0
- package/dist/node/operations/registry.js +1 -0
- package/dist/node/operations/registry.review.d.js +0 -0
- package/dist/node/operations/registry.review.js +1 -0
- package/dist/node/operations/registry.workflow.d.js +0 -0
- package/dist/node/operations/registry.workflow.js +1 -0
- package/dist/node/operations/report/getContractVerificationStatus.js +1 -0
- package/dist/node/operations/report/index.js +1 -0
- package/dist/node/operations/review/commands/index.js +1 -0
- package/dist/node/operations/review/commands/reviewApprove.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewApprove.command.js +1 -0
- package/dist/node/operations/review/commands/reviewAssign.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewAssign.command.js +12 -0
- package/dist/node/operations/review/commands/reviewComment.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewComment.command.js +1 -0
- package/dist/node/operations/review/commands/reviewEscalate.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewEscalate.command.js +1 -0
- package/dist/node/operations/review/commands/reviewReject.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewReject.command.js +1 -0
- package/dist/node/operations/review/commands/reviewRequestChanges.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewRequestChanges.command.js +1 -0
- package/dist/node/operations/review/constants.d.js +0 -0
- package/dist/node/operations/review/constants.js +1 -0
- package/dist/node/operations/review/index.js +1 -0
- package/dist/node/operations/review/queries/index.js +1 -0
- package/dist/node/operations/review/queries/reviewGet.query.d.js +0 -0
- package/dist/node/operations/review/queries/reviewGet.query.js +9 -0
- package/dist/node/operations/review/queries/reviewList.query.d.js +0 -0
- package/dist/node/operations/review/queries/reviewList.query.js +1 -0
- package/dist/node/operations/review/queries/reviewQueueHealth.query.d.js +0 -0
- package/dist/node/operations/review/queries/reviewQueueHealth.query.js +1 -0
- package/dist/node/operations/review/shared-schemas.d.js +0 -0
- package/dist/node/operations/review/shared-schemas.js +1 -0
- package/dist/node/operations/workflow/commands/workflowActivate.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowActivate.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowCreate.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowCreate.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowDeactivate.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowDeactivate.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowRunCancel.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowRunCancel.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowRunDispatch.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowRunDispatch.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowRunPause.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowRunPause.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowRunResume.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowRunResume.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowRunRetry.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowRunRetry.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowStepAdvance.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowStepAdvance.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowStepSkip.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowStepSkip.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowUpdate.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowUpdate.command.js +1 -0
- package/dist/node/operations/workflow/constants.d.js +0 -0
- package/dist/node/operations/workflow/constants.js +1 -0
- package/dist/node/operations/workflow/index.d.js +1 -0
- package/dist/node/operations/workflow/index.js +1 -0
- package/dist/node/operations/workflow/queries/workflowGet.query.d.js +0 -0
- package/dist/node/operations/workflow/queries/workflowGet.query.js +1 -0
- package/dist/node/operations/workflow/queries/workflowList.query.d.js +0 -0
- package/dist/node/operations/workflow/queries/workflowList.query.js +1 -0
- package/dist/node/operations/workflow/queries/workflowRunnerHealth.query.d.js +0 -0
- package/dist/node/operations/workflow/queries/workflowRunnerHealth.query.js +1 -0
- package/dist/node/osint/capability-matrix-validation.js +2 -0
- package/dist/node/osint/capability-matrix.js +3 -0
- package/dist/node/osint/constants.js +1 -0
- package/dist/node/osint/entities.js +0 -0
- package/dist/node/osint/events.js +1 -0
- package/dist/node/osint/exports.js +0 -0
- package/dist/node/osint/fingerprint.js +1 -0
- package/dist/node/osint/index.js +1 -0
- package/dist/node/osint/job-reconciliation-contracts.js +1 -0
- package/dist/node/osint/job-sources.js +18 -0
- package/dist/node/osint/lifecycle-contracts.js +8 -0
- package/dist/node/osint/lifecycle-worker-contracts.js +1 -0
- package/dist/node/osint/operational-contracts.js +10 -0
- package/dist/node/osint/operational-operations.js +1 -0
- package/dist/node/osint/operational-schema-fields.js +1 -0
- package/dist/node/osint/operations-continuation.js +1 -0
- package/dist/node/osint/operations.js +1 -0
- package/dist/node/osint/programs.js +0 -0
- package/dist/node/osint/registry.js +1 -0
- package/dist/node/osint/rights-contracts.js +8 -0
- package/dist/node/osint/rights-operations.js +1 -0
- package/dist/node/osint/source-state-operations.js +1 -0
- package/dist/node/osint/transport.js +1 -0
- package/dist/node/osint/types.js +0 -0
- package/dist/node/outcome-claims/factory.js +1 -0
- package/dist/node/outcome-claims/index.js +1 -0
- package/dist/node/outcome-claims/types.js +0 -0
- package/dist/node/outcome-claims/validation.js +1 -0
- package/dist/node/ownership.d.js +0 -0
- package/dist/node/ownership.js +1 -0
- package/dist/node/policy/context.js +1 -0
- package/dist/node/policy/engine.js +1 -0
- package/dist/node/policy/guards.js +1 -0
- package/dist/node/policy/index.js +1 -0
- package/dist/node/policy/opa-adapter.js +1 -0
- package/dist/node/policy/registry.d.js +0 -0
- package/dist/node/policy/registry.js +1 -0
- package/dist/node/policy/requirements.d.js +0 -0
- package/dist/node/policy/requirements.js +1 -0
- package/dist/node/policy/spec.d.js +0 -0
- package/dist/node/policy/spec.js +150 -0
- package/dist/node/policy/validation.js +1 -0
- package/dist/node/presentations/index.d.js +1 -0
- package/dist/node/presentations/index.js +1 -0
- package/dist/node/presentations/presentations.d.js +0 -0
- package/dist/node/presentations/presentations.js +83 -0
- package/dist/node/presentations/registry.d.js +0 -0
- package/dist/node/presentations/registry.js +1 -0
- package/dist/node/presentations/shim-blocknotejs.d.js +0 -0
- package/dist/node/presentations/shim-blocknotejs.js +0 -0
- package/dist/node/product-intent/contract-patch-intent.js +1 -0
- package/dist/node/product-intent/contract-spec-patch.js +1 -0
- package/dist/node/product-intent/evidence.js +1 -0
- package/dist/node/product-intent/findings.js +1 -0
- package/dist/node/product-intent/impact-report.js +1 -0
- package/dist/node/product-intent/index.js +1 -0
- package/dist/node/product-intent/insights.js +1 -0
- package/dist/node/product-intent/opportunity-brief.js +1 -0
- package/dist/node/product-intent/problems.js +1 -0
- package/dist/node/product-intent/registry.js +1 -0
- package/dist/node/product-intent/runtime.js +1 -0
- package/dist/node/product-intent/spec.js +1 -0
- package/dist/node/product-intent/task-pack.js +1 -0
- package/dist/node/product-intent/tickets.js +1 -0
- package/dist/node/product-intent/types.js +1 -0
- package/dist/node/product-intent/ui-wireframe.js +1 -0
- package/dist/node/prompt.js +1 -0
- package/dist/node/promptRegistry.js +1 -0
- package/dist/node/provider-ranking/capabilities/index.js +1 -0
- package/dist/node/provider-ranking/capabilities/providerRanking.capability.js +1 -0
- package/dist/node/provider-ranking/commands/benchmarkIngest.command.js +4 -0
- package/dist/node/provider-ranking/commands/benchmarkRunCustom.command.js +4 -0
- package/dist/node/provider-ranking/commands/index.js +1 -0
- package/dist/node/provider-ranking/commands/rankingRefresh.command.js +4 -0
- package/dist/node/provider-ranking/constants.js +1 -0
- package/dist/node/provider-ranking/contracts.js +1 -0
- package/dist/node/provider-ranking/events/benchmarkCustomCompleted.event.js +4 -0
- package/dist/node/provider-ranking/events/benchmarkIngested.event.js +4 -0
- package/dist/node/provider-ranking/events/index.js +1 -0
- package/dist/node/provider-ranking/events/rankingUpdated.event.js +4 -0
- package/dist/node/provider-ranking/forms/benchmarkIngest.form.js +4 -0
- package/dist/node/provider-ranking/forms/benchmarkRunCustom.form.js +4 -0
- package/dist/node/provider-ranking/forms/index.js +1 -0
- package/dist/node/provider-ranking/index.js +1 -0
- package/dist/node/provider-ranking/presentations/index.js +1 -0
- package/dist/node/provider-ranking/presentations/modelComparison.presentation.js +4 -0
- package/dist/node/provider-ranking/provider-ranking.feature.js +4 -0
- package/dist/node/provider-ranking/queries/benchmarkResultsList.query.js +4 -0
- package/dist/node/provider-ranking/queries/index.js +1 -0
- package/dist/node/provider-ranking/queries/modelProfileGet.query.js +4 -0
- package/dist/node/provider-ranking/queries/providerRankingGet.query.js +4 -0
- package/dist/node/provider-ranking/views/benchmarkResults.dataView.js +4 -0
- package/dist/node/provider-ranking/views/index.js +1 -0
- package/dist/node/provider-ranking/views/providerRankings.dataView.js +4 -0
- package/dist/node/pwa/capabilities/index.js +1 -0
- package/dist/node/pwa/capabilities/pwaUpdateManagement.capability.js +1 -0
- package/dist/node/pwa/constants.js +1 -0
- package/dist/node/pwa/contracts.js +1 -0
- package/dist/node/pwa/events/index.js +1 -0
- package/dist/node/pwa/events/pwaUpdateApplied.event.js +1 -0
- package/dist/node/pwa/events/pwaUpdateDeferred.event.js +1 -0
- package/dist/node/pwa/events/pwaUpdatePrompted.event.js +1 -0
- package/dist/node/pwa/index.js +1 -0
- package/dist/node/pwa/pwa.feature.js +1 -0
- package/dist/node/pwa/queries/index.js +1 -0
- package/dist/node/pwa/queries/pwaUpdateCheck.query.js +1 -0
- package/dist/node/pwa/registry.js +1 -0
- package/dist/node/pwa/types.js +6 -0
- package/dist/node/quality/environment.js +1 -0
- package/dist/node/quality/index.js +1 -0
- package/dist/node/quality/plan.js +1 -0
- package/dist/node/quality/primitives.js +1 -0
- package/dist/node/quality/profile.js +1 -0
- package/dist/node/quality/receipt.js +1 -0
- package/dist/node/query/cache-status.d.js +0 -0
- package/dist/node/query/cache-status.js +1 -0
- package/dist/node/query/conflict-policy.d.js +0 -0
- package/dist/node/query/conflict-policy.js +1 -0
- package/dist/node/query/consistency.d.js +0 -0
- package/dist/node/query/consistency.js +1 -0
- package/dist/node/query/envelope.d.js +0 -0
- package/dist/node/query/envelope.js +0 -0
- package/dist/node/query/index.d.js +1 -0
- package/dist/node/query/index.js +1 -0
- package/dist/node/query/invalidation.d.js +0 -0
- package/dist/node/query/invalidation.js +1 -0
- package/dist/node/query/key.d.js +0 -0
- package/dist/node/query/key.js +1 -0
- package/dist/node/query/normalize.d.js +0 -0
- package/dist/node/query/normalize.js +1 -0
- package/dist/node/query/query-state.d.js +0 -0
- package/dist/node/query/query-state.js +1 -0
- package/dist/node/query/version-token.d.js +0 -0
- package/dist/node/query/version-token.js +1 -0
- package/dist/node/regenerator/adapters.js +0 -0
- package/dist/node/regenerator/executor.js +1 -0
- package/dist/node/regenerator/index.js +1 -0
- package/dist/node/regenerator/service.js +1 -0
- package/dist/node/regenerator/sinks.js +1 -0
- package/dist/node/regenerator/types.js +0 -0
- package/dist/node/regenerator/utils.js +1 -0
- package/dist/node/registry-utils.d.js +0 -0
- package/dist/node/registry-utils.js +1 -0
- package/dist/node/registry.d.js +0 -0
- package/dist/node/registry.js +1 -0
- package/dist/node/release/index.js +1 -0
- package/dist/node/resources.d.js +0 -0
- package/dist/node/resources.js +1 -0
- package/dist/node/results/builders.d.js +0 -0
- package/dist/node/results/builders.js +1 -0
- package/dist/node/results/error.d.js +0 -0
- package/dist/node/results/error.js +1 -0
- package/dist/node/results/factories.d.js +0 -0
- package/dist/node/results/factories.js +1 -0
- package/dist/node/results/guards.d.js +0 -0
- package/dist/node/results/guards.js +1 -0
- package/dist/node/results/index.d.js +1 -0
- package/dist/node/results/index.js +1 -0
- package/dist/node/results/normalize.d.js +0 -0
- package/dist/node/results/normalize.js +1 -0
- package/dist/node/results/problem.d.js +0 -0
- package/dist/node/results/problem.js +1 -0
- package/dist/node/results/result-specs.d.js +0 -0
- package/dist/node/results/result-specs.js +0 -0
- package/dist/node/results/standard-specs.d.js +0 -0
- package/dist/node/results/standard-specs.js +1 -0
- package/dist/node/results/status.d.js +0 -0
- package/dist/node/results/status.js +1 -0
- package/dist/node/results/types.d.js +0 -0
- package/dist/node/results/types.js +0 -0
- package/dist/node/results/value-utils.d.js +0 -0
- package/dist/node/results/value-utils.js +1 -0
- package/dist/node/rich-content/builders.js +3 -0
- package/dist/node/rich-content/index.js +1 -0
- package/dist/node/rich-content/preferences.js +0 -0
- package/dist/node/rich-content/redaction.js +1 -0
- package/dist/node/rich-content/types.js +0 -0
- package/dist/node/rich-reference/__fixtures__/cross-adapter-fixture.js +1 -0
- package/dist/node/rich-reference/agent-export.d.js +0 -0
- package/dist/node/rich-reference/agent-export.js +1 -0
- package/dist/node/rich-reference/canonical-serializer.d.js +0 -0
- package/dist/node/rich-reference/canonical-serializer.js +1 -0
- package/dist/node/rich-reference/contracts.js +1 -0
- package/dist/node/rich-reference/define-kind.d.js +0 -0
- package/dist/node/rich-reference/define-kind.js +1 -0
- package/dist/node/rich-reference/denial-token-shape.d.js +0 -0
- package/dist/node/rich-reference/denial-token-shape.js +1 -0
- package/dist/node/rich-reference/denial-token.d.js +0 -0
- package/dist/node/rich-reference/denial-token.js +1 -0
- package/dist/node/rich-reference/detector.d.js +0 -0
- package/dist/node/rich-reference/detector.js +1 -0
- package/dist/node/rich-reference/handler.d.js +0 -0
- package/dist/node/rich-reference/handler.js +0 -0
- package/dist/node/rich-reference/index.d.js +1 -0
- package/dist/node/rich-reference/index.js +19 -0
- package/dist/node/rich-reference/kinds/code-symbol.d.js +1 -0
- package/dist/node/rich-reference/kinds/code-symbol.js +1 -0
- package/dist/node/rich-reference/kinds/database-record.d.js +1 -0
- package/dist/node/rich-reference/kinds/database-record.js +1 -0
- package/dist/node/rich-reference/kinds/entity.d.js +1 -0
- package/dist/node/rich-reference/kinds/entity.js +27 -0
- package/dist/node/rich-reference/kinds/file.d.js +1 -0
- package/dist/node/rich-reference/kinds/file.js +1 -0
- package/dist/node/rich-reference/kinds/index.d.js +1 -0
- package/dist/node/rich-reference/kinds/index.js +1 -0
- package/dist/node/rich-reference/kinds/link.d.js +1 -0
- package/dist/node/rich-reference/kinds/link.js +1 -0
- package/dist/node/rich-reference/kinds/media.d.js +1 -0
- package/dist/node/rich-reference/kinds/media.js +1 -0
- package/dist/node/rich-reference/kinds/object.d.js +1 -0
- package/dist/node/rich-reference/kinds/object.js +1 -0
- package/dist/node/rich-reference/markdown-envelope.d.js +0 -0
- package/dist/node/rich-reference/markdown-envelope.js +1 -0
- package/dist/node/rich-reference/ports/audit-sink.d.js +0 -0
- package/dist/node/rich-reference/ports/audit-sink.js +0 -0
- package/dist/node/rich-reference/ports/coarse-preferences-provider.d.js +0 -0
- package/dist/node/rich-reference/ports/coarse-preferences-provider.js +0 -0
- package/dist/node/rich-reference/ports/durable-audit-sink.d.js +0 -0
- package/dist/node/rich-reference/ports/durable-audit-sink.js +0 -0
- package/dist/node/rich-reference/ports/index.d.js +0 -0
- package/dist/node/rich-reference/ports/index.js +0 -0
- package/dist/node/rich-reference/ports/kind-policy-provider.d.js +0 -0
- package/dist/node/rich-reference/ports/kind-policy-provider.js +0 -0
- package/dist/node/rich-reference/ports/subject-provider.d.js +0 -0
- package/dist/node/rich-reference/ports/subject-provider.js +0 -0
- package/dist/node/rich-reference/redaction.d.js +0 -0
- package/dist/node/rich-reference/redaction.js +1 -0
- package/dist/node/rich-reference/registry.d.js +0 -0
- package/dist/node/rich-reference/registry.js +1 -0
- package/dist/node/rich-reference/runtime/dev-invariants.js +1 -0
- package/dist/node/rich-reference/runtime/dispatch.js +1 -0
- package/dist/node/rich-reference/runtime/index.js +1 -0
- package/dist/node/rich-reference/runtime/redaction-enforcer.js +1 -0
- package/dist/node/rich-reference/runtime/runtime.js +1 -0
- package/dist/node/rich-reference/types.d.js +0 -0
- package/dist/node/rich-reference/types.js +1 -0
- package/dist/node/runtime-adapters.d.js +0 -0
- package/dist/node/runtime-adapters.js +1 -0
- package/dist/node/schema-to-markdown.js +10 -0
- package/dist/node/self-improving-system/constants.js +1 -0
- package/dist/node/self-improving-system/events.js +1 -0
- package/dist/node/self-improving-system/index.js +1 -0
- package/dist/node/self-improving-system/operation-definitions.js +1 -0
- package/dist/node/self-improving-system/operations.js +1 -0
- package/dist/node/self-improving-system/registry.js +1 -0
- package/dist/node/self-improving-system/transport.js +1 -0
- package/dist/node/self-improving-system/types.js +1 -0
- package/dist/node/self-improving-system/validation.js +1 -0
- package/dist/node/serialization/index.js +1 -0
- package/dist/node/serialization/serializers.js +1 -0
- package/dist/node/serialization/types.js +0 -0
- package/dist/node/shared/attach-context.d.js +0 -0
- package/dist/node/shared/attach-context.js +1 -0
- package/dist/node/shared/audit.d.js +0 -0
- package/dist/node/shared/audit.js +1 -0
- package/dist/node/shared/idempotency-shape.d.js +0 -0
- package/dist/node/shared/idempotency-shape.js +1 -0
- package/dist/node/shared/idempotency.js +1 -0
- package/dist/node/shared/index.d.js +1 -0
- package/dist/node/shared/index.js +1 -0
- package/dist/node/shared/window.d.js +0 -0
- package/dist/node/shared/window.js +1 -0
- package/dist/node/shared-entities/index.js +1 -0
- package/dist/node/shared-entities/person.js +12 -0
- package/dist/node/shared-entities/project.js +4 -0
- package/dist/node/shared-entities/resource.js +4 -0
- package/dist/node/shared-entities/task-validators.js +1 -0
- package/dist/node/shared-entities/task.d.js +0 -0
- package/dist/node/shared-entities/task.js +1 -0
- package/dist/node/shared-entities/team.js +12 -0
- package/dist/node/sop/generation-sources.js +5 -0
- package/dist/node/sop/index.js +1 -0
- package/dist/node/sop/operations.js +1 -0
- package/dist/node/sop/sop.feature.js +3 -0
- package/dist/node/sop/types.js +0 -0
- package/dist/node/sop/validation.js +1 -0
- package/dist/node/structured-data/derive.d.js +0 -0
- package/dist/node/structured-data/derive.js +1 -0
- package/dist/node/structured-data/index.d.js +1 -0
- package/dist/node/structured-data/index.js +1 -0
- package/dist/node/structured-data/kinds.d.js +0 -0
- package/dist/node/structured-data/kinds.js +1 -0
- package/dist/node/structured-data/schema-guards.js +0 -0
- package/dist/node/structured-data/validate.d.js +0 -0
- package/dist/node/structured-data/validate.js +1 -0
- package/dist/node/telemetry/anomaly.d.js +0 -0
- package/dist/node/telemetry/anomaly.js +1 -0
- package/dist/node/telemetry/delivery-v2.d.js +0 -0
- package/dist/node/telemetry/delivery-v2.js +1 -0
- package/dist/node/telemetry/index.d.js +1 -0
- package/dist/node/telemetry/index.js +1 -0
- package/dist/node/telemetry/spec.d.js +0 -0
- package/dist/node/telemetry/spec.js +1 -0
- package/dist/node/telemetry/tracker.d.js +0 -0
- package/dist/node/telemetry/tracker.js +1 -0
- package/dist/node/telemetry/v2-primitives.d.js +0 -0
- package/dist/node/telemetry/v2-primitives.js +1 -0
- package/dist/node/telemetry/v2-validation.d.js +0 -0
- package/dist/node/telemetry/v2-validation.js +1 -0
- package/dist/node/telemetry/v2.d.js +1 -0
- package/dist/node/telemetry/v2.js +1 -0
- package/dist/node/tests/index.js +1 -0
- package/dist/node/tests/runner.js +1 -0
- package/dist/node/tests/spec.d.js +0 -0
- package/dist/node/tests/spec.js +1 -0
- package/dist/node/themes.d.js +1 -0
- package/dist/node/themes.js +1 -0
- package/dist/node/themes.platform-validation.d.js +0 -0
- package/dist/node/themes.platform-validation.js +1 -0
- package/dist/node/themes.validation.d.js +0 -0
- package/dist/node/themes.validation.js +1 -0
- package/dist/node/translations/catalog.d.js +0 -0
- package/dist/node/translations/catalog.js +0 -0
- package/dist/node/translations/diagnostics.d.js +0 -0
- package/dist/node/translations/diagnostics.js +1 -0
- package/dist/node/translations/i18n-factory-snapshot.d.js +0 -0
- package/dist/node/translations/i18n-factory-snapshot.js +20 -0
- package/dist/node/translations/i18n-factory.d.js +0 -0
- package/dist/node/translations/i18n-factory.js +1 -0
- package/dist/node/translations/index.d.js +1 -0
- package/dist/node/translations/index.js +1 -0
- package/dist/node/translations/locale.d.js +0 -0
- package/dist/node/translations/locale.js +1 -0
- package/dist/node/translations/registry.d.js +0 -0
- package/dist/node/translations/registry.js +1 -0
- package/dist/node/translations/spec.d.js +0 -0
- package/dist/node/translations/spec.js +1 -0
- package/dist/node/translations/tenant.d.js +0 -0
- package/dist/node/translations/tenant.js +0 -0
- package/dist/node/translations/validation.d.js +0 -0
- package/dist/node/translations/validation.js +1 -0
- package/dist/node/types.d.js +0 -0
- package/dist/node/types.js +1 -0
- package/dist/node/utils/safe-json.js +1 -0
- package/dist/node/versioning/index.d.js +1 -0
- package/dist/node/versioning/index.js +1 -0
- package/dist/node/versioning/refs.d.js +0 -0
- package/dist/node/versioning/refs.js +1 -0
- package/dist/node/versioning/release-types.d.js +0 -0
- package/dist/node/versioning/release-types.js +0 -0
- package/dist/node/versioning/release-utils.d.js +0 -0
- package/dist/node/versioning/release-utils.js +1 -0
- package/dist/node/versioning/schema.d.js +0 -0
- package/dist/node/versioning/schema.js +1 -0
- package/dist/node/versioning/types.d.js +0 -0
- package/dist/node/versioning/types.js +1 -0
- package/dist/node/versioning/utils.d.js +0 -0
- package/dist/node/versioning/utils.js +1 -0
- package/dist/node/visual-scenarios/index.js +1 -0
- package/dist/node/visual-scenarios/platform.js +1 -0
- package/dist/node/visual-scenarios/registry.d.js +0 -0
- package/dist/node/visual-scenarios/registry.js +1 -0
- package/dist/node/visual-scenarios/spec.d.js +0 -0
- package/dist/node/visual-scenarios/spec.js +1 -0
- package/dist/node/visual-scenarios/validation-authoring.js +1 -0
- package/dist/node/visual-scenarios/validation.js +1 -0
- package/dist/node/visualizations/index.js +1 -0
- package/dist/node/visualizations/registry.d.js +0 -0
- package/dist/node/visualizations/registry.js +1 -0
- package/dist/node/visualizations/spec.d.js +0 -0
- package/dist/node/visualizations/spec.js +1 -0
- package/dist/node/visualizations/types.d.js +0 -0
- package/dist/node/visualizations/types.js +1 -0
- package/dist/node/workflow/adapters/db-adapter.js +1 -0
- package/dist/node/workflow/adapters/file-adapter.js +1 -0
- package/dist/node/workflow/adapters/index.js +1 -0
- package/dist/node/workflow/adapters/memory-store.js +1 -0
- package/dist/node/workflow/context.js +1 -0
- package/dist/node/workflow/dag-utils.js +1 -0
- package/dist/node/workflow/expression.js +1 -0
- package/dist/node/workflow/index.js +1 -0
- package/dist/node/workflow/runner.js +1 -0
- package/dist/node/workflow/sla-monitor.js +1 -0
- package/dist/node/workflow/spec.d.js +0 -0
- package/dist/node/workflow/spec.js +1 -0
- package/dist/node/workflow/state.js +0 -0
- package/dist/node/workflow/validation-workflow-devkit.js +1 -0
- package/dist/node/workflow/validation.js +1 -0
- package/dist/node/workflow/workflow-devkit.d.js +0 -0
- package/dist/node/workflow/workflow-devkit.js +0 -0
- package/dist/node/workflow/workflow-sdk.js +1 -0
- package/dist/node/workspace-config/contractsrc-schema.js +1 -0
- package/dist/node/workspace-config/contractsrc-types.js +0 -0
- package/dist/node/workspace-config/environment-validation-alias.js +1 -0
- package/dist/node/workspace-config/environment-validation.js +1 -0
- package/dist/node/workspace-config/environment.js +1 -0
- package/dist/node/workspace-config/index.js +1 -0
- package/dist/node/workspace-config/lssm-os-config.fixture.js +1 -0
- package/dist/node/workspace-config/lssm-os-constraints.js +1 -0
- package/dist/node/workspace-config/lssm-os-extension-schema.js +1 -0
- package/dist/node/workspace-config/lssm-os-inheritance.js +1 -0
- package/dist/node/workspace-config/lssm-os-policy-merge.js +1 -0
- package/dist/node/workspace-config/lssm-os-provider-merge.js +1 -0
- package/dist/node/workspace-config/lssm-os-schema.js +1 -0
- package/dist/node/workspace-config/lssm-os-secrets.js +1 -0
- package/dist/node/workspace-config/lssm-os-types.js +1 -0
- package/dist/notifications/contracts.d.ts +1012 -0
- package/dist/notifications/contracts.js +1 -0
- package/dist/notifications/index.d.ts +3 -0
- package/dist/notifications/index.js +1 -0
- package/dist/notifications/notifications.capability.d.ts +1 -0
- package/dist/notifications/notifications.capability.js +1 -0
- package/dist/notifications/notifications.feature.d.ts +1 -0
- package/dist/notifications/notifications.feature.js +1 -0
- package/dist/observability/database-signals.d.ts +31 -0
- package/dist/observability/database-signals.js +1 -0
- package/dist/observability/evidence-record.d.ts +201 -0
- package/dist/observability/evidence-record.js +1 -0
- package/dist/observability/index.d.ts +11 -0
- package/dist/observability/index.js +1 -0
- package/dist/observability/signal-spec.d.ts +113 -0
- package/dist/observability/signal-spec.js +1 -0
- package/dist/onboarding-base.d.ts +135 -0
- package/dist/onboarding-base.js +1 -0
- package/dist/ontology/autonomous-work-order.fixture.d.ts +352 -0
- package/dist/ontology/autonomous-work-order.fixture.js +1 -0
- package/dist/ontology/companyos.d.ts +146 -0
- package/dist/ontology/companyos.js +1 -0
- package/dist/ontology/defineOntologyEdge.d.ts +2 -0
- package/dist/ontology/defineOntologyEdge.js +1 -0
- package/dist/ontology/defineOntologyNode.d.ts +2 -0
- package/dist/ontology/defineOntologyNode.js +1 -0
- package/dist/ontology/evidence.d.ts +10 -0
- package/dist/ontology/evidence.js +1 -0
- package/dist/ontology/graph.d.ts +19 -0
- package/dist/ontology/graph.js +1 -0
- package/dist/ontology/index.d.ts +10 -0
- package/dist/ontology/index.js +1 -0
- package/dist/ontology/kinds.d.ts +17 -0
- package/dist/ontology/kinds.js +1 -0
- package/dist/ontology/ref.d.ts +6 -0
- package/dist/ontology/ref.js +1 -0
- package/dist/ontology/registry.d.ts +14 -0
- package/dist/ontology/registry.js +1 -0
- package/dist/ontology/safety.d.ts +3 -0
- package/dist/ontology/safety.js +1 -0
- package/dist/ontology/types.d.ts +67 -0
- package/dist/ontology/types.js +0 -0
- package/dist/openapi.d.ts +34 -0
- package/dist/openapi.js +38 -0
- package/dist/operations/agent/archive.command.d.js +0 -0
- package/dist/operations/agent/archive.command.d.ts +141 -0
- package/dist/operations/agent/archive.command.js +1 -0
- package/dist/operations/agent/assign-tool.command.d.js +0 -0
- package/dist/operations/agent/assign-tool.command.d.ts +187 -0
- package/dist/operations/agent/assign-tool.command.js +1 -0
- package/dist/operations/agent/clone.command.d.js +0 -0
- package/dist/operations/agent/clone.command.d.ts +149 -0
- package/dist/operations/agent/clone.command.js +1 -0
- package/dist/operations/agent/create.command.d.js +0 -0
- package/dist/operations/agent/create.command.d.ts +159 -0
- package/dist/operations/agent/create.command.js +1 -0
- package/dist/operations/agent/fleet-health.query.d.js +0 -0
- package/dist/operations/agent/fleet-health.query.d.ts +71 -0
- package/dist/operations/agent/fleet-health.query.js +1 -0
- package/dist/operations/agent/get.query.d.js +0 -0
- package/dist/operations/agent/get.query.d.ts +190 -0
- package/dist/operations/agent/get.query.js +1 -0
- package/dist/operations/agent/import-memory.command.d.ts +140 -0
- package/dist/operations/agent/import-memory.command.js +1 -0
- package/dist/operations/agent/list.query.d.js +0 -0
- package/dist/operations/agent/list.query.d.ts +162 -0
- package/dist/operations/agent/list.query.js +1 -0
- package/dist/operations/agent/pause.command.d.js +0 -0
- package/dist/operations/agent/pause.command.d.ts +149 -0
- package/dist/operations/agent/pause.command.js +1 -0
- package/dist/operations/agent/set-autonomy.command.d.js +0 -0
- package/dist/operations/agent/set-autonomy.command.d.ts +156 -0
- package/dist/operations/agent/set-autonomy.command.js +1 -0
- package/dist/operations/agent/set-risk-tier.command.d.js +0 -0
- package/dist/operations/agent/set-risk-tier.command.d.ts +152 -0
- package/dist/operations/agent/set-risk-tier.command.js +1 -0
- package/dist/operations/agent/shared-schemas.d.js +0 -0
- package/dist/operations/agent/shared-schemas.d.ts +396 -0
- package/dist/operations/agent/shared-schemas.js +1 -0
- package/dist/operations/agent/start.command.d.js +0 -0
- package/dist/operations/agent/start.command.d.ts +147 -0
- package/dist/operations/agent/start.command.js +1 -0
- package/dist/operations/agent/stop.command.d.js +0 -0
- package/dist/operations/agent/stop.command.d.ts +155 -0
- package/dist/operations/agent/stop.command.js +1 -0
- package/dist/operations/agent/update.command.d.js +0 -0
- package/dist/operations/agent/update.command.d.ts +155 -0
- package/dist/operations/agent/update.command.js +1 -0
- package/dist/operations/approval.d.js +0 -0
- package/dist/operations/approval.d.ts +153 -0
- package/dist/operations/approval.js +1 -0
- package/dist/operations/audit/event.export.command.d.js +0 -0
- package/dist/operations/audit/event.export.command.d.ts +71 -0
- package/dist/operations/audit/event.export.command.js +1 -0
- package/dist/operations/audit/event.get.query.d.js +0 -0
- package/dist/operations/audit/event.get.query.d.ts +83 -0
- package/dist/operations/audit/event.get.query.js +1 -0
- package/dist/operations/audit/event.list.query.d.js +0 -0
- package/dist/operations/audit/event.list.query.d.ts +90 -0
- package/dist/operations/audit/event.list.query.js +1 -0
- package/dist/operations/audit/evidence.attach.command.d.js +0 -0
- package/dist/operations/audit/evidence.attach.command.d.ts +110 -0
- package/dist/operations/audit/evidence.attach.command.js +1 -0
- package/dist/operations/audit/pipeline.health.query.d.js +0 -0
- package/dist/operations/audit/pipeline.health.query.d.ts +66 -0
- package/dist/operations/audit/pipeline.health.query.js +1 -0
- package/dist/operations/audit/shared-schemas.d.js +0 -0
- package/dist/operations/audit/shared-schemas.d.ts +102 -0
- package/dist/operations/audit/shared-schemas.js +1 -0
- package/dist/operations/ceremony-authority.d.js +0 -0
- package/dist/operations/ceremony-authority.d.ts +50 -0
- package/dist/operations/ceremony-authority.js +1 -0
- package/dist/operations/coach/agent-suggest-tool.command.d.js +0 -0
- package/dist/operations/coach/agent-suggest-tool.command.d.ts +55 -0
- package/dist/operations/coach/agent-suggest-tool.command.js +1 -0
- package/dist/operations/coach/governance-suggest-constraint.command.d.js +0 -0
- package/dist/operations/coach/governance-suggest-constraint.command.d.ts +61 -0
- package/dist/operations/coach/governance-suggest-constraint.command.js +1 -0
- package/dist/operations/coach/review-summarize.command.d.js +0 -0
- package/dist/operations/coach/review-summarize.command.d.ts +66 -0
- package/dist/operations/coach/review-summarize.command.js +1 -0
- package/dist/operations/coach/shared-schemas.d.js +0 -0
- package/dist/operations/coach/shared-schemas.d.ts +124 -0
- package/dist/operations/coach/shared-schemas.js +1 -0
- package/dist/operations/coach/workflow-suggest-step.command.d.js +0 -0
- package/dist/operations/coach/workflow-suggest-step.command.d.ts +63 -0
- package/dist/operations/coach/workflow-suggest-step.command.js +1 -0
- package/dist/operations/economic-evidence.d.js +0 -0
- package/dist/operations/economic-evidence.d.ts +6 -0
- package/dist/operations/economic-evidence.js +1 -0
- package/dist/operations/fleet/health-snapshot.query.d.js +0 -0
- package/dist/operations/fleet/health-snapshot.query.d.ts +189 -0
- package/dist/operations/fleet/health-snapshot.query.js +1 -0
- package/dist/operations/fleet/metrics-summary.query.d.js +0 -0
- package/dist/operations/fleet/metrics-summary.query.d.ts +224 -0
- package/dist/operations/fleet/metrics-summary.query.js +1 -0
- package/dist/operations/fleet/roi-snapshot.query.d.js +0 -0
- package/dist/operations/fleet/roi-snapshot.query.d.ts +171 -0
- package/dist/operations/fleet/roi-snapshot.query.js +1 -0
- package/dist/operations/fleet/shared-schemas.d.js +0 -0
- package/dist/operations/fleet/shared-schemas.d.ts +161 -0
- package/dist/operations/fleet/shared-schemas.js +1 -0
- package/dist/operations/governance/constraint.add.command.d.js +1 -0
- package/dist/operations/governance/constraint.add.command.d.ts +102 -0
- package/dist/operations/governance/constraint.add.command.js +1 -0
- package/dist/operations/governance/constraint.remove.command.d.js +0 -0
- package/dist/operations/governance/constraint.remove.command.d.ts +57 -0
- package/dist/operations/governance/constraint.remove.command.js +1 -0
- package/dist/operations/governance/notification.dispatch.command.d.js +0 -0
- package/dist/operations/governance/notification.dispatch.command.d.ts +53 -0
- package/dist/operations/governance/notification.dispatch.command.js +1 -0
- package/dist/operations/governance/policy.get.query.d.js +0 -0
- package/dist/operations/governance/policy.get.query.d.ts +68 -0
- package/dist/operations/governance/policy.get.query.js +1 -0
- package/dist/operations/governance/policy.health.query.d.js +0 -0
- package/dist/operations/governance/policy.health.query.d.ts +61 -0
- package/dist/operations/governance/policy.health.query.js +1 -0
- package/dist/operations/governance/policy.list.query.d.js +1 -0
- package/dist/operations/governance/policy.list.query.d.ts +64 -0
- package/dist/operations/governance/policy.list.query.js +1 -0
- package/dist/operations/governance/policy.simulate.query.d.js +0 -0
- package/dist/operations/governance/policy.simulate.query.d.ts +80 -0
- package/dist/operations/governance/policy.simulate.query.js +1 -0
- package/dist/operations/governance/policy.update.command.d.js +1 -0
- package/dist/operations/governance/policy.update.command.d.ts +115 -0
- package/dist/operations/governance/policy.update.command.js +1 -0
- package/dist/operations/governance/shared-schemas.d.js +0 -0
- package/dist/operations/governance/shared-schemas.d.ts +136 -0
- package/dist/operations/governance/shared-schemas.js +1 -0
- package/dist/operations/index.d.js +1 -0
- package/dist/operations/index.d.ts +14 -0
- package/dist/operations/index.js +1 -0
- package/dist/operations/integrations/audit.list_for_integration.command.d.js +1 -0
- package/dist/operations/integrations/audit.list_for_integration.command.d.ts +37 -0
- package/dist/operations/integrations/audit.list_for_integration.command.js +1 -0
- package/dist/operations/integrations/config.get.command.d.js +0 -0
- package/dist/operations/integrations/config.get.command.d.ts +33 -0
- package/dist/operations/integrations/config.get.command.js +1 -0
- package/dist/operations/integrations/config.update.command.d.js +0 -0
- package/dist/operations/integrations/config.update.command.d.ts +42 -0
- package/dist/operations/integrations/config.update.command.js +1 -0
- package/dist/operations/integrations/connections.list.command.d.js +1 -0
- package/dist/operations/integrations/connections.list.command.d.ts +29 -0
- package/dist/operations/integrations/connections.list.command.js +1 -0
- package/dist/operations/integrations/credentials.list.command.d.js +1 -0
- package/dist/operations/integrations/credentials.list.command.d.ts +33 -0
- package/dist/operations/integrations/credentials.list.command.js +1 -0
- package/dist/operations/integrations/credentials.request_rotation.command.d.js +0 -0
- package/dist/operations/integrations/credentials.request_rotation.command.d.ts +38 -0
- package/dist/operations/integrations/credentials.request_rotation.command.js +1 -0
- package/dist/operations/integrations/credentials.revoke.command.d.js +0 -0
- package/dist/operations/integrations/credentials.revoke.command.d.ts +38 -0
- package/dist/operations/integrations/credentials.revoke.command.js +1 -0
- package/dist/operations/integrations/credentials.rotate.command.d.js +0 -0
- package/dist/operations/integrations/credentials.rotate.command.d.ts +46 -0
- package/dist/operations/integrations/credentials.rotate.command.js +1 -0
- package/dist/operations/integrations/index.d.ts +27 -0
- package/dist/operations/integrations/index.js +1 -0
- package/dist/operations/integrations/integrations.connect.command.d.js +0 -0
- package/dist/operations/integrations/integrations.connect.command.d.ts +38 -0
- package/dist/operations/integrations/integrations.connect.command.js +1 -0
- package/dist/operations/integrations/integrations.disconnect.command.d.js +0 -0
- package/dist/operations/integrations/integrations.disconnect.command.d.ts +38 -0
- package/dist/operations/integrations/integrations.disconnect.command.js +1 -0
- package/dist/operations/integrations/integrations.get.command.d.js +0 -0
- package/dist/operations/integrations/integrations.get.command.d.ts +49 -0
- package/dist/operations/integrations/integrations.get.command.js +1 -0
- package/dist/operations/integrations/integrations.list.command.d.js +1 -0
- package/dist/operations/integrations/integrations.list.command.d.ts +29 -0
- package/dist/operations/integrations/integrations.list.command.js +1 -0
- package/dist/operations/integrations/registry.d.js +0 -0
- package/dist/operations/integrations/registry.d.ts +21 -0
- package/dist/operations/integrations/registry.js +1 -0
- package/dist/operations/integrations/secrets.link.command.d.js +0 -0
- package/dist/operations/integrations/secrets.link.command.d.ts +38 -0
- package/dist/operations/integrations/secrets.link.command.js +1 -0
- package/dist/operations/integrations/secrets.list.command.d.js +1 -0
- package/dist/operations/integrations/secrets.list.command.d.ts +33 -0
- package/dist/operations/integrations/secrets.list.command.js +1 -0
- package/dist/operations/integrations/secrets.reveal_once_audit_only.command.d.js +0 -0
- package/dist/operations/integrations/secrets.reveal_once_audit_only.command.d.ts +42 -0
- package/dist/operations/integrations/secrets.reveal_once_audit_only.command.js +1 -0
- package/dist/operations/integrations/secrets.unlink.command.d.js +0 -0
- package/dist/operations/integrations/secrets.unlink.command.d.ts +38 -0
- package/dist/operations/integrations/secrets.unlink.command.js +1 -0
- package/dist/operations/integrations/shared-schemas.d.js +0 -0
- package/dist/operations/integrations/shared-schemas.d.ts +259 -0
- package/dist/operations/integrations/shared-schemas.js +1 -0
- package/dist/operations/integrations/syncs.list.command.d.js +1 -0
- package/dist/operations/integrations/syncs.list.command.d.ts +29 -0
- package/dist/operations/integrations/syncs.list.command.js +1 -0
- package/dist/operations/integrations/syncs.pause.command.d.js +0 -0
- package/dist/operations/integrations/syncs.pause.command.d.ts +34 -0
- package/dist/operations/integrations/syncs.pause.command.js +1 -0
- package/dist/operations/integrations/syncs.resume.command.d.js +0 -0
- package/dist/operations/integrations/syncs.resume.command.d.ts +34 -0
- package/dist/operations/integrations/syncs.resume.command.js +1 -0
- package/dist/operations/integrations/syncs.run_now.command.d.js +0 -0
- package/dist/operations/integrations/syncs.run_now.command.d.ts +34 -0
- package/dist/operations/integrations/syncs.run_now.command.js +1 -0
- package/dist/operations/integrations/syncs.update_schedule.command.d.js +0 -0
- package/dist/operations/integrations/syncs.update_schedule.command.d.ts +38 -0
- package/dist/operations/integrations/syncs.update_schedule.command.js +1 -0
- package/dist/operations/marketing.d.js +1 -0
- package/dist/operations/marketing.d.ts +496 -0
- package/dist/operations/marketing.handlers.d.js +0 -0
- package/dist/operations/marketing.handlers.d.ts +24 -0
- package/dist/operations/marketing.handlers.js +1 -0
- package/dist/operations/marketing.js +14 -0
- package/dist/operations/operation.d.js +0 -0
- package/dist/operations/operation.d.ts +236 -0
- package/dist/operations/operation.js +1 -0
- package/dist/operations/reference-detail.d.ts +157 -0
- package/dist/operations/reference-detail.js +1 -0
- package/dist/operations/reference-resolve.d.ts +214 -0
- package/dist/operations/reference-resolve.js +3 -0
- package/dist/operations/registry.agent.d.js +0 -0
- package/dist/operations/registry.agent.d.ts +22 -0
- package/dist/operations/registry.agent.js +1 -0
- package/dist/operations/registry.audit.d.js +0 -0
- package/dist/operations/registry.audit.d.ts +23 -0
- package/dist/operations/registry.audit.js +1 -0
- package/dist/operations/registry.coach.d.js +0 -0
- package/dist/operations/registry.coach.d.ts +31 -0
- package/dist/operations/registry.coach.js +1 -0
- package/dist/operations/registry.d.js +1 -0
- package/dist/operations/registry.d.ts +77 -0
- package/dist/operations/registry.domains.d.js +0 -0
- package/dist/operations/registry.domains.d.ts +44 -0
- package/dist/operations/registry.domains.js +1 -0
- package/dist/operations/registry.fleet.d.js +0 -0
- package/dist/operations/registry.fleet.d.ts +21 -0
- package/dist/operations/registry.fleet.js +1 -0
- package/dist/operations/registry.governance.d.js +0 -0
- package/dist/operations/registry.governance.d.ts +20 -0
- package/dist/operations/registry.governance.js +1 -0
- package/dist/operations/registry.js +1 -0
- package/dist/operations/registry.review.d.js +0 -0
- package/dist/operations/registry.review.d.ts +18 -0
- package/dist/operations/registry.review.js +1 -0
- package/dist/operations/registry.workflow.d.js +0 -0
- package/dist/operations/registry.workflow.d.ts +20 -0
- package/dist/operations/registry.workflow.js +1 -0
- package/dist/operations/report/getContractVerificationStatus.d.ts +68 -0
- package/dist/operations/report/getContractVerificationStatus.js +1 -0
- package/dist/operations/report/index.d.ts +10 -0
- package/dist/operations/report/index.js +1 -0
- package/dist/operations/review/commands/index.d.ts +6 -0
- package/dist/operations/review/commands/index.js +1 -0
- package/dist/operations/review/commands/reviewApprove.command.d.js +0 -0
- package/dist/operations/review/commands/reviewApprove.command.d.ts +55 -0
- package/dist/operations/review/commands/reviewApprove.command.js +1 -0
- package/dist/operations/review/commands/reviewAssign.command.d.js +0 -0
- package/dist/operations/review/commands/reviewAssign.command.d.ts +50 -0
- package/dist/operations/review/commands/reviewAssign.command.js +12 -0
- package/dist/operations/review/commands/reviewComment.command.d.js +0 -0
- package/dist/operations/review/commands/reviewComment.command.d.ts +60 -0
- package/dist/operations/review/commands/reviewComment.command.js +1 -0
- package/dist/operations/review/commands/reviewEscalate.command.d.js +0 -0
- package/dist/operations/review/commands/reviewEscalate.command.d.ts +62 -0
- package/dist/operations/review/commands/reviewEscalate.command.js +1 -0
- package/dist/operations/review/commands/reviewReject.command.d.js +0 -0
- package/dist/operations/review/commands/reviewReject.command.d.ts +50 -0
- package/dist/operations/review/commands/reviewReject.command.js +1 -0
- package/dist/operations/review/commands/reviewRequestChanges.command.d.js +0 -0
- package/dist/operations/review/commands/reviewRequestChanges.command.d.ts +64 -0
- package/dist/operations/review/commands/reviewRequestChanges.command.js +1 -0
- package/dist/operations/review/constants.d.js +0 -0
- package/dist/operations/review/constants.d.ts +14 -0
- package/dist/operations/review/constants.js +1 -0
- package/dist/operations/review/index.d.ts +2 -0
- package/dist/operations/review/index.js +1 -0
- package/dist/operations/review/queries/index.d.ts +3 -0
- package/dist/operations/review/queries/index.js +1 -0
- package/dist/operations/review/queries/reviewGet.query.d.js +0 -0
- package/dist/operations/review/queries/reviewGet.query.d.ts +127 -0
- package/dist/operations/review/queries/reviewGet.query.js +9 -0
- package/dist/operations/review/queries/reviewList.query.d.js +0 -0
- package/dist/operations/review/queries/reviewList.query.d.ts +110 -0
- package/dist/operations/review/queries/reviewList.query.js +1 -0
- package/dist/operations/review/queries/reviewQueueHealth.query.d.js +0 -0
- package/dist/operations/review/queries/reviewQueueHealth.query.d.ts +55 -0
- package/dist/operations/review/queries/reviewQueueHealth.query.js +1 -0
- package/dist/operations/review/shared-schemas.d.js +0 -0
- package/dist/operations/review/shared-schemas.d.ts +180 -0
- package/dist/operations/review/shared-schemas.js +1 -0
- package/dist/operations/workflow/commands/workflowActivate.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowActivate.command.d.ts +40 -0
- package/dist/operations/workflow/commands/workflowActivate.command.js +1 -0
- package/dist/operations/workflow/commands/workflowCreate.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowCreate.command.d.ts +55 -0
- package/dist/operations/workflow/commands/workflowCreate.command.js +1 -0
- package/dist/operations/workflow/commands/workflowDeactivate.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowDeactivate.command.d.ts +49 -0
- package/dist/operations/workflow/commands/workflowDeactivate.command.js +1 -0
- package/dist/operations/workflow/commands/workflowRunCancel.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowRunCancel.command.d.ts +41 -0
- package/dist/operations/workflow/commands/workflowRunCancel.command.js +1 -0
- package/dist/operations/workflow/commands/workflowRunDispatch.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowRunDispatch.command.d.ts +53 -0
- package/dist/operations/workflow/commands/workflowRunDispatch.command.js +1 -0
- package/dist/operations/workflow/commands/workflowRunPause.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowRunPause.command.d.ts +37 -0
- package/dist/operations/workflow/commands/workflowRunPause.command.js +1 -0
- package/dist/operations/workflow/commands/workflowRunResume.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowRunResume.command.d.ts +37 -0
- package/dist/operations/workflow/commands/workflowRunResume.command.js +1 -0
- package/dist/operations/workflow/commands/workflowRunRetry.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowRunRetry.command.d.ts +40 -0
- package/dist/operations/workflow/commands/workflowRunRetry.command.js +1 -0
- package/dist/operations/workflow/commands/workflowStepAdvance.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowStepAdvance.command.d.ts +49 -0
- package/dist/operations/workflow/commands/workflowStepAdvance.command.js +1 -0
- package/dist/operations/workflow/commands/workflowStepSkip.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowStepSkip.command.d.ts +49 -0
- package/dist/operations/workflow/commands/workflowStepSkip.command.js +1 -0
- package/dist/operations/workflow/commands/workflowUpdate.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowUpdate.command.d.ts +44 -0
- package/dist/operations/workflow/commands/workflowUpdate.command.js +1 -0
- package/dist/operations/workflow/constants.d.js +0 -0
- package/dist/operations/workflow/constants.d.ts +38 -0
- package/dist/operations/workflow/constants.js +1 -0
- package/dist/operations/workflow/index.d.js +1 -0
- package/dist/operations/workflow/index.d.ts +31 -0
- package/dist/operations/workflow/index.js +1 -0
- package/dist/operations/workflow/queries/workflowGet.query.d.js +0 -0
- package/dist/operations/workflow/queries/workflowGet.query.d.ts +29 -0
- package/dist/operations/workflow/queries/workflowGet.query.js +1 -0
- package/dist/operations/workflow/queries/workflowList.query.d.js +0 -0
- package/dist/operations/workflow/queries/workflowList.query.d.ts +42 -0
- package/dist/operations/workflow/queries/workflowList.query.js +1 -0
- package/dist/operations/workflow/queries/workflowRunnerHealth.query.d.js +0 -0
- package/dist/operations/workflow/queries/workflowRunnerHealth.query.d.ts +24 -0
- package/dist/operations/workflow/queries/workflowRunnerHealth.query.js +1 -0
- package/dist/osint/capability-matrix-validation.d.ts +3 -0
- package/dist/osint/capability-matrix-validation.js +2 -0
- package/dist/osint/capability-matrix.d.ts +84 -0
- package/dist/osint/capability-matrix.js +3 -0
- package/dist/osint/constants.d.ts +14 -0
- package/dist/osint/constants.js +1 -0
- package/dist/osint/entities.d.ts +60 -0
- package/dist/osint/entities.js +0 -0
- package/dist/osint/events.d.ts +605 -0
- package/dist/osint/events.js +1 -0
- package/dist/osint/exports.d.ts +14 -0
- package/dist/osint/exports.js +0 -0
- package/dist/osint/fingerprint.d.ts +13 -0
- package/dist/osint/fingerprint.js +1 -0
- package/dist/osint/index.d.ts +22 -0
- package/dist/osint/index.js +1 -0
- package/dist/osint/job-reconciliation-contracts.d.ts +372 -0
- package/dist/osint/job-reconciliation-contracts.js +1 -0
- package/dist/osint/job-sources.d.ts +176 -0
- package/dist/osint/job-sources.js +18 -0
- package/dist/osint/lifecycle-contracts.d.ts +552 -0
- package/dist/osint/lifecycle-contracts.js +8 -0
- package/dist/osint/lifecycle-worker-contracts.d.ts +386 -0
- package/dist/osint/lifecycle-worker-contracts.js +1 -0
- package/dist/osint/operational-contracts.d.ts +641 -0
- package/dist/osint/operational-contracts.js +10 -0
- package/dist/osint/operational-operations.d.ts +1965 -0
- package/dist/osint/operational-operations.js +1 -0
- package/dist/osint/operational-schema-fields.d.ts +148 -0
- package/dist/osint/operational-schema-fields.js +1 -0
- package/dist/osint/operations-continuation.d.ts +1611 -0
- package/dist/osint/operations-continuation.js +1 -0
- package/dist/osint/operations.d.ts +2436 -0
- package/dist/osint/operations.js +1 -0
- package/dist/osint/programs.d.ts +54 -0
- package/dist/osint/programs.js +0 -0
- package/dist/osint/registry.d.ts +3510 -0
- package/dist/osint/registry.js +1 -0
- package/dist/osint/rights-contracts.d.ts +253 -0
- package/dist/osint/rights-contracts.js +8 -0
- package/dist/osint/rights-operations.d.ts +175 -0
- package/dist/osint/rights-operations.js +1 -0
- package/dist/osint/source-state-operations.d.ts +386 -0
- package/dist/osint/source-state-operations.js +1 -0
- package/dist/osint/transport.d.ts +76 -0
- package/dist/osint/transport.js +1 -0
- package/dist/osint/types.d.ts +184 -0
- package/dist/osint/types.js +0 -0
- package/dist/outcome-claims/factory.d.ts +9 -0
- package/dist/outcome-claims/factory.js +1 -0
- package/dist/outcome-claims/index.d.ts +3 -0
- package/dist/outcome-claims/index.js +1 -0
- package/dist/outcome-claims/types.d.ts +86 -0
- package/dist/outcome-claims/types.js +0 -0
- package/dist/outcome-claims/validation.d.ts +685 -0
- package/dist/outcome-claims/validation.js +1 -0
- package/dist/ownership.d.js +0 -0
- package/dist/ownership.d.ts +209 -0
- package/dist/ownership.js +1 -0
- package/dist/policy/context.d.ts +234 -0
- package/dist/policy/context.js +1 -0
- package/dist/policy/engine.d.ts +36 -0
- package/dist/policy/engine.js +1 -0
- package/dist/policy/guards.d.ts +150 -0
- package/dist/policy/guards.js +1 -0
- package/dist/policy/index.d.ts +13 -0
- package/dist/policy/index.js +1 -0
- package/dist/policy/opa-adapter.d.ts +41 -0
- package/dist/policy/opa-adapter.js +1 -0
- package/dist/policy/registry.d.js +0 -0
- package/dist/policy/registry.d.ts +5 -0
- package/dist/policy/registry.js +1 -0
- package/dist/policy/requirements.d.js +0 -0
- package/dist/policy/requirements.d.ts +64 -0
- package/dist/policy/requirements.js +1 -0
- package/dist/policy/spec.d.js +0 -0
- package/dist/policy/spec.d.ts +127 -0
- package/dist/policy/spec.js +150 -0
- package/dist/policy/validation.d.ts +84 -0
- package/dist/policy/validation.js +1 -0
- package/dist/presentations/index.d.js +1 -0
- package/dist/presentations/index.d.ts +2 -0
- package/dist/presentations/index.js +1 -0
- package/dist/presentations/presentations.d.js +0 -0
- package/dist/presentations/presentations.d.ts +54 -0
- package/dist/presentations/presentations.js +83 -0
- package/dist/presentations/registry.d.js +0 -0
- package/dist/presentations/registry.d.ts +6 -0
- package/dist/presentations/registry.js +1 -0
- package/dist/presentations/shim-blocknotejs.d.js +0 -0
- package/dist/presentations/shim-blocknotejs.d.ts +28 -0
- package/dist/presentations/shim-blocknotejs.js +0 -0
- package/dist/product-intent/contract-patch-intent.d.ts +100 -0
- package/dist/product-intent/contract-patch-intent.js +1 -0
- package/dist/product-intent/contract-spec-patch.d.ts +86 -0
- package/dist/product-intent/contract-spec-patch.js +1 -0
- package/dist/product-intent/evidence.d.ts +14 -0
- package/dist/product-intent/evidence.js +1 -0
- package/dist/product-intent/findings.d.ts +57 -0
- package/dist/product-intent/findings.js +1 -0
- package/dist/product-intent/impact-report.d.ts +57 -0
- package/dist/product-intent/impact-report.js +1 -0
- package/dist/product-intent/index.d.ts +13 -0
- package/dist/product-intent/index.js +1 -0
- package/dist/product-intent/insights.d.ts +62 -0
- package/dist/product-intent/insights.js +1 -0
- package/dist/product-intent/opportunity-brief.d.ts +192 -0
- package/dist/product-intent/opportunity-brief.js +1 -0
- package/dist/product-intent/problems.d.ts +59 -0
- package/dist/product-intent/problems.js +1 -0
- package/dist/product-intent/registry.d.ts +28 -0
- package/dist/product-intent/registry.js +1 -0
- package/dist/product-intent/runtime.d.ts +92 -0
- package/dist/product-intent/runtime.js +1 -0
- package/dist/product-intent/spec.d.ts +664 -0
- package/dist/product-intent/spec.js +1 -0
- package/dist/product-intent/task-pack.d.ts +98 -0
- package/dist/product-intent/task-pack.js +1 -0
- package/dist/product-intent/tickets.d.ts +67 -0
- package/dist/product-intent/tickets.js +1 -0
- package/dist/product-intent/types.d.ts +11 -0
- package/dist/product-intent/types.js +1 -0
- package/dist/product-intent/ui-wireframe.d.ts +100 -0
- package/dist/product-intent/ui-wireframe.js +1 -0
- package/dist/prompt.d.ts +49 -0
- package/dist/prompt.js +1 -0
- package/dist/promptRegistry.d.ts +11 -0
- package/dist/promptRegistry.js +1 -0
- package/dist/provider-ranking/capabilities/index.d.ts +1 -0
- package/dist/provider-ranking/capabilities/index.js +1 -0
- package/dist/provider-ranking/capabilities/providerRanking.capability.d.ts +1 -0
- package/dist/provider-ranking/capabilities/providerRanking.capability.js +1 -0
- package/dist/provider-ranking/commands/benchmarkIngest.command.d.ts +62 -0
- package/dist/provider-ranking/commands/benchmarkIngest.command.js +4 -0
- package/dist/provider-ranking/commands/benchmarkRunCustom.command.d.ts +61 -0
- package/dist/provider-ranking/commands/benchmarkRunCustom.command.js +4 -0
- package/dist/provider-ranking/commands/index.d.ts +3 -0
- package/dist/provider-ranking/commands/index.js +1 -0
- package/dist/provider-ranking/commands/rankingRefresh.command.d.ts +42 -0
- package/dist/provider-ranking/commands/rankingRefresh.command.js +4 -0
- package/dist/provider-ranking/constants.d.ts +4 -0
- package/dist/provider-ranking/constants.js +1 -0
- package/dist/provider-ranking/contracts.d.ts +624 -0
- package/dist/provider-ranking/contracts.js +1 -0
- package/dist/provider-ranking/events/benchmarkCustomCompleted.event.d.ts +71 -0
- package/dist/provider-ranking/events/benchmarkCustomCompleted.event.js +4 -0
- package/dist/provider-ranking/events/benchmarkIngested.event.d.ts +47 -0
- package/dist/provider-ranking/events/benchmarkIngested.event.js +4 -0
- package/dist/provider-ranking/events/index.d.ts +3 -0
- package/dist/provider-ranking/events/index.js +1 -0
- package/dist/provider-ranking/events/rankingUpdated.event.d.ts +39 -0
- package/dist/provider-ranking/events/rankingUpdated.event.js +4 -0
- package/dist/provider-ranking/forms/benchmarkIngest.form.d.ts +29 -0
- package/dist/provider-ranking/forms/benchmarkIngest.form.js +4 -0
- package/dist/provider-ranking/forms/benchmarkRunCustom.form.d.ts +29 -0
- package/dist/provider-ranking/forms/benchmarkRunCustom.form.js +4 -0
- package/dist/provider-ranking/forms/index.d.ts +2 -0
- package/dist/provider-ranking/forms/index.js +1 -0
- package/dist/provider-ranking/index.d.ts +10 -0
- package/dist/provider-ranking/index.js +1 -0
- package/dist/provider-ranking/presentations/index.d.ts +1 -0
- package/dist/provider-ranking/presentations/index.js +1 -0
- package/dist/provider-ranking/presentations/modelComparison.presentation.d.ts +11 -0
- package/dist/provider-ranking/presentations/modelComparison.presentation.js +4 -0
- package/dist/provider-ranking/provider-ranking.feature.d.ts +11 -0
- package/dist/provider-ranking/provider-ranking.feature.js +4 -0
- package/dist/provider-ranking/queries/benchmarkResultsList.query.d.ts +84 -0
- package/dist/provider-ranking/queries/benchmarkResultsList.query.js +4 -0
- package/dist/provider-ranking/queries/index.d.ts +3 -0
- package/dist/provider-ranking/queries/index.js +1 -0
- package/dist/provider-ranking/queries/modelProfileGet.query.d.ts +67 -0
- package/dist/provider-ranking/queries/modelProfileGet.query.js +4 -0
- package/dist/provider-ranking/queries/providerRankingGet.query.d.ts +72 -0
- package/dist/provider-ranking/queries/providerRankingGet.query.js +4 -0
- package/dist/provider-ranking/views/benchmarkResults.dataView.d.ts +108 -0
- package/dist/provider-ranking/views/benchmarkResults.dataView.js +4 -0
- package/dist/provider-ranking/views/index.d.ts +2 -0
- package/dist/provider-ranking/views/index.js +1 -0
- package/dist/provider-ranking/views/providerRankings.dataView.d.ts +90 -0
- package/dist/provider-ranking/views/providerRankings.dataView.js +4 -0
- package/dist/pwa/capabilities/index.d.ts +1 -0
- package/dist/pwa/capabilities/index.js +1 -0
- package/dist/pwa/capabilities/pwaUpdateManagement.capability.d.ts +1 -0
- package/dist/pwa/capabilities/pwaUpdateManagement.capability.js +1 -0
- package/dist/pwa/constants.d.ts +4 -0
- package/dist/pwa/constants.js +1 -0
- package/dist/pwa/contracts.d.ts +180 -0
- package/dist/pwa/contracts.js +1 -0
- package/dist/pwa/events/index.d.ts +3 -0
- package/dist/pwa/events/index.js +1 -0
- package/dist/pwa/events/pwaUpdateApplied.event.d.ts +45 -0
- package/dist/pwa/events/pwaUpdateApplied.event.js +1 -0
- package/dist/pwa/events/pwaUpdateDeferred.event.d.ts +22 -0
- package/dist/pwa/events/pwaUpdateDeferred.event.js +1 -0
- package/dist/pwa/events/pwaUpdatePrompted.event.d.ts +22 -0
- package/dist/pwa/events/pwaUpdatePrompted.event.js +1 -0
- package/dist/pwa/index.d.ts +8 -0
- package/dist/pwa/index.js +1 -0
- package/dist/pwa/pwa.feature.d.ts +1 -0
- package/dist/pwa/pwa.feature.js +1 -0
- package/dist/pwa/queries/index.d.ts +1 -0
- package/dist/pwa/queries/index.js +1 -0
- package/dist/pwa/queries/pwaUpdateCheck.query.d.ts +244 -0
- package/dist/pwa/queries/pwaUpdateCheck.query.js +1 -0
- package/dist/pwa/registry.d.ts +7 -0
- package/dist/pwa/registry.js +1 -0
- package/dist/pwa/types.d.ts +52 -0
- package/dist/pwa/types.js +6 -0
- package/dist/quality/environment.d.ts +51 -0
- package/dist/quality/environment.js +1 -0
- package/dist/quality/index.d.ts +5 -0
- package/dist/quality/index.js +1 -0
- package/dist/quality/plan.d.ts +185 -0
- package/dist/quality/plan.js +1 -0
- package/dist/quality/primitives.d.ts +143 -0
- package/dist/quality/primitives.js +1 -0
- package/dist/quality/profile.d.ts +155 -0
- package/dist/quality/profile.js +1 -0
- package/dist/quality/receipt.d.ts +237 -0
- package/dist/quality/receipt.js +1 -0
- package/dist/query/cache-status.d.js +0 -0
- package/dist/query/cache-status.d.ts +15 -0
- package/dist/query/cache-status.js +1 -0
- package/dist/query/conflict-policy.d.js +0 -0
- package/dist/query/conflict-policy.d.ts +27 -0
- package/dist/query/conflict-policy.js +1 -0
- package/dist/query/consistency.d.js +0 -0
- package/dist/query/consistency.d.ts +12 -0
- package/dist/query/consistency.js +1 -0
- package/dist/query/envelope.d.js +0 -0
- package/dist/query/envelope.d.ts +96 -0
- package/dist/query/envelope.js +0 -0
- package/dist/query/index.d.js +1 -0
- package/dist/query/index.d.ts +17 -0
- package/dist/query/index.js +1 -0
- package/dist/query/invalidation.d.js +0 -0
- package/dist/query/invalidation.d.ts +19 -0
- package/dist/query/invalidation.js +1 -0
- package/dist/query/key.d.js +0 -0
- package/dist/query/key.d.ts +10 -0
- package/dist/query/key.js +1 -0
- package/dist/query/normalize.d.js +0 -0
- package/dist/query/normalize.d.ts +49 -0
- package/dist/query/normalize.js +1 -0
- package/dist/query/query-state.d.js +0 -0
- package/dist/query/query-state.d.ts +63 -0
- package/dist/query/query-state.js +1 -0
- package/dist/query/version-token.d.js +0 -0
- package/dist/query/version-token.d.ts +20 -0
- package/dist/query/version-token.js +1 -0
- package/dist/regenerator/adapters.d.ts +15 -0
- package/dist/regenerator/adapters.js +0 -0
- package/dist/regenerator/executor.d.ts +66 -0
- package/dist/regenerator/executor.js +1 -0
- package/dist/regenerator/index.d.ts +6 -0
- package/dist/regenerator/index.js +1 -0
- package/dist/regenerator/service.d.ts +31 -0
- package/dist/regenerator/service.js +1 -0
- package/dist/regenerator/sinks.d.ts +23 -0
- package/dist/regenerator/sinks.js +1 -0
- package/dist/regenerator/types.d.ts +103 -0
- package/dist/regenerator/types.js +0 -0
- package/dist/regenerator/utils.d.ts +6 -0
- package/dist/regenerator/utils.js +1 -0
- package/dist/registry-utils.d.js +0 -0
- package/dist/registry-utils.d.ts +105 -0
- package/dist/registry-utils.js +1 -0
- package/dist/registry.d.js +0 -0
- package/dist/registry.d.ts +27 -0
- package/dist/registry.js +1 -0
- package/dist/release/index.d.ts +1 -0
- package/dist/release/index.js +1 -0
- package/dist/resources.d.js +0 -0
- package/dist/resources.d.ts +60 -0
- package/dist/resources.js +1 -0
- package/dist/results/builders.d.js +0 -0
- package/dist/results/builders.d.ts +51 -0
- package/dist/results/builders.js +1 -0
- package/dist/results/error.d.js +0 -0
- package/dist/results/error.d.ts +8 -0
- package/dist/results/error.js +1 -0
- package/dist/results/factories.d.js +0 -0
- package/dist/results/factories.d.ts +23 -0
- package/dist/results/factories.js +1 -0
- package/dist/results/guards.d.js +0 -0
- package/dist/results/guards.d.ts +7 -0
- package/dist/results/guards.js +1 -0
- package/dist/results/index.d.js +1 -0
- package/dist/results/index.d.ts +15 -0
- package/dist/results/index.js +1 -0
- package/dist/results/normalize.d.js +0 -0
- package/dist/results/normalize.d.ts +9 -0
- package/dist/results/normalize.js +1 -0
- package/dist/results/problem.d.js +0 -0
- package/dist/results/problem.d.ts +2 -0
- package/dist/results/problem.js +1 -0
- package/dist/results/result-specs.d.js +0 -0
- package/dist/results/result-specs.d.ts +73 -0
- package/dist/results/result-specs.js +0 -0
- package/dist/results/standard-specs.d.js +0 -0
- package/dist/results/standard-specs.d.ts +90 -0
- package/dist/results/standard-specs.js +1 -0
- package/dist/results/status.d.js +0 -0
- package/dist/results/status.d.ts +3 -0
- package/dist/results/status.js +1 -0
- package/dist/results/types.d.js +0 -0
- package/dist/results/types.d.ts +99 -0
- package/dist/results/types.js +0 -0
- package/dist/results/value-utils.d.js +0 -0
- package/dist/results/value-utils.d.ts +5 -0
- package/dist/results/value-utils.js +1 -0
- package/dist/rich-content/builders.d.ts +19 -0
- package/dist/rich-content/builders.js +3 -0
- package/dist/rich-content/index.d.ts +4 -0
- package/dist/rich-content/index.js +1 -0
- package/dist/rich-content/preferences.d.ts +7 -0
- package/dist/rich-content/preferences.js +0 -0
- package/dist/rich-content/redaction.d.ts +5 -0
- package/dist/rich-content/redaction.js +1 -0
- package/dist/rich-content/types.d.ts +69 -0
- package/dist/rich-content/types.js +0 -0
- package/dist/rich-reference/__fixtures__/cross-adapter-fixture.d.ts +26 -0
- package/dist/rich-reference/__fixtures__/cross-adapter-fixture.js +1 -0
- package/dist/rich-reference/agent-export.d.js +0 -0
- package/dist/rich-reference/agent-export.d.ts +59 -0
- package/dist/rich-reference/agent-export.js +1 -0
- package/dist/rich-reference/canonical-serializer.d.js +0 -0
- package/dist/rich-reference/canonical-serializer.d.ts +29 -0
- package/dist/rich-reference/canonical-serializer.js +1 -0
- package/dist/rich-reference/contracts.d.ts +4 -0
- package/dist/rich-reference/contracts.js +1 -0
- package/dist/rich-reference/define-kind.d.js +0 -0
- package/dist/rich-reference/define-kind.d.ts +46 -0
- package/dist/rich-reference/define-kind.js +1 -0
- package/dist/rich-reference/denial-token-shape.d.js +0 -0
- package/dist/rich-reference/denial-token-shape.d.ts +16 -0
- package/dist/rich-reference/denial-token-shape.js +1 -0
- package/dist/rich-reference/denial-token.d.js +0 -0
- package/dist/rich-reference/denial-token.d.ts +11 -0
- package/dist/rich-reference/denial-token.js +1 -0
- package/dist/rich-reference/detector.d.js +0 -0
- package/dist/rich-reference/detector.d.ts +19 -0
- package/dist/rich-reference/detector.js +1 -0
- package/dist/rich-reference/handler.d.js +0 -0
- package/dist/rich-reference/handler.d.ts +49 -0
- package/dist/rich-reference/handler.js +0 -0
- package/dist/rich-reference/index.d.js +1 -0
- package/dist/rich-reference/index.d.ts +38 -0
- package/dist/rich-reference/index.js +19 -0
- package/dist/rich-reference/kinds/code-symbol.d.js +1 -0
- package/dist/rich-reference/kinds/code-symbol.d.ts +39 -0
- package/dist/rich-reference/kinds/code-symbol.js +1 -0
- package/dist/rich-reference/kinds/database-record.d.js +1 -0
- package/dist/rich-reference/kinds/database-record.d.ts +29 -0
- package/dist/rich-reference/kinds/database-record.js +1 -0
- package/dist/rich-reference/kinds/entity.d.js +1 -0
- package/dist/rich-reference/kinds/entity.d.ts +62 -0
- package/dist/rich-reference/kinds/entity.js +27 -0
- package/dist/rich-reference/kinds/file.d.js +1 -0
- package/dist/rich-reference/kinds/file.d.ts +26 -0
- package/dist/rich-reference/kinds/file.js +1 -0
- package/dist/rich-reference/kinds/index.d.js +1 -0
- package/dist/rich-reference/kinds/index.d.ts +70 -0
- package/dist/rich-reference/kinds/index.js +1 -0
- package/dist/rich-reference/kinds/link.d.js +1 -0
- package/dist/rich-reference/kinds/link.d.ts +24 -0
- package/dist/rich-reference/kinds/link.js +1 -0
- package/dist/rich-reference/kinds/media.d.js +1 -0
- package/dist/rich-reference/kinds/media.d.ts +34 -0
- package/dist/rich-reference/kinds/media.js +1 -0
- package/dist/rich-reference/kinds/object.d.js +1 -0
- package/dist/rich-reference/kinds/object.d.ts +24 -0
- package/dist/rich-reference/kinds/object.js +1 -0
- package/dist/rich-reference/markdown-envelope.d.js +0 -0
- package/dist/rich-reference/markdown-envelope.d.ts +73 -0
- package/dist/rich-reference/markdown-envelope.js +1 -0
- package/dist/rich-reference/ports/audit-sink.d.js +0 -0
- package/dist/rich-reference/ports/audit-sink.d.ts +32 -0
- package/dist/rich-reference/ports/audit-sink.js +0 -0
- package/dist/rich-reference/ports/coarse-preferences-provider.d.js +0 -0
- package/dist/rich-reference/ports/coarse-preferences-provider.d.ts +39 -0
- package/dist/rich-reference/ports/coarse-preferences-provider.js +0 -0
- package/dist/rich-reference/ports/durable-audit-sink.d.js +0 -0
- package/dist/rich-reference/ports/durable-audit-sink.d.ts +46 -0
- package/dist/rich-reference/ports/durable-audit-sink.js +0 -0
- package/dist/rich-reference/ports/index.d.js +0 -0
- package/dist/rich-reference/ports/index.d.ts +12 -0
- package/dist/rich-reference/ports/index.js +0 -0
- package/dist/rich-reference/ports/kind-policy-provider.d.js +0 -0
- package/dist/rich-reference/ports/kind-policy-provider.d.ts +35 -0
- package/dist/rich-reference/ports/kind-policy-provider.js +0 -0
- package/dist/rich-reference/ports/subject-provider.d.js +0 -0
- package/dist/rich-reference/ports/subject-provider.d.ts +40 -0
- package/dist/rich-reference/ports/subject-provider.js +0 -0
- package/dist/rich-reference/redaction.d.js +0 -0
- package/dist/rich-reference/redaction.d.ts +23 -0
- package/dist/rich-reference/redaction.js +1 -0
- package/dist/rich-reference/registry.d.js +0 -0
- package/dist/rich-reference/registry.d.ts +35 -0
- package/dist/rich-reference/registry.js +1 -0
- package/dist/rich-reference/runtime/dev-invariants.d.ts +18 -0
- package/dist/rich-reference/runtime/dev-invariants.js +1 -0
- package/dist/rich-reference/runtime/dispatch.d.ts +48 -0
- package/dist/rich-reference/runtime/dispatch.js +1 -0
- package/dist/rich-reference/runtime/index.d.ts +16 -0
- package/dist/rich-reference/runtime/index.js +1 -0
- package/dist/rich-reference/runtime/redaction-enforcer.d.ts +21 -0
- package/dist/rich-reference/runtime/redaction-enforcer.js +1 -0
- package/dist/rich-reference/runtime/runtime.d.ts +27 -0
- package/dist/rich-reference/runtime/runtime.js +1 -0
- package/dist/rich-reference/types.d.js +0 -0
- package/dist/rich-reference/types.d.ts +66 -0
- package/dist/rich-reference/types.js +1 -0
- package/dist/runtime-adapters.d.js +0 -0
- package/dist/runtime-adapters.d.ts +25 -0
- package/dist/runtime-adapters.js +1 -0
- package/dist/schema-to-markdown.d.ts +56 -0
- package/dist/schema-to-markdown.js +10 -0
- package/dist/self-improving-system/constants.d.ts +14 -0
- package/dist/self-improving-system/constants.js +1 -0
- package/dist/self-improving-system/events.d.ts +1007 -0
- package/dist/self-improving-system/events.js +1 -0
- package/dist/self-improving-system/index.d.ts +7 -0
- package/dist/self-improving-system/index.js +1 -0
- package/dist/self-improving-system/operation-definitions.d.ts +1751 -0
- package/dist/self-improving-system/operation-definitions.js +1 -0
- package/dist/self-improving-system/operations.d.ts +1726 -0
- package/dist/self-improving-system/operations.js +1 -0
- package/dist/self-improving-system/registry.d.ts +9 -0
- package/dist/self-improving-system/registry.js +1 -0
- package/dist/self-improving-system/transport.d.ts +10 -0
- package/dist/self-improving-system/transport.js +1 -0
- package/dist/self-improving-system/types.d.ts +136 -0
- package/dist/self-improving-system/types.js +1 -0
- package/dist/self-improving-system/validation.d.ts +274 -0
- package/dist/self-improving-system/validation.js +1 -0
- package/dist/serialization/index.d.ts +10 -0
- package/dist/serialization/index.js +1 -0
- package/dist/serialization/serializers.d.ts +35 -0
- package/dist/serialization/serializers.js +1 -0
- package/dist/serialization/types.d.ts +100 -0
- package/dist/serialization/types.js +0 -0
- package/dist/shared/attach-context.d.js +0 -0
- package/dist/shared/attach-context.d.ts +83 -0
- package/dist/shared/attach-context.js +1 -0
- package/dist/shared/audit.d.js +0 -0
- package/dist/shared/audit.d.ts +93 -0
- package/dist/shared/audit.js +1 -0
- package/dist/shared/idempotency-shape.d.js +0 -0
- package/dist/shared/idempotency-shape.d.ts +63 -0
- package/dist/shared/idempotency-shape.js +1 -0
- package/dist/shared/idempotency.d.ts +64 -0
- package/dist/shared/idempotency.js +1 -0
- package/dist/shared/index.d.js +1 -0
- package/dist/shared/index.d.ts +39 -0
- package/dist/shared/index.js +1 -0
- package/dist/shared/window.d.js +0 -0
- package/dist/shared/window.d.ts +81 -0
- package/dist/shared/window.js +1 -0
- package/dist/shared-entities/index.d.ts +8 -0
- package/dist/shared-entities/index.js +1 -0
- package/dist/shared-entities/person.d.ts +50 -0
- package/dist/shared-entities/person.js +12 -0
- package/dist/shared-entities/project.d.ts +53 -0
- package/dist/shared-entities/project.js +4 -0
- package/dist/shared-entities/resource.d.ts +36 -0
- package/dist/shared-entities/resource.js +4 -0
- package/dist/shared-entities/task-validators.d.ts +24 -0
- package/dist/shared-entities/task-validators.js +1 -0
- package/dist/shared-entities/task.d.js +0 -0
- package/dist/shared-entities/task.d.ts +128 -0
- package/dist/shared-entities/task.js +1 -0
- package/dist/shared-entities/team.d.ts +44 -0
- package/dist/shared-entities/team.js +12 -0
- package/dist/sop/generation-sources.d.ts +57 -0
- package/dist/sop/generation-sources.js +5 -0
- package/dist/sop/index.d.ts +5 -0
- package/dist/sop/index.js +1 -0
- package/dist/sop/operations.d.ts +566 -0
- package/dist/sop/operations.js +1 -0
- package/dist/sop/sop.feature.d.ts +11 -0
- package/dist/sop/sop.feature.js +3 -0
- package/dist/sop/types.d.ts +144 -0
- package/dist/sop/types.js +0 -0
- package/dist/sop/validation.d.ts +9 -0
- package/dist/sop/validation.js +1 -0
- package/dist/structured-data/derive.d.js +0 -0
- package/dist/structured-data/derive.d.ts +61 -0
- package/dist/structured-data/derive.js +1 -0
- package/dist/structured-data/index.d.js +1 -0
- package/dist/structured-data/index.d.ts +3 -0
- package/dist/structured-data/index.js +1 -0
- package/dist/structured-data/kinds.d.js +0 -0
- package/dist/structured-data/kinds.d.ts +143 -0
- package/dist/structured-data/kinds.js +1 -0
- package/dist/structured-data/schema-guards.d.ts +1 -0
- package/dist/structured-data/schema-guards.js +0 -0
- package/dist/structured-data/validate.d.js +0 -0
- package/dist/structured-data/validate.d.ts +19 -0
- package/dist/structured-data/validate.js +1 -0
- package/dist/telemetry/anomaly.d.js +0 -0
- package/dist/telemetry/anomaly.d.ts +22 -0
- package/dist/telemetry/anomaly.js +1 -0
- package/dist/telemetry/delivery-v2.d.js +0 -0
- package/dist/telemetry/delivery-v2.d.ts +152 -0
- package/dist/telemetry/delivery-v2.js +1 -0
- package/dist/telemetry/index.d.js +1 -0
- package/dist/telemetry/index.d.ts +5 -0
- package/dist/telemetry/index.js +1 -0
- package/dist/telemetry/spec.d.js +0 -0
- package/dist/telemetry/spec.d.ts +89 -0
- package/dist/telemetry/spec.js +1 -0
- package/dist/telemetry/tracker.d.js +0 -0
- package/dist/telemetry/tracker.d.ts +48 -0
- package/dist/telemetry/tracker.js +1 -0
- package/dist/telemetry/v2-primitives.d.js +0 -0
- package/dist/telemetry/v2-primitives.d.ts +113 -0
- package/dist/telemetry/v2-primitives.js +1 -0
- package/dist/telemetry/v2-validation.d.js +0 -0
- package/dist/telemetry/v2-validation.d.ts +3 -0
- package/dist/telemetry/v2-validation.js +1 -0
- package/dist/telemetry/v2.d.js +1 -0
- package/dist/telemetry/v2.d.ts +520 -0
- package/dist/telemetry/v2.js +1 -0
- package/dist/tests/index.d.ts +2 -0
- package/dist/tests/index.js +1 -0
- package/dist/tests/runner.d.ts +38 -0
- package/dist/tests/runner.js +1 -0
- package/dist/tests/spec.d.js +0 -0
- package/dist/tests/spec.d.ts +84 -0
- package/dist/tests/spec.js +1 -0
- package/dist/themes.d.js +1 -0
- package/dist/themes.d.ts +248 -0
- package/dist/themes.js +1 -0
- package/dist/themes.platform-validation.d.js +0 -0
- package/dist/themes.platform-validation.d.ts +7 -0
- package/dist/themes.platform-validation.js +1 -0
- package/dist/themes.validation.d.js +0 -0
- package/dist/themes.validation.d.ts +18 -0
- package/dist/themes.validation.js +1 -0
- package/dist/translations/catalog.d.js +0 -0
- package/dist/translations/catalog.d.ts +25 -0
- package/dist/translations/catalog.js +0 -0
- package/dist/translations/diagnostics.d.js +0 -0
- package/dist/translations/diagnostics.d.ts +92 -0
- package/dist/translations/diagnostics.js +1 -0
- package/dist/translations/i18n-factory-snapshot.d.js +0 -0
- package/dist/translations/i18n-factory-snapshot.d.ts +86 -0
- package/dist/translations/i18n-factory-snapshot.js +1 -0
- package/dist/translations/i18n-factory.d.js +0 -0
- package/dist/translations/i18n-factory.d.ts +149 -0
- package/dist/translations/i18n-factory.js +1 -0
- package/dist/translations/index.d.js +1 -0
- package/dist/translations/index.d.ts +48 -0
- package/dist/translations/index.js +1 -0
- package/dist/translations/locale.d.js +0 -0
- package/dist/translations/locale.d.ts +9 -0
- package/dist/translations/locale.js +1 -0
- package/dist/translations/registry.d.js +0 -0
- package/dist/translations/registry.d.ts +179 -0
- package/dist/translations/registry.js +1 -0
- package/dist/translations/spec.d.js +0 -0
- package/dist/translations/spec.d.ts +296 -0
- package/dist/translations/spec.js +1 -0
- package/dist/translations/tenant.d.js +0 -0
- package/dist/translations/tenant.d.ts +11 -0
- package/dist/translations/tenant.js +0 -0
- package/dist/translations/validation.d.js +0 -0
- package/dist/translations/validation.d.ts +165 -0
- package/dist/translations/validation.js +1 -0
- package/dist/types.d.js +0 -0
- package/dist/types.d.ts +310 -0
- package/dist/types.js +1 -0
- package/dist/utils/safe-json.d.ts +10 -0
- package/dist/utils/safe-json.js +1 -0
- package/dist/versioning/index.d.js +1 -0
- package/dist/versioning/index.d.ts +12 -0
- package/dist/versioning/index.js +1 -0
- package/dist/versioning/refs.d.js +0 -0
- package/dist/versioning/refs.d.ts +176 -0
- package/dist/versioning/refs.js +1 -0
- package/dist/versioning/release-types.d.js +0 -0
- package/dist/versioning/release-types.d.ts +142 -0
- package/dist/versioning/release-types.js +0 -0
- package/dist/versioning/release-utils.d.js +0 -0
- package/dist/versioning/release-utils.d.ts +5 -0
- package/dist/versioning/release-utils.js +1 -0
- package/dist/versioning/schema.d.js +0 -0
- package/dist/versioning/schema.d.ts +24 -0
- package/dist/versioning/schema.js +1 -0
- package/dist/versioning/types.d.js +0 -0
- package/dist/versioning/types.d.ts +130 -0
- package/dist/versioning/types.js +1 -0
- package/dist/versioning/utils.d.js +0 -0
- package/dist/versioning/utils.d.ts +93 -0
- package/dist/versioning/utils.js +1 -0
- package/dist/visual-scenarios/index.d.ts +4 -0
- package/dist/visual-scenarios/index.js +1 -0
- package/dist/visual-scenarios/platform.d.ts +2 -0
- package/dist/visual-scenarios/platform.js +1 -0
- package/dist/visual-scenarios/registry.d.js +0 -0
- package/dist/visual-scenarios/registry.d.ts +6 -0
- package/dist/visual-scenarios/registry.js +1 -0
- package/dist/visual-scenarios/spec.d.js +0 -0
- package/dist/visual-scenarios/spec.d.ts +94 -0
- package/dist/visual-scenarios/spec.js +1 -0
- package/dist/visual-scenarios/validation-authoring.d.ts +5 -0
- package/dist/visual-scenarios/validation-authoring.js +1 -0
- package/dist/visual-scenarios/validation.d.ts +17 -0
- package/dist/visual-scenarios/validation.js +1 -0
- package/dist/visualizations/index.d.ts +4 -0
- package/dist/visualizations/index.js +1 -0
- package/dist/visualizations/registry.d.js +0 -0
- package/dist/visualizations/registry.d.ts +6 -0
- package/dist/visualizations/registry.js +1 -0
- package/dist/visualizations/spec.d.js +0 -0
- package/dist/visualizations/spec.d.ts +16 -0
- package/dist/visualizations/spec.js +1 -0
- package/dist/visualizations/types.d.js +0 -0
- package/dist/visualizations/types.d.ts +187 -0
- package/dist/visualizations/types.js +1 -0
- package/dist/workflow/adapters/db-adapter.d.ts +43 -0
- package/dist/workflow/adapters/db-adapter.js +1 -0
- package/dist/workflow/adapters/file-adapter.d.ts +10 -0
- package/dist/workflow/adapters/file-adapter.js +1 -0
- package/dist/workflow/adapters/index.d.ts +3 -0
- package/dist/workflow/adapters/index.js +1 -0
- package/dist/workflow/adapters/memory-store.d.ts +13 -0
- package/dist/workflow/adapters/memory-store.js +1 -0
- package/dist/workflow/context.d.ts +217 -0
- package/dist/workflow/context.js +1 -0
- package/dist/workflow/dag-utils.d.ts +18 -0
- package/dist/workflow/dag-utils.js +1 -0
- package/dist/workflow/expression.d.ts +6 -0
- package/dist/workflow/expression.js +1 -0
- package/dist/workflow/index.d.ts +10 -0
- package/dist/workflow/index.js +1 -0
- package/dist/workflow/runner.d.ts +103 -0
- package/dist/workflow/runner.js +1 -0
- package/dist/workflow/sla-monitor.d.ts +16 -0
- package/dist/workflow/sla-monitor.js +1 -0
- package/dist/workflow/spec.d.js +0 -0
- package/dist/workflow/spec.d.ts +203 -0
- package/dist/workflow/spec.js +1 -0
- package/dist/workflow/state.d.ts +46 -0
- package/dist/workflow/state.js +0 -0
- package/dist/workflow/validation-workflow-devkit.d.ts +3 -0
- package/dist/workflow/validation-workflow-devkit.js +1 -0
- package/dist/workflow/validation.d.ts +93 -0
- package/dist/workflow/validation.js +1 -0
- package/dist/workflow/workflow-devkit.d.js +0 -0
- package/dist/workflow/workflow-devkit.d.ts +74 -0
- package/dist/workflow/workflow-devkit.js +0 -0
- package/dist/workflow/workflow-sdk.d.ts +8 -0
- package/dist/workflow/workflow-sdk.js +1 -0
- package/dist/workspace-config/contractsrc-schema.d.ts +226 -0
- package/dist/workspace-config/contractsrc-schema.js +1 -0
- package/dist/workspace-config/contractsrc-types.d.ts +707 -0
- package/dist/workspace-config/contractsrc-types.js +0 -0
- package/dist/workspace-config/environment-validation-alias.d.ts +3 -0
- package/dist/workspace-config/environment-validation-alias.js +1 -0
- package/dist/workspace-config/environment-validation.d.ts +4 -0
- package/dist/workspace-config/environment-validation.js +1 -0
- package/dist/workspace-config/environment.d.ts +77 -0
- package/dist/workspace-config/environment.js +1 -0
- package/dist/workspace-config/index.d.ts +13 -0
- package/dist/workspace-config/index.js +1 -0
- package/dist/workspace-config/lssm-os-config.fixture.d.ts +2 -0
- package/dist/workspace-config/lssm-os-config.fixture.js +1 -0
- package/dist/workspace-config/lssm-os-constraints.d.ts +14 -0
- package/dist/workspace-config/lssm-os-constraints.js +1 -0
- package/dist/workspace-config/lssm-os-extension-schema.d.ts +3 -0
- package/dist/workspace-config/lssm-os-extension-schema.js +1 -0
- package/dist/workspace-config/lssm-os-inheritance.d.ts +3 -0
- package/dist/workspace-config/lssm-os-inheritance.js +1 -0
- package/dist/workspace-config/lssm-os-policy-merge.d.ts +3 -0
- package/dist/workspace-config/lssm-os-policy-merge.js +1 -0
- package/dist/workspace-config/lssm-os-provider-merge.d.ts +3 -0
- package/dist/workspace-config/lssm-os-provider-merge.js +1 -0
- package/dist/workspace-config/lssm-os-schema.d.ts +20 -0
- package/dist/workspace-config/lssm-os-schema.js +1 -0
- package/dist/workspace-config/lssm-os-secrets.d.ts +2 -0
- package/dist/workspace-config/lssm-os-secrets.js +1 -0
- package/dist/workspace-config/lssm-os-types.d.ts +125 -0
- package/dist/workspace-config/lssm-os-types.js +1 -0
- package/package.json +22130 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./application.js";export*from"./automation/index.js";export*from"./bindings.js";export*from"./budget.js";export*from"./common.js";export*from"./delegation.js";export*from"./execution.js";export*from"./graph-validation.js";export*from"./help.js";export*from"./markdown-migration.js";export*from"./memory.js";export*from"./memory-governance.js";export*from"./memory-validation.js";export*from"./model-fallback-validation-v2.js";export*from"./model-invocation-profile.js";export*from"./model-route-contracts-v2.js";export*from"./model-routing.js";export*from"./model-routing-migration.js";export*from"./model-routing-v2.js";export*from"./model-selection-validation-v2.js";export*from"./model-serving-validation-v2.js";export*from"./planning.js";export*from"./reflection.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{sha256Hex as c}from"@lssm/lib.crypto-utils";import{z as r}from"zod";import{canonicalJsonString as u}from"../../rich-reference/canonical-serializer.js";import{agentProtocolDigestSchema as l,agentProtocolRefSchema as d,agentProtocolTimestampSchema as p,agentScopeV1Schema as w}from"./common.js";export const AGENT_MARKDOWN_MIGRATION_V1="contractspec.agent.markdown-migration.v1";export function classifyAgentMigrationPathV1(e,t){const n=t.split("/");if(t.length>512||n.some((o)=>!/^[a-zA-Z0-9_][a-zA-Z0-9_.-]*$/.test(o)||o.endsWith(".")||/^(con|prn|aux|nul|com[1-9]|lpt[1-9])(?:\.|$)/i.test(o)))throw Error("agent_migration.unsafe_path");if(e==="hermes"&&/^memories\/(MEMORY|USER)\.md$/.test(t))return"memory_markdown";if(e==="openclaw"&&(/^(MEMORY|USER)\.md$/.test(t)||/^memory\/.+\.md$/.test(t)))return"memory_markdown";if(/^skills\/[a-z0-9][a-z0-9_-]*\/(?:SKILL\.md|references\/.+\.md)$/.test(t))return"skill_markdown";throw Error("agent_migration.unsupported_file")}const k=r.object({path:r.string().min(1).max(512),kind:r.enum(["memory_markdown","skill_markdown"]),content:r.string().max(524288),contentHash:l}).strict(),M={schemaVersion:r.literal(AGENT_MARKDOWN_MIGRATION_V1),id:d,scope:w,sourceRuntime:r.enum(["hermes","openclaw"]),sourceVersion:d,sourceRootRef:d,createdAt:p,classification:r.literal("restricted"),trust:r.literal("unreviewed"),activation:r.literal("disabled"),effectAuthority:r.literal("none"),requiresCredentialReconnection:r.literal(!0),files:r.array(k).min(1).max(512)};export const agentMarkdownMigrationArchiveV1Schema=r.object({...M,archiveDigest:l}).strict().superRefine((e,t)=>{const n=new Set;let o=0;for(const[a,i]of e.files.entries()){try{if(classifyAgentMigrationPathV1(e.sourceRuntime,i.path)!==i.kind)throw Error("kind mismatch")}catch{t.addIssue({code:"custom",path:["files",a,"path"],message:"Unsupported or unsafe migration path/kind"})}const m=i.path.toLowerCase();if(n.has(m))t.addIssue({code:"custom",path:["files",a],message:"Duplicate portable path"});n.add(m);o+=new TextEncoder().encode(i.content).length;if(i.contentHash!==`sha256:${c(i.content)}`)t.addIssue({code:"custom",path:["files",a,"contentHash"],message:"Content hash mismatch"});if(i.kind==="skill_markdown"&&!e.files.some((f)=>f.path===`${i.path.split("/").slice(0,2).join("/")}/SKILL.md`))t.addIssue({code:"custom",path:["files",a],message:"Skill definition is required with references"})}if(o>8388608)t.addIssue({code:"custom",path:["files"],message:"Archive exceeds the decoded byte limit"});const{archiveDigest:s,...g}=e;if(s!==h(g))t.addIssue({code:"custom",path:["archiveDigest"],message:"Archive digest mismatch"})});export function createAgentMarkdownMigrationArchiveV1(e){if(e.files.length<1||e.files.length>512)throw Error("agent_migration.invalid_file_count");let t=0;for(const o of e.files){if(o.content.length>524288)throw Error("agent_migration.file_too_large");t+=new TextEncoder().encode(o.content).length;if(t>8388608)throw Error("agent_migration.archive_too_large")}const n={schemaVersion:AGENT_MARKDOWN_MIGRATION_V1,id:e.id,scope:e.scope,sourceRuntime:e.sourceRuntime,sourceVersion:e.sourceVersion,sourceRootRef:e.sourceRootRef,createdAt:e.createdAt,classification:"restricted",trust:"unreviewed",activation:"disabled",effectAuthority:"none",requiresCredentialReconnection:!0,files:e.files.map((o)=>({path:o.path,content:o.content,kind:classifyAgentMigrationPathV1(e.sourceRuntime,o.path),contentHash:`sha256:${c(o.content)}`})).sort((o,s)=>o.path<s.path?-1:o.path>s.path?1:0)};return agentMarkdownMigrationArchiveV1Schema.parse({...n,archiveDigest:h(n)})}export function serializeAgentMarkdownMigrationV1(e){return JSON.stringify(agentMarkdownMigrationArchiveV1Schema.parse(e))}export function parseAgentMarkdownMigrationV1(e){if(new TextEncoder().encode(e).length>67108864)throw Error("agent_migration.archive_too_large");return agentMarkdownMigrationArchiveV1Schema.parse(JSON.parse(e))}export const AgentMarkdownMigrationV1DocBlock={id:"docs.tech.agent.markdown-migration-v1",title:"Reviewable external agent Markdown archives",kind:"reference",visibility:"public",route:"/docs/tech/agent/markdown-migration-v1",body:"Versioned restricted archives preserve selected Hermes/OpenClaw Markdown memory and skill definitions with content hashes, source provenance and disabled activation. Import data never grants permissions. Memory proposals remain owned by PersonalOS or CompanyOS governance. This initial slice does not migrate schedules, channel configuration, skill scripts/assets, or external memory databases. Hosts must authorize source selection and storage; archive data must not be logged or published as ordinary telemetry."};function h(e){const{files:t,...n}=e;return`sha256:${c(u({...n,files:t.map(({content:o,...s})=>s)}))}`}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{sha256Hex as g}from"@lssm/lib.crypto-utils";import{z as o}from"zod";import{canonicalJsonString as u}from"../../rich-reference/canonical-serializer.js";import{agentArtifactBindingV1Schema as t,agentProtocolDigestSchema as s,agentProtocolEvidencePointerSchema as p,agentProtocolRefSchema as n,agentProtocolTimestampSchema as c,agentScopeV1Schema as a}from"./common.js";export const AGENT_MEMORY_OWNER_DECISION_V1="contractspec.agent.memory-owner-decision.v1",AGENT_MEMORY_MUTATION_RECEIPT_V1="contractspec.agent.memory-mutation-receipt.v1",AGENT_MEMORY_PROJECTION_V1="contractspec.agent.memory-projection.v1",AGENT_MEMORY_PROJECTION_REVOCATION_V1="contractspec.agent.memory-projection-revocation.v1";const d=o.enum(["personal_os","company_os"]),y=o.enum(["create","correct","revoke","delete"]);export const agentMemoryOwnerDecisionV1Schema=o.object({schemaVersion:o.literal(AGENT_MEMORY_OWNER_DECISION_V1),id:n,scope:a,proposal:t,memoryOwner:d,decision:o.enum(["promote","reject","request_help"]),expectedRevision:o.number().int().nonnegative(),consentDecision:t.optional(),policyDecision:t.optional(),retentionDecision:t.optional(),authorityDecision:t.optional(),helpRequestRef:n.optional(),reasonSummary:n,evidence:o.array(p).min(1),effectAuthority:o.literal("none"),decidedAt:c,decisionDigest:s}).strict().superRefine((e,i)=>{const r=[e.consentDecision,e.policyDecision,e.retentionDecision,e.authorityDecision];if(e.decision==="promote"&&r.some((m)=>!m))i.addIssue({code:o.ZodIssueCode.custom,path:["decision"],message:"Promotion requires consent, policy, retention, and authority"});if(e.decision==="request_help"&&!e.helpRequestRef)i.addIssue({code:o.ZodIssueCode.custom,path:["helpRequestRef"],message:"A help decision requires a help request reference"})}),agentMemoryMutationReceiptV1Schema=o.object({schemaVersion:o.literal(AGENT_MEMORY_MUTATION_RECEIPT_V1),id:n,scope:a,proposal:t,ownerDecision:t,memoryOwner:d,operation:y,memoryRef:n,previousRevision:o.number().int().nonnegative(),revision:o.number().int().positive(),state:o.enum(["active","revoked","deleted"]),content:t.optional(),sourceRefs:o.array(n).min(1),evidence:o.array(p).min(1),committedAt:c,receiptDigest:s}).strict().superRefine((e,i)=>{if(e.revision!==e.previousRevision+1)i.addIssue({code:o.ZodIssueCode.custom,path:["revision"],message:"Memory mutation revision must increment exactly once"});if((e.operation==="create"||e.operation==="correct")!==Boolean(e.content))i.addIssue({code:o.ZodIssueCode.custom,path:["content"],message:"Create/correct require content; revoke/delete forbid it"});const m=e.operation==="revoke"?"revoked":e.operation==="delete"?"deleted":"active";if(e.state!==m)i.addIssue({code:o.ZodIssueCode.custom,path:["state"],message:"Memory state does not match its committed operation"})}),agentMemoryProjectionV1Schema=o.object({schemaVersion:o.literal(AGENT_MEMORY_PROJECTION_V1),id:n,sourceMemoryReceipt:t,sourceScope:a,targetScope:a,purpose:n,authorizationDecision:t,content:t,dataCategoryRefs:o.array(n).min(1),createdAt:c,expiresAt:c,effectAuthority:o.literal("none"),projectionDigest:s}).strict().superRefine((e,i)=>{if(Date.parse(e.expiresAt)<=Date.parse(e.createdAt))i.addIssue({code:o.ZodIssueCode.custom,path:["expiresAt"],message:"Memory projection expiry must follow creation"})}),agentMemoryProjectionRevocationV1Schema=o.object({schemaVersion:o.literal(AGENT_MEMORY_PROJECTION_REVOCATION_V1),id:n,projection:t,authorityDecision:t,reasonSummary:n,evidence:o.array(p).min(1),effectiveAt:c,receiptDigest:s}).strict();export function digestAgentMemoryGovernanceArtifactV1(e,i){const r={...e};delete r[i];return`sha256:${g(u(r))}`}export function verifyAgentMemoryOwnerDecisionDigestV1(e){return e.decisionDigest===digestAgentMemoryGovernanceArtifactV1(e,"decisionDigest")}export function verifyAgentMemoryMutationReceiptDigestV1(e){return e.receiptDigest===digestAgentMemoryGovernanceArtifactV1(e,"receiptDigest")}export function verifyAgentMemoryProjectionDigestV1(e){return e.projectionDigest===digestAgentMemoryGovernanceArtifactV1(e,"projectionDigest")}export function verifyAgentMemoryProjectionRevocationDigestV1(e){return e.receiptDigest===digestAgentMemoryGovernanceArtifactV1(e,"receiptDigest")}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{validateAgentScopeExactV1 as r}from"./common.js";import{verifyAgentMemoryProposalArtifactV1 as s}from"./memory.js";import{verifyAgentMemoryMutationReceiptDigestV1 as i,verifyAgentMemoryOwnerDecisionDigestV1 as c,verifyAgentMemoryProjectionDigestV1 as t,verifyAgentMemoryProjectionRevocationDigestV1 as p}from"./memory-governance.js";export function validateAgentMemoryOwnerDecisionV1(e){const o=r({expected:e.proposal.proposal.scope,observed:e.decision.scope});if(!s(e.proposal))o.push("Memory proposal digest is invalid");if(!c(e.decision))o.push("Memory owner decision digest is invalid");if(e.decision.proposal.ref!==e.proposal.proposal.id||e.decision.proposal.digest!==e.proposal.proposalDigest)o.push("Memory owner decision proposal binding does not match");if(e.decision.memoryOwner!==e.proposal.proposal.memoryOwner)o.push("Memory owner decision changes the proposal owner");if(e.decision.decision==="promote"&&(e.decision.consentDecision?.ref!==e.proposal.proposal.consentRequirementRef||e.decision.policyDecision?.ref!==e.proposal.proposal.policyRef||e.decision.retentionDecision?.ref!==e.proposal.proposal.retentionPolicyRef))o.push("Memory owner decision governance bindings do not match the proposal");if(e.decision.expectedRevision!==e.proposal.proposal.expectedRevision)o.push("Memory owner decision changes the expected revision");return o}export function validateAgentMemoryMutationReceiptV1(e){const o=validateAgentMemoryOwnerDecisionV1(e);o.push(...r({expected:e.proposal.proposal.scope,observed:e.receipt.scope}));if(e.decision.decision!=="promote")o.push("Only a promoted memory proposal may produce a receipt");if(!i(e.receipt))o.push("Memory mutation receipt digest is invalid");if(e.receipt.proposal.ref!==e.proposal.proposal.id||e.receipt.proposal.digest!==e.proposal.proposalDigest)o.push("Memory receipt proposal binding does not match");if(e.receipt.ownerDecision.ref!==e.decision.id)o.push("Memory receipt owner decision reference does not match");if(e.receipt.ownerDecision.digest!==e.decision.decisionDigest)o.push("Memory receipt owner decision digest does not match");if(e.receipt.operation!==e.proposal.proposal.operation)o.push("Memory receipt operation does not match the proposal");if(e.receipt.memoryOwner!==e.proposal.proposal.memoryOwner)o.push("Memory receipt changes the proposal owner");if(e.receipt.previousRevision!==e.proposal.proposal.expectedRevision)o.push("Memory receipt does not advance the expected revision");if(Date.parse(e.receipt.committedAt)<Date.parse(e.decision.decidedAt))o.push("Memory receipt predates its owner decision");if(JSON.stringify([...e.receipt.sourceRefs].sort())!==JSON.stringify([...e.proposal.proposal.sourceRefs].sort()))o.push("Memory receipt sources do not match the proposal");if(e.proposal.targetMemoryRef&&e.receipt.memoryRef!==e.proposal.targetMemoryRef)o.push("Memory receipt target does not match the proposal");if(e.receipt.content&&(e.receipt.content.ref!==e.proposal.proposal.contentRef||e.receipt.content.digest!==e.proposal.proposal.contentHash))o.push("Memory receipt content does not match the proposal");return o}export function validateAgentMemoryProjectionRevocationV1(e){const o=[];if(!t(e.projection))o.push("Memory projection digest is invalid");if(!p(e.revocation))o.push("Memory projection revocation digest is invalid");if(e.revocation.projection.ref!==e.projection.id||e.revocation.projection.digest!==e.projection.projectionDigest)o.push("Memory projection revocation binding does not match");if(Date.parse(e.revocation.effectiveAt)<Date.parse(e.projection.createdAt))o.push("Memory projection revocation predates the projection");return o}export function validateAgentMemoryProjectionV1(e){const o=r({expected:e.receipt.scope,observed:e.projection.sourceScope});if(e.receipt.state!=="active"||!e.receipt.content)o.push("Only active memory content may be projected");if(!i(e.receipt))o.push("Memory mutation receipt digest is invalid");if(!t(e.projection))o.push("Memory projection digest is invalid");if(e.projection.sourceMemoryReceipt.ref!==e.receipt.id||e.projection.sourceMemoryReceipt.digest!==e.receipt.receiptDigest)o.push("Memory projection source receipt binding does not match");if(e.receipt.content&&(e.projection.content.ref!==e.receipt.content.ref||e.projection.content.digest!==e.receipt.content.digest))o.push("Memory projection content binding does not match");return o}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{sha256Hex as s}from"@lssm/lib.crypto-utils";import{z as o}from"zod";import{canonicalJsonString as c}from"../../rich-reference/canonical-serializer.js";import{agentProtocolDigestSchema as n,agentProtocolEvidencePointerSchema as i,agentProtocolRefSchema as r,agentProtocolTimestampSchema as p,agentScopeV1Schema as m}from"./common.js";export const AGENT_MEMORY_PROPOSAL_V1="contractspec.agent.memory-proposal.v1",AGENT_MEMORY_PROPOSAL_ARTIFACT_V1="contractspec.agent.memory-proposal-artifact.v1",agentMemoryProposalV1Schema=o.object({schemaVersion:o.literal(AGENT_MEMORY_PROPOSAL_V1),id:r,runRef:r,scope:m,memoryOwner:o.enum(["personal_os","company_os"]),purpose:r,operation:o.enum(["create","correct","revoke","delete"]),contentRef:r.optional(),contentHash:n.optional(),sourceRefs:o.array(r).min(1),evidence:o.array(i).min(1),confidenceScore:o.number().min(0).max(1),consentRequirementRef:r,policyRef:r,retentionPolicyRef:r,expectedRevision:o.number().int().nonnegative(),status:o.literal("proposed"),createdAt:p}).strict().superRefine((e,t)=>{const a=e.operation==="create"||e.operation==="correct";if(a&&(!e.contentRef||!e.contentHash))t.addIssue({code:o.ZodIssueCode.custom,path:["contentRef"],message:"Create and correction proposals require hashed content"});if(!a&&(e.contentRef||e.contentHash))t.addIssue({code:o.ZodIssueCode.custom,path:["contentRef"],message:"Revocation and deletion proposals identify sources without embedding content"})}),agentMemoryProposalArtifactV1Schema=o.object({schemaVersion:o.literal(AGENT_MEMORY_PROPOSAL_ARTIFACT_V1),proposal:agentMemoryProposalV1Schema,targetMemoryRef:r.optional(),proposalDigest:n}).strict().superRefine((e,t)=>{if(e.proposal.operation==="create"===Boolean(e.targetMemoryRef))t.addIssue({code:o.ZodIssueCode.custom,path:["targetMemoryRef"],message:"Create proposals cannot target memory; other operations require a target"})});export function digestAgentMemoryProposalArtifactV1(e){return`sha256:${s(c(e))}`}export function createAgentMemoryProposalArtifactV1(e){const t={schemaVersion:AGENT_MEMORY_PROPOSAL_ARTIFACT_V1,proposal:agentMemoryProposalV1Schema.parse(e.proposal),...e.targetMemoryRef?{targetMemoryRef:e.targetMemoryRef}:{}};return agentMemoryProposalArtifactV1Schema.parse({...t,proposalDigest:digestAgentMemoryProposalArtifactV1(t)})}export function verifyAgentMemoryProposalArtifactV1(e){const{proposalDigest:t,...a}=e;return t===digestAgentMemoryProposalArtifactV1(a)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{routeBindingMatchesModelCandidateV2 as d,validateAgentModelSelectionBindingV2 as g,validateModelCandidateV2 as r}from"./model-selection-validation-v2.js";export function validateAgentModelFallbackEquivalenceV2(e){const i=f(e);i.push(...g({plan:e.plan,selection:e.selection,candidate:e.from,now:e.now}).map((o)=>`Fallback source ${o}`));const s=e.consideredCandidates.map((o)=>o.route.id),t=e.decision.consideredRoutes.map((o)=>o.ref);if(new Set(t).size!==t.length)i.push("Fallback considered routes must be unique");for(const[o,n]of e.decision.consideredRoutes.entries()){const a=e.consideredCandidates[o],l=e.eligibility[o];if(!a||!d(n,a))i.push(`Fallback considered route has a stale binding: ${n.ref}`);if(!a||!l||!d(l.route,a)||n.eligibility!==l.status||n.eligibilityEvidence.ref!==l.evidence.ref||n.eligibilityEvidence.digest!==l.evidence.digest)i.push(`Fallback eligibility binding is stale: ${n.ref}`)}if(JSON.stringify(s)!==JSON.stringify(t))i.push("Fallback considered-route order does not match candidates");const c=e.consideredCandidates.find((o,n)=>e.eligibility[n]?.status==="eligible"&&r({plan:e.plan,selection:e.selection,candidate:o,now:e.now}).length===0);i.push(...r({plan:e.plan,selection:e.selection,candidate:e.to,now:e.now}).map((o)=>`Fallback ${o.replace("Model route","route")}`));if(!c||c.route.id!==e.to.route.id)i.push("Fallback target is not the first eligible considered route");if(e.decision.decision==="allowed"&&i.length>0)i.push("Fallback cannot be allowed when equivalence checks fail");return i}function f(e){const i=[];if(e.decision.checkpoint.ref!==e.checkpoint.id||e.decision.checkpoint.digest!==e.checkpoint.stateDigest||e.checkpoint.runRef!==e.selection.runRef||e.checkpoint.plan.ref!==e.plan.id||e.checkpoint.plan.digest!==e.plan.planDigest)i.push("Fallback checkpoint does not match the selected plan and run");if(e.decision.decision==="allowed"&&e.checkpoint.providerOutcome==="indeterminate")i.push("Fallback cannot proceed from an indeterminate provider outcome");if(e.decision.selection.ref!==e.selection.id||e.decision.selection.digest!==e.selection.selectionDigest)i.push("Fallback selection binding does not match");if(e.decision.runRef!==e.selection.runRef)i.push("Fallback run does not match the model selection");for(const[s,t,c]of[["source",e.decision.fromRoute,e.from],["target",e.decision.toRoute,e.to]])if(!d(t,c))i.push(`Fallback ${s} route binding does not match`);if(!d(e.selection.selectedRoute,e.from))i.push("Fallback source is not the originally selected route");if(e.from.route.invocationProfile.ref!==e.to.route.invocationProfile.ref||e.from.route.invocationProfile.digest!==e.to.route.invocationProfile.digest)i.push("Fallback cannot change the qualified invocation profile");return i}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function validateAgentModelFallbackOriginV1(e){const i=[];if(e.decision.checkpoint.ref!==e.checkpoint.id||e.decision.checkpoint.digest!==e.checkpoint.stateDigest||e.checkpoint.runRef!==e.selection.runRef||e.checkpoint.plan.ref!==e.plan.id||e.checkpoint.plan.digest!==e.plan.planDigest)i.push("Fallback checkpoint does not match the selected plan and run");if(e.decision.decision==="allowed"&&e.checkpoint.providerOutcome==="indeterminate")i.push("Fallback cannot proceed from an indeterminate provider outcome");if(e.decision.selection.ref!==e.selection.id||e.decision.selection.digest!==e.selection.selectionDigest)i.push("Fallback selection binding does not match");if(e.decision.runRef!==e.selection.runRef)i.push("Fallback run does not match the model selection");for(const[l,n,c]of[["source",e.decision.fromRoute,e.from],["target",e.decision.toRoute,e.to]])if(n.ref!==c.route.id||n.version!==c.route.version||n.routeDigest!==c.route.routeDigest||n.capabilityProfile.ref!==c.profile.id||n.capabilityProfile.digest!==c.profile.profileDigest||n.qualification.ref!==c.qualification.id||n.qualification.digest!==c.qualification.qualificationDigest)i.push(`Fallback ${l} route binding does not match`);const o=e.selection.selectedRoute,t=e.decision.fromRoute;if(t.ref!==o.ref||t.version!==o.version||t.routeDigest!==o.routeDigest||t.capabilityProfile.ref!==o.capabilityProfile.ref||t.capabilityProfile.digest!==o.capabilityProfile.digest||t.qualification.ref!==o.qualification.ref||t.qualification.digest!==o.qualification.digest)i.push("Fallback source is not the originally selected route");return i}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as o}from"zod";import{agentArtifactBindingV1Schema as t,agentProtocolDigestSchema as i,agentProtocolRefSchema as n}from"./common.js";export const AGENT_MODEL_INVOCATION_PROFILE_V1="contractspec.agent.model-invocation-profile.v1";const r=n.refine((e)=>!e.toLowerCase().includes("latest")&&!/[*?]/.test(e),"Invocation profile versions must be pinned");export const agentModelInvocationProfileV1Schema=o.object({schemaVersion:o.literal(AGENT_MODEL_INVOCATION_PROFILE_V1),id:n,version:r,maxOutputTokens:o.number().int().positive(),sampling:o.object({temperature:o.number().min(0).max(2).optional()}).strict(),outputValidator:t.optional(),providerOptions:t.optional(),invocationProfileDigest:i}).strict();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as o}from"zod";import{agentArtifactBindingV1Schema as n,agentProtocolDigestSchema as s,agentProtocolEvidencePointerSchema as c,agentProtocolRefSchema as i,agentProtocolReleaseShaSchema as l,agentProtocolTimestampSchema as r}from"./common.js";export const AGENT_MODEL_CAPABILITY_PROFILE_V2="contractspec.agent.model-capability-profile.v2",AGENT_MODEL_ROUTE_V2="contractspec.agent.model-route.v2",AGENT_MODEL_QUALIFICATION_V2="contractspec.agent.model-qualification.v2";const t=i.refine((e)=>!e.toLowerCase().includes("latest")&&!/[*?]/.test(e),"Production model and artifact identifiers must be pinned");export const agentModelCapabilityProfileV2Schema=o.object({schemaVersion:o.literal(AGENT_MODEL_CAPABILITY_PROFILE_V2),id:i,modelAuthorRef:i,modelFamilyRef:i.optional(),modelId:t,modelVersion:t,contextWindowTokens:o.number().int().positive(),maxOutputTokens:o.number().int().positive(),capabilities:o.array(i).min(1),supportsStrictToolSchemas:o.boolean(),supportsParallelToolCalls:o.boolean(),profileDigest:s}).strict().superRefine((e,a)=>{if(e.maxOutputTokens>e.contextWindowTokens)a.addIssue({code:"custom",path:["maxOutputTokens"],message:"Model output limit cannot exceed its context window"});if(new Set(e.capabilities).size!==e.capabilities.length)a.addIssue({code:"custom",path:["capabilities"],message:"Model capabilities must be unique"})}),agentModelServingIdentityV2Schema=o.object({inferenceProviderRef:i,deploymentRef:t,gatewayRef:i.optional(),adapterRef:t,commercialPolicyRef:t,connection:n,connectionVersion:t,region:i,transportProfileRef:t,authenticationProfileRef:t,privacyPolicyRef:t,residencyPolicyRef:t,retentionPolicyRef:t,riskPolicyRef:t,priceProfileRef:t,latencyClass:o.enum(["interactive","standard","batch"])}).strict(),agentModelRouteV2Schema=o.object({schemaVersion:o.literal(AGENT_MODEL_ROUTE_V2),id:i,version:t,capabilityProfile:n,modelId:t,modelVersion:t,serving:agentModelServingIdentityV2Schema,invocationProfile:n,secretRef:i,availabilityClass:o.enum(["primary","fallback","degraded"]),qualificationRef:i,routeDigest:s}).strict(),agentModelOperationBindingV2Schema=o.discriminatedUnion("kind",[o.object({kind:o.literal("operation_contract"),ref:i,version:t,digest:s}).strict(),o.object({kind:o.literal("plan_step"),ref:i,digest:s}).strict()]),agentModelQualificationV2Schema=o.object({schemaVersion:o.literal(AGENT_MODEL_QUALIFICATION_V2),id:i,routeRef:i,routeVersion:t,routeDigest:s,applicationRef:i,applicationVersion:t,purposeRef:i,operation:agentModelOperationBindingV2Schema.optional(),promptVersion:t,toolSchemaVersions:o.array(t),contextCompilerVersion:t,evaluatorVersion:t,policyVersion:t,sandboxDigest:s,releaseSha:l,invocationProfile:n,evaluationDecision:n,dataset:n,status:o.enum(["unqualified","simulated","live_verified","revoked","rejected"]),evidence:o.array(c),qualifiedAt:r.optional(),expiresAt:r.optional(),revokedAt:r.optional(),revocationReasonRef:i.optional(),qualificationDigest:s}).strict().superRefine((e,a)=>{if((e.status==="simulated"||e.status==="live_verified")&&e.evidence.length===0)a.addIssue({code:"custom",path:["evidence"],message:"Positive qualification requires evidence"});if(e.status==="live_verified"){if(!e.qualifiedAt||!e.expiresAt)a.addIssue({code:"custom",path:["expiresAt"],message:"Live qualification requires timestamps and expiry"});else if(Date.parse(e.expiresAt)<=Date.parse(e.qualifiedAt))a.addIssue({code:"custom",path:["expiresAt"],message:"Qualification expiry must follow qualification time"})}if(e.status==="revoked"&&(!e.expiresAt||!e.revokedAt||!e.revocationReasonRef||e.evidence.length===0))a.addIssue({code:"custom",path:["revokedAt"],message:"Revocation requires time, reason, and evidence"});if(e.status!=="revoked"&&(e.revokedAt||e.revocationReasonRef))a.addIssue({code:"custom",path:["status"],message:"Only revoked qualification can carry revocation fields"})});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as t}from"zod";import{agentArtifactBindingV1Schema as n,agentProtocolDigestSchema as s,agentProtocolEvidencePointerSchema as r,agentProtocolRefSchema as e,agentProtocolReleaseShaSchema as c,agentProtocolTimestampSchema as l}from"./common.js";export const AGENT_MODEL_CAPABILITY_PROFILE_V1="contractspec.agent.model-capability-profile.v1",AGENT_MODEL_ROUTE_V1="contractspec.agent.model-route.v1",AGENT_MODEL_QUALIFICATION_V1="contractspec.agent.model-qualification.v1";const o=e.refine((i)=>!i.toLowerCase().includes("latest")&&!/[*?]/.test(i),"Production model identifiers must be pinned and cannot use latest or wildcards");export const agentModelCapabilityProfileV1Schema=t.object({schemaVersion:t.literal(AGENT_MODEL_CAPABILITY_PROFILE_V1),id:e,provider:e,modelId:o,modelVersion:o,contextWindowTokens:t.number().int().positive(),maxOutputTokens:t.number().int().positive(),capabilities:t.array(e).min(1),supportsStrictToolSchemas:t.boolean(),supportsParallelToolCalls:t.boolean(),privacyPolicyRef:e,residencyPolicyRef:e,retentionPolicyRef:e,transportPolicyRef:e,authenticationPolicyRef:e,riskPolicyRef:e,priceProfileRef:e,latencyClass:t.enum(["interactive","standard","batch"]),profileDigest:s}).strict().superRefine((i,a)=>{if(i.maxOutputTokens>i.contextWindowTokens)a.addIssue({code:t.ZodIssueCode.custom,path:["maxOutputTokens"],message:"Model output limit cannot exceed its context window"});if(new Set(i.capabilities).size!==i.capabilities.length)a.addIssue({code:t.ZodIssueCode.custom,path:["capabilities"],message:"Model capabilities must be unique"})}),agentModelRouteV1Schema=t.object({schemaVersion:t.literal(AGENT_MODEL_ROUTE_V1),id:e,version:o,capabilityProfile:n,provider:e,modelId:o,modelVersion:o,region:e,transportProfileRef:e,authenticationProfileRef:e,connectionRef:e,secretRef:e,availabilityClass:t.enum(["primary","fallback","degraded"]),qualificationRef:e,routeDigest:s}).strict(),agentModelQualificationV1Schema=t.object({schemaVersion:t.literal(AGENT_MODEL_QUALIFICATION_V1),id:e,routeRef:e,routeVersion:o,routeDigest:s,applicationRef:e,applicationVersion:o,promptVersion:o,toolSchemaVersions:t.array(o),contextCompilerVersion:o,evaluatorVersion:o,policyVersion:o,sandboxDigest:s,releaseSha:c,status:t.enum(["unqualified","simulated","live_verified","rejected"]),evidence:t.array(r),qualifiedAt:l.optional(),qualificationDigest:s}).strict().superRefine((i,a)=>{if((i.status==="simulated"||i.status==="live_verified")&&i.evidence.length===0)a.addIssue({code:t.ZodIssueCode.custom,path:["evidence"],message:"Positive model qualification requires evidence"});if(i.status==="live_verified"&&!i.qualifiedAt)a.addIssue({code:t.ZodIssueCode.custom,path:["qualifiedAt"],message:"Live model qualification requires a qualification timestamp"})});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{agentModelCapabilityProfileV1Schema as a,agentModelQualificationV1Schema as r,agentModelRouteV1Schema as s}from"./model-route-contracts.js";import{agentModelSelectionV1Schema as l}from"./model-routing.js";export function planAgentModelRoutingV2Migration(i){const e=a.parse(i.profile),n=s.parse(i.route),o=r.parse(i.qualification),t=l.parse(i.selection);return{status:"requalification_required",source:{profileRef:e.id,routeRef:n.id,qualificationRef:o.id,selectionRef:t.id},missingBindings:["model_author","serving_identity","connection_digest","invocation_profile","purpose_or_operation","evaluation_decision","dataset","qualification_expiry","connect_decision"]}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";import{agentArtifactBindingV1Schema as t,agentProtocolDigestSchema as a,agentProtocolEvidencePointerSchema as l,agentProtocolRefSchema as i,agentProtocolTimestampSchema as c,agentScopeV1Schema as d}from"./common.js";export*from"./model-invocation-profile.js";export*from"./model-route-contracts-v2.js";export const AGENT_MODEL_SELECTION_V2="contractspec.agent.model-selection.v2",AGENT_MODEL_FALLBACK_DECISION_V2="contractspec.agent.model-fallback-decision.v2";const m=i.refine((o)=>!o.toLowerCase().includes("latest")&&!/[*?]/.test(o),"Production route versions must be pinned");export const agentModelGatewayPolicyV2Schema=e.object({allowDirect:e.boolean(),allowedGatewayRefs:e.array(i)}).strict(),agentModelHardConstraintsV2Schema=e.object({requiredCapabilityRefs:e.array(i),minimumContextWindowTokens:e.number().int().positive(),minimumOutputTokens:e.number().int().positive(),requireStrictToolSchemas:e.boolean(),requireParallelToolCalls:e.boolean(),allowedModelAuthorRefs:e.array(i).min(1),allowedInferenceProviderRefs:e.array(i).min(1),allowedDeploymentRefs:e.array(i).min(1),gatewayPolicy:agentModelGatewayPolicyV2Schema,allowedAdapterRefs:e.array(i).min(1),allowedCommercialPolicyRefs:e.array(i).min(1),allowedConnectionRefs:e.array(i).min(1),allowedRegionRefs:e.array(i).min(1),transportProfileRef:i,authenticationProfileRef:i,privacyPolicyRef:i,residencyPolicyRef:i,retentionPolicyRef:i,riskPolicyRef:i,allowedLatencyClasses:e.array(e.enum(["interactive","standard","batch"])).min(1),maxCostPerMillionTokensMinorUnits:e.number().int().nonnegative(),costCurrency:e.string().regex(/^[A-Z]{3}$/),requiredQualification:e.enum(["simulated_or_live","live_verified"])}).strict(),agentModelCandidateBindingV2Schema=e.object({ref:i,version:m,routeDigest:a,capabilityProfile:t,qualification:t,invocationProfile:t,canary:t.optional(),costPerMillionTokensMinorUnits:e.number().int().nonnegative(),costCurrency:e.string().regex(/^[A-Z]{3}$/)}).strict();const f=agentModelCandidateBindingV2Schema.extend({disposition:e.enum(["selected","rejected"]),reasonRef:i});export const agentModelSelectionV2Schema=e.object({schemaVersion:e.literal(AGENT_MODEL_SELECTION_V2),id:i,runRef:i,plan:t,scope:d,selectedRoute:agentModelCandidateBindingV2Schema,consideredRoutes:e.array(f).min(1),hardConstraints:agentModelHardConstraintsV2Schema,selectionPolicyRef:i,connectDecision:t,selectedAt:c,selectionDigest:a}).strict().superRefine((o,n)=>{const r=o.consideredRoutes.filter((s)=>s.disposition==="selected");if(r.length!==1||!u(r[0],o.selectedRoute))n.addIssue({code:"custom",path:["consideredRoutes"],message:"Exactly one considered route must match the selected route"})}),agentModelFallbackDecisionV2Schema=e.object({schemaVersion:e.literal(AGENT_MODEL_FALLBACK_DECISION_V2),id:i,runRef:i,checkpoint:t,selection:t,fromRoute:agentModelCandidateBindingV2Schema,toRoute:agentModelCandidateBindingV2Schema,consideredRoutes:e.array(agentModelCandidateBindingV2Schema.extend({reasonRef:i,eligibility:e.enum(["eligible","ineligible","unknown"]),eligibilityEvidence:t})).min(1),connectDecision:t,decision:e.enum(["allowed","denied"]),reasonSummary:i,evidence:e.array(l).min(1),decidedAt:c,decisionDigest:a}).strict();function u(o,n){if(!o)return!1;return o.ref===n.ref&&o.version===n.version&&o.routeDigest===n.routeDigest&&o.capabilityProfile.ref===n.capabilityProfile.ref&&o.capabilityProfile.digest===n.capabilityProfile.digest&&o.qualification.ref===n.qualification.ref&&o.qualification.digest===n.qualification.digest&&o.invocationProfile.ref===n.invocationProfile.ref&&o.invocationProfile.digest===n.invocationProfile.digest&&o.canary?.ref===n.canary?.ref&&o.canary?.digest===n.canary?.digest&&o.costPerMillionTokensMinorUnits===n.costPerMillionTokensMinorUnits&&o.costCurrency===n.costCurrency}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{AGENT_MODEL_INVOCATION_PROFILE_V1 as r,agentModelInvocationProfileV1Schema as n}from"./model-invocation-profile.js";import{AGENT_MODEL_CAPABILITY_PROFILE_V2 as s,AGENT_MODEL_QUALIFICATION_V2 as a,AGENT_MODEL_ROUTE_V2 as l,agentModelCapabilityProfileV2Schema as c,agentModelQualificationV2Schema as p,agentModelRouteV2Schema as f}from"./model-route-contracts-v2.js";import{modelTestDigest as u,modelTestNow as d,modelTestPlan as v}from"./model-routing.test-fixtures.js";import{AGENT_MODEL_SELECTION_V2 as m,agentModelSelectionV2Schema as y}from"./model-routing-v2.js";export const v2Digest=u,v2Now=d,v2Plan=v,v2Evidence=[{id:"evidence.1",kind:"eval_result",ref:"eval.release.1",sourcePackage:"@lssm/lib.agent-evals",timestamp:v2Now,redactionStatus:"redacted"}];export function v2Invocation(e="invocation.release.1"){return n.parse({schemaVersion:r,id:e,version:"1.0.0",maxOutputTokens:4096,sampling:{temperature:0},outputValidator:{ref:"validator.release.1",digest:v2Digest},invocationProfileDigest:v2Digest})}export function v2Profile(e="profile.anthropic.direct"){return c.parse({schemaVersion:s,id:e,modelAuthorRef:"model-author.anthropic",modelFamilyRef:"model-family.claude-sonnet-4",modelId:"claude-sonnet-4-20250514",modelVersion:"2025-05-14",contextWindowTokens:200000,maxOutputTokens:8192,capabilities:["strict_tools","vision"],supportsStrictToolSchemas:!0,supportsParallelToolCalls:!0,profileDigest:v2Digest})}export function v2Route(e="route.anthropic.direct",i="invocation.release.1"){return f.parse({schemaVersion:l,id:e,version:"1.0.0",capabilityProfile:{ref:"profile.anthropic.direct",digest:v2Digest},modelId:"claude-sonnet-4-20250514",modelVersion:"2025-05-14",serving:{inferenceProviderRef:"inference.anthropic",deploymentRef:"deployment.anthropic.eu.2025-05-14",adapterRef:"adapter.ai-sdk.anthropic.v1",commercialPolicyRef:"commercial.direct-byok.v1",connection:{ref:"connect.anthropic.eu",digest:v2Digest},connectionVersion:"1.0.0",region:"eu-west-1",transportProfileRef:"transport.https.v1",authenticationProfileRef:"authentication.secret-lease.v1",privacyPolicyRef:"privacy.eu.v1",residencyPolicyRef:"residency.eu.v1",retentionPolicyRef:"retention.zero.v1",riskPolicyRef:"risk.r1.v1",priceProfileRef:"price.anthropic-direct.v1",latencyClass:"interactive"},invocationProfile:{ref:i,digest:v2Digest},secretRef:"secret-lease-profile.anthropic",availabilityClass:e.includes("fallback")?"fallback":"primary",qualificationRef:`qualification.${e}`,routeDigest:v2Digest})}export function v2Qualification(e,i="invocation.release.1"){return p.parse({schemaVersion:a,id:`qualification.${e}`,routeRef:e,routeVersion:"1.0.0",routeDigest:v2Digest,applicationRef:v2Plan.scope.applicationRef,applicationVersion:v2Plan.versions.applicationVersion,purposeRef:v2Plan.scope.purpose,promptVersion:v2Plan.versions.promptVersion,toolSchemaVersions:v2Plan.versions.toolSchemaVersions,contextCompilerVersion:v2Plan.versions.contextCompilerVersion,evaluatorVersion:v2Plan.versions.evaluatorVersion,policyVersion:v2Plan.versions.policyVersion,sandboxDigest:v2Plan.versions.sandboxDigest,releaseSha:v2Plan.versions.releaseSha,invocationProfile:{ref:i,digest:v2Digest},evaluationDecision:{ref:"eval-decision.release.1",digest:v2Digest},dataset:{ref:"dataset.release.1",digest:v2Digest},status:"live_verified",evidence:v2Evidence,qualifiedAt:v2Now,expiresAt:"2026-09-12T10:00:00+02:00",qualificationDigest:v2Digest})}export function v2Candidate(e="route.anthropic.direct",i){const o=v2Invocation(i),t=v2Route(e,o.id);return{route:t,profile:v2Profile(),qualification:v2Qualification(t.id,o.id),invocationProfile:o,costPerMillionTokensMinorUnits:90,costCurrency:"EUR"}}export function v2Binding(e){return{ref:e.route.id,version:e.route.version,routeDigest:e.route.routeDigest,capabilityProfile:e.route.capabilityProfile,qualification:{ref:e.qualification.id,digest:v2Digest},invocationProfile:{ref:e.invocationProfile.id,digest:v2Digest},costPerMillionTokensMinorUnits:e.costPerMillionTokensMinorUnits,costCurrency:e.costCurrency}}export function v2Selection(e=v2Candidate()){const i=v2Binding(e);return y.parse({schemaVersion:m,id:"selection.release.1",runRef:v2Plan.scope.runId,plan:{ref:v2Plan.id,digest:v2Digest},scope:v2Plan.scope,selectedRoute:i,consideredRoutes:[{...i,disposition:"selected",reasonRef:"qualified"}],hardConstraints:{requiredCapabilityRefs:["strict_tools","vision"],minimumContextWindowTokens:1e5,minimumOutputTokens:4096,requireStrictToolSchemas:!0,requireParallelToolCalls:!0,allowedModelAuthorRefs:["model-author.anthropic"],allowedInferenceProviderRefs:["inference.anthropic"],allowedDeploymentRefs:["deployment.anthropic.eu.2025-05-14"],gatewayPolicy:{allowDirect:!0,allowedGatewayRefs:[]},allowedAdapterRefs:["adapter.ai-sdk.anthropic.v1"],allowedCommercialPolicyRefs:["commercial.direct-byok.v1"],allowedConnectionRefs:["connect.anthropic.eu"],allowedRegionRefs:["eu-west-1"],transportProfileRef:"transport.https.v1",authenticationProfileRef:"authentication.secret-lease.v1",privacyPolicyRef:"privacy.eu.v1",residencyPolicyRef:"residency.eu.v1",retentionPolicyRef:"retention.zero.v1",riskPolicyRef:"risk.r1.v1",allowedLatencyClasses:["interactive"],maxCostPerMillionTokensMinorUnits:100,costCurrency:"EUR",requiredQualification:"live_verified"},selectionPolicyRef:"model-policy.release.1",connectDecision:{ref:"connect-decision.route.1",digest:v2Digest},selectedAt:v2Now,selectionDigest:v2Digest})}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";import{agentArtifactBindingV1Schema as n,agentProtocolDigestSchema as c,agentProtocolEvidencePointerSchema as d,agentProtocolRefSchema as t,agentProtocolTimestampSchema as s,agentScopeV1Schema as u}from"./common.js";export*from"./model-route-contracts.js";export const AGENT_MODEL_SELECTION_V1="contractspec.agent.model-selection.v1",AGENT_MODEL_FALLBACK_DECISION_V1="contractspec.agent.model-fallback-decision.v1";const m=t.refine((i)=>!i.toLowerCase().includes("latest")&&!/[*?]/.test(i),"Production model identifiers must be pinned and cannot use latest or wildcards");function f(i,r,o){i.addIssue({code:e.ZodIssueCode.custom,path:[r],message:o})}export const agentModelHardConstraintsV1Schema=e.object({requiredCapabilityRefs:e.array(t),minimumContextWindowTokens:e.number().int().positive(),minimumOutputTokens:e.number().int().positive(),requireStrictToolSchemas:e.boolean(),requireParallelToolCalls:e.boolean(),allowedProviderRefs:e.array(t).min(1),allowedRegionRefs:e.array(t).min(1),transportProfileRef:t,authenticationProfileRef:t,privacyPolicyRef:t,residencyPolicyRef:t,retentionPolicyRef:t,riskPolicyRef:t,allowedLatencyClasses:e.array(e.enum(["interactive","standard","batch"])).min(1),maxCostPerMillionTokensMinorUnits:e.number().int().nonnegative(),costCurrency:e.string().regex(/^[A-Z]{3}$/),requiredQualification:e.enum(["simulated_or_live","live_verified"])}).strict();const a=e.object({ref:t,version:m,routeDigest:c,capabilityProfile:n,qualification:n}).strict();export const agentModelSelectionV1Schema=e.object({schemaVersion:e.literal(AGENT_MODEL_SELECTION_V1),id:t,runRef:t,plan:n,scope:u,selectedRoute:a,consideredRoutes:e.array(a.extend({disposition:e.enum(["selected","rejected"]),reasonRef:t})).min(1),hardConstraints:agentModelHardConstraintsV1Schema,selectionPolicyRef:t,selectedAt:s,selectionDigest:c}).strict().superRefine((i,r)=>{const o=i.consideredRoutes.filter((l)=>l.disposition==="selected");if(o.length!==1||o[0]?.ref!==i.selectedRoute.ref||o[0]?.version!==i.selectedRoute.version||o[0]?.routeDigest!==i.selectedRoute.routeDigest||o[0]?.capabilityProfile.ref!==i.selectedRoute.capabilityProfile.ref||o[0]?.capabilityProfile.digest!==i.selectedRoute.capabilityProfile.digest||o[0]?.qualification.ref!==i.selectedRoute.qualification.ref||o[0]?.qualification.digest!==i.selectedRoute.qualification.digest)f(r,"consideredRoutes","Exactly one considered route must match the selected route")}),agentModelFallbackDecisionV1Schema=e.object({schemaVersion:e.literal(AGENT_MODEL_FALLBACK_DECISION_V1),id:t,runRef:t,checkpoint:n,selection:n,fromRoute:a,toRoute:a,consideredRoutes:e.array(a.extend({reasonRef:t,eligibility:e.enum(["eligible","ineligible","unknown"]),eligibilityEvidence:n})).min(1),decision:e.enum(["allowed","denied"]),reasonSummary:t,evidence:e.array(d).min(1),decidedAt:s,decisionDigest:c}).strict();export{validateAgentModelFallbackEquivalenceV1}from"./bindings.js";export{validateAgentModelSelectionBindingV1}from"./model-selection-validation.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{AGENT_MODEL_CAPABILITY_PROFILE_V1 as o,AGENT_MODEL_QUALIFICATION_V1 as r,AGENT_MODEL_ROUTE_V1 as n,AGENT_MODEL_SELECTION_V1 as s,agentModelCapabilityProfileV1Schema as a,agentModelQualificationV1Schema as l,agentModelRouteV1Schema as c,agentModelSelectionV1Schema as p}from"./model-routing.js";export const modelTestNow="2026-08-12T10:00:00+02:00",modelTestDigest=`sha256:${"a".repeat(64)}`,modelTestScope={tenantId:"tenant.1",spaceId:"space.1",productKey:"companyos",applicationRef:"release-steward.1",purpose:"release",runId:"run.1"},modelTestPlan={id:"plan.1",planDigest:modelTestDigest,scope:modelTestScope,versions:{applicationVersion:"1.0.0",promptVersion:"prompt.1.0.0",modelRouteVersion:"1.0.0",toolSchemaVersions:["tool.1.0.0"],contextCompilerVersion:"compiler.1.0.0",evaluatorVersion:"evaluator.1.0.0",policyVersion:"policy.1.0.0",sandboxDigest:modelTestDigest,releaseSha:"a".repeat(40)}};export function modelTestProfile(e,t={}){return a.parse({schemaVersion:o,id:e,provider:"anthropic",modelId:"claude-sonnet-4-20250514",modelVersion:"2025-05-14",contextWindowTokens:200000,maxOutputTokens:8192,capabilities:["strict_tools","vision"],supportsStrictToolSchemas:!0,supportsParallelToolCalls:!0,privacyPolicyRef:"privacy.eu.v1",residencyPolicyRef:"residency.eu.v1",retentionPolicyRef:"retention.zero.v1",transportPolicyRef:"transport.https.v1",authenticationPolicyRef:"authentication.secret-lease.v1",riskPolicyRef:"risk.r1.v1",priceProfileRef:"price.anthropic.v1",latencyClass:"interactive",profileDigest:modelTestDigest,...t})}export function modelTestRoute(e,t){return c.parse({schemaVersion:n,id:e,version:"1.0.0",capabilityProfile:{ref:t,digest:modelTestDigest},provider:"anthropic",modelId:"claude-sonnet-4-20250514",modelVersion:"2025-05-14",region:"eu-west-1",transportProfileRef:"transport.https.v1",authenticationProfileRef:"authentication.secret-lease.v1",connectionRef:"connect.anthropic.eu",secretRef:"secret-lease-profile.anthropic",availabilityClass:e==="route.primary"?"primary":"fallback",qualificationRef:`qualification.${e}`,routeDigest:modelTestDigest})}export function modelTestQualification(e,t){return l.parse({schemaVersion:r,id:e,routeRef:t,routeVersion:"1.0.0",routeDigest:modelTestDigest,applicationRef:"release-steward.1",applicationVersion:"1.0.0",promptVersion:"prompt.1.0.0",toolSchemaVersions:["tool.1.0.0"],contextCompilerVersion:"compiler.1.0.0",evaluatorVersion:"evaluator.1.0.0",policyVersion:"policy.1.0.0",sandboxDigest:modelTestDigest,releaseSha:"a".repeat(40),status:"live_verified",evidence:[{id:"e.1",kind:"eval_result",ref:"eval.1",sourcePackage:"@lssm/lib.agent-evals",timestamp:modelTestNow,redactionStatus:"none"}],qualifiedAt:modelTestNow,qualificationDigest:modelTestDigest})}export function modelTestSelection(e,t){const i={ref:e.id,version:"1.0.0",routeDigest:e.routeDigest,capabilityProfile:e.capabilityProfile,qualification:{ref:t,digest:modelTestDigest}};return p.parse({schemaVersion:s,id:"selection.1",runRef:"run.1",plan:{ref:modelTestPlan.id,digest:modelTestDigest},scope:modelTestScope,selectedRoute:i,consideredRoutes:[{...i,disposition:"selected",reasonRef:"best-qualified-route"}],hardConstraints:{requiredCapabilityRefs:["strict_tools","vision"],minimumContextWindowTokens:1e5,minimumOutputTokens:4096,requireStrictToolSchemas:!0,requireParallelToolCalls:!0,allowedProviderRefs:["anthropic"],allowedRegionRefs:["eu-west-1"],transportProfileRef:"transport.https.v1",authenticationProfileRef:"authentication.secret-lease.v1",privacyPolicyRef:"privacy.eu.v1",residencyPolicyRef:"residency.eu.v1",retentionPolicyRef:"retention.zero.v1",riskPolicyRef:"risk.r1.v1",allowedLatencyClasses:["interactive"],maxCostPerMillionTokensMinorUnits:100,costCurrency:"EUR",requiredQualification:"live_verified"},selectionPolicyRef:"selector.1",selectedAt:modelTestNow,selectionDigest:modelTestDigest})}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{validateAgentScopeExactV1 as a}from"./common.js";import{validateModelServingConstraintsV2 as c}from"./model-serving-validation-v2.js";export function routeBindingMatchesModelCandidateV2(e,o){return e.ref===o.route.id&&e.version===o.route.version&&e.routeDigest===o.route.routeDigest&&e.capabilityProfile.ref===o.profile.id&&e.capabilityProfile.digest===o.profile.profileDigest&&e.qualification.ref===o.qualification.id&&e.qualification.digest===o.qualification.qualificationDigest&&e.invocationProfile.ref===o.invocationProfile.id&&e.invocationProfile.digest===o.invocationProfile.invocationProfileDigest&&e.canary?.ref===o.canary?.ref&&e.canary?.digest===o.canary?.digest&&e.costPerMillionTokensMinorUnits===o.costPerMillionTokensMinorUnits&&e.costCurrency===o.costCurrency}export function validateModelCandidateV2(e){const{route:o,profile:i,qualification:t,invocationProfile:r}=e.candidate,s=e.selection.hardConstraints,n=[];if(o.capabilityProfile.ref!==i.id||o.capabilityProfile.digest!==i.profileDigest)n.push("Model route capability profile binding does not match");if(o.modelId!==i.modelId||o.modelVersion!==i.modelVersion)n.push("Model route identity does not match its capability profile");if(o.invocationProfile.ref!==r.id||o.invocationProfile.digest!==r.invocationProfileDigest||t.invocationProfile.ref!==r.id||t.invocationProfile.digest!==r.invocationProfileDigest)n.push("Model invocation profile binding does not match");if(t.routeRef!==o.id||t.routeVersion!==o.version||t.routeDigest!==o.routeDigest||o.qualificationRef!==t.id)n.push("Model qualification does not bind the route version");n.push(...d(e.plan,o,t));n.push(...u(e.plan,t));for(const l of s.requiredCapabilityRefs)if(!i.capabilities.includes(l))n.push(`Model route lacks capability: ${l}`);if(i.contextWindowTokens<s.minimumContextWindowTokens)n.push("Model route context window is below the required minimum");if(i.maxOutputTokens<s.minimumOutputTokens)n.push("Model route output limit is below the required minimum");if(r.maxOutputTokens>i.maxOutputTokens)n.push("Invocation output limit exceeds the model capability profile");if(s.requireStrictToolSchemas&&!i.supportsStrictToolSchemas)n.push("Model route lacks strict tool-schema support");if(s.requireParallelToolCalls&&!i.supportsParallelToolCalls)n.push("Model route lacks parallel tool-call support");n.push(...c(e.candidate,e.selection));if(e.candidate.costCurrency!==s.costCurrency||e.candidate.costPerMillionTokensMinorUnits>s.maxCostPerMillionTokensMinorUnits)n.push("Model route exceeds the allowed cost policy");if(!(s.requiredQualification==="live_verified"?t.status==="live_verified":t.status==="simulated"||t.status==="live_verified"))n.push("Model route lacks required qualification");if(t.status==="live_verified"&&t.expiresAt&&Date.parse(t.expiresAt)<=(e.now??new Date).getTime())n.push("Model qualification is expired");if(t.status==="revoked")n.push("Model qualification is revoked");return n}export function validateAgentModelSelectionBindingV2(e){const o=a({expected:e.plan.scope,observed:e.selection.scope});if(e.selection.plan.ref!==e.plan.id||e.selection.plan.digest!==e.plan.planDigest)o.push("Model selection plan binding does not match");if(e.selection.scope.runId!==e.selection.runRef||e.plan.scope.runId&&e.plan.scope.runId!==e.selection.runRef)o.push("Model selection run binding does not match");const i=e.selection.consideredRoutes.map((t)=>t.ref);if(new Set(i).size!==i.length)o.push("Model selection considered routes must be unique");if(!routeBindingMatchesModelCandidateV2(e.selection.selectedRoute,e.candidate))o.push("Selected model route binding does not match the candidate");o.push(...validateModelCandidateV2(e));return o}function d(e,o,i){const t=[];if(i.applicationRef!==e.scope.applicationRef||i.purposeRef!==e.scope.purpose||o.version!==e.versions.modelRouteVersion||i.applicationVersion!==e.versions.applicationVersion||i.promptVersion!==e.versions.promptVersion||i.contextCompilerVersion!==e.versions.contextCompilerVersion||i.evaluatorVersion!==e.versions.evaluatorVersion||i.policyVersion!==e.versions.policyVersion||i.sandboxDigest!==e.versions.sandboxDigest||i.releaseSha!==e.versions.releaseSha)t.push("Model qualification version set does not match the plan");const r=[...e.versions.toolSchemaVersions].sort(),s=[...i.toolSchemaVersions].sort();if(JSON.stringify(r)!==JSON.stringify(s))t.push("Model qualification tool schema versions do not match the plan");return t}function u(e,o){if(!o.operation)return[];if(o.operation.kind==="plan_step")return e.steps.some((i)=>i.id===o.operation?.ref)?[]:["Model qualification plan-step binding does not match the plan"];return e.effectProposals.some((i)=>i.operationRef===o.operation?.ref)?[]:["Model qualification operation binding does not match the plan"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{validateAgentScopeExactV1 as d}from"./common.js";export function routeBindingMatchesModelCandidateV1(e,o){return e.ref===o.route.id&&e.version===o.route.version&&e.routeDigest===o.route.routeDigest&&e.capabilityProfile.ref===o.profile.id&&e.capabilityProfile.digest===o.profile.profileDigest&&e.qualification.ref===o.qualification.id&&e.qualification.digest===o.qualification.qualificationDigest}export function validateModelCandidateV1(e){const{route:o,profile:i,qualification:t}=e.candidate,s=e.selection.hardConstraints,l=[];if(o.capabilityProfile.ref!==i.id||o.capabilityProfile.digest!==i.profileDigest)l.push("Model route capability profile binding does not match");if(o.provider!==i.provider||o.modelId!==i.modelId||o.modelVersion!==i.modelVersion)l.push("Model route identity does not match its capability profile");if(t.routeRef!==o.id||t.routeVersion!==o.version||t.routeDigest!==o.routeDigest||o.qualificationRef!==t.id)l.push("Model qualification does not bind the route version");if(t.applicationRef!==e.plan.scope.applicationRef||o.version!==e.plan.versions.modelRouteVersion||t.applicationVersion!==e.plan.versions.applicationVersion||t.promptVersion!==e.plan.versions.promptVersion||t.contextCompilerVersion!==e.plan.versions.contextCompilerVersion||t.evaluatorVersion!==e.plan.versions.evaluatorVersion||t.policyVersion!==e.plan.versions.policyVersion||t.sandboxDigest!==e.plan.versions.sandboxDigest||t.releaseSha!==e.plan.versions.releaseSha)l.push("Model qualification version set does not match the plan");const r=[...e.plan.versions.toolSchemaVersions].sort(),a=[...t.toolSchemaVersions].sort();if(JSON.stringify(r)!==JSON.stringify(a))l.push("Model qualification tool schema versions do not match the plan");for(const n of s.requiredCapabilityRefs)if(!i.capabilities.includes(n))l.push(`Model route lacks capability: ${n}`);if(i.contextWindowTokens<s.minimumContextWindowTokens)l.push("Model route context window is below the required minimum");if(i.maxOutputTokens<s.minimumOutputTokens)l.push("Model route output limit is below the required minimum");if(s.requireStrictToolSchemas&&!i.supportsStrictToolSchemas)l.push("Model route lacks strict tool-schema support");if(s.requireParallelToolCalls&&!i.supportsParallelToolCalls)l.push("Model route lacks parallel tool-call support");if(!s.allowedProviderRefs.includes(o.provider))l.push("Model route provider is not allowed");if(!s.allowedRegionRefs.includes(o.region))l.push("Model route region is not allowed");for(const[n,c]of[["transportProfileRef",o.transportProfileRef],["authenticationProfileRef",o.authenticationProfileRef],["privacyPolicyRef",i.privacyPolicyRef],["residencyPolicyRef",i.residencyPolicyRef],["retentionPolicyRef",i.retentionPolicyRef],["riskPolicyRef",i.riskPolicyRef]])if(c!==s[n])l.push(`Model route changes ${n}`);if(!s.allowedLatencyClasses.includes(i.latencyClass))l.push("Model route latency class is not allowed");if(e.candidate.costCurrency!==s.costCurrency||e.candidate.costPerMillionTokensMinorUnits>s.maxCostPerMillionTokensMinorUnits)l.push("Model route exceeds the allowed cost policy");if(!(s.requiredQualification==="live_verified"?t.status==="live_verified":t.status==="simulated"||t.status==="live_verified"))l.push("Model route lacks required qualification");return l}export function validateAgentModelSelectionBindingV1(e){const o=d({expected:e.plan.scope,observed:e.selection.scope});if(e.selection.plan.ref!==e.plan.id||e.selection.plan.digest!==e.plan.planDigest)o.push("Model selection plan binding does not match");if(e.selection.scope.runId!==e.selection.runRef||e.plan.scope.runId&&e.plan.scope.runId!==e.selection.runRef)o.push("Model selection run binding does not match");const i=e.selection.consideredRoutes.map((t)=>t.ref);if(new Set(i).size!==i.length)o.push("Model selection considered routes must be unique");if(!routeBindingMatchesModelCandidateV1(e.selection.selectedRoute,e.candidate))o.push("Selected model route binding does not match the candidate");o.push(...validateModelCandidateV1(e));return o}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function validateModelServingConstraintsV2(r,a){const{profile:s,route:c}=r,{serving:e}=c,o=a.hardConstraints,l=[],t=(i,n,f)=>{if(!i.includes(n))l.push(`Model route ${f} is not allowed`)};t(o.allowedModelAuthorRefs,s.modelAuthorRef,"author");t(o.allowedInferenceProviderRefs,e.inferenceProviderRef,"inference provider");t(o.allowedDeploymentRefs,e.deploymentRef,"deployment");t(o.allowedAdapterRefs,e.adapterRef,"adapter");t(o.allowedCommercialPolicyRefs,e.commercialPolicyRef,"commercial policy");t(o.allowedConnectionRefs,e.connection.ref,"connection");t(o.allowedRegionRefs,e.region,"region");if(e.gatewayRef){if(!o.gatewayPolicy.allowedGatewayRefs.includes(e.gatewayRef))l.push("Model route gateway is not allowed")}else if(!o.gatewayPolicy.allowDirect)l.push("Direct model routes are not allowed");for(const[i,n]of[["transportProfileRef",e.transportProfileRef],["authenticationProfileRef",e.authenticationProfileRef],["privacyPolicyRef",e.privacyPolicyRef],["residencyPolicyRef",e.residencyPolicyRef],["retentionPolicyRef",e.retentionPolicyRef],["riskPolicyRef",e.riskPolicyRef]])if(n!==o[i])l.push(`Model route changes ${i}`);if(!o.allowedLatencyClasses.includes(e.latencyClass))l.push("Model route latency class is not allowed");return l}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";import{agentArtifactBindingV1Schema as l,agentConfidenceV1Schema as u,agentEffectProposalV1Schema as m,agentProtocolDigestSchema as f,agentProtocolEvidencePointerSchema as h,agentProtocolRefSchema as t,agentProtocolTimestampSchema as d,agentRiskTierV1Schema as g,agentScopeV1Schema as R,agentVersionSetV1Schema as v,validateAgentDirectedAcyclicGraph as P}from"./common.js";export const AGENT_EXECUTION_STEP_V1="contractspec.agent.execution-step.v1",AGENT_EXECUTION_PLAN_V1="contractspec.agent.execution-plan.v1",AGENT_PLAN_VALIDATION_V1="contractspec.agent.plan-validation.v1",agentExecutionStepV1Schema=e.object({schemaVersion:e.literal(AGENT_EXECUTION_STEP_V1),id:t,dependsOn:e.array(t),objective:t,requiredContextItemIds:e.array(t),toolRefs:e.array(t),expectedArtifactRefs:e.array(t),requiredEvidenceKinds:e.array(t),effectProposalRefs:e.array(t),approvalCheckpointRefs:e.array(t),completionCriteria:e.array(t).min(1)}).strict(),agentExecutionPlanV1Schema=e.object({schemaVersion:e.literal(AGENT_EXECUTION_PLAN_V1),id:t,revision:e.number().int().positive(),supersedesRef:t.optional(),scope:R,objective:t,interpretedIntent:t,assumptions:e.array(t),unresolvedQuestions:e.array(t),steps:e.array(agentExecutionStepV1Schema).min(1).max(32),requiredContextManifestRef:t,requiredToolRefs:e.array(t),expectedArtifactRefs:e.array(t),requiredEvidenceKinds:e.array(t).min(1),effectProposals:e.array(m),approvalCheckpointRefs:e.array(t),riskTier:g,budgetRef:t,verificationPolicyRef:t,wallClockHorizonSeconds:e.number().int().positive(),stopConditions:e.array(t).min(1),helpConditions:e.array(t).min(1),completionCriteria:e.array(t).min(1),confidence:u,versions:v,createdAt:d,planDigest:f}).strict().superRefine((s,o)=>{for(const a of P(s.steps,32))o.addIssue({code:e.ZodIssueCode.custom,path:["steps"],message:a});const r=new Set(s.effectProposals.map((a)=>a.id));if(r.size!==s.effectProposals.length)o.addIssue({code:e.ZodIssueCode.custom,path:["effectProposals"],message:"Effect proposal ids must be unique"});const i=new Set(s.requiredToolRefs),n=new Set(s.approvalCheckpointRefs);for(const a of s.effectProposals)if(a.approvalRequirementRef&&!n.has(a.approvalRequirementRef))o.addIssue({code:e.ZodIssueCode.custom,path:["approvalCheckpointRefs"],message:`Missing effect approval checkpoint: ${a.approvalRequirementRef}`});for(const[a,p]of s.steps.entries()){for(const c of p.toolRefs)if(!i.has(c))o.addIssue({code:e.ZodIssueCode.custom,path:["steps",a,"toolRefs"],message:`Step tool is not declared by the plan: ${c}`});for(const c of p.effectProposalRefs)if(!r.has(c))o.addIssue({code:e.ZodIssueCode.custom,path:["steps",a,"effectProposalRefs"],message:`Unknown effect proposal reference: ${c}`});for(const c of p.approvalCheckpointRefs)if(!n.has(c))o.addIssue({code:e.ZodIssueCode.custom,path:["steps",a,"approvalCheckpointRefs"],message:`Unknown approval checkpoint: ${c}`})}}),agentPlanValidationV1Schema=e.object({schemaVersion:e.literal(AGENT_PLAN_VALIDATION_V1),id:t,planRef:t,planDigest:f,status:e.enum(["accepted","rejected"]),effectProposalRefs:e.array(t),checks:e.array(e.object({check:e.enum(["application_scope","required_context","tool_grants","effect_classification","budget","approval","policy_narrowing"]),passed:e.boolean(),evidenceRefs:e.array(t).min(1)}).strict()).min(7),connectDecision:l.optional(),evidence:e.array(h).min(1),validatedAt:d}).strict().superRefine((s,o)=>{const r=s.checks.map((n)=>n.check);if(new Set(r).size!==r.length)o.addIssue({code:e.ZodIssueCode.custom,path:["checks"],message:"Plan validation checks must be unique"});if(new Set(s.effectProposalRefs).size!==s.effectProposalRefs.length)o.addIssue({code:e.ZodIssueCode.custom,path:["effectProposalRefs"],message:"Plan validation effect references must be unique"});const i=s.checks.every((n)=>n.passed);if(s.status==="accepted"!==i)o.addIssue({code:e.ZodIssueCode.custom,path:["status"],message:"Accepted plan validations require every check to pass"});if(s.status==="accepted"&&s.effectProposalRefs.length>0&&!s.connectDecision)o.addIssue({code:e.ZodIssueCode.custom,path:["connectDecision"],message:"Accepted effectful plans require a Connect decision reference"})});export function validateAgentPlanValidationBindingV1(s){const o=[];if(s.validation.planRef!==s.plan.id)o.push("Plan validation reference does not match the plan");if(s.validation.planDigest!==s.plan.planDigest)o.push("Plan validation digest does not match the plan");const r=s.plan.effectProposals.map((n)=>n.id).sort(),i=[...s.validation.effectProposalRefs].sort();if(JSON.stringify(r)!==JSON.stringify(i))o.push("Plan validation effect references do not match the plan");return o}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as n}from"zod";import{agentProtocolEvidencePointerSchema as l,agentProtocolRefSchema as e,agentProtocolTimestampSchema as p,validateAgentExecutionVerificationV1 as f}from"./common.js";export const AGENT_REFLECTION_V1="contractspec.agent.reflection.v1";const d=n.object({decision:n.enum(["continue","replan","request_help","request_approval","delegate","complete","blocked","cancelled"]),reasonSummary:e,nextPlanRef:e.optional(),helpRequestRef:e.optional(),approvalRequestRef:e.optional(),delegationRef:e.optional(),terminalDecisionCandidateRef:e.optional()}).strict().superRefine((a,t)=>{const i={replan:"nextPlanRef",request_help:"helpRequestRef",request_approval:"approvalRequestRef",delegate:"delegationRef",complete:"terminalDecisionCandidateRef",blocked:"terminalDecisionCandidateRef",cancelled:"terminalDecisionCandidateRef"}[a.decision];if(i&&!a[i])t.addIssue({code:n.ZodIssueCode.custom,path:[i],message:`${a.decision} requires ${i}`})});export const agentReflectionV1Schema=n.object({schemaVersion:n.literal(AGENT_REFLECTION_V1),id:e,runRef:e,epochRef:e,checkpointRef:e,expectedOutcomeSummary:e,observedOutcomeSummary:e,evidenceInspected:n.array(l),constraintsStillSatisfied:n.array(e),constraintViolations:n.array(e),contextGapRefs:n.array(e),budgetSnapshotRef:e,budgetVarianceSummary:e,uncertaintyRefs:n.array(e),failureRefs:n.array(e),progressEvidenceRefs:n.array(e),recommendation:d,createdAt:p}).strict();export function validateAgentTerminalDecisionBindingV1(a){const{plan:t,checkpoint:c,decision:i}=a,o=[];if(i.plan.ref!==t.id||i.plan.digest!==t.planDigest)o.push("Terminal decision plan binding does not match");if(i.runRef!==c.runRef||i.checkpointRef!==c.id)o.push("Terminal decision checkpoint binding does not match");if(c.plan.ref!==t.id||c.plan.digest!==t.planDigest)o.push("Terminal checkpoint plan does not match");if(t.scope.runId&&t.scope.runId!==i.runRef)o.push("Terminal decision run does not match the plan scope");if(i.riskTier!==t.riskTier)o.push("Terminal decision changes plan risk tier");if(i.decision!=="complete")return o;const s=i.completionCriteria.map((r)=>r.criterionRef);if(new Set(s).size!==s.length)o.push("Terminal decision completion criteria must be unique");if(JSON.stringify([...s].sort())!==JSON.stringify([...t.completionCriteria].sort()))o.push("Terminal decision completion criteria do not match the plan");for(const r of i.completionCriteria)if(!r.satisfied||r.evidenceRefs.length===0)o.push(`Terminal decision does not prove plan criterion: ${r.criterionRef}`);o.push(...f({expectedPolicyRef:t.verificationPolicyRef,binding:i.verification,canonical:a.canonicalVerification}));return o}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function o(r,i){return r.ref===i.ref&&r.digest===i.digest}function f(r){return new Set(r).size!==r.length}function d(r,i){return JSON.stringify([...r].sort())===JSON.stringify([...i].sort())}export function validateAgentTaskResultBindingV1(r){const{graph:i,delegation:s,result:n}=r,e=[],a=i.tasks.find((t)=>t.id===n.taskRef);if(!o(n.taskGraph,{ref:i.id,digest:i.graphDigest}))e.push("Task result graph binding does not match");if(!o(s.taskGraph,{ref:i.id,digest:i.graphDigest})||s.runRef!==i.runRef)e.push("Task result delegation does not belong to the graph run");if(!a)return[...e,"Task result references an unknown task"];if(n.taskRef!==s.taskRef||!o(n.delegation,{ref:s.id,digest:s.delegationDigest}))e.push("Task result delegation binding does not match");if(n.producerPrincipalRef!==s.derivedPrincipalRef)e.push("Task result producer does not match the delegated principal");if(n.status!=="ready_for_verification")return e;if(f(n.artifactRefs))e.push("Task result artifact references must be unique");for(const t of a.expectedArtifactRefs)if(!n.artifactRefs.includes(t))e.push(`Task result is missing declared artifact: ${t}`);const u=n.evidenceSatisfactions.map((t)=>t.requirementRef);if(f(u))e.push("Task result evidence requirements must be unique");if(!d(u,a.requiredEvidenceKinds))e.push("Task result evidence requirements do not match its task");const c=n.completionCriteria.map((t)=>t.criterionRef);if(f(c))e.push("Task result completion criteria must be unique");if(!d(c,a.completionCriteria))e.push("Task result completion criteria do not match its task");for(const t of n.completionCriteria)if(!t.satisfied||t.evidenceRefs.length===0)e.push(`Task result does not prove criterion: ${t.criterionRef}`);return e}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import{ScalarTypeEnum as t,SchemaModel as e}from"@lssm/lib.schema";import{docId as i}from"../../docs/registry.js";import{defineQuery as a}from"../../operations/index.js";import{AGENT_DOMAIN as n,AGENT_OWNERS as s,AGENT_STABILITY as r,AGENT_TAGS as o}from"../constants.js";const c=new e({name:"AgentArtifactsInput",fields:{runId:{type:t.ID(),isOptional:!1},kind:{type:t.String_unsecure(),isOptional:!0},limit:{type:t.Int_unsecure(),isOptional:!0},offset:{type:t.Int_unsecure(),isOptional:!0}}}),u=new e({name:"AgentArtifact",fields:{artifactId:{type:t.ID(),isOptional:!1},kind:{type:t.String_unsecure(),isOptional:!1},uri:{type:t.String_unsecure(),isOptional:!1},contentType:{type:t.String_unsecure(),isOptional:!0},summary:{type:t.String_unsecure(),isOptional:!0},createdAt:{type:t.DateTime(),isOptional:!1}}}),p=new e({name:"AgentArtifactsOutput",fields:{artifacts:{type:u,isOptional:!1,isArray:!0},total:{type:t.Int_unsecure(),isOptional:!0},nextOffset:{type:t.Int_unsecure(),isOptional:!0}}});export const AgentArtifactsDocBlock={id:"docs.tech.agent.artifacts",title:"Agent artifacts",summary:"List artifacts produced by an agent run.",kind:"reference",visibility:"public",route:"/docs/tech/agent/artifacts",tags:["agent","artifacts"],body:`# agent.artifacts
|
|
2
|
+
|
|
3
|
+
Lists files, diffs, and outputs produced during agent execution.
|
|
4
|
+
`},AgentArtifactsQuery=a({meta:{key:"agent.artifacts",title:"Agent Run Artifacts",version:"1.0.0",description:"List artifacts produced by an agent run.",goal:"Provide traceable outputs for audits and UI surfaces.",context:"Used by Studio to show diffs, files, and run outputs.",domain:n,owners:s,tags:[...o,"artifacts"],stability:r,docId:[i("docs.tech.agent.artifacts")]},capability:{key:"agent.execution",version:"1.0.0"},io:{input:c,output:p},policy:{auth:"user",pii:[]}});
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import{ScalarTypeEnum as t,SchemaModel as e}from"@lssm/lib.schema";import{docId as s}from"../../docs/registry.js";import{defineQuery as n}from"../../operations/index.js";import{AGENT_DOMAIN as a,AGENT_OWNERS as i,AGENT_STABILITY as u,AGENT_TAGS as o}from"../constants.js";const r=new e({name:"AgentStatusInput",fields:{runId:{type:t.ID(),isOptional:!0},status:{type:t.String_unsecure(),isOptional:!0},limit:{type:t.Int_unsecure(),isOptional:!0},offset:{type:t.Int_unsecure(),isOptional:!0}}}),p=new e({name:"AgentRunSummary",fields:{runId:{type:t.ID(),isOptional:!1},agentKey:{type:t.String_unsecure(),isOptional:!1},status:{type:t.String_unsecure(),isOptional:!1},submittedAt:{type:t.DateTime(),isOptional:!1},startedAt:{type:t.DateTime(),isOptional:!0},completedAt:{type:t.DateTime(),isOptional:!0},contextSnapshotId:{type:t.ID(),isOptional:!0},lastError:{type:t.String_unsecure(),isOptional:!0}}}),c=new e({name:"AgentStatusOutput",fields:{runs:{type:p,isOptional:!1,isArray:!0},total:{type:t.Int_unsecure(),isOptional:!0},nextOffset:{type:t.Int_unsecure(),isOptional:!0}}});export const AgentStatusDocBlock={id:"docs.tech.agent.status",title:"Agent status",summary:"Query agent run status.",kind:"reference",visibility:"public",route:"/docs/tech/agent/status",tags:["agent","status"],body:`# agent.status
|
|
2
|
+
|
|
3
|
+
Returns status summaries for one or many agent runs.
|
|
4
|
+
`},AgentStatusQuery=n({meta:{key:"agent.status",title:"Agent Run Status",version:"1.0.0",description:"Get status for agent runs.",goal:"Provide status and progress visibility for background agents.",context:"Used by Studio and operators to monitor agent execution.",domain:a,owners:i,tags:[...o,"status"],stability:u,docId:[s("docs.tech.agent.status")]},capability:{key:"agent.execution",version:"1.0.0"},io:{input:r,output:c},policy:{auth:"user",pii:[]}});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./agentArtifacts.query.js";export*from"./agentStatus.query.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{compareVersions as s}from"compare-versions";import{SpecContractRegistry as o}from"../registry.js";export class AgentRegistry extends o{constructor(e){super("agent",e)}listNames(){const e=new Set;for(const t of this.items.values())e.add(t.meta.key);return[...e]}require(e,t){const r=this.get(e,t);if(!r)throw Error(`Agent spec not found for ${e}${t!=null?`.v${t}`:""}`);return r}has(e,t){return this.get(e,t)!==void 0}getVersions(e){const t=[];for(const r of this.items.values())if(r.meta.key===e)t.push(r);return t.sort((r,n)=>s(r.meta.version,n.meta.version))}}export function createAgentRegistry(){return new AgentRegistry}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function createCancelSignal(){return{cancelled:!1}}function l(e){const n=new Map;for(const t of e){const r=t.parent,a=n.get(r);if(a)a.push(t);else n.set(r,[t])}return n}function s(e,n){e?.(n)}function i(e,n,t){const{execute:r,onEvent:a,cancelSignal:g}=t;if(g?.cancelled){s(a,{type:"agent.task_cancelled",taskId:e.id});for(const o of n.get(e.id)??[])c(o,n,a);return}s(a,{type:"agent.task_started",taskId:e.id});try{r(e);s(a,{type:"agent.task_completed",taskId:e.id})}catch(o){const d=o instanceof Error?o.message:String(o);s(a,{type:"agent.task_failed",taskId:e.id,error:d});return}for(const o of n.get(e.id)??[])i(o,n,t)}function c(e,n,t){s(t,{type:"agent.task_cancelled",taskId:e.id});for(const r of n.get(e.id)??[])c(r,n,t)}export function runAgentTaskTree(e,n){const t=l(e),r=t.get(void 0)??[];for(const a of r)i(a,t,n)}export const agentRunnerGoalDoc={id:"docs.tech.agent.runner.goal",title:"Agent runner — goal",summary:"Synchronous depth-first agent task-tree executor with cancel propagation.",kind:"goal",visibility:"public",route:"/docs/tech/agent/runner/goal",tags:["agent","runner","task-tree"],body:"# Agent runner\n\nThe agent runner walks a flat list of `AgentTask` records as a depth-first tree,\nexecuting parent tasks before their children. It emits four lifecycle events:\n`agent.task_started`, `agent.task_completed`, `agent.task_failed`, and\n`agent.task_cancelled`. Cancellation propagates to all remaining descendants."};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import{agentProtocolConfigV1Schema as r}from"./protocol/application.js";export const AgentOperationsAsToolsDocBlock={id:"docs.tech.agent.operations-as-tools",title:"Operations as tools",summary:"Reference ContractSpec operations as agent tools. One contract to many surfaces.",kind:"reference",visibility:"public",route:"/docs/tech/agent/operations-as-tools",tags:["agent","tools","operations"],body:"# Operations as tools\n\nReference ContractSpec operations in `AgentSpec.tools` with `operationRef` to reuse schemas, handlers, and output bindings across REST, GraphQL, MCP, and agent execution.\n"},AgentSubagentsDocBlock={id:"docs.tech.agent.subagents",title:"Subagents",summary:"Delegate tasks to subagents with streaming and isolated context.",kind:"reference",visibility:"public",route:"/docs/tech/agent/subagents",tags:["agent","subagents","delegation"],body:`# Subagents
|
|
2
|
+
|
|
3
|
+
Subagents let a primary agent delegate bounded work to worker agents while keeping orchestration, summaries, and approval policy in the parent flow.
|
|
4
|
+
`},AgentMemoryToolsDocBlock={id:"docs.tech.agent.memory-tools",title:"Memory tools",summary:"Governed memory proposals with legacy direct-store compatibility.",kind:"reference",visibility:"public",route:"/docs/tech/agent/memory-tools",tags:["agent","memory","tools"],body:`# Memory tools
|
|
5
|
+
|
|
6
|
+
Protocol V1 memory tools create provenance-bound proposals only. PersonalOS or CompanyOS must independently bind consent, policy, retention, authority, revision, and evidence before committing a mutation. The legacy direct-store adapter remains available only for non-Protocol-V1 agents and does not establish governed production memory.
|
|
7
|
+
`},AgentWorkflowIntegrationDocBlock={id:"docs.tech.agent.workflow-integration",title:"Workflow-agent integration",summary:"Patterns for orchestrator-worker, workflow steps, and evaluator loops.",kind:"reference",visibility:"public",route:"/docs/tech/agent/workflow-integration",tags:["agent","workflow","orchestrator"],body:`# Workflow-agent integration
|
|
8
|
+
|
|
9
|
+
Agents can act as workflow workers, orchestrators, or evaluators. Contract-backed operations keep those integrations explicit and replayable.
|
|
10
|
+
`};export function defineAgent(e){if(!e.meta?.key)throw Error("Agent key is required");if(typeof e.meta.version!=="string")throw Error(`Agent ${e.meta.key} is missing a string version`);if(!e.instructions?.trim())throw Error(`Agent ${e.meta.key} requires instructions`);if(!e.tools?.length)throw Error(`Agent ${e.meta.key} must expose at least one tool`);for(const[t,o]of Object.entries(e.runtime?.ports??{}))if(o!==void 0&&o.trim().length===0)throw Error(`Agent ${e.meta.key} has invalid runtime config: port "${t}" must not be empty`);const n=new Set;for(const t of e.tools){if(n.has(t.name))throw Error(`Agent ${e.meta.key} has duplicate tool name: ${t.name}`);n.add(t.name);if(t.subagentRef&&t.operationRef)throw Error(`Agent ${e.meta.key} tool "${t.name}" cannot have both subagentRef and operationRef. Use one.`);if([t.outputPresentation,t.outputForm,t.outputDataView].filter(Boolean).length>1)throw Error(`Agent ${e.meta.key} tool "${t.name}" has multiple output refs (outputPresentation, outputForm, outputDataView). Use at most one.`)}if(e.communicationProfileRef!==void 0&&e.communicationProfileRef.trim().length===0)throw Error(`Agent ${e.meta.key} has invalid communicationProfileRef: it must not be empty`);if(e.protocol){const t=r.safeParse(e.protocol);if(!t.success)throw Error(`Agent ${e.meta.key} has invalid protocol config: ${t.error.issues[0]?.message??"unsupported protocol version"}`);for(const o of e.tools)if(o.subagentRef?.passConversationHistory)throw Error(`Agent ${e.meta.key} protocol V1 forbids full-history subagent delegation`)}return Object.freeze(e)}export function agentKey(e){return`${e.key}.v${e.version}`}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import{validateAgentTask as s}from"../shared-entities/task-validators.js";export function validateAgentTaskTree(t){for(const a of t){const e=s(a);if(!e.valid)return e}return{valid:!0}}export const agentTaskTreeGoalDoc={id:"docs.tech.agent.task-tree.goal",title:"AgentTask — goal",summary:"Tree-topology specialisation of SharedTask for the agent runtime.",kind:"goal",visibility:"public",route:"/docs/tech/agent/task-tree/goal",tags:["agent","task-tree","a9"],body:"# AgentTask\n\n`AgentTask` is the agent-context specialisation of `SharedTask` (A9 invariant).\nEach node carries at most one `parent` reference, forming a strict tree topology.\n`dependsOn` is prohibited at runtime — use `validateAgentTaskTree()` to enforce this.\n\n## Tree invariant\n\n- Exactly one root per tree (`parent` is `undefined`).\n- Every non-root task references one existing task as its parent.\n- `dependsOn` is reserved for workflow DAG context and MUST NOT be set here."},agentTaskTreeUsageDoc={id:"docs.tech.agent.task-tree.usage",title:"AgentTask — usage",summary:"How to build and validate an agent task tree.",kind:"usage",visibility:"public",route:"/docs/tech/agent/task-tree/usage",tags:["agent","task-tree"],body:`# Using AgentTask
|
|
2
|
+
|
|
3
|
+
## Build a tree
|
|
4
|
+
|
|
5
|
+
\`\`\`ts
|
|
6
|
+
import type { AgentTask } from '@lssm/lib.contracts-spec/agent';
|
|
7
|
+
|
|
8
|
+
const tasks: AgentTask[] = [
|
|
9
|
+
{ id: 'root', label: 'Root task' },
|
|
10
|
+
{ id: 'child-a', label: 'Child A', parent: 'root' },
|
|
11
|
+
{ id: 'child-b', label: 'Child B', parent: 'root' },
|
|
12
|
+
];
|
|
13
|
+
\`\`\`
|
|
14
|
+
|
|
15
|
+
## Validate before running
|
|
16
|
+
|
|
17
|
+
\`\`\`ts
|
|
18
|
+
import { validateAgentTaskTree } from '@lssm/lib.contracts-spec/agent';
|
|
19
|
+
|
|
20
|
+
const result = validateAgentTaskTree(tasks);
|
|
21
|
+
if (!result.valid) throw new Error(result.error);
|
|
22
|
+
\`\`\``};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import{defineDataView as l}from"../../data-views/index.js";import{docId as n}from"../../docs/registry.js";import{defineTranslation as i}from"../../translations/index.js";import{AGENT_DOMAIN as e,AGENT_OWNERS as t,AGENT_STABILITY as s,AGENT_TAGS as d}from"../constants.js";import{AgentStatusQuery as a}from"../queries/agentStatus.query.js";const r=i({meta:{key:"agent.run.index.i18n",version:"1.0.0",domain:e,owners:t},locale:"en",messages:{"field.runId.label":{value:"Run"},"field.agentKey.label":{value:"Agent"},"field.status.label":{value:"Status"},"field.submittedAt.label":{value:"Submitted"},"field.startedAt.label":{value:"Started"},"field.completedAt.label":{value:"Completed"},"field.contextSnapshotId.label":{value:"Context Snapshot"},"filter.runId.label":{value:"Run ID"},"filter.status.label":{value:"Status"}}});export const AgentRunsDataViewDocBlock={id:"docs.tech.agent.run.index",title:"Agent run index view",summary:"Data view for listing agent runs.",kind:"reference",visibility:"public",route:"/docs/tech/agent/run/index",tags:["agent","data-view"],body:`# agent.run.index
|
|
2
|
+
|
|
3
|
+
List view over agent runs and their status.
|
|
4
|
+
`},AgentRunsDataView=l(r,{meta:{key:"agent.run.index",title:"Agent Runs",version:"1.0.0",description:"List background agent runs and their status.",domain:e,owners:t,tags:[...d,"run","index"],stability:s,entity:"agent_run",docId:[n("docs.tech.agent.run.index")]},source:{primary:{key:a.meta.key,version:a.meta.version}},view:{kind:"list",fields:[{key:"runId",label:"field.runId.label",dataPath:"runId"},{key:"agentKey",label:"field.agentKey.label",dataPath:"agentKey"},{key:"status",label:"field.status.label",dataPath:"status"},{key:"submittedAt",label:"field.submittedAt.label",dataPath:"submittedAt"},{key:"startedAt",label:"field.startedAt.label",dataPath:"startedAt"},{key:"completedAt",label:"field.completedAt.label",dataPath:"completedAt"},{key:"contextSnapshotId",label:"field.contextSnapshotId.label",dataPath:"contextSnapshotId"}],primaryField:"runId",secondaryFields:["agentKey","status"],filters:[{key:"runId",label:"filter.runId.label",field:"runId",type:"search"},{key:"status",label:"filter.status.label",field:"status",type:"search"}]},policy:{flags:[],pii:[]}});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./agentRuns.dataView.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const AGENT_PLATFORM_BASELINE_REQUIRED_SUITES=[{suiteId:"agent-platform.governance-security:v1",capabilityRef:"agent.platform.governance-security"},{suiteId:"agent-platform.supply-chain-security:v1",capabilityRef:"agent.platform.supply-chain-security"},{suiteId:"agent-platform.observability-export:v1",capabilityRef:"agent.platform.observability-export"},{suiteId:"agent-platform.load-resilience:v1",capabilityRef:"agent.platform.load-resilience"},{suiteId:"agent-platform.clean-consumer-release:v1",capabilityRef:"agent.platform.clean-consumer-release"}],AGENT_PLATFORM_BASELINE_REQUIRED_SUITE_IDS=AGENT_PLATFORM_BASELINE_REQUIRED_SUITES.map(({suiteId:e})=>e);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{sha256Hex as o}from"@lssm/lib.crypto-utils";export function agentPlatformContractDigest(n){return`sha256:${o(i(n))}`}function i(n){if(Array.isArray(n))return`[${n.map((e)=>i(e)).join(",")}]`;if(n&&typeof n==="object")return`{${Object.entries(n).filter(([,r])=>r!==void 0).sort(([r],[t])=>r.localeCompare(t)).map(([r,t])=>`${JSON.stringify(r)}:${i(t)}`).join(",")}}`;return JSON.stringify(n)??"null"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./baseline-suites.js";export*from"./digest.js";export*from"./types.js";export*from"./validation.js";export*from"./validation-v2.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const AGENT_PLATFORM_PLAN_VERSION="1",AGENT_PLATFORM_PLAN_V2_VERSION="2";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";import{agentPlatformContractDigest as p}from"./digest.js";import{agentPlatformComponentBindingV1Schema as g,agentPlatformDeclaredLossV1Schema as y,agentPlatformEnterpriseControlsV1Schema as u,agentPlatformSuiteReportRefV1Schema as R,certifyAgentPlatform as P}from"./validation.js";const s=e.string().regex(/^sha256:[a-f0-9]{64}$/),t=e.string().min(1),b=e.object({instanceRef:t,componentKind:t,providerProfileRef:t,deploymentAdapterRef:t,runtimeTargetRef:t.optional(),replicaCount:e.number().int().positive().optional(),regionRefs:e.array(t).min(1),trustBoundaryRefs:e.array(t).min(1),evidenceRefs:e.array(t).min(1)});export const agentPlatformDeploymentTopologyV2Schema=e.object({topologyRef:t,topologyKind:e.enum(["single-region","multi-region-active-passive","multi-region-active-active","self-hosted-cluster","hybrid"]),controlPlaneRef:t,dataPlaneRef:t,regionRefs:e.array(t).min(1),trustBoundaryRefs:e.array(t).min(1),instances:e.array(b).min(1),evidenceRefs:e.array(t).min(1)}),agentPlatformPlanV2Schema=e.object({id:e.string().min(1),version:e.literal("2"),agentRef:t,environmentProfileRef:t,infraOpsSpecRef:t,componentBindings:e.array(g).min(1),requiredSuiteIds:e.array(t).min(1),requirementRefs:e.array(t).min(1),policyRefs:e.array(t).min(1),enterpriseControls:u.optional(),deploymentTopology:agentPlatformDeploymentTopologyV2Schema});const C=e.object({attestationRef:t,subjectRef:t,attestorRef:t,attestationKind:e.enum(["consumer-evidence","local-harness"]),attestedAt:e.string().datetime(),evidenceRefs:e.array(t).min(1),limitations:e.array(t)}),v=e.object({componentKind:t,providerProfileRef:t,deploymentAdapterRef:t,status:e.enum(["blocked","candidate","eligible"]),reasonRefs:e.array(t),evidenceRefs:e.array(t).min(1)}),l={planDigest:s,profileDigests:e.array(s).min(1),sourceRevision:e.string().min(7),environmentFingerprint:s,deploymentTopologyDigest:s,suiteReports:e.array(R).min(1),declaredLosses:e.array(y),requiredCapabilityFailures:e.array(t),unclassifiedCapabilities:e.array(t),attestations:e.array(C).min(1),deploymentCertifications:e.array(v).min(1),eligibility:e.object({status:e.enum(["blocked","candidate","eligible"]),reasonRefs:e.array(t),missingRequirementRefs:e.array(t)}),generatedAt:e.string().datetime(),evidenceRefs:e.array(t).min(1),overall:e.enum(["pass","fail"])};export const agentPlatformCertificationReportV2Schema=e.object(l);export function certifyAgentPlatformV2(c,d){const i=agentPlatformPlanV2Schema.parse(c),n=e.object({...l,overall:l.overall.optional()}).parse(d),m={id:i.id,version:"1",agentRef:i.agentRef,environmentProfileRef:i.environmentProfileRef,infraOpsSpecRef:i.infraOpsSpecRef,componentBindings:i.componentBindings,requiredSuiteIds:i.requiredSuiteIds,requirementRefs:i.requirementRefs,policyRefs:i.policyRefs,enterpriseControls:i.enterpriseControls},r=[...P(m,{...n,planDigest:p(m)}).issues];if(n.deploymentTopologyDigest!==p(i.deploymentTopology))r.push({code:"plan_digest_mismatch",message:"Certification report is bound to another deployment topology.",ref:n.deploymentTopologyDigest});for(const f of i.componentBindings){const o=f.componentKind;if(!n.attestations.some((a)=>a.subjectRef===o))r.push({code:"required_suite_not_passed",message:`Selected component ${o} has no deployment attestation.`,ref:o});if(!n.deploymentCertifications.some((a)=>a.componentKind===o))r.push({code:"required_suite_not_passed",message:`Selected component ${o} has no deployment certification.`,ref:o});if(!i.deploymentTopology.instances.some((a)=>a.componentKind===o&&a.providerProfileRef===f.providerProfileRef.id))r.push({code:"required_capability_failure",message:`Deployment topology is missing ${o}.`,ref:o})}if(n.eligibility.status==="blocked")r.push({code:"required_capability_failure",message:"Deployment eligibility is blocked.",ref:n.eligibility.reasonRefs[0]});return{report:{...n,overall:r.length===0?"pass":"fail"},issues:r}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";import{AGENT_PLATFORM_BASELINE_REQUIRED_SUITE_IDS as R}from"./baseline-suites.js";import{agentPlatformContractDigest as P}from"./digest.js";const p=e.string().regex(/^sha256:[a-f0-9]{64}$/),t=e.string().min(1);export const agentPlatformPinnedRefSchema=e.object({id:e.string().min(1),version:e.string().min(1),digest:p}),agentPlatformComponentBindingV1Schema=e.object({componentKind:e.string().min(1),providerProfileRef:agentPlatformPinnedRefSchema,runtimeTargetRef:t.optional(),adapterRef:t.optional(),configRef:t.optional(),evidenceRefs:e.array(t).min(1)}),agentPlatformEnterpriseControlsV1Schema=e.object({dataGovernance:e.object({retentionPolicyRef:t,deletionPolicyRef:t,exportPolicyRef:t,residencyPolicyRef:t,encryptionPolicyRef:t,backupPolicyRef:t,rpoSeconds:e.number().int().nonnegative(),rtoSeconds:e.number().int().nonnegative()}),identity:e.object({sso:e.enum(["not_required","optional","required"]),scim:e.enum(["not_required","optional","required"]),rbacPolicyRef:t,breakGlassPolicyRef:t}),observability:e.object({auditSinkRef:t,traceSinkRef:t,metricsSinkRef:t,costSinkRef:t,budgetPolicyRef:t,defaultContentCapture:e.enum(["deny","redacted"])})});const y=e.array(t).min(1).max(100).superRefine((n,c)=>{if(new Set(n).size!==n.length)c.addIssue({code:"custom",message:"Agent platform required suite IDs must be unique."});for(const s of R)if(!n.includes(s))c.addIssue({code:"custom",message:`Agent platform plan is missing mandatory baseline suite ${s}.`})});export const agentPlatformPlanV1Schema=e.object({id:e.string().min(1),version:e.literal("1"),agentRef:t,environmentProfileRef:t,infraOpsSpecRef:t,componentBindings:e.array(agentPlatformComponentBindingV1Schema).min(1),requiredSuiteIds:y,requirementRefs:e.array(t).min(1),policyRefs:e.array(t).min(1),enterpriseControls:agentPlatformEnterpriseControlsV1Schema.optional()}),agentPlatformSuiteReportRefV1Schema=e.object({suiteId:e.string().min(1),suiteVersion:e.string().min(1),targetRef:t,reportRef:t,status:e.enum(["pass","fail","not_applicable"]),required:e.boolean()}),agentPlatformDeclaredLossV1Schema=e.object({capabilityRef:t,reason:e.string().min(1),acceptanceRef:t.optional()});const d={planDigest:p,profileDigests:e.array(p).min(1),sourceRevision:e.string().min(7),environmentFingerprint:p,suiteReports:e.array(agentPlatformSuiteReportRefV1Schema).min(1),declaredLosses:e.array(agentPlatformDeclaredLossV1Schema),requiredCapabilityFailures:e.array(t),unclassifiedCapabilities:e.array(t),generatedAt:e.string().datetime(),evidenceRefs:e.array(t).min(1)};export const agentPlatformCertificationReportV1Schema=e.object({...d,overall:e.enum(["pass","fail"])});export function certifyAgentPlatform(n,c){const s=agentPlatformPlanV1Schema.parse(n),o=e.object(d).parse(c),r=[],m=new Set(o.profileDigests);if(o.planDigest!==P(s))r.push({code:"plan_digest_mismatch",message:"Certification report is bound to another platform plan.",ref:o.planDigest});if(!s.enterpriseControls)r.push({code:"missing_enterprise_controls",message:"Production certification requires explicit enterprise control inputs.",ref:s.id});for(const i of s.componentBindings){const a=i.providerProfileRef.digest;if(!m.has(a))r.push({code:"missing_profile_digest",message:`Certification is missing provider profile digest ${a}.`,ref:i.providerProfileRef.id})}for(const i of o.suiteReports)if(i.required&&i.status!=="pass")r.push({code:"required_suite_not_passed",message:`Required suite ${i.suiteId} did not pass.`,ref:i.reportRef});else if(i.status==="fail")r.push({code:"failed_suite",message:`Suite ${i.suiteId} failed.`,ref:i.reportRef});for(const i of s.requiredSuiteIds){const a=o.suiteReports.filter(({suiteId:f})=>f===i),u=a.some(({required:f,status:l})=>f&&l==="pass"),g=a.some(({required:f,status:l})=>f&&l!=="pass");if(!u&&!g)r.push({code:"required_suite_not_passed",message:`Required plan suite ${i} has no passing required report.`,ref:i})}for(const i of o.declaredLosses)if(!i.acceptanceRef)r.push({code:"unaccepted_loss",message:`Declared loss ${i.capabilityRef} has no acceptance ref.`,ref:i.capabilityRef});for(const i of o.requiredCapabilityFailures)r.push({code:"required_capability_failure",message:`Required capability ${i} failed.`,ref:i});for(const i of o.unclassifiedCapabilities)r.push({code:"unclassified_capability",message:`Capability ${i} is not classified.`,ref:i});return{report:{...o,overall:r.length===0?"pass":"fail"},issues:r}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./types.js";export*from"./validation.js";
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";export const agentStepEvidenceKindSchema=e.enum(["source_message","retrieval_context","tool_receipt","policy_decision","eval_result","human_feedback","redaction_decision","replay_bundle","rollback_version"]),agentStepConfidenceLevelSchema=e.enum(["blocked","low","medium","high","verified"]),agentStepRiskLevelSchema=e.enum(["low","medium","high","critical"]),agentStepReviewStatusSchema=e.enum(["not_required","needs_review","changes_requested","approved","rejected","superseded"]),agentStepImprovementStatusSchema=e.enum(["draft","testing","needs_approval","approved","promoted","rejected","rolled_back"]),forbiddenRawReasoningSurfaceKeys=["chainOfThought","chain_of_thought","cot","hiddenReasoning","hidden_reasoning","rawChainOfThought","raw_chain_of_thought","rawReasoning","raw_reasoning","reasoningText","reasoning_text","stepReasoningText","contractspec_step_reasoning_text"];const c=new Set(forbiddenRawReasoningSurfaceKeys);export const agentStepEvidencePointerSchema=e.object({id:e.string().min(1),kind:agentStepEvidenceKindSchema,ref:e.string().min(1),sourcePackage:e.string().min(1),timestamp:e.string().min(1),redactionStatus:e.enum(["none","redacted","restricted"]),artifactHash:e.string().min(1).optional(),ontologyRef:e.string().min(1).optional()}).strict(),agentStepReviewEntrySchema=e.object({state:agentStepReviewStatusSchema,at:e.string().min(1),reviewerRef:e.string().min(1).optional(),reason:e.string().min(1).optional(),correctionRefs:e.array(e.string().min(1)).optional(),queueRef:e.string().min(1).optional()}).strict(),agentStepReviewStateSchema=e.object({current:agentStepReviewStatusSchema,history:e.array(agentStepReviewEntrySchema).min(1)}).strict().superRefine((t,n)=>{if(t.history.at(-1)?.state!==t.current)n.addIssue({code:e.ZodIssueCode.custom,message:"reviewState.current must match the last append-only history state",path:["current"]})}),agentStepReplayBundleRefSchema=e.object({id:e.string().min(1),uri:e.string().min(1),artifactHash:e.string().min(1),createdAt:e.string().min(1),requiredEvidenceRefs:e.array(e.string().min(1)).min(1),inputFixtureRefs:e.array(e.string().min(1)).min(1),variableVersionRefs:e.array(e.string().min(1)).min(1),evaluatorRefs:e.array(e.string().min(1)).min(1),rollbackVersionRefs:e.array(e.string().min(1)).min(1)}).strict(),agentStepTweakableVariableSchema=e.object({id:e.string().min(1),scope:e.enum(["step","workflow","tenant","domain"]),kind:e.enum(["prompt","threshold","tool_choice","model_route","retrieval_filter","policy_rule","skill_version"]),currentValueRef:e.string().min(1),allowedValuesRef:e.string().min(1).optional(),owner:e.string().min(1),riskLevel:agentStepRiskLevelSchema,requiresApproval:e.boolean(),effectiveFrom:e.string().min(1),rollbackRef:e.string().min(1)}).strict().superRefine((t,n)=>{if((t.riskLevel==="high"||t.riskLevel==="critical")&&!t.requiresApproval)n.addIssue({code:e.ZodIssueCode.custom,message:"high-risk tweakable variables require approval",path:["requiresApproval"]})}),agentStepSpecSchema=e.object({id:e.string().min(1),version:e.string().min(1),purpose:e.string().min(1),inputKinds:e.array(e.string().min(1)).min(1),outputArtifactKind:e.string().min(1),agentRef:e.string().min(1),promptRef:e.string().min(1).optional(),skillRef:e.string().min(1).optional(),toolRefs:e.array(e.string().min(1)).optional(),policyRefs:e.array(e.string().min(1)).min(1),requiredEvidenceKinds:e.array(agentStepEvidenceKindSchema).min(1),reviewPolicyRef:e.string().min(1),redactionPolicyRef:e.string().min(1)}).strict(),agentStepArtifactSchema=e.object({id:e.string().min(1),stepSpecRef:e.string().min(1),runRef:e.string().min(1),attempt:e.number().int().positive(),artifactKind:e.string().min(1),payloadRef:e.string().min(1),summary:e.string().min(1),createdAt:e.string().min(1),producerRef:e.string().min(1),evidencePointers:e.array(agentStepEvidencePointerSchema),confidence:agentStepConfidenceLevelSchema,confidenceScore:e.number().min(0).max(1).optional(),reviewState:agentStepReviewStateSchema,variableInfluences:e.array(e.string().min(1)),replayBundleRef:e.string().min(1).optional(),supersedes:e.string().min(1).optional(),supersededBy:e.string().min(1).optional(),redactionStatus:e.enum(["none","redacted","restricted"])}).strict().superRefine((t,n)=>{if(t.confidence==="verified"&&t.evidencePointers.length===0)n.addIssue({code:e.ZodIssueCode.custom,message:"verified confidence requires non-empty evidence pointers",path:["evidencePointers"]});if(t.confidence==="verified"&&!t.evidencePointers.some((i)=>i.kind==="eval_result"))n.addIssue({code:e.ZodIssueCode.custom,message:"verified confidence requires eval_result evidence",path:["evidencePointers"]})}),agentStepArtifactDiffSchema=e.object({id:e.string().min(1),beforeArtifactRef:e.string().min(1),afterArtifactRef:e.string().min(1),changedVariableRefs:e.array(e.string().min(1)),confidenceChanged:e.boolean(),evidenceChanged:e.boolean(),reviewStateChanged:e.boolean(),replayBundleRef:e.string().min(1)}).strict(),agentStepImprovementProposalSchema=e.object({id:e.string().min(1),sourceEvidenceRefs:e.array(e.string().min(1)).min(1),affectedStepRefs:e.array(e.string().min(1)),affectedWorkflowRefs:e.array(e.string().min(1)),affectedVariableRefs:e.array(e.string().min(1)),proposedChangeKind:e.enum(["prompt","threshold","tool_choice","model_route","retrieval_filter","policy_rule","skill_version","public_contract","runtime_policy","model_checkpoint","vendor_export"]),hypothesis:e.string().min(1),riskClassification:agentStepRiskLevelSchema,requiredApproval:e.boolean(),evalReplayPlanRef:e.string().min(1),promotionCriteriaRefs:e.array(e.string().min(1)),rollbackEvidenceRefs:e.array(e.string().min(1)),versionRefs:e.array(e.string().min(1)),promotionEvidenceRefs:e.array(e.string().min(1)),replayBundleRefs:e.array(e.string().min(1)),status:agentStepImprovementStatusSchema,autoApply:e.boolean().default(!1),policyAllowsAutoApply:e.boolean().default(!1),testsPassed:e.boolean().default(!1)}).strict().superRefine((t,n)=>{if((t.riskClassification==="high"||t.riskClassification==="critical")&&!t.requiredApproval)n.addIssue({code:e.ZodIssueCode.custom,message:"high-risk proposals require human approval",path:["requiredApproval"]});if(t.status==="promoted"){const i=[["replayBundleRefs",t.replayBundleRefs],["versionRefs",t.versionRefs],["rollbackEvidenceRefs",t.rollbackEvidenceRefs],["promotionEvidenceRefs",t.promotionEvidenceRefs]];for(const[r,s]of i)if(s.length===0)n.addIssue({code:e.ZodIssueCode.custom,message:"promoted proposals require replay, version, rollback, and promotion evidence",path:[r]})}if(t.autoApply&&!canAutoApplyAgentStepImprovement(t))n.addIssue({code:e.ZodIssueCode.custom,message:"autoApply requires policy, tests, replay, version, rollback, promotion evidence, and no human-approval risk",path:["autoApply"]})});function a(t){return t.issues.map((n)=>({path:n.path.map((i)=>typeof i==="symbol"?i.toString():i),message:n.message}))}function p(t,n,i){t.push({path:n,message:i})}export function findRawReasoningSurfaceKeys(t,n=[]){const i=[];if(!t||typeof t!=="object")return i;if(Array.isArray(t)){t.forEach((r,s)=>{i.push(...findRawReasoningSurfaceKeys(r,[...n,s]))});return i}for(const[r,s]of Object.entries(t)){const o=[...n,r];if(c.has(r))p(i,o,"Raw chain-of-thought/reasoning fields are not allowed on the agent-step observability surface");i.push(...findRawReasoningSurfaceKeys(s,o))}return i}export function canAutoApplyAgentStepImprovement(t){return t.status==="promoted"&&!t.requiredApproval&&t.riskClassification!=="high"&&t.riskClassification!=="critical"&&t.policyAllowsAutoApply&&t.testsPassed&&t.replayBundleRefs.length>0&&t.versionRefs.length>0&&t.rollbackEvidenceRefs.length>0&&t.promotionEvidenceRefs.length>0}export function validateAgentStepArtifact(t){const n=findRawReasoningSurfaceKeys(t),i=agentStepArtifactSchema.safeParse(t);if(!i.success)return{valid:!1,issues:[...a(i.error),...n]};return n.length>0?{valid:!1,issues:n}:{valid:!0,value:i.data,issues:[]}}export function validateAgentStepImprovementProposal(t){const n=agentStepImprovementProposalSchema.safeParse(t);if(!n.success)return{valid:!1,issues:a(n.error)};return{valid:!0,value:n.data,issues:[]}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{StabilityEnum as t,TagsEnum as T}from"../ownership.js";export const AGENTIC_INTERACTION_DOMAIN="agentic-interaction",AGENTIC_INTERACTION_OWNERS=["platform.ai"],AGENTIC_INTERACTION_TAGS=[T.Automation,"agentic-interaction","safety"],AGENTIC_INTERACTION_STABILITY=t.Experimental;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineCapability as o}from"../capabilities/index.js";import{defineQuery as r}from"../operations/index.js";import{AGENTIC_INTERACTION_DOMAIN as n,AGENTIC_INTERACTION_OWNERS as i,AGENTIC_INTERACTION_STABILITY as a,AGENTIC_INTERACTION_TAGS as s}from"./constants.js";export const AGENTIC_INTERACTION_BLOCKED_SIGNALS=["credential_request","production_send","arbitrary_shell_execution","companyos_high_impact_bypass"],AgenticInteractionAipMappingMatrix=[{signal:"credential_request",decision:"deny",aipControl:"AIP-SAFETY-CREDENTIALS-NO-COLLECTION",rationale:"Agentic message handlers must never request, collect, echo, or persist credentials or secrets.",safeAlternative:"Redirect the user to a managed credential vault or administrator-approved connector setup flow."},{signal:"production_send",decision:"deny",aipControl:"AIP-SAFETY-PRODUCTION-SEND-NO-DISPATCH",rationale:"Inbound messages cannot directly trigger production sends such as email, SMS, payments, or customer-visible delivery.",safeAlternative:"Create a draft or approval request with explicit operator review before any production dispatch."},{signal:"arbitrary_shell_execution",decision:"deny",aipControl:"AIP-SAFETY-SHELL-NO-MESSAGE-EXEC",rationale:"Free-form shell commands from messages are unbounded execution and must not cross into runtime execution lanes.",safeAlternative:"Offer a read-only explanation or route to a pre-registered, policy-reviewed automation skill."},{signal:"companyos_high_impact_bypass",decision:"deny",aipControl:"AIP-SAFETY-COMPANYOS-HIGH-IMPACT-GATE",rationale:"CompanyOS high-impact actions require the CompanyOS approval gate and cannot be bypassed by agentic chat intent.",safeAlternative:"Open a CompanyOS execution proposal that remains blocked until the configured approval policy is satisfied."}];const c=new t({name:"AgenticInteractionAssessInput",fields:{messageId:{type:e.ID(),isOptional:!1},channelId:{type:e.ID(),isOptional:!0},tenantId:{type:e.ID(),isOptional:!0},actorId:{type:e.ID(),isOptional:!0},messageText:{type:e.String_unsecure(),isOptional:!1},requestedAction:{type:e.String_unsecure(),isOptional:!0},metadata:{type:e.JSONObject(),isOptional:!0}}}),p=new t({name:"AgenticInteractionAssessOutput",fields:{decision:{type:e.String_unsecure(),isOptional:!1},blocked:{type:e.Boolean(),isOptional:!1},signals:{type:e.String_unsecure(),isOptional:!1,isArray:!0},aipControlRefs:{type:e.String_unsecure(),isOptional:!1,isArray:!0},safeAlternative:{type:e.String_unsecure(),isOptional:!0},assessedAt:{type:e.DateTime(),isOptional:!1}}});export const AgenticInteractionAssessQuery=r({meta:{key:"agenticInteraction.assess",title:"Assess Agentic Interaction",version:"1.0.0",description:"Classify inbound agentic messages against fail-closed safety controls before any execution or dispatch.",goal:"Keep credentials, production sends, arbitrary shell execution, and CompanyOS high-impact bypasses out of message-driven automation.",context:"Used by CommunicationOS, agent runtimes, and CompanyOS bridges before turning a message into a command, draft, or execution proposal.",domain:n,owners:i,tags:[...s,"aip","fail-closed"],stability:a},capability:{key:"agentic-interaction.safety-gate",version:"1.0.0"},io:{input:c,output:p},policy:{auth:"user",pii:["messageText"]}}),AgenticInteractionSafetyGateCapability=o({meta:{key:"agentic-interaction.safety-gate",version:"1.0.0",kind:"integration",title:"Agentic Interaction Safety Gate",description:"Fail-closed safety gate for inbound agentic messages before commands, production sends, shell execution, or CompanyOS high-impact actions.",domain:n,owners:i,tags:[...s,"aip","fail-closed"],stability:a},provides:[{surface:"operation",key:"agenticInteraction.assess",version:"1.0.0",description:"Assess an inbound message against agentic interaction blocked signals."}]}),agenticInteractionOperationContracts={AgenticInteractionAssessQuery},agenticInteractionCapabilityContracts={AgenticInteractionSafetyGateCapability};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{AgenticInteractionAssessQuery as e,AgenticInteractionSafetyGateCapability as r}from"./contracts.js";export*from"./constants.js";export*from"./contracts.js";export function registerAgenticInteractionOperations(t){return t.register(e)}export function registerAgenticInteractionCapabilities(t){return t.register(r)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";import{addSecretMaterialIssue as u,addSortedUniqueIssue as n,agentpackDigestV1Schema as h,agentpackEvidenceRefV1Schema as d,agentpackIntegrationShaSchema as r,agentpackRedactionV1Schema as g,agentpackRelativePathSchema as o}from"./evidence-schema-primitives.js";const m=e.enum(["pass","warn","fail"]),c=e.array(d).min(1),f=e.strictObject({path:o,digest:h}),l=e.strictObject({id:e.string().min(1),status:m,summary:e.string().min(1),evidenceRefs:c}),p=e.strictObject({id:e.string().min(1),statement:e.string().min(1),evidenceRefs:c}),S=e.strictObject({id:e.string().min(1),severity:e.enum(["warning","blocking"]),message:e.string().min(1),evidenceRefs:c}),v=e.discriminatedUnion("required",[e.strictObject({required:e.literal(!1)}),e.strictObject({required:e.literal(!0),decisionRef:d,replayRef:d}).superRefine((i,a)=>{if(i.decisionRef.kind!=="connect-decision")a.addIssue({code:e.ZodIssueCode.custom,message:"decisionRef must be Connect decision evidence",path:["decisionRef","kind"]});if(i.replayRef.kind!=="replay")a.addIssue({code:e.ZodIssueCode.custom,message:"replayRef must be replay evidence",path:["replayRef","kind"]})})]);export const agentpackAiAuditReceiptV1Schema=e.strictObject({schema:e.literal("contractspec.agentpacks.ai-audit-receipt"),version:e.literal("1.0.0"),id:e.string().min(1),status:m,changedPaths:e.array(o).min(1),activeRules:e.array(f).min(1),checks:e.array(l).min(1),assumptions:e.array(p),violations:e.array(S),traceManifestRefs:c,connect:v,redaction:g,evidenceRefs:c,auditedIntegrationSha:r,verification:e.strictObject({command:e.string().min(1),workingDirectory:o,deterministic:e.literal(!0),expectedIntegrationSha:r})}).superRefine((i,a)=>{n(i.changedPaths,a,["changedPaths"],"Changed paths");n(i.activeRules.map(({path:t})=>t),a,["activeRules"],"Active rule paths");n(i.checks.map(({id:t})=>t),a,["checks"],"Check ids");n(i.assumptions.map(({id:t})=>t),a,["assumptions"],"Assumption ids");n(i.violations.map(({id:t})=>t),a,["violations"],"Violation ids");const s=I(i);if(i.status!==s)a.addIssue({code:e.ZodIssueCode.custom,message:`Receipt status must be ${s} for its checks and violations`,path:["status"]});if(s!=="pass"&&!i.connect.required)a.addIssue({code:e.ZodIssueCode.custom,message:"Warn/fail receipts require Connect decision and replay evidence",path:["connect"]});if(i.verification.expectedIntegrationSha!==i.auditedIntegrationSha)a.addIssue({code:e.ZodIssueCode.custom,message:"Verification SHA must match audited integration SHA",path:["verification","expectedIntegrationSha"]});if(/\r|\n|\b(?:date|random|curl|wget|latest)\b/i.test(i.verification.command))a.addIssue({code:e.ZodIssueCode.custom,message:"Verification command contains a nondeterministic operation",path:["verification","command"]});u(i,a)});function I(i){if(i.checks.some(({status:a})=>a==="fail")||i.violations.some(({severity:a})=>a==="blocking"))return"fail";return i.checks.some(({status:a})=>a==="warn")||i.violations.some(({severity:a})=>a==="warning")?"warn":"pass"}export function addIntegrationShaIssue(i,a,s){if(i.auditedIntegrationSha!==a.integrationSha)s.addIssue({code:e.ZodIssueCode.custom,message:"Audit receipt is stale or does not match the integration SHA",path:["auditedIntegrationSha"]});if(JSON.stringify(i.changedPaths)!==JSON.stringify(a.changedPaths))s.addIssue({code:e.ZodIssueCode.custom,message:"Audit receipt changed-path scope does not match the audited scope",path:["changedPaths"]})}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{sha256Hex as i}from"@lssm/lib.crypto-utils";function r(e){if(Array.isArray(e))return e.map(r);if(e===null||typeof e!=="object")return e;return Object.fromEntries(Object.entries(e).sort(([t],[a])=>t.localeCompare(a)).map(([t,a])=>[t,r(a)]))}function n(e){return`${JSON.stringify(r(e))}
|
|
2
|
+
`}export function canonicalizeAgentpackGeneratedArtifactTraceV1(e){return n(e)}export function canonicalizeAgentpackGenerationTraceManifestV1(e){return n(e)}export function canonicalizeAgentpackAiAuditReceiptV1(e){return n(e)}export function digestAgentpackGenerationTraceManifestV1(e){return{algorithm:"sha256",value:i(n(e))}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{digestAgentpackGenerationTraceManifestV1 as o}from"./evidence-canonicalization.js";const n={policy:"fixed-fixture",generatedAt:"2026-01-01T00:00:00.000Z",sourceValue:"2026-01-01T00:00:00.000Z"},c="1234567890abcdef1234567890abcdef12345678";function t(e){return{algorithm:"sha256",value:e.repeat(64)}}function a(e,s,i,r){return{id:e,kind:s,path:i,digest:t(r)}}export function createAgentpackGeneratedArtifactTraceV1Fixture(){const e=a("capability-matrix","file","evidence/capability-matrix.json","c");return{schema:"contractspec.agentpacks.generated-artifact-trace",version:"1.0.0",id:"trace.contracts-rule.codex",sources:[{featureUnitId:"contractspec.rules.contracts-first",sourcePath:"packs/contractspec-rules/rules/contracts-first.md",schemaRefs:["agentpacks/feature-unit.schema.json"],sharedInvariant:"Contracts are authored before implementation.",sourceDigest:t("a")}],target:{targetId:"codexcli",baseDir:".codex",artifactPath:".codex/memories/contracts-first.md",action:"update"},transform:{kind:"schema-map",lossPolicy:"lossy-transform-reviewed",diagnostics:[{code:"codex-memory-projection",severity:"info",message:"Rule projected to a Codex memory.",evidenceRefs:[e]}]},capabilityEvidence:[{targetId:"codexcli",featureKind:"rule",status:"transformed",evidenceRefs:[e]}],artifactDigest:t("b"),connect:{decisionRef:a("connect-decision","connect-decision","evidence/connect/decision.json","d"),replayRef:a("connect-replay","replay","evidence/connect/replay.json","e")},redaction:{status:"not-required",removedPaths:[],evidenceRefs:[]},generatedAt:n}}export function createAgentpackGenerationTraceManifestV1Fixture(){const e={schema:"contractspec.agentpacks.generation-trace-manifest",version:"1.0.0",id:"manifest.agentpacks.codex",traces:[createAgentpackGeneratedArtifactTraceV1Fixture()],generatedAt:n};return{...e,manifestDigest:o(e)}}export function createAgentpackAiAuditReceiptV1Fixture(){const e=a("agentpacks-evidence-tests","test","evidence/tests/agentpacks-evidence.json","f");return{schema:"contractspec.agentpacks.ai-audit-receipt",version:"1.0.0",id:"audit.agentpacks.integration",status:"pass",changedPaths:["packages/libs/contracts-spec/src/agentpacks/evidence-types.ts","packages/libs/contracts-spec/src/agentpacks/evidence-validation.ts"],activeRules:[{path:".codex/memories/contracts-first.md",digest:t("1")},{path:"AGENTS.md",digest:t("2")}],checks:[{id:"agentpacks-evidence-tests",status:"pass",summary:"Strict evidence validation passed.",evidenceRefs:[e]}],assumptions:[],violations:[],traceManifestRefs:[a("generation-trace-manifest","file","evidence/manifests/agentpacks.json","3")],connect:{required:!1},redaction:{status:"not-required",removedPaths:[],evidenceRefs:[]},evidenceRefs:[e],auditedIntegrationSha:c,verification:{command:"bun test src/agentpacks/evidence.test.ts",workingDirectory:"packages/libs/contracts-spec",deterministic:!0,expectedIntegrationSha:c}}}export const AGENTPACK_AI_AUDIT_FIXTURE_INTEGRATION_SHA=c;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";const o=/^[a-f0-9]{64}$/,a=/^[a-f0-9]{40}$/,c=/^(?!\/)(?!.*(?:^|\/)\.\.?\/(?:|$))(?!.*\\).+$/,d=/^(?:authorization|credential|password|passphrase|privateKey|secret|token|apiKey)$/i,p=/(?:-----BEGIN [A-Z ]*PRIVATE KEY-----|\b(?:ghp|glpat|sk|xox[baprs])[_-][A-Za-z0-9-]{8,}|\b(?:api[_-]?key|password|secret|token)\s*[:=]\s*\S+)/i;export const agentpackSha256Schema=e.string().regex(o),agentpackIntegrationShaSchema=e.string().regex(a),agentpackRelativePathSchema=e.string().min(1).regex(c,"Expected a normalized relative path"),agentpackDigestV1Schema=e.strictObject({algorithm:e.literal("sha256"),value:agentpackSha256Schema}),agentpackEvidenceRefV1Schema=e.strictObject({id:e.string().min(1),kind:e.enum(["file","connect-decision","replay","test","command-output"]),path:agentpackRelativePathSchema,digest:agentpackDigestV1Schema});const u=e.strictObject({status:e.literal("not-required"),removedPaths:e.tuple([]),evidenceRefs:e.tuple([])}),m=e.strictObject({status:e.literal("applied"),removedPaths:e.array(agentpackRelativePathSchema).min(1),evidenceRefs:e.array(agentpackEvidenceRefV1Schema).min(1)}).superRefine((t,s)=>addSortedUniqueIssue(t.removedPaths,s,["removedPaths"],"Redacted paths"));export const agentpackRedactionV1Schema=e.discriminatedUnion("status",[u,m]),agentpackDeterministicInstantV1Schema=e.strictObject({policy:e.enum(["source-date-epoch","fixed-fixture"]),generatedAt:e.string().datetime({offset:!0}),sourceValue:e.string().min(1)}).superRefine((t,s)=>{if((t.policy==="source-date-epoch"?g(t.sourceValue):t.sourceValue)!==t.generatedAt)s.addIssue({code:e.ZodIssueCode.custom,message:"generatedAt does not match its deterministic source policy",path:["generatedAt"]})});function g(t){if(!/^\d+$/.test(t))return;const s=Number(t)*1000;if(!Number.isSafeInteger(s))return;const r=new Date(s);return Number.isNaN(r.getTime())?void 0:r.toISOString()}export function addSecretMaterialIssue(t,s,r=[]){if(typeof t==="string"&&p.test(t)){s.addIssue({code:e.ZodIssueCode.custom,message:"Secret-like material is forbidden in agentpack evidence",path:r});return}if(Array.isArray(t)){t.forEach((i,n)=>addSecretMaterialIssue(i,s,[...r,n]));return}if(!t||typeof t!=="object")return;for(const[i,n]of Object.entries(t)){if(d.test(i))s.addIssue({code:e.ZodIssueCode.custom,message:`Secret-bearing field is forbidden: ${i}`,path:[...r,i]});addSecretMaterialIssue(n,s,[...r,i])}}export function addSortedUniqueIssue(t,s,r,i){const n=[...new Set(t)].sort();if(JSON.stringify(t)!==JSON.stringify(n))s.addIssue({code:e.ZodIssueCode.custom,message:`${i} must be sorted and unique`,path:r})}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";import{digestAgentpackGenerationTraceManifestV1 as l}from"./evidence-canonicalization.js";import{addSecretMaterialIssue as p,addSortedUniqueIssue as o,agentpackDeterministicInstantV1Schema as u,agentpackDigestV1Schema as d,agentpackEvidenceRefV1Schema as c,agentpackRedactionV1Schema as h,agentpackRelativePathSchema as m}from"./evidence-schema-primitives.js";import{agentpackFeatureKindSchema as y,agentpackLossPolicySchema as b,agentpackTargetCapabilityStatusSchema as k,agentpackToolTargetIdSchema as f}from"./validation.js";const I=e.strictObject({featureUnitId:e.string().min(1),sourcePath:m,schemaRefs:e.array(e.string().min(1)).min(1),sharedInvariant:e.string().min(1),sourceDigest:d}),S=e.strictObject({targetId:f,baseDir:m,artifactPath:m,action:e.enum(["create","update","delete","skip"])}),v=e.strictObject({code:e.string().min(1),severity:e.enum(["info","warning","blocking"]),message:e.string().min(1),unsupportedCapability:e.string().min(1).optional(),evidenceRefs:e.array(c).min(1)}),R=e.strictObject({targetId:f,featureKind:y,status:k,evidenceRefs:e.array(c).min(1)}),C=e.strictObject({decisionRef:c,replayRef:c}).superRefine((t,s)=>{if(t.decisionRef.kind!=="connect-decision")s.addIssue({code:e.ZodIssueCode.custom,message:"decisionRef must be Connect decision evidence",path:["decisionRef","kind"]});if(t.replayRef.kind!=="replay")s.addIssue({code:e.ZodIssueCode.custom,message:"replayRef must be replay evidence",path:["replayRef","kind"]})});export const agentpackGeneratedArtifactTraceV1Schema=e.strictObject({schema:e.literal("contractspec.agentpacks.generated-artifact-trace"),version:e.literal("1.0.0"),id:e.string().min(1),sources:e.array(I).min(1),target:S,transform:e.strictObject({kind:e.enum(["copy","merge","schema-map","sidecar-trace","manual"]),lossPolicy:b,diagnostics:e.array(v)}),capabilityEvidence:e.array(R).min(1),artifactDigest:d,connect:C,redaction:h,generatedAt:u}).superRefine((t,s)=>{o(t.sources.map(({featureUnitId:a,sourcePath:i})=>`${a}:${i}`),s,["sources"],"Source bindings");const g=t.target.baseDir==="."?"":`${t.target.baseDir}/`;if(!t.target.artifactPath.startsWith(g))s.addIssue({code:e.ZodIssueCode.custom,message:"artifactPath must be contained by target baseDir",path:["target","artifactPath"]});const r=t.capabilityEvidence.some((a)=>a.status==="blocked"||a.status==="ignored-by-design"),n=t.transform.diagnostics.some((a)=>a.severity!=="info"&&a.unsupportedCapability);if((r||t.target.action==="skip")&&!n)s.addIssue({code:e.ZodIssueCode.custom,message:"Blocked or skipped outputs require an unsupported diagnostic",path:["transform","diagnostics"]});for(const[a,i]of t.capabilityEvidence.entries())if(i.targetId!==t.target.targetId)s.addIssue({code:e.ZodIssueCode.custom,message:"Capability evidence target must match artifact target",path:["capabilityEvidence",a,"targetId"]});p(t,s)}),agentpackGenerationTraceManifestV1Schema=e.strictObject({schema:e.literal("contractspec.agentpacks.generation-trace-manifest"),version:e.literal("1.0.0"),id:e.string().min(1),traces:e.array(agentpackGeneratedArtifactTraceV1Schema).min(1),manifestDigest:d,generatedAt:u}).superRefine((t,s)=>{o(t.traces.map(({id:a})=>a),s,["traces"],"Trace ids");o(t.traces.map(({target:a})=>a.artifactPath),s,["traces"],"Artifact paths");for(const[a,i]of t.traces.entries())if(JSON.stringify(i.generatedAt)!==JSON.stringify(t.generatedAt))s.addIssue({code:e.ZodIssueCode.custom,message:"Trace and manifest generatedAt policies must match",path:["traces",a,"generatedAt"]});const{manifestDigest:g,...r}=t,n=l(r);if(t.manifestDigest.value!==n.value)s.addIssue({code:e.ZodIssueCode.custom,message:"manifestDigest does not match canonical manifest content",path:["manifestDigest","value"]});p(t,s)});
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{addIntegrationShaIssue as i,agentpackAiAuditReceiptV1Schema}from"./evidence-audit-validation.js";import{agentpackGeneratedArtifactTraceV1Schema,agentpackGenerationTraceManifestV1Schema}from"./evidence-trace-validation.js";export{agentpackAiAuditReceiptV1Schema,agentpackGeneratedArtifactTraceV1Schema,agentpackGenerationTraceManifestV1Schema};export function validateAgentpackGeneratedArtifactTraceV1(e){return agentpackGeneratedArtifactTraceV1Schema.parse(e)}export function validateAgentpackGenerationTraceManifestV1(e){return agentpackGenerationTraceManifestV1Schema.parse(e)}export function validateAgentpackAiAuditReceiptV1(e,t){return agentpackAiAuditReceiptV1Schema.superRefine((n,c)=>i(n,t,c)).parse(e)}export function isAgentpackAiAuditReceiptV1(e,t){return r(e,t).success}function r(e,t){return agentpackAiAuditReceiptV1Schema.superRefine((a,n)=>i(a,t,n)).safeParse(e)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{agentpackFeatureUnitGraphSchema as i,agentpackFeatureUnitSchema as r,agentpackGenerationTargetSchema as o,agentpackGuidancePackSchema as c,agentpackGuidanceUnitSchema as d,agentpackTargetAliasSchema as p}from"./validation.js";export*from"./evidence-canonicalization.js";export*from"./evidence-fixtures.js";export*from"./evidence-types.js";export*from"./evidence-validation.js";export*from"./types.js";export*from"./validation.js";export const AGENTPACK_TARGET_IDENTITIES=[{id:"opencode",name:"OpenCode",aliases:["opencode"],promptVariant:"codex"},{id:"cursor",name:"Cursor",aliases:["cursor"],promptVariant:void 0},{id:"claudecode",name:"Claude Code",aliases:["claudecode","claude-code","claude"],promptVariant:"claude"},{id:"codexcli",name:"Codex CLI",aliases:["codexcli","codex-cli","codex"],promptVariant:"codex"},{id:"mistralvibe",name:"Mistral Vibe",aliases:["mistralvibe","mistral-vibe","mistral"],promptVariant:void 0},{id:"geminicli",name:"Gemini CLI",aliases:["geminicli","gemini-cli","gemini"],promptVariant:void 0},{id:"copilot",name:"GitHub Copilot",aliases:["copilot"],promptVariant:void 0},{id:"cline",name:"Cline",aliases:["cline"],promptVariant:void 0},{id:"kilo",name:"Kilo Code",aliases:["kilo"],promptVariant:void 0},{id:"roo",name:"Roo Code",aliases:["roo"],promptVariant:void 0},{id:"qwencode",name:"Qwen Code",aliases:["qwencode","qwen-code","qwen"],promptVariant:void 0},{id:"kiro",name:"Kiro",aliases:["kiro"],promptVariant:void 0},{id:"factorydroid",name:"Factory Droid",aliases:["factorydroid","factory-droid","factory"],promptVariant:void 0},{id:"antigravity",name:"Antigravity",aliases:["antigravity"],promptVariant:void 0},{id:"junie",name:"Junie",aliases:["junie"],promptVariant:void 0},{id:"augmentcode",name:"Augment Code",aliases:["augmentcode","augment-code","augment"],promptVariant:void 0},{id:"windsurf",name:"Windsurf",aliases:["windsurf"],promptVariant:void 0},{id:"warp",name:"Warp",aliases:["warp"],promptVariant:void 0},{id:"replit",name:"Replit",aliases:["replit"],promptVariant:void 0},{id:"zed",name:"Zed",aliases:["zed"],promptVariant:void 0}],AGENTPACK_TARGET_VARIANT_MAP={"claude-code":"claude","codex-cli":"codex",opencode:"codex"};const s=new Map(AGENTPACK_TARGET_IDENTITIES.flatMap((e)=>e.aliases.map((a)=>[a,e.id])));export function normalizeAgentpackTargetId(e){const a=p.parse(e),n=s.get(a);if(!n)throw Error(`Unknown agentpack target alias: ${e}`);return n}export function resolveAgentpackPromptVariant(e){return AGENTPACK_TARGET_VARIANT_MAP[o.parse(e)]}export function resolveAgentpackPromptVariantForTarget(e){const a=normalizeAgentpackTargetId(e);return AGENTPACK_TARGET_IDENTITIES.find((n)=>n.id===a)?.promptVariant}export function defineAgentpackGuidanceUnit(e){return d.parse(e)}export function defineAgentpackGuidancePack(e){return c.parse(e)}export function defineAgentpackFeatureUnit(e){return r.parse(e)}export function defineAgentpackFeatureUnitGraph(e){return i.parse(e)}export function guidanceUnitToProseFeatureUnit(e){return defineAgentpackFeatureUnit({id:e.id,kind:"rule",title:e.title,targets:e.appliesTo?.map((a)=>{if(a==="claude")return"claude-code";if(a==="codex")return"codex-cli";return a}),meaningful:e.meaningful,variants:{sharedInvariant:e.sharedInvariant,claude:e.variants.claude,codex:e.variants.codex,fallbackPolicy:"codex-for-opencode"},connect:e.connect,metadata:{...e.metadata,legacyGuidanceUnit:!0}})}export function selectAgentpackGuidanceVariant(e,a){const n=resolveAgentpackPromptVariant(a),t=e.variants[n];if(!t)throw Error(`Agentpack guidance unit "${e.id}" does not define a ${n} variant for target "${a}"`);return t}export function selectCodexCompatibleAgentpackGuidanceVariant(e,a){return selectAgentpackGuidanceVariant(e,a)}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";export const agentpackPromptVariantSchema=e.enum(["claude","codex"]),agentpackGenerationTargetSchema=e.enum(["claude-code","codex-cli","opencode"]),agentpackToolTargetIdSchema=e.enum(["opencode","cursor","claudecode","codexcli","mistralvibe","geminicli","copilot","cline","kilo","roo","qwencode","kiro","factorydroid","antigravity","junie","augmentcode","windsurf","warp","replit","zed"]),agentpackTargetAliasSchema=e.union([agentpackToolTargetIdSchema,agentpackGenerationTargetSchema,e.enum(["claude","codex","gemini-cli","gemini","mistral-vibe","mistral","qwen-code","qwen","factory-droid","factory","augment-code","augment"])]),agentpackFeatureKindSchema=e.enum(["rule","agent","command","skill","hook","mcp","modelProfile","plugin","ignore","asset","manifest","doc"]),agentpackLossPolicySchema=e.enum(["unsupported-block","ignored-by-design","manual-action-required","lossy-transform-reviewed"]),agentpackTargetCapabilityStatusSchema=e.enum(["native","transformed","ignored-by-design","blocked"]),agentpackTargetIdentitySchema=e.object({id:agentpackToolTargetIdSchema,name:e.string().min(1),aliases:e.array(agentpackTargetAliasSchema).min(1),promptVariant:agentpackPromptVariantSchema.optional()}),agentpackTargetFeatureCapabilitySchema=e.object({targetId:agentpackToolTargetIdSchema,featureKind:agentpackFeatureKindSchema,status:agentpackTargetCapabilityStatusSchema,lossPolicy:agentpackLossPolicySchema.optional(),reason:e.string().min(1).optional(),evidenceRefs:e.array(e.string().min(1)).optional()}).superRefine((a,t)=>{if((a.status==="blocked"||a.status==="ignored-by-design")&&!a.lossPolicy)t.addIssue({code:e.ZodIssueCode.custom,message:"Blocked or ignored target capabilities must declare a loss policy",path:["lossPolicy"]})}),agentpackTargetCapabilityMatrixSchema=e.object({targets:e.array(agentpackToolTargetIdSchema).min(1),featureKinds:e.array(agentpackFeatureKindSchema).min(1),capabilities:e.array(agentpackTargetFeatureCapabilitySchema).min(1)}).superRefine((a,t)=>{const i=new Set;for(const n of a.capabilities){const o=`${n.targetId}:${n.featureKind}`;if(i.has(o))t.addIssue({code:e.ZodIssueCode.custom,message:`Duplicate target capability entry: ${o}`,path:["capabilities"]});i.add(o)}for(const n of a.targets)for(const o of a.featureKinds){const r=`${n}:${o}`;if(!i.has(r))t.addIssue({code:e.ZodIssueCode.custom,message:`Missing target capability entry: ${r}`,path:["capabilities"]})}}),agentpackGuidanceApplicabilitySchema=e.union([agentpackPromptVariantSchema,agentpackGenerationTargetSchema]),agentpackGuidanceExampleSchema=e.object({id:e.string().min(1),title:e.string().min(1).optional(),input:e.string().min(1).optional(),output:e.string().min(1),notes:e.string().min(1).optional()}),agentpackCommandGuidanceSchema=e.object({command:e.string().min(1),purpose:e.string().min(1),when:e.string().min(1).optional(),success:e.string().min(1).optional()}),agentpackClaudeGuidanceVariantSchema=e.object({content:e.string().min(1),thinking:e.array(e.string().min(1)).optional(),tasteConstraints:e.array(e.string().min(1)).optional(),decisionCriteria:e.array(e.string().min(1)).optional(),examples:e.array(agentpackGuidanceExampleSchema).optional(),ambiguityReducers:e.array(e.string().min(1)).optional()}),agentpackCodexGuidanceVariantSchema=e.object({content:e.string().min(1),operationalConstraints:e.array(e.string().min(1)).optional(),successCriteria:e.array(e.string().min(1)).optional(),commands:e.array(agentpackCommandGuidanceSchema).optional(),degreeOfFreedomReducers:e.array(e.string().min(1)).optional()}),agentpackGuidanceVariantsSchema=e.object({claude:agentpackClaudeGuidanceVariantSchema.optional(),codex:agentpackCodexGuidanceVariantSchema.optional()}),agentpackProseVariantSetSchema=e.object({sharedInvariant:e.string().min(1),claude:agentpackClaudeGuidanceVariantSchema.optional(),codex:agentpackCodexGuidanceVariantSchema.optional(),opencode:agentpackCodexGuidanceVariantSchema.optional(),fallbackPolicy:e.enum(["require-explicit","codex-for-opencode","legacy-body"]).optional(),targetOnlyRationale:e.string().min(1).optional()}),agentpackStructuralTransformSchema=e.object({sourceSchemaRef:e.string().min(1),targetCapabilities:e.array(agentpackTargetFeatureCapabilitySchema).min(1),transformKind:e.enum(["copy","merge","schema-map","sidecar-trace","manual"]),lossPolicy:agentpackLossPolicySchema,validationEvidenceRefs:e.array(e.string().min(1)).optional()}),agentpackFeatureTraceSchema=e.object({id:e.string().min(1),sourcePath:e.string().min(1),packName:e.string().min(1),targetPaths:e.array(e.string().min(1)).optional(),invariantRef:e.string().min(1).optional(),schemaRefs:e.array(e.string().min(1)).optional(),migrationOrigin:e.enum(["file-adapter","typed-source","generated","legacy-import"]).optional()}),agentpackParityScenarioStatusSchema=e.enum(["draft","accepted","rejected","stale"]),agentpackParityScenarioSchema=e.object({id:e.string().min(1),prompt:e.string().min(1),expectedOutcomeInvariant:e.string().min(1),claudeOutcome:e.string().min(1).optional(),codexOutcome:e.string().min(1).optional(),status:agentpackParityScenarioStatusSchema.default("draft")}),agentpackSchemaFacetLinkSchema=e.object({id:e.string().min(1),description:e.string().min(1),schemaRef:e.string().min(1).optional(),required:e.boolean().default(!0)}),agentpackContradictionCheckSchema=e.object({id:e.string().min(1),description:e.string().min(1),severity:e.enum(["warning","blocking"])}),agentpackConnectEvidenceRequirementsSchema=e.object({parityScenarios:e.array(agentpackParityScenarioSchema).min(1),schemaFacets:e.array(agentpackSchemaFacetLinkSchema).optional(),contradictionChecks:e.array(agentpackContradictionCheckSchema).optional(),replayArtifactRefs:e.array(e.string().min(1)).optional()}),agentpackProseFeatureUnitSchema=e.object({id:e.string().min(1),kind:e.enum(["rule","agent","command","skill","doc"]),title:e.string().min(1).optional(),packName:e.string().min(1).optional(),sourcePath:e.string().min(1).optional(),targets:e.union([e.literal("*"),e.array(agentpackTargetAliasSchema)]).optional(),trace:agentpackFeatureTraceSchema.optional(),metadata:e.record(e.string(),e.unknown()).optional(),meaningful:e.boolean().default(!0),variants:agentpackProseVariantSetSchema,connect:agentpackConnectEvidenceRequirementsSchema.optional()}).superRefine((a,t)=>{if(!a.meaningful)return;if(!a.variants.targetOnlyRationale&&!a.variants.claude)t.addIssue({code:e.ZodIssueCode.custom,message:"Meaningful prose feature units must include a Claude variant",path:["variants","claude"]});if(!a.variants.targetOnlyRationale&&!a.variants.codex)t.addIssue({code:e.ZodIssueCode.custom,message:"Meaningful prose feature units must include a Codex/GPT variant",path:["variants","codex"]})}),agentpackStructuralFeatureUnitSchema=e.object({id:e.string().min(1),kind:e.enum(["hook","mcp","modelProfile","plugin","ignore","asset","manifest"]),title:e.string().min(1).optional(),packName:e.string().min(1).optional(),sourcePath:e.string().min(1).optional(),targets:e.union([e.literal("*"),e.array(agentpackTargetAliasSchema)]).optional(),trace:agentpackFeatureTraceSchema.optional(),metadata:e.record(e.string(),e.unknown()).optional(),transform:agentpackStructuralTransformSchema}),agentpackFeatureUnitSchema=e.discriminatedUnion("kind",[agentpackProseFeatureUnitSchema,agentpackStructuralFeatureUnitSchema]),agentpackFeatureUnitGraphSchema=e.object({id:e.string().min(1),version:e.string().min(1),units:e.array(agentpackFeatureUnitSchema).min(1),capabilityMatrix:agentpackTargetCapabilityMatrixSchema,traces:e.array(agentpackFeatureTraceSchema).optional(),metadata:e.record(e.string(),e.unknown()).optional()}).superRefine((a,t)=>{const i=new Set;for(const n of a.units){if(i.has(n.id))t.addIssue({code:e.ZodIssueCode.custom,message:`Duplicate feature unit id: ${n.id}`,path:["units"]});i.add(n.id)}}),agentpackGuidanceUnitSchema=e.object({id:e.string().min(1),title:e.string().min(1),sharedInvariant:e.string().min(1),meaningful:e.boolean().default(!0),appliesTo:e.array(agentpackGuidanceApplicabilitySchema).optional(),variants:agentpackGuidanceVariantsSchema,connect:agentpackConnectEvidenceRequirementsSchema,metadata:e.record(e.string(),e.unknown()).optional()}).superRefine((a,t)=>{if(!a.meaningful)return;if(!a.variants.claude)t.addIssue({code:e.ZodIssueCode.custom,message:"Meaningful guidance units must include a Claude variant",path:["variants","claude"]});if(!a.variants.codex)t.addIssue({code:e.ZodIssueCode.custom,message:"Meaningful guidance units must include a Codex/GPT variant",path:["variants","codex"]})}),agentpackGuidancePackSchema=e.object({id:e.string().min(1),title:e.string().min(1),version:e.string().min(1),units:e.array(agentpackGuidanceUnitSchema).min(1),aliases:e.array(e.string().min(1)).optional(),metadata:e.record(e.string(),e.unknown()).optional()});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const OPERATIONAL_IMPROVEMENT_SIGNAL_V1="contractspec.operational-improvement-signal.v1",IMPROVEMENT_OBSERVATION_PLAN_V1="contractspec.improvement-observation-plan.v1",IMPROVEMENT_OBSERVATION_RESULT_V1="contractspec.improvement-observation-result.v1",AUTOMATION_RISK_DECISION_V1="contractspec.automation-risk-decision.v1",PATCH_RUN_RECEIPT_V1="contractspec.patch-run-receipt.v1",AI_IMPROVEMENT_WORK_ORDER_V2="contractspec.ai-improvement-work-order.v2",aiImprovementV2DocBlock={id:"ai-improvement-v2",title:"Governed adaptive improvement V2",body:"Versioned contracts for sanitized operational signals, explicit canary observation, deterministic automation risk, provider patch receipts, and work orders with an observing stage. V1 contracts remain unchanged. Operational signals carry metadata and evidence only; raw prompts, payloads, credentials, and personal data are outside this contract.",kind:"reference",route:"packages/libs/contracts-spec/src/ai-improvement/contracts-v2.ts",visibility:"public"};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const aiImprovementRequiredCapabilityIds=["routeDecisionId","providerReceiptId","traceId","spanId","redactionDecisionId","meteringEventId","feedbackId","evaluationRunId","failureAnalysisId","proposalId","experimentId","trainingJobId","promotionId","rollbackId","learnedRuleId"];export function missingAiImprovementEvidence(e){const n=new Set(e.map((i)=>i.kind));return aiImprovementRequiredCapabilityIds.filter((i)=>!n.has(i))}export function hasCompleteAiImprovementEvidence(e){return missingAiImprovementEvidence(e).length===0}export function hasPolicyAwareFineTuningTrace(e){return e.sanitized===!0&&e.evidence.length>0&&e.evidence.every((n)=>Boolean(n.ontologyRef)&&Boolean(n.evidenceReceiptRef)&&Boolean(n.redactionDecisionRef)&&Boolean(n.policyDecisionRef))}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./contracts-v2.js";export*from"./evidence.js";export*from"./policy.js";export*from"./types.js";export*from"./validation.js";export*from"./validation-v2.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const l={low:0,medium:1,high:2,critical:3},s=new Set(["dataset_export","public_contract","runtime_policy","model_checkpoint"]);export function classifyAiImprovementRisk(e,i="medium"){return s.has(e)?"high":i}export function mergeAiImprovementPolicy(e,i={}){const n=e.length>0?e:[defaultAiImprovementPolicyRule],t=n.reduce((o,a)=>l[a.riskFloor]>l[o]?a.riskFloor:o,"low"),p=Array.from(new Set(n.flatMap((o)=>o.requiredEvidenceKinds))).sort(),m=Object.entries(i).filter(([,o])=>o).map(([o])=>o);return{level:t,allowVendorExport:n.every((o)=>o.allowVendorExport)&&!i.vendorExport,allowAutoApply:n.every((o)=>o.allowAutoApply)&&!i.autoApply,allowLearning:n.every((o)=>o.allowLearning)&&!i.learning,requiresHumanApproval:l[t]>=l.high,requiredEvidenceKinds:p,deniedByKillSwitches:m}}export const defaultAiImprovementPolicyRule={id:"ai-improvement.baseline.v1",riskFloor:"medium",allowVendorExport:!1,allowAutoApply:!1,allowLearning:!1,requiredEvidenceKinds:["policy","replay","rollback","tests"]};function r(e){return e===!0||e==="off"}export function resolveAiImprovementKillSwitches(e={}){return{autoApply:r(e.autoApply),vendorExport:r(e.vendorExport),learning:r(e.learning),adapterDisabled:r(e.adapterDisabled)}}export function canAutoApplyAiImprovement(e,i){return e.allowAutoApply&&!e.requiresHumanApproval&&i.testsPassed&&Boolean(i.rollbackId)&&Boolean(i.versionId)}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";import{AI_IMPROVEMENT_WORK_ORDER_V2 as l,AUTOMATION_RISK_DECISION_V1 as d,IMPROVEMENT_OBSERVATION_PLAN_V1 as m,IMPROVEMENT_OBSERVATION_RESULT_V1 as u,OPERATIONAL_IMPROVEMENT_SIGNAL_V1 as p,PATCH_RUN_RECEIPT_V1 as b}from"./contracts-v2.js";import{aiImprovementCapabilityIdSchema as _}from"./validation.js";const t=e.string().trim().min(1),i=t,n=e.number().int().nonnegative(),o=e.number().int().positive(),s=e.object({kind:_,id:t,sourcePackage:t,replayRef:e.object({id:t,uri:t,artifactHash:t.optional(),createdAt:i}).optional(),ontologyRef:t.optional()}).strict(),a={schemaVersion:e.literal(p),id:t,lane:t,tenantId:t,workspaceId:t,sourcePackage:t,traceId:t,redactionDecisionId:t,occurredAt:i,sanitized:e.literal(!0),evidence:e.array(s)};export const operationalImprovementSignalV1Schema=e.discriminatedUnion("kind",[e.object({...a,kind:e.literal("user_feedback"),feedbackId:t,consentGranted:e.literal(!0),sentiment:e.enum(["positive","negative","neutral"])}).strict(),e.object({...a,kind:e.literal("operational_metric"),metricKey:t,unit:e.enum(["count","rate","milliseconds","currency"]),baselineValue:e.number().finite(),observedValue:e.number().finite(),sampleCount:n,windowStartedAt:i,windowEndedAt:i}).strict(),e.object({...a,kind:e.literal("runtime_failure"),failureCode:t,fingerprintHash:t,retryable:e.boolean()}).strict(),e.object({...a,kind:e.literal("evaluation_failure"),evaluationRunId:t,failedCheckIds:e.array(t).min(1)}).strict(),e.object({...a,kind:e.literal("operator_correction"),correctionId:t,actorRefHash:t,reasonCode:t}).strict()]);const h=e.object({key:t,direction:e.enum(["higher_is_better","lower_is_better","zero_tolerance"]),baselineValue:e.number().finite(),maximumRelativeRegression:e.number().min(0).max(1),absoluteThreshold:e.number().finite().optional()}).strict();export const improvementObservationPlanV1Schema=e.object({schemaVersion:e.literal(m),id:t,windowMs:o,timeoutMs:o,minSampleCount:o,missingDataAction:e.enum(["rollback","require_review"]),metrics:e.array(h).min(1)}).strict().superRefine((r,c)=>{if(r.timeoutMs<r.windowMs)c.addIssue({code:"custom",message:"timeoutMs must be greater than or equal to windowMs",path:["timeoutMs"]})}),improvementObservationResultV1Schema=e.object({schemaVersion:e.literal(u),planId:t,status:e.enum(["pending","healthy","degraded","insufficient_data"]),sampleCount:n,startedAt:i,observedAt:i,completedAt:i.optional(),metrics:e.array(e.object({key:t,baselineValue:e.number().finite(),observedValue:e.number().finite(),relativeRegression:e.number().finite(),passed:e.boolean()}).strict()),evidence:e.array(s)}).strict(),automationRiskDecisionV1Schema=e.object({schemaVersion:e.literal(d),classification:e.enum(["low","medium","high","unknown"]),autoMergeAllowed:e.boolean(),exactBaseRevision:t,fileCount:n,changedLineCount:n,killSwitchKey:t.optional(),reasonCodes:e.array(e.enum(["eligible","diff_too_large","stale_base","missing_kill_switch","protected_contract","protected_data_authority","protected_effect_boundary","protected_security_boundary","protected_delivery_boundary","unknown_change","required_check_failed"])).min(1),decidedAt:i}).strict(),patchRunReceiptV1Schema=e.object({schemaVersion:e.literal(b),id:t,baseRevision:t,headRevision:t,preimageHash:t,patchHash:t,allowedPaths:e.array(t).min(1),providerAttempts:e.array(e.object({provider:e.enum(["codex","opencode-go"]),status:e.enum(["succeeded","unavailable","timed_out","nonconforming"]),receiptRef:t,startedAt:i,completedAt:i}).strict()).min(1),connectDecisionIds:e.array(t).min(1),checkReceiptRefs:e.array(t).min(1),rollbackRef:t,riskDecision:automationRiskDecisionV1Schema,createdAt:i}).strict(),aiImprovementWorkOrderV2Schema=e.object({schemaVersion:e.literal(l),id:t,revision:o,status:e.enum(["queued","proposing","evaluating","awaiting_approval","canary","observing","promoted","rejected","rolled_back","expired","failed"]),signal:operationalImprovementSignalV1Schema,observationPlan:improvementObservationPlanV1Schema,observationResult:improvementObservationResultV1Schema.optional(),patchRunReceipt:patchRunReceiptV1Schema.optional(),createdAt:i,updatedAt:i,dueAt:i,expiresAt:i}).strict();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{z as e}from"zod";export const aiImprovementCapabilityIdSchema=e.enum(["routeDecisionId","providerReceiptId","traceId","spanId","redactionDecisionId","meteringEventId","feedbackId","evaluationRunId","failureAnalysisId","proposalId","experimentId","trainingJobId","promotionId","rollbackId","learnedRuleId"]),aiImprovementRiskLevelSchema=e.enum(["low","medium","high","critical"]),aiImprovementReplayRefSchema=e.object({id:e.string().min(1),uri:e.string().min(1),artifactHash:e.string().min(1).optional(),createdAt:e.string().min(1)}),aiImprovementEnvelopeSchema=e.object({id:e.string().min(1),compatibilityIntent:e.enum(["additive high-risk","additive","breaking-with-migration"]),policyRefs:e.array(e.object({id:e.string().min(1),version:e.string().min(1),scope:e.enum(["baseline","domain","package","tenant","adapter"])})),risk:e.object({level:aiImprovementRiskLevelSchema,changeKind:e.enum(["prompt","provider_route","model_checkpoint","dataset_export","public_contract","runtime_policy","memory_rule"]),reason:e.string().min(1),requiresHumanApproval:e.boolean()}),evidence:e.array(e.object({kind:aiImprovementCapabilityIdSchema,id:e.string().min(1),sourcePackage:e.string().min(1),replayRef:aiImprovementReplayRefSchema.optional()})),replay:aiImprovementReplayRefSchema,killSwitches:e.object({autoApply:e.boolean().optional(),vendorExport:e.boolean().optional(),learning:e.boolean().optional(),adapterDisabled:e.boolean().optional()}).default({}),vendor:e.object({id:e.string().min(1),adapterPackage:e.string().min(1)}).optional()}),aiImprovementFineTuningTraceSchema=e.object({id:e.string().min(1),workOrderRef:e.string().min(1),trainingTraceRef:e.string().min(1),createdAt:e.string().min(1),sanitized:e.literal(!0),allowVendorExport:e.boolean(),allowLearning:e.boolean(),evidence:e.array(e.object({id:e.string().min(1),ontologyRef:e.string().min(1),evidenceReceiptRef:e.string().min(1),redactionDecisionRef:e.string().min(1),policyDecisionRef:e.string().min(1),sourcePackage:e.string().min(1)}))});
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{defineCapability as i}from"../capabilities/index.js";import{OwnersEnum as t,StabilityEnum as a,TagsEnum as e}from"../ownership.js";export const AppConfigCapability=i({meta:{key:"app-config",version:"1.0.0",title:"App Configuration Capability",description:"Provides tenant app configuration lifecycle management.",domain:"platform",owners:[t.PlatformSigil],tags:[e.Hygiene],kind:"api",stability:a.Stable},provides:[],requires:[]});
|