@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,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-work-change-set.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-work-change-set", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 validated persistent-work change set",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "cycleId", "scopeId", "domainId", "domainVersion", "findings", "decisions", "actions"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-work-change-set" },
|
|
11
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
12
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
13
|
+
"cycleId": { "$ref": "#/$defs/cycleId" },
|
|
14
|
+
"scopeId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
15
|
+
"domainId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
16
|
+
"domainVersion": { "allOf": [{ "$ref": "#/$defs/nonPlaceholder" }, { "maxLength": 64 }] },
|
|
17
|
+
"findings": { "type": "array", "items": { "$ref": "#/$defs/findingDraft" } },
|
|
18
|
+
"decisions": { "type": "array", "items": { "$ref": "#/$defs/decisionDraft" } },
|
|
19
|
+
"actions": { "type": "array", "items": { "$ref": "#/$defs/actionDraft" } }
|
|
20
|
+
},
|
|
21
|
+
"$defs": {
|
|
22
|
+
"actionDraft": {
|
|
23
|
+
"type": "object", "additionalProperties": false,
|
|
24
|
+
"required": ["draftRef", "title", "ownerActorId", "accountabilityDisposition", "sourceDecisionDraftRef", "sourceFindingDraftRefs", "dependsOnActionDraftRefs", "objectiveId", "expectedResult", "metricId", "baseline", "target", "verificationWindow", "verificationPlanId"],
|
|
25
|
+
"properties": {
|
|
26
|
+
"draftRef": { "$ref": "#/$defs/draftRef" },
|
|
27
|
+
"title": { "$ref": "#/$defs/title" },
|
|
28
|
+
"ownerActorId": { "type": ["string", "null"], "minLength": 1, "maxLength": 128 },
|
|
29
|
+
"accountabilityDisposition": { "type": ["string", "null"], "enum": [null, "unowned", "blocked"] },
|
|
30
|
+
"sourceDecisionDraftRef": { "type": ["string", "null"], "pattern": "^draft_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
31
|
+
"sourceFindingDraftRefs": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/draftRef" } },
|
|
32
|
+
"dependsOnActionDraftRefs": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/draftRef" } },
|
|
33
|
+
"objectiveId": { "$ref": "#/$defs/objectiveId" },
|
|
34
|
+
"expectedResult": { "$ref": "#/$defs/nonBlankText" },
|
|
35
|
+
"metricId": { "$ref": "#/$defs/metricId" },
|
|
36
|
+
"baseline": { "type": "number" },
|
|
37
|
+
"target": { "type": "number" },
|
|
38
|
+
"verificationWindow": { "$ref": "#/$defs/nonBlankText" },
|
|
39
|
+
"verificationPlanId": { "$ref": "#/$defs/verificationPlanId" }
|
|
40
|
+
},
|
|
41
|
+
"allOf": [
|
|
42
|
+
{ "if": { "properties": { "ownerActorId": { "type": "null" } } }, "then": { "properties": { "accountabilityDisposition": { "type": "string", "enum": ["unowned", "blocked"] } } } },
|
|
43
|
+
{ "if": { "properties": { "ownerActorId": { "type": "string" } } }, "then": { "properties": { "accountabilityDisposition": { "const": null } } } }
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"cycleId": { "type": "string", "pattern": "^cyc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
47
|
+
"decisionDraft": {
|
|
48
|
+
"type": "object", "additionalProperties": false,
|
|
49
|
+
"required": ["draftRef", "title", "question", "rationale", "evidenceRefIds", "alternatives", "confidence", "assumptionIds", "expectedUpside", "expectedDownside", "dissent", "reopenConditions", "revisitConditions", "ownerActorId", "revisitAt"],
|
|
50
|
+
"properties": {
|
|
51
|
+
"draftRef": { "$ref": "#/$defs/draftRef" },
|
|
52
|
+
"title": { "$ref": "#/$defs/title" },
|
|
53
|
+
"question": { "$ref": "#/$defs/nonBlankText" },
|
|
54
|
+
"rationale": { "$ref": "#/$defs/nonBlankText" },
|
|
55
|
+
"evidenceRefIds": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string", "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } },
|
|
56
|
+
"alternatives": { "type": "array", "minItems": 1, "items": { "$ref": "#/$defs/nonBlankText" } },
|
|
57
|
+
"confidence": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
58
|
+
"assumptionIds": { "type": "array", "uniqueItems": true, "items": { "type": "string", "pattern": "^asm_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } },
|
|
59
|
+
"expectedUpside": { "$ref": "#/$defs/nonBlankText" },
|
|
60
|
+
"expectedDownside": { "$ref": "#/$defs/nonBlankText" },
|
|
61
|
+
"dissent": { "type": "array", "items": { "$ref": "#/$defs/nonBlankText" } },
|
|
62
|
+
"reopenConditions": { "type": "array", "minItems": 1, "items": { "$ref": "#/$defs/nonBlankText" } },
|
|
63
|
+
"revisitConditions": { "type": "array", "minItems": 1, "items": { "$ref": "#/$defs/nonBlankText" } },
|
|
64
|
+
"ownerActorId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
65
|
+
"revisitAt": { "type": ["string", "null"], "format": "date-time" }
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"draftRef": { "type": "string", "pattern": "^draft_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
69
|
+
"findingDraft": {
|
|
70
|
+
"type": "object", "additionalProperties": false,
|
|
71
|
+
"required": ["draftRef", "title", "statement", "state", "ownerActorId", "revisitAt"],
|
|
72
|
+
"properties": {
|
|
73
|
+
"draftRef": { "$ref": "#/$defs/draftRef" },
|
|
74
|
+
"title": { "$ref": "#/$defs/title" },
|
|
75
|
+
"statement": { "$ref": "#/$defs/nonBlankText" },
|
|
76
|
+
"state": { "type": "string", "enum": ["open", "deferred"] },
|
|
77
|
+
"ownerActorId": { "type": ["string", "null"], "minLength": 1, "maxLength": 128 },
|
|
78
|
+
"revisitAt": { "type": ["string", "null"], "format": "date-time" }
|
|
79
|
+
},
|
|
80
|
+
"allOf": [{ "if": { "properties": { "state": { "const": "deferred" } } }, "then": { "anyOf": [{ "properties": { "ownerActorId": { "type": "string" } } }, { "properties": { "revisitAt": { "type": "string", "format": "date-time" } } }] } }]
|
|
81
|
+
},
|
|
82
|
+
"metricId": { "type": "string", "pattern": "^met_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
83
|
+
"nonBlankText": { "type": "string", "minLength": 1, "maxLength": 4096, "pattern": "^.*\\S.*$" },
|
|
84
|
+
"nonPlaceholder": { "type": "string", "minLength": 1, "maxLength": 128, "not": { "pattern": "(?:<[^>]+>|\\{\\{[^}]+\\}\\})" } },
|
|
85
|
+
"objectiveId": { "type": "string", "pattern": "^obj_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
86
|
+
"title": { "type": "string", "minLength": 1, "maxLength": 256, "pattern": "^\\S(?:[\\s\\S]*\\S)?$", "not": { "pattern": "(?:<[^>]+>|\\{\\{[^}]+\\}\\})" } },
|
|
87
|
+
"verificationPlanId": { "type": "string", "pattern": "^vfy_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-work-ledger.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-work-ledger", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 rebuildable persistent-work ledger",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "scopeId", "domainId", "domainVersion", "generatedAt", "findings", "decisions", "actions", "cycleLinks"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-work-ledger" },
|
|
11
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
12
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
13
|
+
"scopeId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
14
|
+
"domainId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
15
|
+
"domainVersion": { "allOf": [{ "$ref": "#/$defs/nonPlaceholder" }, { "maxLength": 64 }] },
|
|
16
|
+
"generatedAt": { "type": "string", "format": "date-time" },
|
|
17
|
+
"findings": { "type": "array", "items": { "$ref": "operating-finding.schema.json" } },
|
|
18
|
+
"decisions": { "type": "array", "items": { "$ref": "operating-decision.schema.json" } },
|
|
19
|
+
"actions": { "type": "array", "items": { "$ref": "operating-action.schema.json" } },
|
|
20
|
+
"cycleLinks": { "type": "array", "items": { "$ref": "#/$defs/cycleLink" } }
|
|
21
|
+
},
|
|
22
|
+
"$defs": {
|
|
23
|
+
"cycleLink": {
|
|
24
|
+
"type": "object", "additionalProperties": false,
|
|
25
|
+
"required": ["entityKind", "entityId", "cycleId", "relation"],
|
|
26
|
+
"properties": {
|
|
27
|
+
"entityKind": { "type": "string", "enum": ["finding", "decision", "action"] },
|
|
28
|
+
"entityId": { "type": "string", "pattern": "^(?:fnd|dec|act)_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
29
|
+
"cycleId": { "type": "string", "pattern": "^cyc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
30
|
+
"relation": { "type": "string", "enum": ["source", "touched", "carried-forward"] }
|
|
31
|
+
},
|
|
32
|
+
"oneOf": [
|
|
33
|
+
{ "properties": { "entityKind": { "const": "finding" }, "entityId": { "pattern": "^fnd_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } } },
|
|
34
|
+
{ "properties": { "entityKind": { "const": "decision" }, "entityId": { "pattern": "^dec_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } } },
|
|
35
|
+
{ "properties": { "entityKind": { "const": "action" }, "entityId": { "pattern": "^act_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } } }
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"nonPlaceholder": { "type": "string", "minLength": 1, "maxLength": 128, "not": { "pattern": "(?:<[^>]+>|\\{\\{[^}]+\\}\\})" } }
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/software-operating-snapshot-projection.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "software-operating-snapshot-projection", "version": "1.0.0" },
|
|
5
|
+
"title": "OpenPlanr public software operating snapshot projection",
|
|
6
|
+
"description": "The exact public identity software-operating-snapshot-projection@1.0.0. It is a rebuildable view over the domain-neutral state, not a repository-specific kernel field.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "projectionId", "scopeId", "domainId", "domainVersion", "domainContract", "snapshotId", "stateId", "sourceArtifactIds", "derivedAt"],
|
|
10
|
+
"properties": {
|
|
11
|
+
"kind": { "const": "software-operating-snapshot-projection" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "2.0.0" }, "projectionId": { "$ref": "#/$defs/projectionId" }, "scopeId": { "$ref": "#/$defs/id" }, "domainId": { "const": "software" }, "domainVersion": { "$ref": "#/$defs/version" }, "domainContract": { "$ref": "#/$defs/domainContract" }, "snapshotId": { "$ref": "#/$defs/snapshotId" }, "stateId": { "$ref": "#/$defs/stateId" }, "sourceArtifactIds": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/artifactId" } }, "derivedAt": { "type": "string", "format": "date-time" }
|
|
12
|
+
},
|
|
13
|
+
"$defs": { "artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "domainContract": { "type": "object", "additionalProperties": false, "required": ["apiDomainId", "id", "version"], "properties": { "apiDomainId": { "const": "software" }, "id": { "const": "software-domain" }, "version": { "const": "1.0.0" } } }, "id": { "type": "string", "minLength": 1, "maxLength": 128 }, "projectionId": { "type": "string", "pattern": "^prj_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "snapshotId": { "type": "string", "pattern": "^snp_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "stateId": { "type": "string", "pattern": "^oms_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" } }
|
|
14
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const PROTOCOL_V15_CONTRACTS: Readonly<Record<string, string>>;
|
|
2
|
+
export declare const PROTOCOL_V16_CONTRACTS: Readonly<Record<string, string>>;
|
|
3
|
+
export declare const PROTOCOL_V17_CONTRACTS: Readonly<Record<string, string>>;
|
|
4
|
+
export declare const PROTOCOL_V18_CONTRACTS: Readonly<Record<string, string>>;
|
|
5
|
+
export declare function protocolAssetUrl(kind: string, options?: { protocolVersion?: '1.5.0' | '1.6.0' | '1.7.0' | '1.8.0' }): URL;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import {
|
|
2
|
+
PROTOCOL_V16_CONTRACT_FILES,
|
|
3
|
+
PROTOCOL_V17_CONTRACT_FILES,
|
|
4
|
+
PROTOCOL_V18_CONTRACT_FILES,
|
|
5
|
+
} from './skill-source-contracts.mjs';
|
|
6
|
+
|
|
7
|
+
export const PROTOCOL_V15_CONTRACTS = Object.freeze({
|
|
8
|
+
'command-catalog': 'command-catalog.schema.json',
|
|
9
|
+
'generated-asset-manifest': 'generated-asset-manifest.schema.json',
|
|
10
|
+
'implementation-result': 'implementation-result.schema.json',
|
|
11
|
+
'migration-preservation-manifest': 'migration-preservation-manifest.schema.json',
|
|
12
|
+
'output-catalog': 'output-catalog.schema.json',
|
|
13
|
+
'output-path-catalog': 'output-path-catalog.schema.json',
|
|
14
|
+
'role-registry': 'role-registry.schema.json',
|
|
15
|
+
'rule-catalog': 'rule-catalog.schema.json',
|
|
16
|
+
'skill-catalog': 'skill-catalog.schema.json',
|
|
17
|
+
'task-kind-registry': 'task-kind-registry.schema.json',
|
|
18
|
+
'task-manifest': 'task-manifest.schema.json',
|
|
19
|
+
'task-output-manifest': 'task-output-manifest.schema.json'
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
export const PROTOCOL_V16_CONTRACTS = PROTOCOL_V16_CONTRACT_FILES;
|
|
23
|
+
export const PROTOCOL_V17_CONTRACTS = PROTOCOL_V17_CONTRACT_FILES;
|
|
24
|
+
export const PROTOCOL_V18_CONTRACTS = PROTOCOL_V18_CONTRACT_FILES;
|
|
25
|
+
|
|
26
|
+
const PROTOCOL_CONTRACTS_BY_VERSION = Object.freeze({
|
|
27
|
+
'1.5.0': PROTOCOL_V15_CONTRACTS,
|
|
28
|
+
'1.6.0': PROTOCOL_V16_CONTRACTS,
|
|
29
|
+
'1.7.0': PROTOCOL_V17_CONTRACTS,
|
|
30
|
+
'1.8.0': PROTOCOL_V18_CONTRACTS
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
/** Resolve a packaged schema asset without a source checkout or Node-only API. */
|
|
34
|
+
export function protocolAssetUrl(kind, { protocolVersion = '1.5.0' } = {}) {
|
|
35
|
+
const filename = PROTOCOL_CONTRACTS_BY_VERSION[protocolVersion]?.[kind];
|
|
36
|
+
if (!filename) {
|
|
37
|
+
throw new RangeError(`Unknown browser-safe Protocol contract: ${kind}@${protocolVersion}`);
|
|
38
|
+
}
|
|
39
|
+
return new URL(`../schemas/v${protocolVersion}/${filename}`, import.meta.url);
|
|
40
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare function canonicalizeJson(value: unknown): string;
|
|
2
|
+
export declare function sha256Hex(value: string | Uint8Array): string;
|
|
3
|
+
export declare function sha256Jcs(value: unknown): `sha256:${string}`;
|
|
4
|
+
export declare function withDocumentDigest<T extends Record<string, unknown>>(value: T): T & { documentDigest: `sha256:${string}` };
|
|
5
|
+
export declare function verifyDocumentDigest(value: unknown): boolean;
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
const hasOwn = (value, key) => Object.prototype.hasOwnProperty.call(value, key);
|
|
2
|
+
|
|
3
|
+
function assertUnicodeScalarString(value, path) {
|
|
4
|
+
for (let index = 0; index < value.length; index += 1) {
|
|
5
|
+
const code = value.charCodeAt(index);
|
|
6
|
+
if (code >= 0xd800 && code <= 0xdbff) {
|
|
7
|
+
const next = value.charCodeAt(index + 1);
|
|
8
|
+
if (!(next >= 0xdc00 && next <= 0xdfff)) {
|
|
9
|
+
throw new TypeError(`JCS cannot canonicalize a lone high surrogate at ${path}.`);
|
|
10
|
+
}
|
|
11
|
+
index += 1;
|
|
12
|
+
} else if (code >= 0xdc00 && code <= 0xdfff) {
|
|
13
|
+
throw new TypeError(`JCS cannot canonicalize a lone low surrogate at ${path}.`);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
function serialize(value, path, seen) {
|
|
19
|
+
if (value === null) return 'null';
|
|
20
|
+
if (typeof value === 'boolean') return value ? 'true' : 'false';
|
|
21
|
+
if (typeof value === 'string') {
|
|
22
|
+
assertUnicodeScalarString(value, path);
|
|
23
|
+
return JSON.stringify(value);
|
|
24
|
+
}
|
|
25
|
+
if (typeof value === 'number') {
|
|
26
|
+
if (!Number.isFinite(value)) throw new TypeError(`JCS requires a finite number at ${path}.`);
|
|
27
|
+
return JSON.stringify(value);
|
|
28
|
+
}
|
|
29
|
+
if (typeof value !== 'object') throw new TypeError(`JCS cannot canonicalize ${typeof value} at ${path}.`);
|
|
30
|
+
if (seen.has(value)) throw new TypeError(`JCS cannot canonicalize a cycle at ${path}.`);
|
|
31
|
+
seen.add(value);
|
|
32
|
+
try {
|
|
33
|
+
if (Array.isArray(value)) {
|
|
34
|
+
const entries = [];
|
|
35
|
+
for (let index = 0; index < value.length; index += 1) {
|
|
36
|
+
if (!hasOwn(value, index)) throw new TypeError(`JCS cannot canonicalize a sparse array at ${path}[${index}].`);
|
|
37
|
+
entries.push(serialize(value[index], `${path}[${index}]`, seen));
|
|
38
|
+
}
|
|
39
|
+
return `[${entries.join(',')}]`;
|
|
40
|
+
}
|
|
41
|
+
const prototype = Object.getPrototypeOf(value);
|
|
42
|
+
if (prototype !== Object.prototype && prototype !== null) {
|
|
43
|
+
throw new TypeError(`JCS requires a plain JSON object at ${path}.`);
|
|
44
|
+
}
|
|
45
|
+
const entries = Object.keys(value).sort().map((key) => {
|
|
46
|
+
assertUnicodeScalarString(key, `${path} key`);
|
|
47
|
+
return `${JSON.stringify(key)}:${serialize(value[key], `${path}.${key}`, seen)}`;
|
|
48
|
+
});
|
|
49
|
+
return `{${entries.join(',')}}`;
|
|
50
|
+
} finally {
|
|
51
|
+
seen.delete(value);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/** RFC 8785 JSON canonicalization for already parsed JSON values. */
|
|
56
|
+
export function canonicalizeJson(value) {
|
|
57
|
+
return serialize(value, '$', new Set());
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const SHA256_K = new Uint32Array([
|
|
61
|
+
0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
|
|
62
|
+
0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
|
|
63
|
+
0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
|
|
64
|
+
0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
|
|
65
|
+
0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
|
|
66
|
+
0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
|
|
67
|
+
0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
|
|
68
|
+
0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2,
|
|
69
|
+
]);
|
|
70
|
+
|
|
71
|
+
const rotr = (value, bits) => (value >>> bits) | (value << (32 - bits));
|
|
72
|
+
|
|
73
|
+
/** Dependency-free synchronous SHA-256 for browser and Node runtimes. */
|
|
74
|
+
export function sha256Hex(value) {
|
|
75
|
+
const candidate = typeof value === 'string' ? new TextEncoder().encode(value) : value;
|
|
76
|
+
if (!ArrayBuffer.isView(candidate) || Object.prototype.toString.call(candidate) !== '[object Uint8Array]') {
|
|
77
|
+
throw new TypeError('sha256Hex expects a string or Uint8Array.');
|
|
78
|
+
}
|
|
79
|
+
const input = new Uint8Array(candidate.buffer, candidate.byteOffset, candidate.byteLength);
|
|
80
|
+
const paddedLength = Math.ceil((input.length + 9) / 64) * 64;
|
|
81
|
+
const bytes = new Uint8Array(paddedLength);
|
|
82
|
+
bytes.set(input);
|
|
83
|
+
bytes[input.length] = 0x80;
|
|
84
|
+
const view = new DataView(bytes.buffer);
|
|
85
|
+
const bitLength = BigInt(input.length) * 8n;
|
|
86
|
+
view.setUint32(paddedLength - 8, Number((bitLength >> 32n) & 0xffffffffn));
|
|
87
|
+
view.setUint32(paddedLength - 4, Number(bitLength & 0xffffffffn));
|
|
88
|
+
|
|
89
|
+
let h0 = 0x6a09e667;
|
|
90
|
+
let h1 = 0xbb67ae85;
|
|
91
|
+
let h2 = 0x3c6ef372;
|
|
92
|
+
let h3 = 0xa54ff53a;
|
|
93
|
+
let h4 = 0x510e527f;
|
|
94
|
+
let h5 = 0x9b05688c;
|
|
95
|
+
let h6 = 0x1f83d9ab;
|
|
96
|
+
let h7 = 0x5be0cd19;
|
|
97
|
+
const words = new Uint32Array(64);
|
|
98
|
+
|
|
99
|
+
for (let offset = 0; offset < bytes.length; offset += 64) {
|
|
100
|
+
for (let index = 0; index < 16; index += 1) words[index] = view.getUint32(offset + index * 4);
|
|
101
|
+
for (let index = 16; index < 64; index += 1) {
|
|
102
|
+
const s0 = rotr(words[index - 15], 7) ^ rotr(words[index - 15], 18) ^ (words[index - 15] >>> 3);
|
|
103
|
+
const s1 = rotr(words[index - 2], 17) ^ rotr(words[index - 2], 19) ^ (words[index - 2] >>> 10);
|
|
104
|
+
words[index] = (words[index - 16] + s0 + words[index - 7] + s1) >>> 0;
|
|
105
|
+
}
|
|
106
|
+
let a = h0; let b = h1; let c = h2; let d = h3;
|
|
107
|
+
let e = h4; let f = h5; let g = h6; let h = h7;
|
|
108
|
+
for (let index = 0; index < 64; index += 1) {
|
|
109
|
+
const s1 = rotr(e, 6) ^ rotr(e, 11) ^ rotr(e, 25);
|
|
110
|
+
const choice = (e & f) ^ (~e & g);
|
|
111
|
+
const temp1 = (h + s1 + choice + SHA256_K[index] + words[index]) >>> 0;
|
|
112
|
+
const s0 = rotr(a, 2) ^ rotr(a, 13) ^ rotr(a, 22);
|
|
113
|
+
const majority = (a & b) ^ (a & c) ^ (b & c);
|
|
114
|
+
const temp2 = (s0 + majority) >>> 0;
|
|
115
|
+
h = g; g = f; f = e; e = (d + temp1) >>> 0;
|
|
116
|
+
d = c; c = b; b = a; a = (temp1 + temp2) >>> 0;
|
|
117
|
+
}
|
|
118
|
+
h0 = (h0 + a) >>> 0; h1 = (h1 + b) >>> 0;
|
|
119
|
+
h2 = (h2 + c) >>> 0; h3 = (h3 + d) >>> 0;
|
|
120
|
+
h4 = (h4 + e) >>> 0; h5 = (h5 + f) >>> 0;
|
|
121
|
+
h6 = (h6 + g) >>> 0; h7 = (h7 + h) >>> 0;
|
|
122
|
+
}
|
|
123
|
+
return [h0, h1, h2, h3, h4, h5, h6, h7].map((part) => part.toString(16).padStart(8, '0')).join('');
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export function sha256Jcs(value) {
|
|
127
|
+
return `sha256:${sha256Hex(canonicalizeJson(value))}`;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export function withDocumentDigest(value) {
|
|
131
|
+
const copy = { ...value };
|
|
132
|
+
delete copy.documentDigest;
|
|
133
|
+
return { ...copy, documentDigest: sha256Jcs(copy) };
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export function verifyDocumentDigest(value) {
|
|
137
|
+
if (!value || typeof value !== 'object' || Array.isArray(value)) return false;
|
|
138
|
+
const copy = { ...value };
|
|
139
|
+
const actual = copy.documentDigest;
|
|
140
|
+
delete copy.documentDigest;
|
|
141
|
+
return actual === sha256Jcs(copy);
|
|
142
|
+
}
|