@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,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.2.0/structured-action.schema.json",
|
|
4
|
+
"title": "OpenPlanr Protocol v1.2 structured next action",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"kind",
|
|
9
|
+
"schemaVersion",
|
|
10
|
+
"protocolVersion",
|
|
11
|
+
"id",
|
|
12
|
+
"label",
|
|
13
|
+
"command",
|
|
14
|
+
"effect",
|
|
15
|
+
"providerUse",
|
|
16
|
+
"requiresConfirmation",
|
|
17
|
+
"confirmationScope",
|
|
18
|
+
"confirmationDigest",
|
|
19
|
+
"recommended"
|
|
20
|
+
],
|
|
21
|
+
"properties": {
|
|
22
|
+
"kind": { "const": "structured-action" },
|
|
23
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
24
|
+
"protocolVersion": { "const": "1.2.0" },
|
|
25
|
+
"id": { "type": "string", "pattern": "^[a-z][a-z0-9.-]{0,127}$" },
|
|
26
|
+
"label": { "type": "string", "minLength": 1, "maxLength": 160 },
|
|
27
|
+
"description": { "type": "string", "minLength": 1, "maxLength": 1000 },
|
|
28
|
+
"command": { "type": "string", "pattern": "^planr [^\\r\\n]{1,1024}$" },
|
|
29
|
+
"effect": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"enum": ["read-only", "machine-local-write", "project-write", "provider-call", "external-effect"]
|
|
32
|
+
},
|
|
33
|
+
"providerUse": { "type": "boolean" },
|
|
34
|
+
"requiresConfirmation": { "type": "boolean" },
|
|
35
|
+
"confirmationScope": {
|
|
36
|
+
"oneOf": [
|
|
37
|
+
{ "type": "string", "minLength": 1, "maxLength": 500 },
|
|
38
|
+
{ "type": "null" }
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"confirmationDigest": {
|
|
42
|
+
"oneOf": [
|
|
43
|
+
{ "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
44
|
+
{ "type": "null" }
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"recommended": { "type": "boolean" }
|
|
48
|
+
},
|
|
49
|
+
"allOf": [
|
|
50
|
+
{
|
|
51
|
+
"oneOf": [
|
|
52
|
+
{
|
|
53
|
+
"title": "Confirmation-free read",
|
|
54
|
+
"properties": {
|
|
55
|
+
"effect": { "const": "read-only" },
|
|
56
|
+
"providerUse": { "const": false },
|
|
57
|
+
"requiresConfirmation": { "const": false },
|
|
58
|
+
"confirmationScope": { "type": "null" },
|
|
59
|
+
"confirmationDigest": { "type": "null" }
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"title": "Digest-bound confirmed action",
|
|
64
|
+
"properties": {
|
|
65
|
+
"requiresConfirmation": { "const": true },
|
|
66
|
+
"confirmationScope": { "type": "string", "minLength": 1, "maxLength": 500 },
|
|
67
|
+
"confirmationDigest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" }
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
]
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"oneOf": [
|
|
74
|
+
{
|
|
75
|
+
"title": "Provider action",
|
|
76
|
+
"properties": {
|
|
77
|
+
"effect": { "const": "provider-call" },
|
|
78
|
+
"providerUse": { "const": true }
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"title": "Non-provider action",
|
|
83
|
+
"properties": {
|
|
84
|
+
"effect": { "enum": ["read-only", "machine-local-write", "project-write", "external-effect"] },
|
|
85
|
+
"providerUse": { "const": false }
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.3.0/adapter-registry.schema.json",
|
|
4
|
+
"title": "OpenPlanr Protocol v1.3 runtime adapter registry",
|
|
5
|
+
"description": "Identical to the v1.2 adapter registry, plus additive capability values: toolIsolation gains 'enforced-read-only' and operatingAdvisorDispatch gains 'native-read-only'. All v1.2 values remain valid, so v1.2 adapter manifests keep validating.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "pipelineVersion", "adapters"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "adapter-registry" },
|
|
11
|
+
"schemaVersion": { "const": "1.1.0" },
|
|
12
|
+
"protocolVersion": { "const": "1.3.0" },
|
|
13
|
+
"pipelineVersion": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+(?:[-+][0-9A-Za-z.-]+)?$" },
|
|
14
|
+
"adapters": {
|
|
15
|
+
"type": "array",
|
|
16
|
+
"minItems": 1,
|
|
17
|
+
"uniqueItems": true,
|
|
18
|
+
"items": {
|
|
19
|
+
"type": "object",
|
|
20
|
+
"additionalProperties": false,
|
|
21
|
+
"required": ["id", "version", "capabilityLevel", "installScopes", "entrypoints", "capabilities", "assets", "healthChecks", "drivers"],
|
|
22
|
+
"properties": {
|
|
23
|
+
"id": { "type": "string", "pattern": "^[a-z][a-z0-9-]*$" },
|
|
24
|
+
"version": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+(?:[-+][0-9A-Za-z.-]+)?$" },
|
|
25
|
+
"capabilityLevel": { "type": "string", "enum": ["artifact", "workflow", "product"] },
|
|
26
|
+
"installScopes": {
|
|
27
|
+
"type": "array",
|
|
28
|
+
"minItems": 1,
|
|
29
|
+
"uniqueItems": true,
|
|
30
|
+
"items": { "type": "string", "enum": ["user", "project"] }
|
|
31
|
+
},
|
|
32
|
+
"entrypoints": {
|
|
33
|
+
"type": "object",
|
|
34
|
+
"additionalProperties": false,
|
|
35
|
+
"required": ["plan", "ship", "artifact", "operate"],
|
|
36
|
+
"properties": {
|
|
37
|
+
"plan": { "type": "string", "minLength": 1 },
|
|
38
|
+
"design": { "type": "string", "minLength": 1 },
|
|
39
|
+
"ship": { "type": "string", "minLength": 1 },
|
|
40
|
+
"dashboard": { "type": "string", "minLength": 1 },
|
|
41
|
+
"artifact": { "type": "string", "minLength": 1 },
|
|
42
|
+
"operate": { "type": "string", "minLength": 1 },
|
|
43
|
+
"sync": { "type": "string", "minLength": 1 },
|
|
44
|
+
"doctor": { "type": "string", "minLength": 1 }
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"capabilities": {
|
|
48
|
+
"type": "object",
|
|
49
|
+
"additionalProperties": false,
|
|
50
|
+
"required": ["subagents", "hooks", "toolIsolation", "parallelDispatch", "parallelDispatchMode", "headlessBridge", "artifactReview", "operatingBoard", "operatingAdvisorDispatch", "interactiveQuestions"],
|
|
51
|
+
"properties": {
|
|
52
|
+
"subagents": { "type": "string", "enum": ["native", "advisory", "sequential", "dynamic"] },
|
|
53
|
+
"hooks": { "type": "boolean" },
|
|
54
|
+
"toolIsolation": { "type": "string", "enum": ["enforced", "advisory", "none", "enforced-read-only"] },
|
|
55
|
+
"parallelDispatch": { "type": "boolean" },
|
|
56
|
+
"parallelDispatchMode": { "type": "string", "enum": ["native", "host", "sequential", "dynamic"] },
|
|
57
|
+
"headlessBridge": { "type": "boolean" },
|
|
58
|
+
"artifactReview": { "type": "boolean" },
|
|
59
|
+
"operatingBoard": { "type": "boolean" },
|
|
60
|
+
"operatingAdvisorDispatch": {
|
|
61
|
+
"type": "string",
|
|
62
|
+
"enum": ["native-isolated", "native-bounded", "structured-provider", "native-read-only"]
|
|
63
|
+
},
|
|
64
|
+
"interactiveQuestions": { "type": "string", "enum": ["native", "chat", "terminal", "none"] }
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"assets": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1 } },
|
|
68
|
+
"healthChecks": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1 } },
|
|
69
|
+
"drivers": {
|
|
70
|
+
"type": "object",
|
|
71
|
+
"additionalProperties": false,
|
|
72
|
+
"required": ["install", "migrate", "rollback", "uninstall"],
|
|
73
|
+
"properties": {
|
|
74
|
+
"install": { "type": "string", "minLength": 1 },
|
|
75
|
+
"migrate": { "type": "string", "minLength": 1 },
|
|
76
|
+
"rollback": { "type": "string", "minLength": 1 },
|
|
77
|
+
"uninstall": { "type": "string", "minLength": 1 }
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.3.0/ecosystem-manifest.schema.json",
|
|
4
|
+
"title": "OpenPlanr resolved ecosystem compatibility manifest as emitted",
|
|
5
|
+
"x-openplanr-contract": { "id": "ecosystem-manifest", "version": "1.3.0" },
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["schemaVersion", "generatedAt", "protocol", "components", "adapters", "professionalSkills", "landingWorkflow"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"schemaVersion": { "const": "1.1.0" },
|
|
11
|
+
"generatedAt": { "type": "string", "format": "date-time" },
|
|
12
|
+
"protocol": {
|
|
13
|
+
"type": "object",
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"required": ["current", "supported"],
|
|
16
|
+
"properties": {
|
|
17
|
+
"current": { "$ref": "#/$defs/version" },
|
|
18
|
+
"supported": { "type": "array", "minItems": 1, "maxItems": 16, "uniqueItems": true, "items": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.(?:x|[0-9]+)$" } }
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"components": {
|
|
22
|
+
"type": "object",
|
|
23
|
+
"additionalProperties": false,
|
|
24
|
+
"required": ["cli", "pipeline", "skills", "marketplace"],
|
|
25
|
+
"properties": {
|
|
26
|
+
"cli": {
|
|
27
|
+
"type": "object",
|
|
28
|
+
"additionalProperties": false,
|
|
29
|
+
"required": ["version", "pipelineRange"],
|
|
30
|
+
"properties": { "version": { "$ref": "#/$defs/version" }, "pipelineRange": { "$ref": "#/$defs/range" } }
|
|
31
|
+
},
|
|
32
|
+
"pipeline": {
|
|
33
|
+
"type": "object",
|
|
34
|
+
"additionalProperties": false,
|
|
35
|
+
"required": ["version", "cliRange"],
|
|
36
|
+
"properties": { "version": { "$ref": "#/$defs/version" }, "cliRange": { "$ref": "#/$defs/range" } }
|
|
37
|
+
},
|
|
38
|
+
"skills": {
|
|
39
|
+
"type": "object",
|
|
40
|
+
"additionalProperties": false,
|
|
41
|
+
"required": ["version", "cliRange"],
|
|
42
|
+
"properties": { "version": { "$ref": "#/$defs/version" }, "cliRange": { "$ref": "#/$defs/range" } }
|
|
43
|
+
},
|
|
44
|
+
"marketplace": {
|
|
45
|
+
"type": "object",
|
|
46
|
+
"additionalProperties": false,
|
|
47
|
+
"required": ["version"],
|
|
48
|
+
"properties": { "version": { "$ref": "#/$defs/version" } }
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"adapters": { "type": "array", "minItems": 1, "maxItems": 16, "uniqueItems": true, "items": { "$ref": "#/$defs/adapter" } },
|
|
53
|
+
"professionalSkills": { "$ref": "#/$defs/professionalSkills" },
|
|
54
|
+
"landingWorkflow": { "$ref": "#/$defs/landingWorkflow" }
|
|
55
|
+
},
|
|
56
|
+
"$defs": {
|
|
57
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
58
|
+
"version": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+(?:[-+][0-9A-Za-z.-]+)?$" },
|
|
59
|
+
"range": { "type": "string", "pattern": "^\\^[0-9]+\\.[0-9]+\\.[0-9]+(?:[-+][0-9A-Za-z.-]+)?$" },
|
|
60
|
+
"skillId": { "type": "string", "pattern": "^[a-z][a-z0-9-]{1,63}$" },
|
|
61
|
+
"adapter": {
|
|
62
|
+
"type": "object",
|
|
63
|
+
"additionalProperties": false,
|
|
64
|
+
"required": ["runtime", "version", "capabilityLevel", "pipelineRange"],
|
|
65
|
+
"properties": {
|
|
66
|
+
"runtime": { "type": "string", "pattern": "^[a-z][a-z0-9-]*$" },
|
|
67
|
+
"version": { "$ref": "#/$defs/version" },
|
|
68
|
+
"capabilityLevel": { "enum": ["artifact", "workflow", "product"] },
|
|
69
|
+
"pipelineRange": { "$ref": "#/$defs/range" }
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"triggerPolicy": {
|
|
73
|
+
"type": "object",
|
|
74
|
+
"additionalProperties": false,
|
|
75
|
+
"required": ["include", "exclude", "deferTo"],
|
|
76
|
+
"properties": {
|
|
77
|
+
"include": { "type": "array", "minItems": 1, "maxItems": 16, "uniqueItems": true, "items": { "type": "string", "minLength": 1, "maxLength": 256 } },
|
|
78
|
+
"exclude": { "type": "array", "minItems": 1, "maxItems": 16, "uniqueItems": true, "items": { "type": "string", "minLength": 1, "maxLength": 256 } },
|
|
79
|
+
"deferTo": { "type": "array", "minItems": 1, "maxItems": 16, "uniqueItems": true, "items": { "$ref": "#/$defs/skillId" } }
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"professionalSkill": {
|
|
83
|
+
"type": "object",
|
|
84
|
+
"additionalProperties": false,
|
|
85
|
+
"required": ["skillId", "sourceVersion", "sourceDigest", "authorityClass", "triggerPolicy"],
|
|
86
|
+
"properties": {
|
|
87
|
+
"skillId": { "$ref": "#/$defs/skillId" },
|
|
88
|
+
"sourceVersion": { "$ref": "#/$defs/version" },
|
|
89
|
+
"sourceDigest": { "$ref": "#/$defs/digest" },
|
|
90
|
+
"authorityClass": { "enum": ["planning-write", "review-evidence", "diagnose-or-authorized-fix", "quality-evidence"] },
|
|
91
|
+
"triggerPolicy": { "$ref": "#/$defs/triggerPolicy" }
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"professionalSkills": {
|
|
95
|
+
"type": "object",
|
|
96
|
+
"additionalProperties": false,
|
|
97
|
+
"required": ["catalogVersion", "membershipDigest", "bundleDigest", "skillIds", "skills"],
|
|
98
|
+
"properties": {
|
|
99
|
+
"catalogVersion": { "$ref": "#/$defs/version" },
|
|
100
|
+
"membershipDigest": { "$ref": "#/$defs/digest" },
|
|
101
|
+
"bundleDigest": { "$ref": "#/$defs/digest" },
|
|
102
|
+
"skillIds": { "type": "array", "minItems": 1, "maxItems": 32, "uniqueItems": true, "items": { "$ref": "#/$defs/skillId" } },
|
|
103
|
+
"skills": { "type": "array", "minItems": 1, "maxItems": 32, "uniqueItems": true, "items": { "$ref": "#/$defs/professionalSkill" } }
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
"landingWorkflow": {
|
|
107
|
+
"type": "object",
|
|
108
|
+
"additionalProperties": false,
|
|
109
|
+
"required": ["workflowId", "workflowVersion", "catalogVersion", "authority", "catalogHash", "bundleDigest"],
|
|
110
|
+
"properties": {
|
|
111
|
+
"workflowId": { "$ref": "#/$defs/skillId" },
|
|
112
|
+
"workflowVersion": { "$ref": "#/$defs/version" },
|
|
113
|
+
"catalogVersion": { "$ref": "#/$defs/version" },
|
|
114
|
+
"authority": { "const": "none" },
|
|
115
|
+
"catalogHash": { "$ref": "#/$defs/digest" },
|
|
116
|
+
"bundleDigest": { "$ref": "#/$defs/digest" }
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.3.0/release-compatibility-claim.schema.json",
|
|
4
|
+
"title": "OpenPlanr digest-bound release compatibility claim",
|
|
5
|
+
"x-openplanr-contract": { "id": "release-compatibility-claim", "version": "1.3.0" },
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "ledgerDigest", "consumer", "producer", "derivation", "display", "claimId", "claimDigest"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "release-compatibility-claim" },
|
|
11
|
+
"schemaVersion": { "const": "1.3.0" },
|
|
12
|
+
"ledgerDigest": { "$ref": "#/$defs/digest" },
|
|
13
|
+
"consumer": { "$ref": "#/$defs/side" },
|
|
14
|
+
"producer": { "$ref": "#/$defs/producer" },
|
|
15
|
+
"derivation": { "enum": ["caret-range-from-producer-declared-version", "exact-producer-declared-version"] },
|
|
16
|
+
"display": { "type": "string", "pattern": "^\\^?[0-9]+\\.[0-9]+\\.[0-9]+(?:[-+][0-9A-Za-z.-]+)?$" },
|
|
17
|
+
"claimId": { "type": "string", "pattern": "^rcc_[a-f0-9]{32}$" },
|
|
18
|
+
"claimDigest": { "$ref": "#/$defs/digest" }
|
|
19
|
+
},
|
|
20
|
+
"$defs": {
|
|
21
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
22
|
+
"repositoryKey": { "enum": ["pipeline", "web", "cli", "skills", "marketplace"] },
|
|
23
|
+
"version": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+(?:[-+][0-9A-Za-z.-]+)?$" },
|
|
24
|
+
"side": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"additionalProperties": false,
|
|
27
|
+
"required": ["repositoryKey", "payloadDigest", "terminalReceiptDigest"],
|
|
28
|
+
"properties": {
|
|
29
|
+
"repositoryKey": { "$ref": "#/$defs/repositoryKey" },
|
|
30
|
+
"payloadDigest": { "$ref": "#/$defs/digest" },
|
|
31
|
+
"terminalReceiptDigest": { "$ref": "#/$defs/digest" }
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"producer": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"additionalProperties": false,
|
|
37
|
+
"required": ["repositoryKey", "payloadDigest", "terminalReceiptDigest", "declaredVersion"],
|
|
38
|
+
"properties": {
|
|
39
|
+
"repositoryKey": { "$ref": "#/$defs/repositoryKey" },
|
|
40
|
+
"payloadDigest": { "$ref": "#/$defs/digest" },
|
|
41
|
+
"terminalReceiptDigest": { "$ref": "#/$defs/digest" },
|
|
42
|
+
"declaredVersion": { "$ref": "#/$defs/version" }
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.3.0/release-ledger-receipt.schema.json",
|
|
4
|
+
"title": "OpenPlanr release ledger verification receipt",
|
|
5
|
+
"x-openplanr-contract": { "id": "release-ledger-receipt", "version": "1.3.0" },
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "recordType", "authority", "issuedAt", "ledgerDigest", "claimSetDigest", "result", "refusals", "receiptId", "receiptDigest"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "release-ledger-receipt" },
|
|
11
|
+
"schemaVersion": { "const": "1.3.0" },
|
|
12
|
+
"recordType": { "const": "verification" },
|
|
13
|
+
"authority": { "const": "none" },
|
|
14
|
+
"issuedAt": { "type": "string", "format": "date-time" },
|
|
15
|
+
"ledgerDigest": { "$ref": "#/$defs/digest" },
|
|
16
|
+
"claimSetDigest": { "$ref": "#/$defs/digest" },
|
|
17
|
+
"result": { "enum": ["verified", "refused"] },
|
|
18
|
+
"refusals": { "type": "array", "maxItems": 64, "uniqueItems": true, "items": { "$ref": "#/$defs/refusal" } },
|
|
19
|
+
"receiptId": { "type": "string", "pattern": "^rlr_[a-f0-9]{32}$" },
|
|
20
|
+
"receiptDigest": { "$ref": "#/$defs/digest" }
|
|
21
|
+
},
|
|
22
|
+
"allOf": [
|
|
23
|
+
{
|
|
24
|
+
"if": { "properties": { "result": { "const": "verified" } }, "required": ["result"] },
|
|
25
|
+
"then": { "properties": { "refusals": { "maxItems": 0 } } }
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"if": { "properties": { "result": { "const": "refused" } }, "required": ["result"] },
|
|
29
|
+
"then": { "properties": { "refusals": { "minItems": 1 } } }
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"$defs": {
|
|
33
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
34
|
+
"refusal": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"additionalProperties": false,
|
|
37
|
+
"required": ["code", "repositoryKey", "reason"],
|
|
38
|
+
"properties": {
|
|
39
|
+
"code": { "type": "string", "pattern": "^E_RELEASE_LEDGER_[A-Z_]+$" },
|
|
40
|
+
"repositoryKey": { "oneOf": [{ "const": null }, { "enum": ["pipeline", "web", "cli", "skills", "marketplace"] }] },
|
|
41
|
+
"reason": { "type": "string", "minLength": 1, "maxLength": 512 }
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.3.0/release-ledger.schema.json",
|
|
4
|
+
"title": "OpenPlanr coordinated release ledger",
|
|
5
|
+
"x-openplanr-contract": { "id": "release-ledger", "version": "1.3.0" },
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "generatedAt", "repositoryKeys", "rows", "manifestBinding", "ledgerId", "ledgerDigest"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "release-ledger" },
|
|
11
|
+
"schemaVersion": { "const": "1.3.0" },
|
|
12
|
+
"generatedAt": { "type": "string", "format": "date-time" },
|
|
13
|
+
"repositoryKeys": { "type": "array", "minItems": 5, "maxItems": 5, "uniqueItems": true, "items": { "$ref": "#/$defs/repositoryKey" } },
|
|
14
|
+
"rows": { "type": "array", "minItems": 5, "maxItems": 5, "uniqueItems": true, "items": { "$ref": "#/$defs/row" } },
|
|
15
|
+
"manifestBinding": { "$ref": "#/$defs/manifestBinding" },
|
|
16
|
+
"ledgerId": { "type": "string", "pattern": "^rlg_[a-f0-9]{32}$" },
|
|
17
|
+
"ledgerDigest": { "$ref": "#/$defs/digest" }
|
|
18
|
+
},
|
|
19
|
+
"$defs": {
|
|
20
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
21
|
+
"repositoryKey": { "enum": ["pipeline", "web", "cli", "skills", "marketplace"] },
|
|
22
|
+
"version": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+(?:[-+][0-9A-Za-z.-]+)?$" },
|
|
23
|
+
"packageName": { "type": "string", "pattern": "^(?:@[a-z0-9._~-]+/)?[a-z0-9._~-]+$" },
|
|
24
|
+
"terminalReceipt": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"additionalProperties": false,
|
|
27
|
+
"required": ["digest", "state", "boundPayloadDigest"],
|
|
28
|
+
"properties": {
|
|
29
|
+
"digest": { "$ref": "#/$defs/digest" },
|
|
30
|
+
"state": { "const": "closed" },
|
|
31
|
+
"boundPayloadDigest": { "$ref": "#/$defs/digest" }
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"row": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"additionalProperties": false,
|
|
37
|
+
"required": ["repositoryKey", "packageName", "declaredVersion", "baselineCommit", "clean", "sourceInventoryDigest", "payloadDigest", "exportSurfaceDigest", "terminalReceipt"],
|
|
38
|
+
"properties": {
|
|
39
|
+
"repositoryKey": { "$ref": "#/$defs/repositoryKey" },
|
|
40
|
+
"packageName": { "$ref": "#/$defs/packageName" },
|
|
41
|
+
"declaredVersion": { "$ref": "#/$defs/version" },
|
|
42
|
+
"baselineCommit": { "type": "string", "pattern": "^[a-f0-9]{40}$" },
|
|
43
|
+
"clean": { "const": true },
|
|
44
|
+
"sourceInventoryDigest": { "$ref": "#/$defs/digest" },
|
|
45
|
+
"payloadDigest": { "$ref": "#/$defs/digest" },
|
|
46
|
+
"exportSurfaceDigest": { "$ref": "#/$defs/digest" },
|
|
47
|
+
"terminalReceipt": { "$ref": "#/$defs/terminalReceipt" }
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"manifestBinding": {
|
|
51
|
+
"type": "object",
|
|
52
|
+
"additionalProperties": false,
|
|
53
|
+
"required": ["manifestDigest", "manifestSchemaVersion"],
|
|
54
|
+
"properties": {
|
|
55
|
+
"manifestDigest": { "$ref": "#/$defs/digest" },
|
|
56
|
+
"manifestSchemaVersion": { "const": "1.1.0" }
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.4.0/adapter-registry.schema.json",
|
|
4
|
+
"title": "OpenPlanr Protocol v1.4 runtime adapter registry",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "pipelineVersion", "adapters"],
|
|
8
|
+
"properties": {
|
|
9
|
+
"kind": { "const": "adapter-registry" },
|
|
10
|
+
"schemaVersion": { "const": "1.1.0" },
|
|
11
|
+
"protocolVersion": { "const": "1.4.0" },
|
|
12
|
+
"pipelineVersion": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+(?:[-+][0-9A-Za-z.-]+)?$" },
|
|
13
|
+
"adapters": {
|
|
14
|
+
"type": "array", "minItems": 1, "uniqueItems": true,
|
|
15
|
+
"items": {
|
|
16
|
+
"type": "object", "additionalProperties": false,
|
|
17
|
+
"required": ["id", "version", "capabilityLevel", "installScopes", "entrypoints", "capabilities", "assets", "healthChecks", "drivers"],
|
|
18
|
+
"properties": {
|
|
19
|
+
"id": { "type": "string", "enum": ["claude-code", "codex", "cursor"] },
|
|
20
|
+
"version": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+(?:[-+][0-9A-Za-z.-]+)?$" },
|
|
21
|
+
"capabilityLevel": { "type": "string", "enum": ["artifact", "workflow", "product"] },
|
|
22
|
+
"installScopes": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string", "enum": ["user", "project"] } },
|
|
23
|
+
"entrypoints": {
|
|
24
|
+
"type": "object", "additionalProperties": false,
|
|
25
|
+
"required": ["plan", "ship", "artifact"],
|
|
26
|
+
"properties": {
|
|
27
|
+
"plan": { "type": "string", "minLength": 1 }, "design": { "type": "string", "minLength": 1 },
|
|
28
|
+
"ship": { "type": "string", "minLength": 1 }, "land": { "type": "string", "minLength": 1 },
|
|
29
|
+
"dashboard": { "type": "string", "minLength": 1 },
|
|
30
|
+
"artifact": { "type": "string", "minLength": 1 },
|
|
31
|
+
"sync": { "type": "string", "minLength": 1 }, "doctor": { "type": "string", "minLength": 1 }
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"capabilities": {
|
|
35
|
+
"type": "object", "additionalProperties": false,
|
|
36
|
+
"required": ["subagents", "hooks", "toolIsolation", "parallelDispatch", "parallelDispatchMode", "headlessBridge", "artifactReview", "interactiveQuestions"],
|
|
37
|
+
"properties": {
|
|
38
|
+
"subagents": { "type": "string", "enum": ["native", "advisory", "sequential", "dynamic"] },
|
|
39
|
+
"hooks": { "type": "boolean" },
|
|
40
|
+
"toolIsolation": { "type": "string", "enum": ["enforced", "advisory", "none", "enforced-read-only"] },
|
|
41
|
+
"parallelDispatch": { "type": "boolean" },
|
|
42
|
+
"parallelDispatchMode": { "type": "string", "enum": ["native", "host", "sequential", "dynamic"] },
|
|
43
|
+
"headlessBridge": { "type": "boolean" },
|
|
44
|
+
"artifactReview": { "type": "boolean" },
|
|
45
|
+
"interactiveQuestions": { "type": "string", "enum": ["native", "chat", "terminal", "none"] }
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"assets": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1 } },
|
|
49
|
+
"healthChecks": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1 } },
|
|
50
|
+
"drivers": {
|
|
51
|
+
"type": "object", "additionalProperties": false,
|
|
52
|
+
"required": ["install", "migrate", "rollback", "uninstall"],
|
|
53
|
+
"properties": {
|
|
54
|
+
"install": { "type": "string", "minLength": 1 }, "migrate": { "type": "string", "minLength": 1 },
|
|
55
|
+
"rollback": { "type": "string", "minLength": 1 }, "uninstall": { "type": "string", "minLength": 1 }
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|