@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,166 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.4.0/evaluation-aggregate-report.schema.json",
|
|
4
|
+
"title": "OpenPlanr Protocol v1.4 skill evaluation aggregate report",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "reportId", "generatedAt", "redaction", "inputs", "counters", "rates", "budget", "absences", "skills", "scenarios", "reportDigest"],
|
|
8
|
+
"properties": {
|
|
9
|
+
"kind": { "const": "evaluation-aggregate-report" },
|
|
10
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
11
|
+
"protocolVersion": { "const": "1.4.0" },
|
|
12
|
+
"reportId": { "type": "string", "pattern": "^ear_[a-f0-9]{32}$" },
|
|
13
|
+
"generatedAt": { "type": "string", "format": "date-time" },
|
|
14
|
+
"redaction": {
|
|
15
|
+
"type": "object", "additionalProperties": false,
|
|
16
|
+
"required": ["policyVersion", "rawPromptsExcluded", "tracesExcluded", "screenshotsExcluded", "modelOutputExcluded", "absolutePathsExcluded", "credentialMaterialExcluded"],
|
|
17
|
+
"properties": {
|
|
18
|
+
"policyVersion": { "const": "1.0.0" },
|
|
19
|
+
"rawPromptsExcluded": { "const": true },
|
|
20
|
+
"tracesExcluded": { "const": true },
|
|
21
|
+
"screenshotsExcluded": { "const": true },
|
|
22
|
+
"modelOutputExcluded": { "const": true },
|
|
23
|
+
"absolutePathsExcluded": { "const": true },
|
|
24
|
+
"credentialMaterialExcluded": { "const": true }
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"inputs": {
|
|
28
|
+
"type": "object", "additionalProperties": false,
|
|
29
|
+
"required": ["corpusDigest", "graderRegistryDigest", "hostProfileRegistryDigest", "gatePolicyDigest", "budgetBaselineDigest", "hostProfileDigests", "runResultDigests"],
|
|
30
|
+
"properties": {
|
|
31
|
+
"corpusDigest": { "$ref": "#/$defs/digest" },
|
|
32
|
+
"graderRegistryDigest": { "$ref": "#/$defs/digest" },
|
|
33
|
+
"hostProfileRegistryDigest": { "$ref": "#/$defs/digest" },
|
|
34
|
+
"gatePolicyDigest": { "$ref": "#/$defs/digest" },
|
|
35
|
+
"budgetBaselineDigest": { "$ref": "#/$defs/digest" },
|
|
36
|
+
"hostProfileDigests": { "type": "array", "minItems": 1, "maxItems": 32, "uniqueItems": true, "items": { "$ref": "#/$defs/digest" } },
|
|
37
|
+
"runResultDigests": { "type": "array", "minItems": 1, "maxItems": 256, "uniqueItems": true, "items": { "$ref": "#/$defs/digest" } }
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"counters": {
|
|
41
|
+
"type": "object", "additionalProperties": false,
|
|
42
|
+
"required": ["scenariosTotal", "scenariosPassed", "scenariosFailed", "scenariosBlocked", "scenariosAbsent", "scenariosWaived", "triggerTruePositives", "triggerFalsePositives", "triggerFalseNegatives", "journeysAttempted", "journeysCompleted", "outputsValidated", "outputsSchemaValid", "assetsDeclared", "assetsPresent", "exportsDeclared", "exportsPresent", "packageMembersDeclared", "packageMembersPresent", "permissionPrompts", "retries", "findingsP0", "findingsP1", "findingsP2", "findingsP3"],
|
|
43
|
+
"properties": {
|
|
44
|
+
"scenariosTotal": { "$ref": "#/$defs/counter" },
|
|
45
|
+
"scenariosPassed": { "$ref": "#/$defs/counter" },
|
|
46
|
+
"scenariosFailed": { "$ref": "#/$defs/counter" },
|
|
47
|
+
"scenariosBlocked": { "$ref": "#/$defs/counter" },
|
|
48
|
+
"scenariosAbsent": { "$ref": "#/$defs/counter" },
|
|
49
|
+
"scenariosWaived": { "$ref": "#/$defs/counter" },
|
|
50
|
+
"triggerTruePositives": { "$ref": "#/$defs/counter" },
|
|
51
|
+
"triggerFalsePositives": { "$ref": "#/$defs/counter" },
|
|
52
|
+
"triggerFalseNegatives": { "$ref": "#/$defs/counter" },
|
|
53
|
+
"journeysAttempted": { "$ref": "#/$defs/counter" },
|
|
54
|
+
"journeysCompleted": { "$ref": "#/$defs/counter" },
|
|
55
|
+
"outputsValidated": { "$ref": "#/$defs/counter" },
|
|
56
|
+
"outputsSchemaValid": { "$ref": "#/$defs/counter" },
|
|
57
|
+
"assetsDeclared": { "$ref": "#/$defs/counter" },
|
|
58
|
+
"assetsPresent": { "$ref": "#/$defs/counter" },
|
|
59
|
+
"exportsDeclared": { "$ref": "#/$defs/counter" },
|
|
60
|
+
"exportsPresent": { "$ref": "#/$defs/counter" },
|
|
61
|
+
"packageMembersDeclared": { "$ref": "#/$defs/counter" },
|
|
62
|
+
"packageMembersPresent": { "$ref": "#/$defs/counter" },
|
|
63
|
+
"permissionPrompts": { "$ref": "#/$defs/counter" },
|
|
64
|
+
"retries": { "$ref": "#/$defs/counter" },
|
|
65
|
+
"findingsP0": { "$ref": "#/$defs/counter" },
|
|
66
|
+
"findingsP1": { "$ref": "#/$defs/counter" },
|
|
67
|
+
"findingsP2": { "$ref": "#/$defs/counter" },
|
|
68
|
+
"findingsP3": { "$ref": "#/$defs/counter" }
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"rates": {
|
|
72
|
+
"type": "object", "additionalProperties": false,
|
|
73
|
+
"required": ["triggerPrecision", "triggerRecall", "journeyCompletion", "schemaValidity", "assetParity", "exportParity", "packageParity"],
|
|
74
|
+
"properties": {
|
|
75
|
+
"triggerPrecision": { "$ref": "#/$defs/rateBasisPoints" },
|
|
76
|
+
"triggerRecall": { "$ref": "#/$defs/rateBasisPoints" },
|
|
77
|
+
"journeyCompletion": { "$ref": "#/$defs/rateBasisPoints" },
|
|
78
|
+
"schemaValidity": { "$ref": "#/$defs/rateBasisPoints" },
|
|
79
|
+
"assetParity": { "$ref": "#/$defs/rateBasisPoints" },
|
|
80
|
+
"exportParity": { "$ref": "#/$defs/rateBasisPoints" },
|
|
81
|
+
"packageParity": { "$ref": "#/$defs/rateBasisPoints" }
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"budget": {
|
|
85
|
+
"type": "object", "additionalProperties": false,
|
|
86
|
+
"required": ["baselineDigest", "latencyMsBaseline", "latencyMsObserved", "latencyRegression", "costEstimateMicrosBaseline", "costEstimateMicrosObserved", "costRegression", "permissionPromptCeiling", "retryCeiling"],
|
|
87
|
+
"properties": {
|
|
88
|
+
"baselineDigest": { "$ref": "#/$defs/digest" },
|
|
89
|
+
"latencyMsBaseline": { "$ref": "#/$defs/durationMs" },
|
|
90
|
+
"latencyMsObserved": { "$ref": "#/$defs/durationMs" },
|
|
91
|
+
"latencyRegression": { "$ref": "#/$defs/regressionBasisPoints" },
|
|
92
|
+
"costEstimateMicrosBaseline": { "$ref": "#/$defs/costMicros" },
|
|
93
|
+
"costEstimateMicrosObserved": { "$ref": "#/$defs/costMicros" },
|
|
94
|
+
"costRegression": { "$ref": "#/$defs/regressionBasisPoints" },
|
|
95
|
+
"permissionPromptCeiling": { "$ref": "#/$defs/counter" },
|
|
96
|
+
"retryCeiling": { "$ref": "#/$defs/counter" }
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"absences": {
|
|
100
|
+
"type": "object", "additionalProperties": false,
|
|
101
|
+
"required": ["graderMissing", "graderErrored", "graderUnavailable", "hostUnavailable", "fixtureUnavailable", "budgetExceeded", "notRun"],
|
|
102
|
+
"properties": {
|
|
103
|
+
"graderMissing": { "$ref": "#/$defs/counter" },
|
|
104
|
+
"graderErrored": { "$ref": "#/$defs/counter" },
|
|
105
|
+
"graderUnavailable": { "$ref": "#/$defs/counter" },
|
|
106
|
+
"hostUnavailable": { "$ref": "#/$defs/counter" },
|
|
107
|
+
"fixtureUnavailable": { "$ref": "#/$defs/counter" },
|
|
108
|
+
"budgetExceeded": { "$ref": "#/$defs/counter" },
|
|
109
|
+
"notRun": { "$ref": "#/$defs/counter" }
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"skills": { "type": "array", "minItems": 1, "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/skillSummary" } },
|
|
113
|
+
"scenarios": { "type": "array", "maxItems": 2048, "uniqueItems": true, "items": { "$ref": "#/$defs/scenarioSummary" } },
|
|
114
|
+
"reportDigest": { "$ref": "#/$defs/digest" }
|
|
115
|
+
},
|
|
116
|
+
"$defs": {
|
|
117
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
118
|
+
"counter": { "type": "integer", "minimum": 0, "maximum": 1000000 },
|
|
119
|
+
"rateBasisPoints": { "type": "integer", "minimum": 0, "maximum": 10000 },
|
|
120
|
+
"regressionBasisPoints": { "type": "integer", "minimum": -10000, "maximum": 1000000 },
|
|
121
|
+
"durationMs": { "type": "integer", "minimum": 0, "maximum": 86400000 },
|
|
122
|
+
"costMicros": { "type": "integer", "minimum": 0, "maximum": 1000000000000 },
|
|
123
|
+
"skillId": { "type": "string", "pattern": "^[a-z][a-z0-9-]{1,63}$" },
|
|
124
|
+
"skillVersion": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+(?:[-+][0-9A-Za-z.-]+)?$" },
|
|
125
|
+
"promptClass": { "enum": ["positive", "negative", "ambiguous", "permission-denied"] },
|
|
126
|
+
"scenarioStatus": { "enum": ["passed", "failed", "blocked", "absent", "waived"] },
|
|
127
|
+
"absenceReason": { "enum": ["grader-missing", "grader-errored", "grader-unavailable", "host-unavailable", "fixture-unavailable", "budget-exceeded", "not-run"] },
|
|
128
|
+
"skillSummary": {
|
|
129
|
+
"type": "object", "additionalProperties": false,
|
|
130
|
+
"required": ["skillId", "skillVersion", "scenariosTotal", "scenariosPassed", "scenariosFailed", "scenariosBlocked", "scenariosAbsent", "scenariosWaived"],
|
|
131
|
+
"properties": {
|
|
132
|
+
"skillId": { "$ref": "#/$defs/skillId" },
|
|
133
|
+
"skillVersion": { "$ref": "#/$defs/skillVersion" },
|
|
134
|
+
"scenariosTotal": { "$ref": "#/$defs/counter" },
|
|
135
|
+
"scenariosPassed": { "$ref": "#/$defs/counter" },
|
|
136
|
+
"scenariosFailed": { "$ref": "#/$defs/counter" },
|
|
137
|
+
"scenariosBlocked": { "$ref": "#/$defs/counter" },
|
|
138
|
+
"scenariosAbsent": { "$ref": "#/$defs/counter" },
|
|
139
|
+
"scenariosWaived": { "$ref": "#/$defs/counter" }
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"scenarioSummary": {
|
|
143
|
+
"type": "object", "additionalProperties": false,
|
|
144
|
+
"required": ["scenarioDigest", "skillId", "hostProfileDigest", "graderRegistrationDigest", "fixtureSetDigest", "promptClass", "status", "absenceReason", "waiverDigest", "observations", "latencyMs"],
|
|
145
|
+
"properties": {
|
|
146
|
+
"scenarioDigest": { "$ref": "#/$defs/digest" },
|
|
147
|
+
"skillId": { "$ref": "#/$defs/skillId" },
|
|
148
|
+
"hostProfileDigest": { "$ref": "#/$defs/digest" },
|
|
149
|
+
"graderRegistrationDigest": { "$ref": "#/$defs/digest" },
|
|
150
|
+
"fixtureSetDigest": { "$ref": "#/$defs/digest" },
|
|
151
|
+
"promptClass": { "$ref": "#/$defs/promptClass" },
|
|
152
|
+
"status": { "$ref": "#/$defs/scenarioStatus" },
|
|
153
|
+
"absenceReason": { "oneOf": [{ "const": null }, { "$ref": "#/$defs/absenceReason" }] },
|
|
154
|
+
"waiverDigest": { "oneOf": [{ "const": null }, { "$ref": "#/$defs/digest" }] },
|
|
155
|
+
"observations": { "type": "integer", "minimum": 0, "maximum": 64 },
|
|
156
|
+
"latencyMs": { "$ref": "#/$defs/durationMs" }
|
|
157
|
+
},
|
|
158
|
+
"allOf": [
|
|
159
|
+
{ "if": { "properties": { "status": { "const": "absent" } }, "required": ["status"] }, "then": { "properties": { "absenceReason": { "$ref": "#/$defs/absenceReason" } } } },
|
|
160
|
+
{ "if": { "properties": { "status": { "enum": ["passed", "failed", "blocked", "waived"] } }, "required": ["status"] }, "then": { "properties": { "absenceReason": { "const": null } } } },
|
|
161
|
+
{ "if": { "properties": { "status": { "const": "waived" } }, "required": ["status"] }, "then": { "properties": { "waiverDigest": { "$ref": "#/$defs/digest" } } } },
|
|
162
|
+
{ "if": { "properties": { "status": { "enum": ["passed", "failed", "blocked", "absent"] } }, "required": ["status"] }, "then": { "properties": { "waiverDigest": { "const": null } } } }
|
|
163
|
+
]
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.4.0/evaluation-budget.schema.json",
|
|
4
|
+
"title": "OpenPlanr Protocol 1.4 evaluation budget",
|
|
5
|
+
"type": "object", "additionalProperties": false,
|
|
6
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "budgetId", "carriesMeasurement", "scope", "ceilings", "baseline", "budgetDigest"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"kind": { "const": "evaluation-budget" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "1.4.0" },
|
|
9
|
+
"budgetId": { "type": "string", "pattern": "^ebg_[a-f0-9]{32}$" },
|
|
10
|
+
"carriesMeasurement": { "const": false, "description": "A budget states ceilings. Observed values live in a run result, never here." },
|
|
11
|
+
"scope": {
|
|
12
|
+
"type": "object", "additionalProperties": false, "required": ["kind", "id"],
|
|
13
|
+
"properties": { "kind": { "enum": ["corpus", "skill", "scenario"] }, "id": { "$ref": "#/$defs/identifier" } }
|
|
14
|
+
},
|
|
15
|
+
"ceilings": {
|
|
16
|
+
"type": "object", "additionalProperties": false,
|
|
17
|
+
"required": ["latencyMsP50Ceiling", "latencyMsP95Ceiling", "inputTokensCeiling", "outputTokensCeiling", "totalTokensCeiling", "costEstimateCurrency", "costEstimateMicrosCeiling", "permissionPromptCeiling", "retryCeiling"],
|
|
18
|
+
"properties": {
|
|
19
|
+
"latencyMsP50Ceiling": { "$ref": "#/$defs/durationMs" },
|
|
20
|
+
"latencyMsP95Ceiling": { "$ref": "#/$defs/durationMs" },
|
|
21
|
+
"inputTokensCeiling": { "$ref": "#/$defs/tokenCount" },
|
|
22
|
+
"outputTokensCeiling": { "$ref": "#/$defs/tokenCount" },
|
|
23
|
+
"totalTokensCeiling": { "$ref": "#/$defs/tokenCount" },
|
|
24
|
+
"costEstimateCurrency": { "const": "USD" },
|
|
25
|
+
"costEstimateMicrosCeiling": { "$ref": "#/$defs/costMicros" },
|
|
26
|
+
"permissionPromptCeiling": { "$ref": "#/$defs/counter" },
|
|
27
|
+
"retryCeiling": { "$ref": "#/$defs/counter" }
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"baseline": {
|
|
31
|
+
"type": "object", "additionalProperties": false,
|
|
32
|
+
"required": ["frozen", "baselineDigest", "capturedAt"],
|
|
33
|
+
"properties": {
|
|
34
|
+
"frozen": { "const": true },
|
|
35
|
+
"baselineDigest": { "$ref": "#/$defs/digest", "description": "Exact bytes a latency or cost regression is measured against. A different baseline is a different budget." },
|
|
36
|
+
"capturedAt": { "type": "string", "format": "date-time" }
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"budgetDigest": { "$ref": "#/$defs/digest" }
|
|
40
|
+
},
|
|
41
|
+
"$defs": {
|
|
42
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
43
|
+
"identifier": { "type": "string", "minLength": 2, "maxLength": 128, "pattern": "^[a-z][a-z0-9]*(?:[._-][a-z0-9]+)*$" },
|
|
44
|
+
"durationMs": { "type": "integer", "minimum": 1, "maximum": 86400000 },
|
|
45
|
+
"tokenCount": { "type": "integer", "minimum": 0, "maximum": 100000000 },
|
|
46
|
+
"costMicros": { "type": "integer", "minimum": 0, "maximum": 1000000000000 },
|
|
47
|
+
"counter": { "type": "integer", "minimum": 0, "maximum": 1000000 }
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.4.0/evaluation-corpus.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "evaluation-corpus", "version": "1.4.0" },
|
|
5
|
+
"title": "OpenPlanr Protocol v1.4 skill evaluation corpus",
|
|
6
|
+
"description": "The closed, self-digested membership envelope for one skill's evaluation scenarios. `corpusDigest` is SHA-256 over the RFC 8785 canonical form of this record with `corpusId` and `corpusDigest` removed, and `corpusId` is `ecp_` followed by that digest hex. Members ascend by `scenarioId`. A duplicate `scenarioId`, a `scenarioId` whose hex differs from its own `scenarioDigest`, a member whose recorded digest differs from the digest recomputed from its source bytes, and a member scenario bound to a skill identity other than `skill` are each refused rather than skipped.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": [
|
|
10
|
+
"kind",
|
|
11
|
+
"schemaVersion",
|
|
12
|
+
"protocolVersion",
|
|
13
|
+
"corpusId",
|
|
14
|
+
"corpusDigest",
|
|
15
|
+
"title",
|
|
16
|
+
"skill",
|
|
17
|
+
"members"
|
|
18
|
+
],
|
|
19
|
+
"properties": {
|
|
20
|
+
"kind": { "const": "evaluation-corpus" },
|
|
21
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
22
|
+
"protocolVersion": { "const": "1.4.0" },
|
|
23
|
+
"corpusId": {
|
|
24
|
+
"$ref": "#/$defs/corpusId",
|
|
25
|
+
"description": "The literal prefix `ecp_` followed by the hexadecimal part of `corpusDigest`. Any other value is a foreign identity."
|
|
26
|
+
},
|
|
27
|
+
"corpusDigest": { "$ref": "#/$defs/digest" },
|
|
28
|
+
"title": { "$ref": "#/$defs/title" },
|
|
29
|
+
"skill": {
|
|
30
|
+
"$ref": "#/$defs/skillIdentity",
|
|
31
|
+
"description": "The single skill every member belongs to. A corpus never spans skills or versions."
|
|
32
|
+
},
|
|
33
|
+
"members": {
|
|
34
|
+
"type": "array",
|
|
35
|
+
"minItems": 1,
|
|
36
|
+
"maxItems": 1024,
|
|
37
|
+
"uniqueItems": true,
|
|
38
|
+
"items": { "$ref": "#/$defs/member" },
|
|
39
|
+
"description": "Canonical member order is ascending `scenarioId`, so an identical membership always canonicalizes to an identical corpus digest."
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"$defs": {
|
|
43
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
44
|
+
"corpusId": { "type": "string", "pattern": "^ecp_[a-f0-9]{64}$" },
|
|
45
|
+
"scenarioId": { "type": "string", "pattern": "^esc_[a-f0-9]{64}$" },
|
|
46
|
+
"skillId": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"minLength": 2,
|
|
49
|
+
"maxLength": 64,
|
|
50
|
+
"pattern": "^[a-z][a-z0-9]*(?:[._-][a-z0-9]+)*$"
|
|
51
|
+
},
|
|
52
|
+
"semver": {
|
|
53
|
+
"type": "string",
|
|
54
|
+
"pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$"
|
|
55
|
+
},
|
|
56
|
+
"title": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"minLength": 1,
|
|
59
|
+
"maxLength": 160,
|
|
60
|
+
"pattern": "^\\S(?:[\\s\\S]*\\S)?$",
|
|
61
|
+
"not": { "pattern": "(?:<[^>]+>|\\{\\{[^}]+\\}\\})" }
|
|
62
|
+
},
|
|
63
|
+
"scenarioSourcePath": {
|
|
64
|
+
"type": "string",
|
|
65
|
+
"minLength": 6,
|
|
66
|
+
"maxLength": 512,
|
|
67
|
+
"pattern": "^[A-Za-z0-9_][A-Za-z0-9._-]*(?:/[A-Za-z0-9_][A-Za-z0-9._-]*)*\\.json$",
|
|
68
|
+
"description": "Normalized repository-relative path to the member's source document. Absolute paths, drive letters, backslashes, and dot segments are refused."
|
|
69
|
+
},
|
|
70
|
+
"skillIdentity": {
|
|
71
|
+
"type": "object",
|
|
72
|
+
"additionalProperties": false,
|
|
73
|
+
"required": ["id", "version"],
|
|
74
|
+
"properties": {
|
|
75
|
+
"id": { "$ref": "#/$defs/skillId" },
|
|
76
|
+
"version": { "$ref": "#/$defs/semver" }
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"member": {
|
|
80
|
+
"type": "object",
|
|
81
|
+
"additionalProperties": false,
|
|
82
|
+
"required": ["scenarioId", "scenarioDigest", "sourcePath"],
|
|
83
|
+
"properties": {
|
|
84
|
+
"scenarioId": { "$ref": "#/$defs/scenarioId" },
|
|
85
|
+
"scenarioDigest": {
|
|
86
|
+
"$ref": "#/$defs/digest",
|
|
87
|
+
"description": "The digest the corpus was sealed against. It is recomputed from `sourcePath` on every read and a mismatch invalidates the member."
|
|
88
|
+
},
|
|
89
|
+
"sourcePath": { "$ref": "#/$defs/scenarioSourcePath" }
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.4.0/evaluation-fixture.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "evaluation-fixture", "version": "1.4.0" },
|
|
5
|
+
"title": "OpenPlanr Protocol v1.4 skill evaluation fixture",
|
|
6
|
+
"description": "One immutable evaluation input, bound to exact bytes by content digest and to exact handling by media kind. The record carries no field able to hold fixture bytes, so raw content and credential material can never travel inside it.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": [
|
|
10
|
+
"kind",
|
|
11
|
+
"schemaVersion",
|
|
12
|
+
"protocolVersion",
|
|
13
|
+
"fixtureId",
|
|
14
|
+
"fixtureDigest",
|
|
15
|
+
"mediaKind",
|
|
16
|
+
"byteLength",
|
|
17
|
+
"contentDigest",
|
|
18
|
+
"sourcePath",
|
|
19
|
+
"retention",
|
|
20
|
+
"containsCredentialMaterial"
|
|
21
|
+
],
|
|
22
|
+
"properties": {
|
|
23
|
+
"kind": { "const": "evaluation-fixture" },
|
|
24
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
25
|
+
"protocolVersion": { "const": "1.4.0" },
|
|
26
|
+
"fixtureId": {
|
|
27
|
+
"$ref": "#/$defs/fixtureId",
|
|
28
|
+
"description": "The literal prefix `efx_` followed by the hexadecimal part of `fixtureDigest`. Any other value is a foreign identity."
|
|
29
|
+
},
|
|
30
|
+
"fixtureDigest": {
|
|
31
|
+
"$ref": "#/$defs/digest",
|
|
32
|
+
"description": "SHA-256 over the RFC 8785 canonical form of this record with `fixtureId` and `fixtureDigest` removed, so media kind and content digest are both identity-bearing."
|
|
33
|
+
},
|
|
34
|
+
"mediaKind": {
|
|
35
|
+
"enum": ["text", "markdown", "json", "source", "html", "image", "archive", "binary"],
|
|
36
|
+
"description": "Closed handling class. A reader that does not support the declared kind refuses the fixture instead of guessing."
|
|
37
|
+
},
|
|
38
|
+
"byteLength": { "type": "integer", "minimum": 0, "maximum": 67108864 },
|
|
39
|
+
"contentDigest": {
|
|
40
|
+
"$ref": "#/$defs/digest",
|
|
41
|
+
"description": "SHA-256 over the fixture bytes at `sourcePath`. A recomputed digest that differs invalidates every observation bound to this fixture."
|
|
42
|
+
},
|
|
43
|
+
"sourcePath": { "$ref": "#/$defs/relativePath" },
|
|
44
|
+
"retention": {
|
|
45
|
+
"const": "local-only",
|
|
46
|
+
"description": "Fixture bytes stay on the machine that authored them. No other retention is representable."
|
|
47
|
+
},
|
|
48
|
+
"containsCredentialMaterial": {
|
|
49
|
+
"const": false,
|
|
50
|
+
"description": "Explicit negative declaration. A fixture carrying credential material cannot be expressed by this contract."
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"$defs": {
|
|
54
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
55
|
+
"fixtureId": { "type": "string", "pattern": "^efx_[a-f0-9]{64}$" },
|
|
56
|
+
"relativePath": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"minLength": 1,
|
|
59
|
+
"maxLength": 512,
|
|
60
|
+
"pattern": "^[A-Za-z0-9_][A-Za-z0-9._-]*(?:/[A-Za-z0-9_][A-Za-z0-9._-]*)*$",
|
|
61
|
+
"description": "Normalized repository-relative path. Absolute paths, drive letters, backslashes, and dot segments are refused."
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.4.0/evaluation-gate-policy.schema.json",
|
|
4
|
+
"title": "OpenPlanr Protocol 1.4 evaluation gate policy",
|
|
5
|
+
"type": "object", "additionalProperties": false,
|
|
6
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "policyId", "budgetDigest", "baselineDigest", "gates", "gatePolicyDigest"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"kind": { "const": "evaluation-gate-policy" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "1.4.0" },
|
|
9
|
+
"policyId": { "type": "string", "pattern": "^egp_[a-f0-9]{32}$" },
|
|
10
|
+
"budgetDigest": { "$ref": "#/$defs/digest" },
|
|
11
|
+
"baselineDigest": { "$ref": "#/$defs/digest", "description": "Frozen baseline the regression gates are measured against." },
|
|
12
|
+
"gates": {
|
|
13
|
+
"type": "object", "additionalProperties": false,
|
|
14
|
+
"description": "Keyed by metric identity. Every mandatory threshold is a constant, so no caller can lower a gate and still be a valid policy.",
|
|
15
|
+
"required": ["trigger-precision", "trigger-recall", "journey-completion", "schema-validity", "asset-parity", "export-parity", "package-parity", "finding-severity-p0", "finding-severity-p1", "latency-regression", "cost-regression"],
|
|
16
|
+
"properties": {
|
|
17
|
+
"trigger-precision": { "type": "object", "additionalProperties": false, "required": ["comparator", "unit", "threshold", "waivable"], "properties": { "comparator": { "const": ">=" }, "unit": { "const": "basis-points" }, "threshold": { "const": 9500 }, "waivable": { "const": true } } },
|
|
18
|
+
"trigger-recall": { "type": "object", "additionalProperties": false, "required": ["comparator", "unit", "threshold", "waivable"], "properties": { "comparator": { "const": ">=" }, "unit": { "const": "basis-points" }, "threshold": { "const": 9500 }, "waivable": { "const": true } } },
|
|
19
|
+
"journey-completion": { "type": "object", "additionalProperties": false, "required": ["comparator", "unit", "threshold", "waivable"], "properties": { "comparator": { "const": ">=" }, "unit": { "const": "basis-points" }, "threshold": { "const": 9000 }, "waivable": { "const": true } } },
|
|
20
|
+
"schema-validity": { "type": "object", "additionalProperties": false, "required": ["comparator", "unit", "threshold", "waivable"], "properties": { "comparator": { "const": "==" }, "unit": { "const": "basis-points" }, "threshold": { "const": 10000 }, "waivable": { "const": false } } },
|
|
21
|
+
"asset-parity": { "type": "object", "additionalProperties": false, "required": ["comparator", "unit", "threshold", "waivable"], "properties": { "comparator": { "const": "==" }, "unit": { "const": "basis-points" }, "threshold": { "const": 10000 }, "waivable": { "const": true } } },
|
|
22
|
+
"export-parity": { "type": "object", "additionalProperties": false, "required": ["comparator", "unit", "threshold", "waivable"], "properties": { "comparator": { "const": "==" }, "unit": { "const": "basis-points" }, "threshold": { "const": 10000 }, "waivable": { "const": true } } },
|
|
23
|
+
"package-parity": { "type": "object", "additionalProperties": false, "required": ["comparator", "unit", "threshold", "waivable"], "properties": { "comparator": { "const": "==" }, "unit": { "const": "basis-points" }, "threshold": { "const": 10000 }, "waivable": { "const": false } } },
|
|
24
|
+
"finding-severity-p0": { "type": "object", "additionalProperties": false, "required": ["comparator", "unit", "threshold", "waivable"], "properties": { "comparator": { "const": "<=" }, "unit": { "const": "count" }, "threshold": { "const": 0 }, "waivable": { "const": false } } },
|
|
25
|
+
"finding-severity-p1": { "type": "object", "additionalProperties": false, "required": ["comparator", "unit", "threshold", "waivable"], "properties": { "comparator": { "const": "<=" }, "unit": { "const": "count" }, "threshold": { "const": 0 }, "waivable": { "const": false } } },
|
|
26
|
+
"latency-regression": { "type": "object", "additionalProperties": false, "required": ["comparator", "unit", "threshold", "waivable", "measuredAgainst"], "properties": { "comparator": { "const": "<=" }, "unit": { "const": "basis-points" }, "threshold": { "const": 2000 }, "waivable": { "const": true }, "measuredAgainst": { "const": "frozen-baseline" } } },
|
|
27
|
+
"cost-regression": { "type": "object", "additionalProperties": false, "required": ["comparator", "unit", "threshold", "waivable", "measuredAgainst"], "properties": { "comparator": { "const": "<=" }, "unit": { "const": "basis-points" }, "threshold": { "const": 2000 }, "waivable": { "const": true }, "measuredAgainst": { "const": "frozen-baseline" } } }
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"gatePolicyDigest": { "$ref": "#/$defs/digest" }
|
|
31
|
+
},
|
|
32
|
+
"$defs": { "digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" } }
|
|
33
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.4.0/evaluation-grader-registration.schema.json",
|
|
4
|
+
"title": "Protocol 1.4 evaluation grader registration",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "graderId", "graderName", "graderVersion", "graderType", "declaredInputs", "determinism", "telemetry", "consent", "credentialReference", "outputContract", "unavailableBehavior", "blocksContractValidation", "provenance", "registrationDigest"],
|
|
8
|
+
"properties": {
|
|
9
|
+
"kind": { "const": "evaluation-grader-registration" },
|
|
10
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
11
|
+
"protocolVersion": { "const": "1.4.0" },
|
|
12
|
+
"graderId": { "type": "string", "pattern": "^egr_[a-f0-9]{32}$" },
|
|
13
|
+
"graderName": { "$ref": "#/$defs/name" },
|
|
14
|
+
"graderVersion": { "$ref": "#/$defs/version" },
|
|
15
|
+
"graderType": { "enum": ["deterministic-schema", "deterministic-behaviour", "live-model-judgement"] },
|
|
16
|
+
"declaredInputs": { "type": "array", "minItems": 1, "maxItems": 16, "uniqueItems": true, "items": { "$ref": "#/$defs/declaredInput" } },
|
|
17
|
+
"determinism": {
|
|
18
|
+
"type": "object",
|
|
19
|
+
"additionalProperties": false,
|
|
20
|
+
"required": ["deterministic", "modelCall", "network", "credentialUse", "filesystemWrite", "replay"],
|
|
21
|
+
"properties": {
|
|
22
|
+
"deterministic": { "type": "boolean" },
|
|
23
|
+
"modelCall": { "type": "boolean" },
|
|
24
|
+
"network": { "type": "boolean" },
|
|
25
|
+
"credentialUse": { "type": "boolean" },
|
|
26
|
+
"filesystemWrite": { "const": false },
|
|
27
|
+
"replay": { "enum": ["identical-output", "not-guaranteed"] }
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"telemetry": { "const": false },
|
|
31
|
+
"consent": {
|
|
32
|
+
"oneOf": [
|
|
33
|
+
{ "type": "null" },
|
|
34
|
+
{
|
|
35
|
+
"type": "object",
|
|
36
|
+
"additionalProperties": false,
|
|
37
|
+
"required": ["required", "mode", "scope", "recordDigest", "grantedAt", "expiresAt", "noDefaultChoice"],
|
|
38
|
+
"properties": {
|
|
39
|
+
"required": { "const": true },
|
|
40
|
+
"mode": { "const": "named-owner-current" },
|
|
41
|
+
"scope": { "enum": ["single-run", "single-corpus"] },
|
|
42
|
+
"recordDigest": { "$ref": "#/$defs/digest" },
|
|
43
|
+
"grantedAt": { "type": "string", "format": "date-time" },
|
|
44
|
+
"expiresAt": { "type": "string", "format": "date-time" },
|
|
45
|
+
"noDefaultChoice": { "const": true }
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"credentialReference": {
|
|
51
|
+
"oneOf": [
|
|
52
|
+
{ "type": "null" },
|
|
53
|
+
{
|
|
54
|
+
"type": "object",
|
|
55
|
+
"additionalProperties": false,
|
|
56
|
+
"required": ["refKind", "refName", "custody"],
|
|
57
|
+
"properties": {
|
|
58
|
+
"refKind": { "enum": ["environment-name", "os-custody-key"] },
|
|
59
|
+
"refName": { "type": "string", "minLength": 1, "maxLength": 128, "pattern": "^[A-Za-z][A-Za-z0-9_.-]*$" },
|
|
60
|
+
"custody": { "const": "host-owned" }
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
"outputContract": {
|
|
66
|
+
"type": "object",
|
|
67
|
+
"additionalProperties": false,
|
|
68
|
+
"required": ["contractId", "schemaVersion", "protocolVersion"],
|
|
69
|
+
"properties": {
|
|
70
|
+
"contractId": { "const": "evaluation-observation" },
|
|
71
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
72
|
+
"protocolVersion": { "const": "1.4.0" }
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"unavailableBehavior": { "const": "typed-absence" },
|
|
76
|
+
"blocksContractValidation": { "const": false },
|
|
77
|
+
"provenance": {
|
|
78
|
+
"type": "object",
|
|
79
|
+
"additionalProperties": false,
|
|
80
|
+
"required": ["packageName", "packageVersion", "sourceDigest"],
|
|
81
|
+
"properties": {
|
|
82
|
+
"packageName": { "$ref": "#/$defs/name" },
|
|
83
|
+
"packageVersion": { "$ref": "#/$defs/version" },
|
|
84
|
+
"sourceDigest": { "$ref": "#/$defs/digest" }
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"registrationDigest": { "$ref": "#/$defs/digest" }
|
|
88
|
+
},
|
|
89
|
+
"allOf": [
|
|
90
|
+
{
|
|
91
|
+
"if": { "properties": { "graderType": { "enum": ["deterministic-schema", "deterministic-behaviour"] } }, "required": ["graderType"] },
|
|
92
|
+
"then": {
|
|
93
|
+
"properties": {
|
|
94
|
+
"determinism": {
|
|
95
|
+
"properties": {
|
|
96
|
+
"deterministic": { "const": true },
|
|
97
|
+
"modelCall": { "const": false },
|
|
98
|
+
"network": { "const": false },
|
|
99
|
+
"credentialUse": { "const": false },
|
|
100
|
+
"replay": { "const": "identical-output" }
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"consent": { "const": null },
|
|
104
|
+
"credentialReference": { "const": null }
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"if": { "properties": { "graderType": { "const": "live-model-judgement" } }, "required": ["graderType"] },
|
|
110
|
+
"then": {
|
|
111
|
+
"required": ["consent", "credentialReference"],
|
|
112
|
+
"properties": {
|
|
113
|
+
"determinism": {
|
|
114
|
+
"properties": {
|
|
115
|
+
"deterministic": { "const": false },
|
|
116
|
+
"modelCall": { "const": true },
|
|
117
|
+
"replay": { "const": "not-guaranteed" }
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"consent": { "type": "object" },
|
|
121
|
+
"credentialReference": { "type": "object" }
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"$defs": {
|
|
127
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
128
|
+
"name": { "type": "string", "maxLength": 64, "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" },
|
|
129
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" },
|
|
130
|
+
"declaredInput": {
|
|
131
|
+
"type": "object",
|
|
132
|
+
"additionalProperties": false,
|
|
133
|
+
"required": ["inputKind", "required", "binding"],
|
|
134
|
+
"properties": {
|
|
135
|
+
"inputKind": { "enum": ["scenario", "fixture", "host-profile", "budget", "skill-source", "declared-output", "package-manifest", "run-trace"] },
|
|
136
|
+
"required": { "type": "boolean" },
|
|
137
|
+
"binding": { "const": "digest" }
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.4.0/evaluation-grader-registry.schema.json",
|
|
4
|
+
"title": "Protocol 1.4 evaluation grader registry",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "registryId", "registryVersion", "digestAlgorithm", "canonicalization", "memberOrder", "graders", "registryDigest"],
|
|
8
|
+
"properties": {
|
|
9
|
+
"kind": { "const": "evaluation-grader-registry" },
|
|
10
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
11
|
+
"protocolVersion": { "const": "1.4.0" },
|
|
12
|
+
"registryId": { "type": "string", "pattern": "^egrr_[a-f0-9]{32}$" },
|
|
13
|
+
"registryVersion": { "const": "1.0.0" },
|
|
14
|
+
"digestAlgorithm": { "const": "sha256" },
|
|
15
|
+
"canonicalization": { "const": "jcs" },
|
|
16
|
+
"memberOrder": { "const": "graderName-ascending" },
|
|
17
|
+
"graders": { "type": "array", "minItems": 1, "maxItems": 64, "uniqueItems": true, "items": { "$ref": "./evaluation-grader-registration.schema.json" } },
|
|
18
|
+
"registryDigest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" }
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.4.0/evaluation-host-profile-registry.schema.json",
|
|
4
|
+
"title": "Protocol 1.4 evaluation host profile registry",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "registryId", "registryVersion", "digestAlgorithm", "canonicalization", "memberOrder", "profiles", "registryDigest"],
|
|
8
|
+
"properties": {
|
|
9
|
+
"kind": { "const": "evaluation-host-profile-registry" },
|
|
10
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
11
|
+
"protocolVersion": { "const": "1.4.0" },
|
|
12
|
+
"registryId": { "type": "string", "pattern": "^ehpr_[a-f0-9]{32}$" },
|
|
13
|
+
"registryVersion": { "const": "1.0.0" },
|
|
14
|
+
"digestAlgorithm": { "const": "sha256" },
|
|
15
|
+
"canonicalization": { "const": "jcs" },
|
|
16
|
+
"memberOrder": { "const": "host-ascending" },
|
|
17
|
+
"profiles": { "type": "array", "minItems": 1, "maxItems": 64, "uniqueItems": true, "items": { "$ref": "./evaluation-host-profile.schema.json" } },
|
|
18
|
+
"registryDigest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" }
|
|
19
|
+
}
|
|
20
|
+
}
|