@openplanr/protocol 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +82 -0
- package/lib/dashboard/closed-json-contract.mjs +141 -0
- package/lib/dashboard/generated/operate-experience-surface-schema-data.mjs +67 -0
- package/lib/dashboard/generated/operate-review-schema-data.mjs +35 -0
- package/lib/dashboard/generated/operate-schema-token-codec.mjs +127 -0
- package/lib/dashboard/operate-experience-audit-display-contract.d.mts +196 -0
- package/lib/dashboard/operate-experience-audit-display-contract.mjs +700 -0
- package/lib/dashboard/operate-experience-display-contract.d.mts +572 -0
- package/lib/dashboard/operate-experience-display-contract.mjs +1007 -0
- package/lib/dashboard/operate-experience-surface-contract.d.mts +157 -0
- package/lib/dashboard/operate-experience-surface-contract.mjs +91 -0
- package/lib/dashboard/operate-review-contract.d.mts +34 -0
- package/lib/dashboard/operate-review-contract.mjs +175 -0
- package/lib/dashboard/operate-review-display-workspace-contract.d.mts +54 -0
- package/lib/dashboard/operate-review-display-workspace-contract.mjs +258 -0
- package/lib/dashboard/operate-review-payload-safety.d.mts +7 -0
- package/lib/dashboard/operate-review-payload-safety.mjs +42 -0
- package/lib/dashboard/operate-review-workspace-projection-v2.d.mts +218 -0
- package/lib/protocol/index.d.ts +2638 -0
- package/package.json +115 -0
- package/registries/commands.json +1952 -0
- package/registries/diagram-grammars.json +2407 -0
- package/registries/diagram-semantic-patterns.json +111 -0
- package/registries/output-paths.json +40 -0
- package/registries/outputs.json +864 -0
- package/registries/roles.json +661 -0
- package/registries/rules.json +261 -0
- package/registries/skill-host-profiles.json +247 -0
- package/registries/skill-modules.json +1112 -0
- package/registries/skill-routing.json +389 -0
- package/registries/skills.json +1545 -0
- package/registries/task-kinds.json +220 -0
- package/registry/adapters.json +110 -0
- package/registry/artifact-theme.json +60 -0
- package/registry/evaluation-graders.json +303 -0
- package/registry/evaluation-host-profiles.json +131 -0
- package/registry/frozen-commands.json +15 -0
- package/registry/landing-operations.json +20 -0
- package/registry/landing-workflows.json +70 -0
- package/registry/live-evidence-providers.json +1 -0
- package/registry/operate-v2-contracts.json +5965 -0
- package/registry/professional-skills.json +115 -0
- package/registry/roles.json +14 -0
- package/registry/ship-review-specialists.json +42 -0
- package/schemas/v1.0.0/design-approved.schema.json +35 -0
- package/schemas/v1.0.0/design-feedback.schema.json +169 -0
- package/schemas/v1.0.0/design-manifest.schema.json +90 -0
- package/schemas/v1.0.0/design-session.schema.json +73 -0
- package/schemas/v1.0.0/graph.schema.json +100 -0
- package/schemas/v1.0.0/pipeline-shipped.schema.json +154 -0
- package/schemas/v1.0.0/run-manifest.schema.json +81 -0
- package/schemas/v1.0.0/spec.schema.json +120 -0
- package/schemas/v1.0.0/stack.schema.json +184 -0
- package/schemas/v1.0.0/story.schema.json +95 -0
- package/schemas/v1.0.0/task.schema.json +171 -0
- package/schemas/v1.0.0/taste-profile.schema.json +96 -0
- package/schemas/v1.1.0/adapter-registry.schema.json +72 -0
- package/schemas/v1.1.0/artifact-envelope.schema.json +142 -0
- package/schemas/v1.1.0/artifact-paste.schema.json +49 -0
- package/schemas/v1.1.0/artifact-review.schema.json +97 -0
- package/schemas/v1.1.0/artifact-room-descriptor.schema.json +39 -0
- package/schemas/v1.1.0/artifact-room-event.schema.json +184 -0
- package/schemas/v1.1.0/artifact-room-signed-event.schema.json +58 -0
- package/schemas/v1.1.0/artifact-theme.schema.json +139 -0
- package/schemas/v1.1.0/browser-qa-gate.schema.json +21 -0
- package/schemas/v1.1.0/browser-qa-result.schema.json +24 -0
- package/schemas/v1.1.0/browser-qa-session.schema.json +12 -0
- package/schemas/v1.1.0/ecosystem-manifest.schema.json +46 -0
- package/schemas/v1.1.0/investigation-diagnosis.schema.json +12 -0
- package/schemas/v1.1.0/investigation-event.schema.json +15 -0
- package/schemas/v1.1.0/investigation-experiment.schema.json +17 -0
- package/schemas/v1.1.0/investigation-fix.schema.json +11 -0
- package/schemas/v1.1.0/investigation-hypothesis.schema.json +6 -0
- package/schemas/v1.1.0/investigation-observation.schema.json +10 -0
- package/schemas/v1.1.0/investigation-receipt.schema.json +7 -0
- package/schemas/v1.1.0/investigation-record.schema.json +7 -0
- package/schemas/v1.1.0/investigation-request.schema.json +34 -0
- package/schemas/v1.1.0/planning-review-event.schema.json +64 -0
- package/schemas/v1.1.0/planning-review-receipt.schema.json +19 -0
- package/schemas/v1.1.0/planning-review-record.schema.json +176 -0
- package/schemas/v1.1.0/planning-review-state.schema.json +19 -0
- package/schemas/v1.1.0/professional-skills.schema.json +105 -0
- package/schemas/v1.1.0/professional-specification.schema.json +111 -0
- package/schemas/v1.1.0/provenance-event.schema.json +82 -0
- package/schemas/v1.1.0/role-registry.schema.json +28 -0
- package/schemas/v1.1.0/runtime-lock.schema.json +39 -0
- package/schemas/v1.1.0/ship-closure.schema.json +353 -0
- package/schemas/v1.1.0/ship-review-specialist-registry.schema.json +29 -0
- package/schemas/v1.1.0/ship-risk-classification.schema.json +48 -0
- package/schemas/v1.1.0/specialist-review-result.schema.json +19 -0
- package/schemas/v1.10.0/design-review-bundle.schema.json +584 -0
- package/schemas/v1.10.0/design-review-context.schema.json +191 -0
- package/schemas/v1.10.0/design-review-handoff.schema.json +407 -0
- package/schemas/v1.10.0/design-review-metadata-payload.schema.json +106 -0
- package/schemas/v1.11.0/design-review-metadata-payload.schema.json +107 -0
- package/schemas/v1.12.0/enterprise-access-context.schema.json +217 -0
- package/schemas/v1.12.0/enterprise-agent-handoff.schema.json +508 -0
- package/schemas/v1.12.0/enterprise-artifact-revision.schema.json +87 -0
- package/schemas/v1.12.0/enterprise-change-proposal.schema.json +359 -0
- package/schemas/v1.12.0/enterprise-evidence-reference.schema.json +147 -0
- package/schemas/v1.12.0/enterprise-review-thread.schema.json +278 -0
- package/schemas/v1.12.0/enterprise-sync-state.schema.json +169 -0
- package/schemas/v1.2.0/adapter-registry.schema.json +83 -0
- package/schemas/v1.2.0/dashboard-bootstrap.schema.json +219 -0
- package/schemas/v1.2.0/ecosystem-release-operation.schema.json +90 -0
- package/schemas/v1.2.0/ecosystem-saga.schema.json +54 -0
- package/schemas/v1.2.0/evidence-diagnostic.schema.json +77 -0
- package/schemas/v1.2.0/guided-answer-envelope.schema.json +73 -0
- package/schemas/v1.2.0/guided-confirmation.schema.json +128 -0
- package/schemas/v1.2.0/guided-question.schema.json +242 -0
- package/schemas/v1.2.0/guided-questionnaire.schema.json +278 -0
- package/schemas/v1.2.0/guided-session.schema.json +141 -0
- package/schemas/v1.2.0/landing-confirmation.schema.json +17 -0
- package/schemas/v1.2.0/landing-event.schema.json +12 -0
- package/schemas/v1.2.0/landing-operation-registry.schema.json +16 -0
- package/schemas/v1.2.0/landing-phase-receipt.schema.json +19 -0
- package/schemas/v1.2.0/landing-plan.schema.json +36 -0
- package/schemas/v1.2.0/landing-receipt.schema.json +12 -0
- package/schemas/v1.2.0/landing-workflow-catalog.schema.json +143 -0
- package/schemas/v1.2.0/operate-action-display-workspace.schema.json +119 -0
- package/schemas/v1.2.0/operate-cycle-display-workspace.schema.json +109 -0
- package/schemas/v1.2.0/operate-executive-board-display-surface.schema.json +72 -0
- package/schemas/v1.2.0/operate-experience-audit-display-surface.schema.json +328 -0
- package/schemas/v1.2.0/operate-experience-display-surface.schema.json +46 -0
- package/schemas/v1.2.0/operate-experience-surface.schema.json +590 -0
- package/schemas/v1.2.0/operate-recovery-display-surface.schema.json +85 -0
- package/schemas/v1.2.0/structured-action.schema.json +91 -0
- package/schemas/v1.3.0/adapter-registry.schema.json +84 -0
- package/schemas/v1.3.0/ecosystem-manifest.schema.json +120 -0
- package/schemas/v1.3.0/release-compatibility-claim.schema.json +46 -0
- package/schemas/v1.3.0/release-ledger-receipt.schema.json +45 -0
- package/schemas/v1.3.0/release-ledger.schema.json +60 -0
- package/schemas/v1.4.0/adapter-registry.schema.json +62 -0
- package/schemas/v1.4.0/evaluation-aggregate-report.schema.json +166 -0
- package/schemas/v1.4.0/evaluation-budget.schema.json +49 -0
- package/schemas/v1.4.0/evaluation-corpus.schema.json +93 -0
- package/schemas/v1.4.0/evaluation-fixture.schema.json +64 -0
- package/schemas/v1.4.0/evaluation-gate-policy.schema.json +33 -0
- package/schemas/v1.4.0/evaluation-grader-registration.schema.json +141 -0
- package/schemas/v1.4.0/evaluation-grader-registry.schema.json +20 -0
- package/schemas/v1.4.0/evaluation-host-profile-registry.schema.json +20 -0
- package/schemas/v1.4.0/evaluation-host-profile.schema.json +73 -0
- package/schemas/v1.4.0/evaluation-observation.schema.json +76 -0
- package/schemas/v1.4.0/evaluation-run-result.schema.json +84 -0
- package/schemas/v1.4.0/evaluation-scenario.schema.json +231 -0
- package/schemas/v1.4.0/evaluation-waiver.schema.json +65 -0
- package/schemas/v1.4.0/skill-certification-receipt.schema.json +103 -0
- package/schemas/v1.5.0/command-catalog.schema.json +296 -0
- package/schemas/v1.5.0/common.schema.json +261 -0
- package/schemas/v1.5.0/generated-asset-manifest.schema.json +313 -0
- package/schemas/v1.5.0/implementation-result.schema.json +152 -0
- package/schemas/v1.5.0/migration-preservation-manifest.schema.json +749 -0
- package/schemas/v1.5.0/output-catalog.schema.json +210 -0
- package/schemas/v1.5.0/output-path-catalog.schema.json +81 -0
- package/schemas/v1.5.0/role-registry.schema.json +261 -0
- package/schemas/v1.5.0/rule-catalog.schema.json +130 -0
- package/schemas/v1.5.0/skill-catalog.schema.json +303 -0
- package/schemas/v1.5.0/task-kind-registry.schema.json +167 -0
- package/schemas/v1.5.0/task-manifest.schema.json +373 -0
- package/schemas/v1.5.0/task-output-manifest.schema.json +462 -0
- package/schemas/v1.6.0/common.schema.json +462 -0
- package/schemas/v1.6.0/diagram-consumer-reference.schema.json +167 -0
- package/schemas/v1.6.0/diagram-document.schema.json +699 -0
- package/schemas/v1.6.0/diagram-fidelity-report.schema.json +137 -0
- package/schemas/v1.6.0/diagram-manifest.schema.json +162 -0
- package/schemas/v1.6.0/diagram-quality-report.schema.json +148 -0
- package/schemas/v1.6.0/diagram-review-binding.schema.json +132 -0
- package/schemas/v1.6.0/diagram-semantic-pattern-registry.schema.json +90 -0
- package/schemas/v1.6.0/diagram-type-registry.schema.json +373 -0
- package/schemas/v1.6.0/generated-asset-manifest.schema.json +103 -0
- package/schemas/v1.6.0/skill-catalog.schema.json +84 -0
- package/schemas/v1.6.0/skill-completion-receipt.schema.json +72 -0
- package/schemas/v1.6.0/skill-consent-record.schema.json +74 -0
- package/schemas/v1.6.0/skill-host-profile-registry.schema.json +526 -0
- package/schemas/v1.6.0/skill-learning-record.schema.json +116 -0
- package/schemas/v1.6.0/skill-module-registry.schema.json +108 -0
- package/schemas/v1.6.0/skill-routing-registry.schema.json +93 -0
- package/schemas/v1.6.0/skill-session.schema.json +73 -0
- package/schemas/v1.6.0/skill-source.schema.json +169 -0
- package/schemas/v1.7.0/common.schema.json +464 -0
- package/schemas/v1.7.0/generated-asset-manifest.schema.json +103 -0
- package/schemas/v1.7.0/planning-id-sequence.schema.json +50 -0
- package/schemas/v1.7.0/request-authority.schema.json +71 -0
- package/schemas/v1.7.0/skill-catalog.schema.json +84 -0
- package/schemas/v1.7.0/skill-completion-receipt.schema.json +72 -0
- package/schemas/v1.7.0/skill-consent-record.schema.json +74 -0
- package/schemas/v1.7.0/skill-host-profile-registry.schema.json +526 -0
- package/schemas/v1.7.0/skill-learning-record.schema.json +116 -0
- package/schemas/v1.7.0/skill-module-registry.schema.json +108 -0
- package/schemas/v1.7.0/skill-routing-registry.schema.json +93 -0
- package/schemas/v1.7.0/skill-session.schema.json +73 -0
- package/schemas/v1.7.0/skill-source.schema.json +169 -0
- package/schemas/v1.7.0/spec.schema.json +117 -0
- package/schemas/v1.7.0/story.schema.json +107 -0
- package/schemas/v1.7.0/task.schema.json +217 -0
- package/schemas/v1.8.0/common.schema.json +96 -0
- package/schemas/v1.8.0/skill-package.schema.json +63 -0
- package/schemas/v1.8.0/utility-command-catalog.schema.json +82 -0
- package/schemas/v1.9.0/design-document.schema.json +306 -0
- package/schemas/v1.9.0/design-review-bundle.schema.json +346 -0
- package/schemas/v1.9.0/design-review-workspace.schema.json +108 -0
- package/schemas/v1.9.0/design-workspace-create.schema.json +170 -0
- package/schemas/v1.9.0/design-workspace-event.schema.json +97 -0
- package/schemas/v1.9.0/design-workspace-revision.schema.json +56 -0
- package/schemas/v2.0.0/agent-runtime-manifest.schema.json +59 -0
- package/schemas/v2.0.0/business-operating-snapshot-projection.schema.json +14 -0
- package/schemas/v2.0.0/operate-allowed-action.schema.json +181 -0
- package/schemas/v2.0.0/operate-api-envelope.schema.json +225 -0
- package/schemas/v2.0.0/operate-capability-provider-registration.schema.json +30 -0
- package/schemas/v2.0.0/operate-domain-registration.schema.json +284 -0
- package/schemas/v2.0.0/operate-evidence-provider-registration.schema.json +55 -0
- package/schemas/v2.0.0/operate-evidence-resolver-registration.schema.json +46 -0
- package/schemas/v2.0.0/operate-executor-registration.schema.json +27 -0
- package/schemas/v2.0.0/operate-experience-live-patch.schema.json +47 -0
- package/schemas/v2.0.0/operate-experience-preview.schema.json +51 -0
- package/schemas/v2.0.0/operate-experience-view.schema.json +281 -0
- package/schemas/v2.0.0/operate-live-evidence-provider-registration.schema.json +48 -0
- package/schemas/v2.0.0/operate-live-evidence-provider-registry.schema.json +17 -0
- package/schemas/v2.0.0/operate-metric-provider-registration.schema.json +12 -0
- package/schemas/v2.0.0/operate-policy-provider-registration.schema.json +33 -0
- package/schemas/v2.0.0/operate-review-bound-submission.schema.json +29 -0
- package/schemas/v2.0.0/operate-review-display-workspace.schema.json +390 -0
- package/schemas/v2.0.0/operate-snapshot-provider-registration.schema.json +16 -0
- package/schemas/v2.0.0/operate-tool-call.schema.json +172 -0
- package/schemas/v2.0.0/operate-verification-provider-registration.schema.json +12 -0
- package/schemas/v2.0.0/operating-action-policy.schema.json +31 -0
- package/schemas/v2.0.0/operating-action-verification-plan.schema.json +13 -0
- package/schemas/v2.0.0/operating-action.schema.json +86 -0
- package/schemas/v2.0.0/operating-advisor-result.schema.json +394 -0
- package/schemas/v2.0.0/operating-approval-record.schema.json +23 -0
- package/schemas/v2.0.0/operating-approval-requirement.schema.json +31 -0
- package/schemas/v2.0.0/operating-artifact.schema.json +52 -0
- package/schemas/v2.0.0/operating-assignment.schema.json +437 -0
- package/schemas/v2.0.0/operating-assumption.schema.json +16 -0
- package/schemas/v2.0.0/operating-capability-availability.schema.json +15 -0
- package/schemas/v2.0.0/operating-capability-grant.schema.json +14 -0
- package/schemas/v2.0.0/operating-challenger-review.schema.json +204 -0
- package/schemas/v2.0.0/operating-checkpoint.schema.json +43 -0
- package/schemas/v2.0.0/operating-claim.schema.json +17 -0
- package/schemas/v2.0.0/operating-connector-checkpoint.schema.json +28 -0
- package/schemas/v2.0.0/operating-context-capture.schema.json +74 -0
- package/schemas/v2.0.0/operating-cycle-input-binding.schema.json +30 -0
- package/schemas/v2.0.0/operating-cycle.schema.json +42 -0
- package/schemas/v2.0.0/operating-decision-ledger.schema.json +237 -0
- package/schemas/v2.0.0/operating-decision.schema.json +137 -0
- package/schemas/v2.0.0/operating-delivery-evidence.schema.json +46 -0
- package/schemas/v2.0.0/operating-delivery-route.schema.json +43 -0
- package/schemas/v2.0.0/operating-delta.schema.json +13 -0
- package/schemas/v2.0.0/operating-domain-projection.schema.json +15 -0
- package/schemas/v2.0.0/operating-event-trigger.schema.json +11 -0
- package/schemas/v2.0.0/operating-event.schema.json +505 -0
- package/schemas/v2.0.0/operating-evidence-candidate.schema.json +88 -0
- package/schemas/v2.0.0/operating-evidence-edge.schema.json +39 -0
- package/schemas/v2.0.0/operating-evidence-graph.schema.json +25 -0
- package/schemas/v2.0.0/operating-evidence-observation.schema.json +48 -0
- package/schemas/v2.0.0/operating-evidence-ref.schema.json +51 -0
- package/schemas/v2.0.0/operating-evidence-resolution.schema.json +54 -0
- package/schemas/v2.0.0/operating-execution-result.schema.json +23 -0
- package/schemas/v2.0.0/operating-executive-board.schema.json +78 -0
- package/schemas/v2.0.0/operating-finding.schema.json +116 -0
- package/schemas/v2.0.0/operating-governed-operation.schema.json +54 -0
- package/schemas/v2.0.0/operating-intelligence-input-bundle.schema.json +128 -0
- package/schemas/v2.0.0/operating-intelligence-plan.schema.json +302 -0
- package/schemas/v2.0.0/operating-learning-receipt.schema.json +31 -0
- package/schemas/v2.0.0/operating-learning.schema.json +13 -0
- package/schemas/v2.0.0/operating-live-evidence-consent-record.schema.json +42 -0
- package/schemas/v2.0.0/operating-live-evidence-ingestion.schema.json +31 -0
- package/schemas/v2.0.0/operating-measurement-plan.schema.json +18 -0
- package/schemas/v2.0.0/operating-measurement-schedule-receipt.schema.json +7 -0
- package/schemas/v2.0.0/operating-measurement-schedule.schema.json +16 -0
- package/schemas/v2.0.0/operating-metric-observation.schema.json +15 -0
- package/schemas/v2.0.0/operating-metric.schema.json +18 -0
- package/schemas/v2.0.0/operating-model-state.schema.json +36 -0
- package/schemas/v2.0.0/operating-objective.schema.json +21 -0
- package/schemas/v2.0.0/operating-origin.schema.json +31 -0
- package/schemas/v2.0.0/operating-outcome-evaluation.schema.json +46 -0
- package/schemas/v2.0.0/operating-outcome.schema.json +13 -0
- package/schemas/v2.0.0/operating-planning-proposal.schema.json +45 -0
- package/schemas/v2.0.0/operating-policy-evaluation.schema.json +28 -0
- package/schemas/v2.0.0/operating-review-read.schema.json +217 -0
- package/schemas/v2.0.0/operating-review-receipt.schema.json +64 -0
- package/schemas/v2.0.0/operating-review.schema.json +47 -0
- package/schemas/v2.0.0/operating-risk.schema.json +96 -0
- package/schemas/v2.0.0/operating-rollback-plan.schema.json +10 -0
- package/schemas/v2.0.0/operating-rollback-result.schema.json +20 -0
- package/schemas/v2.0.0/operating-runtime-state.schema.json +289 -0
- package/schemas/v2.0.0/operating-scenario.schema.json +13 -0
- package/schemas/v2.0.0/operating-snapshot.schema.json +38 -0
- package/schemas/v2.0.0/operating-submission.schema.json +34 -0
- package/schemas/v2.0.0/operating-trace-matrix.schema.json +176 -0
- package/schemas/v2.0.0/operating-work-change-set.schema.json +89 -0
- package/schemas/v2.0.0/operating-work-ledger.schema.json +40 -0
- package/schemas/v2.0.0/software-operating-snapshot-projection.schema.json +14 -0
- package/src/browser-contracts.d.mts +5 -0
- package/src/browser-contracts.mjs +40 -0
- package/src/canonical-json.d.mts +5 -0
- package/src/canonical-json.mjs +142 -0
- package/src/compat/live-evidence-v2.mjs +1019 -0
- package/src/compat/operate-experience-live-patch.mjs +66 -0
- package/src/compat/operating-planning-contracts.mjs +114 -0
- package/src/contracts.d.mts +42 -0
- package/src/contracts.mjs +990 -0
- package/src/design-contracts.d.mts +62 -0
- package/src/design-contracts.mjs +186 -0
- package/src/design-publication-contracts.d.mts +4 -0
- package/src/design-publication-contracts.mjs +85 -0
- package/src/diagram-contracts.d.mts +19 -0
- package/src/diagram-contracts.mjs +28 -0
- package/src/enterprise-contracts.d.mts +107 -0
- package/src/enterprise-contracts.mjs +463 -0
- package/src/errors.d.mts +11 -0
- package/src/errors.mjs +109 -0
- package/src/generated/canonical-registries.mjs +5554 -0
- package/src/generated/contract-catalog-v2.mjs +7076 -0
- package/src/generated/diagram-registries.mjs +2529 -0
- package/src/index.d.mts +10 -0
- package/src/index.mjs +40 -0
- package/src/json-schema.d.mts +7 -0
- package/src/json-schema.mjs +283 -0
- package/src/planning-contracts.d.mts +10 -0
- package/src/planning-contracts.mjs +53 -0
- package/src/registries.d.mts +40 -0
- package/src/registries.mjs +261 -0
- package/src/review-experience-contracts.d.mts +11 -0
- package/src/review-experience-contracts.mjs +103 -0
- package/src/semver.d.mts +2 -0
- package/src/semver.mjs +7 -0
- package/src/skill-source-contracts.d.mts +25 -0
- package/src/skill-source-contracts.mjs +105 -0
- package/src/task-contracts.d.mts +7 -0
- package/src/task-contracts.mjs +130 -0
- package/src/workspace-contracts.d.mts +26 -0
- package/src/workspace-contracts.mjs +83 -0
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operate-allowed-action.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operate-allowed-action", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 allowed action",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["tool", "arguments", "label", "effect"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"tool": { "type": "string", "enum": ["operate.cycle.start", "operate.cycle.get", "operate.cycle.resume", "operate.assignment.claim", "operate.assignment.submit", "operate.artifact.get", "operate.review.get", "operate.review.submit", "operate.action.approve", "operate.action.execute", "operate.action.rollback", "operate.recovery.inspect", "operate.recovery.restore", "operate.recovery.clear-stale-lock"] },
|
|
11
|
+
"arguments": {},
|
|
12
|
+
"label": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"minLength": 1,
|
|
15
|
+
"maxLength": 256,
|
|
16
|
+
"not": { "pattern": "(?:<[^>]+>|\\{\\{[^}]+\\}\\})" }
|
|
17
|
+
},
|
|
18
|
+
"effect": { "type": "string", "enum": ["read-only", "machine-local-write", "project-write", "provider-call", "external-effect", "destructive"] }
|
|
19
|
+
},
|
|
20
|
+
"oneOf": [
|
|
21
|
+
{ "title": "operate.cycle.start", "properties": { "tool": { "const": "operate.cycle.start" }, "arguments": { "$ref": "#/$defs/cycleStartArguments" }, "effect": { "const": "project-write" } } },
|
|
22
|
+
{ "title": "operate.cycle.get", "properties": { "tool": { "const": "operate.cycle.get" }, "arguments": { "$ref": "#/$defs/cycleIdentityArguments" }, "effect": { "const": "read-only" } } },
|
|
23
|
+
{ "title": "operate.cycle.resume", "properties": { "tool": { "const": "operate.cycle.resume" }, "arguments": { "$ref": "#/$defs/cycleIdentityArguments" }, "effect": { "const": "project-write" } } },
|
|
24
|
+
{ "title": "operate.assignment.claim", "properties": { "tool": { "const": "operate.assignment.claim" }, "arguments": { "$ref": "#/$defs/assignmentClaimArguments" }, "effect": { "const": "machine-local-write" } } },
|
|
25
|
+
{ "title": "operate.assignment.submit", "properties": { "tool": { "const": "operate.assignment.submit" }, "arguments": { "$ref": "#/$defs/assignmentSubmitArguments" }, "effect": { "const": "machine-local-write" } } },
|
|
26
|
+
{ "title": "operate.artifact.get", "properties": { "tool": { "const": "operate.artifact.get" }, "arguments": { "$ref": "#/$defs/artifactGetArguments" }, "effect": { "const": "read-only" } } },
|
|
27
|
+
{ "title": "operate.review.get", "properties": { "tool": { "const": "operate.review.get" }, "arguments": { "$ref": "#/$defs/reviewIdentityArguments" }, "effect": { "const": "read-only" } } },
|
|
28
|
+
{ "title": "operate.review.submit", "properties": { "tool": { "const": "operate.review.submit" }, "arguments": { "$ref": "#/$defs/reviewSubmitArguments" }, "effect": { "const": "project-write" } } },
|
|
29
|
+
{ "title": "operate.action.approve", "properties": { "tool": { "const": "operate.action.approve" }, "arguments": { "$ref": "#/$defs/actionApproveArguments" }, "effect": { "const": "project-write" } } },
|
|
30
|
+
{ "title": "operate.action.execute", "properties": { "tool": { "const": "operate.action.execute" }, "arguments": { "$ref": "#/$defs/actionExecuteArguments" }, "effect": { "const": "project-write" } } },
|
|
31
|
+
{ "title": "operate.action.rollback", "properties": { "tool": { "const": "operate.action.rollback" }, "arguments": { "$ref": "#/$defs/actionRollbackArguments" }, "effect": { "const": "project-write" } } },
|
|
32
|
+
{ "title": "operate.recovery.inspect", "properties": { "tool": { "const": "operate.recovery.inspect" }, "arguments": { "type": "object", "additionalProperties": false }, "effect": { "const": "read-only" } } },
|
|
33
|
+
{ "title": "operate.recovery.restore", "properties": { "tool": { "const": "operate.recovery.restore" }, "arguments": { "type": "object", "additionalProperties": false, "required": ["generation"], "properties": { "generation": { "$ref": "#/$defs/nonPlaceholder" } } }, "effect": { "const": "destructive" } } },
|
|
34
|
+
{ "title": "operate.recovery.clear-stale-lock", "properties": { "tool": { "const": "operate.recovery.clear-stale-lock" }, "arguments": { "type": "object", "additionalProperties": false }, "effect": { "const": "machine-local-write" } } }
|
|
35
|
+
],
|
|
36
|
+
"$defs": {
|
|
37
|
+
"cycleStartArguments": {
|
|
38
|
+
"type": "object", "additionalProperties": false, "required": ["scope", "focus", "trigger", "mode", "ownerActorId"],
|
|
39
|
+
"properties": {
|
|
40
|
+
"scope": {
|
|
41
|
+
"type": "object", "additionalProperties": false, "required": ["scopeId", "domainId", "domainVersion"],
|
|
42
|
+
"properties": {
|
|
43
|
+
"scopeId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
44
|
+
"domainId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
45
|
+
"domainVersion": { "allOf": [{ "$ref": "#/$defs/nonPlaceholder" }, { "maxLength": 64 }] }
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"focus": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/nonPlaceholder" } },
|
|
49
|
+
"trigger": {
|
|
50
|
+
"type": "object", "additionalProperties": false, "required": ["kind"],
|
|
51
|
+
"properties": { "kind": { "const": "manual" } }
|
|
52
|
+
},
|
|
53
|
+
"mode": { "type": "string", "enum": ["standard", "preview"] },
|
|
54
|
+
"ownerActorId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
55
|
+
"deliveryRoute": { "type": "string", "enum": ["contained-execution", "planning-work", "human-external", "observe-only"] }
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"cycleIdentityArguments": {
|
|
59
|
+
"type": "object", "additionalProperties": false, "required": ["cycleId"],
|
|
60
|
+
"properties": { "cycleId": { "$ref": "#/$defs/nonPlaceholder" } }
|
|
61
|
+
},
|
|
62
|
+
"assignmentClaimArguments": {
|
|
63
|
+
"type": "object", "additionalProperties": false, "required": ["assignmentId", "actor"],
|
|
64
|
+
"properties": {
|
|
65
|
+
"assignmentId": { "type": "string", "pattern": "^asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
66
|
+
"actor": { "$ref": "#/$defs/publicActor" }
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"assignmentSubmitArguments": {
|
|
70
|
+
"type": "object", "additionalProperties": false, "required": ["assignmentId", "submissionId", "actor", "mediaType", "encoding", "contentBase64"],
|
|
71
|
+
"properties": {
|
|
72
|
+
"assignmentId": { "type": "string", "pattern": "^asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
73
|
+
"submissionId": { "type": "string", "pattern": "^sub_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
74
|
+
"actor": { "$ref": "#/$defs/publicActor" },
|
|
75
|
+
"mediaType": { "$ref": "#/$defs/nonPlaceholder" },
|
|
76
|
+
"encoding": { "type": "string", "enum": ["utf-8", "binary"] },
|
|
77
|
+
"contentBase64": { "type": "string", "pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$" }
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"artifactGetArguments": {
|
|
81
|
+
"type": "object", "additionalProperties": false, "required": ["artifactId", "representation", "actor", "scope", "assignmentId"],
|
|
82
|
+
"properties": {
|
|
83
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
84
|
+
"representation": { "type": "string", "enum": ["raw", "canonical", "metadata", "decoded-json"] },
|
|
85
|
+
"actor": { "$ref": "#/$defs/publicActor" },
|
|
86
|
+
"scope": { "$ref": "#/$defs/scope" },
|
|
87
|
+
"assignmentId": { "type": ["string", "null"], "pattern": "^asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }
|
|
88
|
+
},
|
|
89
|
+
"allOf": [{
|
|
90
|
+
"if": { "properties": { "actor": { "properties": { "kind": { "const": "agent" } }, "required": ["kind"] } }, "required": ["actor"] },
|
|
91
|
+
"then": { "properties": { "assignmentId": { "type": "string" } } }
|
|
92
|
+
}]
|
|
93
|
+
},
|
|
94
|
+
"reviewIdentityArguments": {
|
|
95
|
+
"type": "object", "additionalProperties": false, "required": ["reviewId", "cycleId", "actor", "scope"],
|
|
96
|
+
"properties": {
|
|
97
|
+
"reviewId": { "type": "string", "pattern": "^rev_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
98
|
+
"cycleId": { "type": "string", "pattern": "^cyc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
99
|
+
"actor": { "$ref": "#/$defs/humanActor" },
|
|
100
|
+
"scope": { "$ref": "#/$defs/scope" }
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"reviewSubmitArguments": {
|
|
104
|
+
"type": "object", "additionalProperties": false, "required": ["reviewId", "cycleId", "actor", "scope", "disposition", "workDispositions"],
|
|
105
|
+
"properties": {
|
|
106
|
+
"reviewId": { "type": "string", "pattern": "^rev_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
107
|
+
"cycleId": { "type": "string", "pattern": "^cyc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
108
|
+
"actor": { "$ref": "#/$defs/humanActor" },
|
|
109
|
+
"scope": { "$ref": "#/$defs/scope" },
|
|
110
|
+
"disposition": { "type": "string", "enum": ["approved", "changes_requested", "rejected", "cancelled"] },
|
|
111
|
+
"workDispositions": { "type": "array", "maxItems": 1024, "uniqueItems": true, "items": { "$ref": "operating-review.schema.json#/$defs/workDisposition" } }
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"actionIdentity": {
|
|
115
|
+
"type": "object", "additionalProperties": false, "required": ["actionId", "revision", "actionHash"],
|
|
116
|
+
"properties": {
|
|
117
|
+
"actionId": { "type": "string", "pattern": "^act_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
118
|
+
"revision": { "type": "integer", "minimum": 1 },
|
|
119
|
+
"actionHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" }
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"actionApproveArguments": {
|
|
123
|
+
"type": "object", "additionalProperties": false, "required": ["action", "decision"],
|
|
124
|
+
"properties": {
|
|
125
|
+
"action": { "$ref": "#/$defs/actionIdentity" }, "decision": { "enum": ["approved", "rejected", "deferred"] },
|
|
126
|
+
"rollback": {
|
|
127
|
+
"type": "object", "additionalProperties": false,
|
|
128
|
+
"required": ["rollbackPlanId", "planHash", "originalOperationId", "executionResultId", "expectedTargetHash"],
|
|
129
|
+
"properties": {
|
|
130
|
+
"rollbackPlanId": { "type": "string", "pattern": "^rbp_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
131
|
+
"planHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
132
|
+
"originalOperationId": { "type": "string", "pattern": "^op_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
133
|
+
"executionResultId": { "type": "string", "pattern": "^xres_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
134
|
+
"expectedTargetHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" }
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"actionExecuteArguments": {
|
|
140
|
+
"type": "object", "additionalProperties": false, "required": ["action"],
|
|
141
|
+
"properties": { "action": { "$ref": "#/$defs/actionIdentity" } }
|
|
142
|
+
},
|
|
143
|
+
"actionRollbackArguments": {
|
|
144
|
+
"type": "object", "additionalProperties": false, "required": ["action", "originalOperationId", "rollbackPlanId"],
|
|
145
|
+
"properties": {
|
|
146
|
+
"action": { "$ref": "#/$defs/actionIdentity" }, "originalOperationId": { "type": "string", "pattern": "^op_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
147
|
+
"rollbackPlanId": { "type": "string", "pattern": "^rbp_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"publicActor": {
|
|
151
|
+
"type": "object", "additionalProperties": false, "required": ["actorId", "kind", "runtime"],
|
|
152
|
+
"properties": {
|
|
153
|
+
"actorId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
154
|
+
"kind": { "type": "string", "enum": ["agent", "human"] },
|
|
155
|
+
"runtime": { "$ref": "#/$defs/nonPlaceholder" }
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"humanActor": {
|
|
159
|
+
"type": "object", "additionalProperties": false, "required": ["actorId", "kind", "runtime"],
|
|
160
|
+
"properties": {
|
|
161
|
+
"actorId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
162
|
+
"kind": { "const": "human" },
|
|
163
|
+
"runtime": { "$ref": "#/$defs/nonPlaceholder" }
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"scope": {
|
|
167
|
+
"type": "object", "additionalProperties": false, "required": ["scopeId", "domainId", "domainVersion"],
|
|
168
|
+
"properties": {
|
|
169
|
+
"scopeId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
170
|
+
"domainId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
171
|
+
"domainVersion": { "allOf": [{ "$ref": "#/$defs/nonPlaceholder" }, { "maxLength": 64 }] }
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"nonPlaceholder": {
|
|
175
|
+
"type": "string",
|
|
176
|
+
"minLength": 1,
|
|
177
|
+
"maxLength": 128,
|
|
178
|
+
"not": { "pattern": "(?:<[^>]+>|\\{\\{[^}]+\\}\\})" }
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operate-api-envelope.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operate-api-envelope", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 API envelope",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["ok", "operation", "allowedActions"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"ok": { "type": "boolean" },
|
|
11
|
+
"operation": { "$ref": "#/$defs/toolName" },
|
|
12
|
+
"data": {},
|
|
13
|
+
"error": { "$ref": "#/$defs/error" },
|
|
14
|
+
"allowedActions": { "type": "array", "items": { "$ref": "operate-allowed-action.schema.json" } }
|
|
15
|
+
},
|
|
16
|
+
"oneOf": [
|
|
17
|
+
{ "title": "cycle.start success", "$ref": "#/$defs/cycleStartSuccess" },
|
|
18
|
+
{ "title": "cycle.get success", "$ref": "#/$defs/cycleGetSuccess" },
|
|
19
|
+
{ "title": "cycle.resume success", "$ref": "#/$defs/cycleResumeSuccess" },
|
|
20
|
+
{ "title": "assignment.claim success", "$ref": "#/$defs/assignmentClaimSuccess" },
|
|
21
|
+
{ "title": "assignment.submit success", "$ref": "#/$defs/assignmentSubmitSuccess" },
|
|
22
|
+
{ "title": "artifact.get success", "$ref": "#/$defs/artifactGetSuccess" },
|
|
23
|
+
{ "title": "review.get success", "$ref": "#/$defs/reviewGetSuccess" },
|
|
24
|
+
{ "title": "review.submit success", "$ref": "#/$defs/reviewSubmitSuccess" },
|
|
25
|
+
{ "title": "action.approve success", "$ref": "#/$defs/actionApproveSuccess" },
|
|
26
|
+
{ "title": "action.execute success", "$ref": "#/$defs/actionExecuteSuccess" },
|
|
27
|
+
{ "title": "action.rollback success", "$ref": "#/$defs/actionRollbackSuccess" },
|
|
28
|
+
{ "title": "recovery.inspect success", "$ref": "#/$defs/recoveryInspectSuccess" },
|
|
29
|
+
{ "title": "failure", "required": ["error"], "properties": { "ok": { "const": false } }, "not": { "required": ["data"] } }
|
|
30
|
+
],
|
|
31
|
+
"$defs": {
|
|
32
|
+
"toolName": { "type": "string", "enum": ["operate.cycle.start", "operate.cycle.get", "operate.cycle.resume", "operate.assignment.claim", "operate.assignment.submit", "operate.artifact.get", "operate.review.get", "operate.review.submit", "operate.action.approve", "operate.action.execute", "operate.action.rollback", "operate.recovery.inspect", "operate.recovery.restore", "operate.recovery.clear-stale-lock"] },
|
|
33
|
+
"error": {
|
|
34
|
+
"type": "object", "additionalProperties": false, "required": ["code", "message", "retryable", "context"],
|
|
35
|
+
"properties": {
|
|
36
|
+
"code": { "type": "string", "enum": ["ARTIFACT_NOT_FOUND", "ARTIFACT_HASH_MISMATCH", "ANCESTRY_MISMATCH", "ASSIGNMENT_ALREADY_CLAIMED", "ASSIGNMENT_ALREADY_SUBMITTED", "ASSIGNMENT_NOT_AVAILABLE", "CAPABILITY_DENIED", "CONCURRENT_MODIFICATION", "CONTRACT_VERSION_UNSUPPORTED", "CONSENT_REQUIRED", "CYCLE_NOT_FOUND", "CYCLE_TERMINAL", "DOMAIN_CONTRACT_UNSUPPORTED", "EVIDENCE_LOCATOR_INVALID", "EVIDENCE_PROVIDER_UNAVAILABLE", "EVIDENCE_RESOLUTION_FAILED", "EVIDENCE_RESOLVER_UNAVAILABLE", "EVIDENCE_RESOLVER_UNREGISTERED", "EVIDENCE_RESOLVER_VERSION_UNSUPPORTED", "EVIDENCE_SOURCE_SCOPE_MISMATCH", "LINE_RANGE_INVALID", "OBJECT_TYPE_MISMATCH", "OPERATING_PROVIDER_INPUT_INVALID", "OPERATING_PROVIDER_UNAVAILABLE", "OPERATING_SCOPE_INVALID", "PATH_NOT_FOUND", "REVIEW_NOT_AUTHORIZED", "REVIEW_NOT_FOUND", "REVIEW_NOT_PENDING", "RESULT_CONTRACT_INVALID", "REVISION_NOT_FOUND", "SECRET_DETECTED", "SENSITIVITY_BLOCKED", "SOURCE_NOT_FOUND", "SOURCE_STALE", "SOURCE_UNTRACKED", "STATE_TRANSITION_INVALID", "SUBMISSION_ID_CONFLICT", "UNSUPPORTED_EVIDENCE_KIND", "ACTION_NOT_FOUND", "ACTION_REVISION_MISMATCH", "POLICY_EVALUATION_REJECTED", "POLICY_EVALUATION_DEFERRED", "POLICY_PROHIBITED", "APPROVAL_REQUIRED", "APPROVAL_INVALID", "APPROVAL_EXPIRED", "CAPABILITY_UNAVAILABLE", "CAPABILITY_GRANT_INVALID", "CAPABILITY_GRANT_CONSUMED", "CAPABILITY_PROVIDER_UNAVAILABLE", "POLICY_PROVIDER_UNAVAILABLE", "EXECUTOR_UNAVAILABLE", "OPERATION_CONFLICT", "OPERATION_UNCERTAIN", "ROLLBACK_NOT_ELIGIBLE"] },
|
|
37
|
+
"message": { "type": "string", "minLength": 1, "maxLength": 2048 },
|
|
38
|
+
"retryable": { "type": "boolean" },
|
|
39
|
+
"context": { "$ref": "#/$defs/safeErrorContext" }
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"successBase": { "required": ["data"], "properties": { "ok": { "const": true } }, "not": { "required": ["error"] } },
|
|
43
|
+
"cycleStartSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.cycle.start" }, "data": { "$ref": "#/$defs/cycleView" } } }] },
|
|
44
|
+
"cycleGetSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.cycle.get" }, "data": { "$ref": "#/$defs/cycleView" } } }] },
|
|
45
|
+
"cycleResumeSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.cycle.resume" }, "data": { "$ref": "#/$defs/cycleView" } } }] },
|
|
46
|
+
"assignmentClaimSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.assignment.claim" }, "data": { "$ref": "#/$defs/assignmentClaim" } } }] },
|
|
47
|
+
"assignmentSubmitSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.assignment.submit" }, "data": { "$ref": "#/$defs/submissionAcceptance" } } }] },
|
|
48
|
+
"artifactGetSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.artifact.get" }, "data": { "$ref": "#/$defs/artifactRepresentation" } } }] },
|
|
49
|
+
"reviewGetSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.review.get" }, "data": { "$ref": "operating-review-read.schema.json" } } }] },
|
|
50
|
+
"reviewSubmitSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.review.submit" }, "data": { "$ref": "operating-review-receipt.schema.json" } } }] },
|
|
51
|
+
"actionApproveSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.action.approve" }, "data": { "$ref": "#/$defs/actionApproval" } } }] },
|
|
52
|
+
"actionExecuteSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.action.execute" }, "data": { "$ref": "operating-governed-operation.schema.json" } } }] },
|
|
53
|
+
"actionRollbackSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.action.rollback" }, "data": { "$ref": "operating-governed-operation.schema.json" } } }] },
|
|
54
|
+
"recoveryInspectSuccess": { "allOf": [{ "$ref": "#/$defs/successBase" }, { "properties": { "operation": { "const": "operate.recovery.inspect" }, "data": { "$ref": "#/$defs/recoveryInspection" } } }] },
|
|
55
|
+
"actionApproval": { "type": "object", "additionalProperties": false, "required": ["action", "evaluation", "requirements", "approvals"], "properties": { "action": { "$ref": "operating-action.schema.json" }, "evaluation": { "$ref": "operating-policy-evaluation.schema.json" }, "requirements": { "type": "array", "items": { "$ref": "operating-approval-requirement.schema.json" } }, "approvals": { "type": "array", "items": { "$ref": "operating-approval-record.schema.json" } } } },
|
|
56
|
+
"cycleView": {
|
|
57
|
+
"type": "object", "additionalProperties": false,
|
|
58
|
+
"required": ["cycle", "progress", "availableAssignments", "acceptedArtifactIds", "persistentWork", "actions"],
|
|
59
|
+
"properties": {
|
|
60
|
+
"cycle": { "$ref": "operating-cycle.schema.json" },
|
|
61
|
+
"progress": {
|
|
62
|
+
"type": "object", "additionalProperties": false,
|
|
63
|
+
"required": ["total", "pending", "available", "active", "submitted", "validated", "rejected", "terminal"],
|
|
64
|
+
"properties": {
|
|
65
|
+
"total": { "type": "integer", "minimum": 0 }, "pending": { "type": "integer", "minimum": 0 }, "available": { "type": "integer", "minimum": 0 }, "active": { "type": "integer", "minimum": 0 }, "submitted": { "type": "integer", "minimum": 0 }, "validated": { "type": "integer", "minimum": 0 }, "rejected": { "type": "integer", "minimum": 0 }, "terminal": { "type": "integer", "minimum": 0 }
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"availableAssignments": { "type": "array", "items": { "$ref": "operating-assignment.schema.json" } },
|
|
69
|
+
"acceptedArtifactIds": { "type": "array", "uniqueItems": true, "items": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } },
|
|
70
|
+
"persistentWork": {
|
|
71
|
+
"type": "object", "additionalProperties": false, "required": ["ledger", "cycleLinks"],
|
|
72
|
+
"properties": {
|
|
73
|
+
"ledger": { "$ref": "operating-work-ledger.schema.json" },
|
|
74
|
+
"cycleLinks": { "type": "array", "items": { "$ref": "operating-work-ledger.schema.json#/$defs/cycleLink" } }
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"actions": { "type": "array", "items": { "$ref": "operate-allowed-action.schema.json" } }
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"reviewSubmit": {
|
|
81
|
+
"type": "object", "additionalProperties": false,
|
|
82
|
+
"required": ["review", "cycle"],
|
|
83
|
+
"properties": {
|
|
84
|
+
"review": { "$ref": "operating-review.schema.json" },
|
|
85
|
+
"cycle": { "$ref": "operating-cycle.schema.json" }
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"assignmentClaim": {
|
|
89
|
+
"type": "object", "additionalProperties": false,
|
|
90
|
+
"required": ["assignment", "submissionId", "capabilities"],
|
|
91
|
+
"properties": {
|
|
92
|
+
"assignment": {
|
|
93
|
+
"allOf": [
|
|
94
|
+
{ "$ref": "operating-assignment.schema.json" },
|
|
95
|
+
{ "properties": { "state": { "const": "running" } }, "required": ["state"] }
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
"capabilities": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1, "maxLength": 128 } },
|
|
99
|
+
"submissionId": { "type": "string", "pattern": "^sub_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"submissionAcceptance": {
|
|
103
|
+
"type": "object", "additionalProperties": false,
|
|
104
|
+
"required": ["accepted", "artifactId", "rawHash", "sizeBytes", "assignmentState"],
|
|
105
|
+
"properties": {
|
|
106
|
+
"accepted": { "const": true },
|
|
107
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
108
|
+
"rawHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
109
|
+
"sizeBytes": { "type": "integer", "minimum": 0 },
|
|
110
|
+
"assignmentState": { "const": "validated" }
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"contractRef": {
|
|
114
|
+
"type": "object", "additionalProperties": false,
|
|
115
|
+
"required": ["schemaId", "schemaVersion", "mediaType", "encoding", "maxBytes"],
|
|
116
|
+
"properties": {
|
|
117
|
+
"schemaId": { "type": "string", "minLength": 1, "maxLength": 256 },
|
|
118
|
+
"schemaVersion": { "type": "string", "minLength": 1, "maxLength": 64 },
|
|
119
|
+
"mediaType": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
120
|
+
"encoding": { "type": "string", "enum": ["utf-8", "binary"] },
|
|
121
|
+
"maxBytes": { "type": "integer", "minimum": 1 }
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"safeErrorContext": {
|
|
125
|
+
"type": "object",
|
|
126
|
+
"additionalProperties": false,
|
|
127
|
+
"properties": {
|
|
128
|
+
"operation": { "$ref": "#/$defs/safeToken" },
|
|
129
|
+
"cycleId": { "$ref": "#/$defs/safeToken" },
|
|
130
|
+
"assignmentId": { "$ref": "#/$defs/safeToken" },
|
|
131
|
+
"submissionId": { "$ref": "#/$defs/safeToken" },
|
|
132
|
+
"submissionState": { "$ref": "#/$defs/safeToken" },
|
|
133
|
+
"reviewId": { "$ref": "#/$defs/safeToken" },
|
|
134
|
+
"state": { "$ref": "#/$defs/safeToken" },
|
|
135
|
+
"maxBytes": { "type": "integer", "minimum": 0 }
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"safeToken": {
|
|
139
|
+
"type": "string",
|
|
140
|
+
"minLength": 1,
|
|
141
|
+
"maxLength": 256,
|
|
142
|
+
"not": { "pattern": "(?:<[^>]+>|\\{\\{[^}]+\\}\\})" }
|
|
143
|
+
},
|
|
144
|
+
"artifactRepresentation": {
|
|
145
|
+
"type": "object", "additionalProperties": false, "required": ["metadata", "representation"],
|
|
146
|
+
"properties": {
|
|
147
|
+
"metadata": { "$ref": "operating-artifact.schema.json" },
|
|
148
|
+
"representation": { "type": "string", "enum": ["raw", "canonical", "metadata", "decoded-json"] },
|
|
149
|
+
"contentBase64": { "type": "string", "pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$" },
|
|
150
|
+
"contentJson": {}
|
|
151
|
+
},
|
|
152
|
+
"oneOf": [
|
|
153
|
+
{ "title": "raw bytes", "required": ["contentBase64"], "properties": { "representation": { "const": "raw" } }, "not": { "required": ["contentJson"] } },
|
|
154
|
+
{ "title": "canonical bytes", "required": ["contentBase64"], "properties": { "representation": { "const": "canonical" } }, "not": { "required": ["contentJson"] } },
|
|
155
|
+
{ "title": "metadata only", "properties": { "representation": { "const": "metadata" } }, "not": { "anyOf": [{ "required": ["contentBase64"] }, { "required": ["contentJson"] }] } },
|
|
156
|
+
{
|
|
157
|
+
"title": "verified decoded JSON",
|
|
158
|
+
"required": ["contentJson"],
|
|
159
|
+
"properties": {
|
|
160
|
+
"representation": { "const": "decoded-json" },
|
|
161
|
+
"metadata": {
|
|
162
|
+
"allOf": [
|
|
163
|
+
{ "$ref": "operating-artifact.schema.json" },
|
|
164
|
+
{ "properties": { "mediaType": { "const": "application/json" }, "encoding": { "const": "utf-8" } } }
|
|
165
|
+
]
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"not": { "required": ["contentBase64"] }
|
|
169
|
+
}
|
|
170
|
+
]
|
|
171
|
+
},
|
|
172
|
+
"recoveryInspection": {
|
|
173
|
+
"type": "object",
|
|
174
|
+
"additionalProperties": false,
|
|
175
|
+
"required": [
|
|
176
|
+
"status",
|
|
177
|
+
"currentGeneration",
|
|
178
|
+
"recoverableGeneration",
|
|
179
|
+
"generationCount",
|
|
180
|
+
"reason",
|
|
181
|
+
"allowedRecovery",
|
|
182
|
+
"lock",
|
|
183
|
+
"integrityBoundary"
|
|
184
|
+
],
|
|
185
|
+
"properties": {
|
|
186
|
+
"status": {
|
|
187
|
+
"type": "string",
|
|
188
|
+
"enum": ["healthy", "empty", "corrupt", "incompatible", "locked", "repairable"]
|
|
189
|
+
},
|
|
190
|
+
"currentGeneration": { "type": "string", "minLength": 1 },
|
|
191
|
+
"recoverableGeneration": { "type": ["string", "null"], "minLength": 1 },
|
|
192
|
+
"generationCount": { "type": "integer", "minimum": 0 },
|
|
193
|
+
"reason": { "type": "string", "minLength": 1, "maxLength": 2048 },
|
|
194
|
+
"allowedRecovery": {
|
|
195
|
+
"type": "string",
|
|
196
|
+
"enum": ["none", "clear-stale-lock", "restore-generation"]
|
|
197
|
+
},
|
|
198
|
+
"lock": {
|
|
199
|
+
"type": "object",
|
|
200
|
+
"additionalProperties": false,
|
|
201
|
+
"required": ["status", "ownerPid", "nonce", "expiresAt", "reason"],
|
|
202
|
+
"properties": {
|
|
203
|
+
"status": { "type": "string", "enum": ["absent", "active", "stale"] },
|
|
204
|
+
"ownerPid": { "type": ["integer", "null"], "minimum": 0 },
|
|
205
|
+
"nonce": { "type": ["string", "null"], "minLength": 1 },
|
|
206
|
+
"expiresAt": { "type": ["string", "null"], "format": "date-time" },
|
|
207
|
+
"reason": { "type": "string", "maxLength": 2048 }
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"integrityBoundary": {
|
|
211
|
+
"type": "object",
|
|
212
|
+
"additionalProperties": false,
|
|
213
|
+
"required": ["model", "detects", "authenticity", "outsideBoundary", "futureRequirement"],
|
|
214
|
+
"properties": {
|
|
215
|
+
"model": { "type": "string", "minLength": 1 },
|
|
216
|
+
"detects": { "type": "array", "items": { "type": "string", "minLength": 1 } },
|
|
217
|
+
"authenticity": { "type": "string", "minLength": 1 },
|
|
218
|
+
"outsideBoundary": { "type": "array", "items": { "type": "string", "minLength": 1 } },
|
|
219
|
+
"futureRequirement": { "type": "string", "minLength": 1 }
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://openplanr.dev/schemas/v2.0.0/operate-capability-provider-registration.schema.json",
|
|
3
|
+
"x-openplanr-contract": { "id": "operate-capability-provider-registration", "version": "2.0.0" }, "title": "OpenPlanr Operate 2.0 capability provider registration",
|
|
4
|
+
"type": "object", "additionalProperties": false,
|
|
5
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "providerId", "providerVersion", "capabilities", "supportedActionKinds", "supportedDomains", "supportedTargetKinds", "effectCeiling", "inputContract", "outputContract", "errorContract", "errorCodes", "timeoutPolicy", "retryPolicy", "idempotency", "reconciliation", "health", "versionCompatibility", "provenance", "conformanceDigest", "implementation", "fallback"],
|
|
6
|
+
"properties": {
|
|
7
|
+
"kind": { "const": "operate-capability-provider-registration" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "2.0.0" }, "providerId": { "$ref": "#/$defs/id" }, "providerVersion": { "$ref": "#/$defs/version" },
|
|
8
|
+
"capabilities": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "$ref": "#/$defs/versionedId" } }, "supportedActionKinds": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "$ref": "#/$defs/versionedId" } }, "supportedDomains": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "$ref": "#/$defs/id" } }, "supportedTargetKinds": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "$ref": "#/$defs/id" } }, "effectCeiling": { "$ref": "#/$defs/effect" },
|
|
9
|
+
"inputContract": { "allOf": [{ "$ref": "#/$defs/contract" }, { "properties": { "schemaId": { "const": "operating-action" } } }] }, "outputContract": { "allOf": [{ "$ref": "#/$defs/contract" }, { "properties": { "schemaId": { "const": "operating-capability-availability" } } }] }, "errorContract": { "allOf": [{ "$ref": "#/$defs/contract" }, { "properties": { "schemaId": { "const": "operate-api-envelope" } } }] },
|
|
10
|
+
"errorCodes": { "$ref": "#/$defs/errorCodes" }, "timeoutPolicy": { "$ref": "#/$defs/timeoutPolicy" }, "retryPolicy": { "$ref": "#/$defs/retryPolicy" }, "idempotency": { "$ref": "#/$defs/idempotency" }, "reconciliation": { "$ref": "#/$defs/reconciliation" }, "health": { "$ref": "#/$defs/health" }, "versionCompatibility": { "$ref": "#/$defs/versionCompatibility" },
|
|
11
|
+
"provenance": { "$ref": "#/$defs/provenance" }, "conformanceDigest": { "$ref": "#/$defs/hash" }, "implementation": { "$ref": "#/$defs/implementation" }, "fallback": { "$ref": "#/$defs/fallback" }
|
|
12
|
+
}, "$defs": {
|
|
13
|
+
"id": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" }, "version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" }, "hash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" }, "effect": { "enum": ["read-only", "machine-local-write", "project-write", "provider-call", "external-effect"] }, "versionedId": { "type": "object", "additionalProperties": false, "required": ["id", "version"], "properties": { "id": { "$ref": "#/$defs/id" }, "version": { "$ref": "#/$defs/version" } } }, "contract": { "type": "object", "additionalProperties": false, "required": ["schemaId", "schemaVersion"], "properties": { "schemaId": { "$ref": "#/$defs/id" }, "schemaVersion": { "const": "2.0.0" } } },
|
|
14
|
+
"errorCodes": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string", "pattern": "^[A-Z][A-Z0-9_]*$" } },
|
|
15
|
+
"timeoutPolicy": { "type": "object", "additionalProperties": false, "required": ["timeoutMs", "onTimeout"], "properties": { "timeoutMs": { "type": "integer", "minimum": 1, "maximum": 300000 }, "onTimeout": { "const": "fail-closed" } } },
|
|
16
|
+
"retryPolicy": { "type": "object", "additionalProperties": false, "required": ["maxAttempts", "backoff", "retryableErrorCodes"], "properties": { "maxAttempts": { "type": "integer", "minimum": 1, "maximum": 3 }, "backoff": { "enum": ["none", "fixed"] }, "retryableErrorCodes": { "$ref": "#/$defs/errorCodes" } } },
|
|
17
|
+
"idempotency": { "type": "object", "additionalProperties": false, "required": ["keySource", "replay", "intrinsicallyIdempotent"], "properties": { "keySource": { "const": "runtime-derived-request-fingerprint" }, "replay": { "const": "return-recorded-result" }, "intrinsicallyIdempotent": { "type": "boolean" } } },
|
|
18
|
+
"reconciliation": {
|
|
19
|
+
"type": "object", "additionalProperties": false, "required": ["supported", "mode"],
|
|
20
|
+
"properties": { "supported": { "type": "boolean" }, "mode": { "enum": ["none", "deterministic"] } },
|
|
21
|
+
"oneOf": [
|
|
22
|
+
{ "properties": { "supported": { "const": false }, "mode": { "const": "none" } } },
|
|
23
|
+
{ "properties": { "supported": { "const": true }, "mode": { "const": "deterministic" } } }
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
"health": { "type": "object", "additionalProperties": false, "required": ["status", "checkedAt", "expiresAt", "healthHash"], "properties": { "status": { "enum": ["available", "degraded", "unavailable"] }, "checkedAt": { "type": "string", "format": "date-time" }, "expiresAt": { "type": "string", "format": "date-time" }, "healthHash": { "$ref": "#/$defs/hash" } } },
|
|
27
|
+
"versionCompatibility": { "type": "object", "additionalProperties": false, "required": ["protocolVersion", "minimumRuntimeVersion", "maximumRuntimeVersion"], "properties": { "protocolVersion": { "const": "2.0.0" }, "minimumRuntimeVersion": { "$ref": "#/$defs/version" }, "maximumRuntimeVersion": { "type": ["string", "null"], "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" } } },
|
|
28
|
+
"provenance": { "type": "object", "additionalProperties": false, "required": ["packageName", "packageVersion", "integrity"], "properties": { "packageName": { "$ref": "#/$defs/id" }, "packageVersion": { "$ref": "#/$defs/version" }, "integrity": { "$ref": "#/$defs/hash" } } }, "implementation": { "type": "object", "additionalProperties": false, "required": ["source", "id"], "properties": { "source": { "enum": ["built-in", "public-optional", "external"] }, "id": { "$ref": "#/$defs/id" } } }, "fallback": { "type": "object", "additionalProperties": false, "required": ["kind", "errorCode"], "properties": { "kind": { "const": "unavailable" }, "errorCode": { "const": "CAPABILITY_PROVIDER_UNAVAILABLE" } } }
|
|
29
|
+
}
|
|
30
|
+
}
|