@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,261 @@
|
|
|
1
|
+
{
|
|
2
|
+
"kind": "rule-catalog",
|
|
3
|
+
"schemaVersion": "1.0.0",
|
|
4
|
+
"protocolVersion": "1.5.0",
|
|
5
|
+
"documentVersion": "1.0.0",
|
|
6
|
+
"digestAlgorithm": "sha256",
|
|
7
|
+
"canonicalization": "rfc8785",
|
|
8
|
+
"rules": [
|
|
9
|
+
{
|
|
10
|
+
"ruleId": "R1",
|
|
11
|
+
"ruleVersion": "1.0.0",
|
|
12
|
+
"title": "Request-directed workflow",
|
|
13
|
+
"status": "active",
|
|
14
|
+
"normativeText": "Planning requests produce planning artifacts. Implementation requests continue through code and the relevant engineering checks.",
|
|
15
|
+
"enforcementPoints": [
|
|
16
|
+
{
|
|
17
|
+
"package": "@openplanr/pipeline",
|
|
18
|
+
"path": "packages/pipeline/lib/pipeline/plan-ship-boundary.mjs",
|
|
19
|
+
"symbol": "plan-ship-boundary"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"testRefs": [
|
|
23
|
+
"tests/protocol/rule-catalog.test.mjs"
|
|
24
|
+
],
|
|
25
|
+
"citedBy": [
|
|
26
|
+
"docs/rules.md",
|
|
27
|
+
"agents/shared/rules.md"
|
|
28
|
+
],
|
|
29
|
+
"source": {
|
|
30
|
+
"path": "docs/rules.md",
|
|
31
|
+
"digest": "sha256:93a84c9011d50aa002659d20b8955faf1f316da3d59257570bfef16b57a81f20"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"ruleId": "R10",
|
|
36
|
+
"ruleVersion": "1.0.0",
|
|
37
|
+
"title": "Role QA parity",
|
|
38
|
+
"status": "active",
|
|
39
|
+
"normativeText": "No role is releasable without corresponding QA verification coverage and generated adapter parity.",
|
|
40
|
+
"enforcementPoints": [
|
|
41
|
+
{
|
|
42
|
+
"package": "@openplanr/pipeline",
|
|
43
|
+
"path": "packages/pipeline/lib/pipeline/role-parity.mjs",
|
|
44
|
+
"symbol": "role-parity"
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"testRefs": [
|
|
48
|
+
"tests/protocol/rule-catalog.test.mjs"
|
|
49
|
+
],
|
|
50
|
+
"citedBy": [
|
|
51
|
+
"docs/rules.md",
|
|
52
|
+
"agents/shared/rules.md"
|
|
53
|
+
],
|
|
54
|
+
"source": {
|
|
55
|
+
"path": "docs/rules.md",
|
|
56
|
+
"digest": "sha256:93a84c9011d50aa002659d20b8955faf1f316da3d59257570bfef16b57a81f20"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"ruleId": "R2",
|
|
61
|
+
"ruleVersion": "1.0.0",
|
|
62
|
+
"title": "Bounded story decomposition",
|
|
63
|
+
"status": "active",
|
|
64
|
+
"normativeText": "A story produces at most two implementation tasks: frontend and backend when design or UI input exists, otherwise one backend task.",
|
|
65
|
+
"enforcementPoints": [
|
|
66
|
+
{
|
|
67
|
+
"package": "@openplanr/pipeline",
|
|
68
|
+
"path": "packages/pipeline/lib/pipeline/task-decomposition.mjs",
|
|
69
|
+
"symbol": "task-decomposition"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"testRefs": [
|
|
73
|
+
"tests/protocol/rule-catalog.test.mjs"
|
|
74
|
+
],
|
|
75
|
+
"citedBy": [
|
|
76
|
+
"docs/rules.md",
|
|
77
|
+
"agents/shared/rules.md"
|
|
78
|
+
],
|
|
79
|
+
"source": {
|
|
80
|
+
"path": "docs/rules.md",
|
|
81
|
+
"digest": "sha256:93a84c9011d50aa002659d20b8955faf1f316da3d59257570bfef16b57a81f20"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"ruleId": "R3",
|
|
86
|
+
"ruleVersion": "1.0.0",
|
|
87
|
+
"title": "Portable capability tiers",
|
|
88
|
+
"status": "active",
|
|
89
|
+
"normativeText": "Roles use registry-owned capability tiers and adapters own host model mapping; vendor model names are not protocol truth.",
|
|
90
|
+
"enforcementPoints": [
|
|
91
|
+
{
|
|
92
|
+
"package": "@openplanr/pipeline",
|
|
93
|
+
"path": "packages/pipeline/lib/pipeline/role-resolution.mjs",
|
|
94
|
+
"symbol": "role-resolution"
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
"testRefs": [
|
|
98
|
+
"tests/protocol/rule-catalog.test.mjs"
|
|
99
|
+
],
|
|
100
|
+
"citedBy": [
|
|
101
|
+
"docs/rules.md",
|
|
102
|
+
"agents/shared/rules.md"
|
|
103
|
+
],
|
|
104
|
+
"source": {
|
|
105
|
+
"path": "docs/rules.md",
|
|
106
|
+
"digest": "sha256:93a84c9011d50aa002659d20b8955faf1f316da3d59257570bfef16b57a81f20"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"ruleId": "R4",
|
|
111
|
+
"ruleVersion": "1.0.0",
|
|
112
|
+
"title": "Generated task custody",
|
|
113
|
+
"status": "active",
|
|
114
|
+
"normativeText": "Generated task documents are not manually edited; their reviewed parent source is corrected and deterministic generation is rerun.",
|
|
115
|
+
"enforcementPoints": [
|
|
116
|
+
{
|
|
117
|
+
"package": "@openplanr/pipeline",
|
|
118
|
+
"path": "packages/pipeline/lib/pipeline/task-generation.mjs",
|
|
119
|
+
"symbol": "task-generation"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"testRefs": [
|
|
123
|
+
"tests/protocol/rule-catalog.test.mjs"
|
|
124
|
+
],
|
|
125
|
+
"citedBy": [
|
|
126
|
+
"docs/rules.md",
|
|
127
|
+
"agents/shared/rules.md"
|
|
128
|
+
],
|
|
129
|
+
"source": {
|
|
130
|
+
"path": "docs/rules.md",
|
|
131
|
+
"digest": "sha256:93a84c9011d50aa002659d20b8955faf1f316da3d59257570bfef16b57a81f20"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"ruleId": "R5",
|
|
136
|
+
"ruleVersion": "1.0.0",
|
|
137
|
+
"title": "Immutable Preserve boundaries",
|
|
138
|
+
"status": "active",
|
|
139
|
+
"normativeText": "Every Preserve repository path is immutable for the complete task and SHIP run and is verified against its bound baseline.",
|
|
140
|
+
"enforcementPoints": [
|
|
141
|
+
{
|
|
142
|
+
"package": "@openplanr/pipeline",
|
|
143
|
+
"path": "packages/pipeline/lib/pipeline/preserve-verification.mjs",
|
|
144
|
+
"symbol": "preserve-verification"
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"testRefs": [
|
|
148
|
+
"tests/protocol/rule-catalog.test.mjs"
|
|
149
|
+
],
|
|
150
|
+
"citedBy": [
|
|
151
|
+
"docs/rules.md",
|
|
152
|
+
"agents/shared/rules.md"
|
|
153
|
+
],
|
|
154
|
+
"source": {
|
|
155
|
+
"path": "docs/rules.md",
|
|
156
|
+
"digest": "sha256:93a84c9011d50aa002659d20b8955faf1f316da3d59257570bfef16b57a81f20"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"ruleId": "R6",
|
|
161
|
+
"ruleVersion": "1.0.0",
|
|
162
|
+
"title": "Adaptive recovery",
|
|
163
|
+
"status": "active",
|
|
164
|
+
"normativeText": "Use command results and diagnostics to choose useful corrections, continue while meaningful engineering progress is possible, and report a genuine impasse with the relevant error context.",
|
|
165
|
+
"enforcementPoints": [
|
|
166
|
+
{
|
|
167
|
+
"package": "@openplanr/pipeline",
|
|
168
|
+
"path": "packages/pipeline/lib/pipeline/adaptive-recovery.mjs",
|
|
169
|
+
"symbol": "adaptive-recovery"
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
"testRefs": [
|
|
173
|
+
"tests/protocol/rule-catalog.test.mjs"
|
|
174
|
+
],
|
|
175
|
+
"citedBy": [
|
|
176
|
+
"docs/rules.md",
|
|
177
|
+
"agents/shared/rules.md"
|
|
178
|
+
],
|
|
179
|
+
"source": {
|
|
180
|
+
"path": "docs/rules.md",
|
|
181
|
+
"digest": "sha256:93a84c9011d50aa002659d20b8955faf1f316da3d59257570bfef16b57a81f20"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"ruleId": "R7",
|
|
186
|
+
"ruleVersion": "1.0.0",
|
|
187
|
+
"title": "Proportional verification",
|
|
188
|
+
"status": "active",
|
|
189
|
+
"normativeText": "Local work uses verification proportional to its risk and directly corrects relevant failures. Dedicated release certification owns release closure.",
|
|
190
|
+
"enforcementPoints": [
|
|
191
|
+
{
|
|
192
|
+
"package": "@openplanr/pipeline",
|
|
193
|
+
"path": "packages/pipeline/lib/pipeline/ship-closure.mjs",
|
|
194
|
+
"symbol": "ship-closure"
|
|
195
|
+
}
|
|
196
|
+
],
|
|
197
|
+
"testRefs": [
|
|
198
|
+
"tests/protocol/rule-catalog.test.mjs"
|
|
199
|
+
],
|
|
200
|
+
"citedBy": [
|
|
201
|
+
"docs/rules.md",
|
|
202
|
+
"agents/shared/rules.md"
|
|
203
|
+
],
|
|
204
|
+
"source": {
|
|
205
|
+
"path": "docs/rules.md",
|
|
206
|
+
"digest": "sha256:93a84c9011d50aa002659d20b8955faf1f316da3d59257570bfef16b57a81f20"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"ruleId": "R8",
|
|
211
|
+
"ruleVersion": "1.0.0",
|
|
212
|
+
"title": "Read-only database inspection",
|
|
213
|
+
"status": "active",
|
|
214
|
+
"normativeText": "Database inspection is read-only and cannot issue DDL, DML, or any external mutation.",
|
|
215
|
+
"enforcementPoints": [
|
|
216
|
+
{
|
|
217
|
+
"package": "@openplanr/pipeline",
|
|
218
|
+
"path": "packages/pipeline/lib/pipeline/database-authority.mjs",
|
|
219
|
+
"symbol": "database-authority"
|
|
220
|
+
}
|
|
221
|
+
],
|
|
222
|
+
"testRefs": [
|
|
223
|
+
"tests/protocol/rule-catalog.test.mjs"
|
|
224
|
+
],
|
|
225
|
+
"citedBy": [
|
|
226
|
+
"docs/rules.md",
|
|
227
|
+
"agents/shared/rules.md"
|
|
228
|
+
],
|
|
229
|
+
"source": {
|
|
230
|
+
"path": "docs/rules.md",
|
|
231
|
+
"digest": "sha256:93a84c9011d50aa002659d20b8955faf1f316da3d59257570bfef16b57a81f20"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"ruleId": "R9",
|
|
236
|
+
"ruleVersion": "1.0.0",
|
|
237
|
+
"title": "Implementation ownership",
|
|
238
|
+
"status": "active",
|
|
239
|
+
"normativeText": "Frontend and backend ownership boundaries are binding; companion changes must be acceptance-required, disclosed, and outside Preserve.",
|
|
240
|
+
"enforcementPoints": [
|
|
241
|
+
{
|
|
242
|
+
"package": "@openplanr/pipeline",
|
|
243
|
+
"path": "packages/pipeline/lib/pipeline/ownership-boundary.mjs",
|
|
244
|
+
"symbol": "ownership-boundary"
|
|
245
|
+
}
|
|
246
|
+
],
|
|
247
|
+
"testRefs": [
|
|
248
|
+
"tests/protocol/rule-catalog.test.mjs"
|
|
249
|
+
],
|
|
250
|
+
"citedBy": [
|
|
251
|
+
"docs/rules.md",
|
|
252
|
+
"agents/shared/rules.md"
|
|
253
|
+
],
|
|
254
|
+
"source": {
|
|
255
|
+
"path": "docs/rules.md",
|
|
256
|
+
"digest": "sha256:93a84c9011d50aa002659d20b8955faf1f316da3d59257570bfef16b57a81f20"
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
],
|
|
260
|
+
"documentDigest": "sha256:b66d52fcdafac4eac1f7d11f54666d32bdcc78a55662550305e88ccb3f429480"
|
|
261
|
+
}
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
{
|
|
2
|
+
"kind": "skill-host-profile-registry",
|
|
3
|
+
"schemaVersion": "1.1.0",
|
|
4
|
+
"protocolVersion": "1.7.0",
|
|
5
|
+
"documentVersion": "1.1.0",
|
|
6
|
+
"digestAlgorithm": "sha256",
|
|
7
|
+
"canonicalization": "rfc8785",
|
|
8
|
+
"profiles": [
|
|
9
|
+
{
|
|
10
|
+
"hostProfileId": "claude-code-default",
|
|
11
|
+
"hostProfileVersion": "1.0.0",
|
|
12
|
+
"host": "claude-code",
|
|
13
|
+
"description": "Claude Code profile with native questions and portable interactive fallbacks.",
|
|
14
|
+
"authorityCeiling": {
|
|
15
|
+
"repositoryAccess": "read-only",
|
|
16
|
+
"externalDataAccess": "none",
|
|
17
|
+
"allowedCapabilities": [
|
|
18
|
+
"read"
|
|
19
|
+
],
|
|
20
|
+
"allowedTools": [
|
|
21
|
+
"read"
|
|
22
|
+
],
|
|
23
|
+
"allowedOperations": [
|
|
24
|
+
"render"
|
|
25
|
+
],
|
|
26
|
+
"allowedOutputClasses": [
|
|
27
|
+
"A"
|
|
28
|
+
],
|
|
29
|
+
"forbiddenEffects": [
|
|
30
|
+
"network-write"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
"source": {
|
|
34
|
+
"path": "packages/protocol/host-profiles/claude-code.md",
|
|
35
|
+
"digest": "sha256:00ff4377d76f438c453547e24484d197d60e6830fba17e17a9e6051293efc030"
|
|
36
|
+
},
|
|
37
|
+
"overlayModules": [],
|
|
38
|
+
"runtimeCapabilities": [
|
|
39
|
+
"attached-terminal",
|
|
40
|
+
"native-questions",
|
|
41
|
+
"structured-chat"
|
|
42
|
+
],
|
|
43
|
+
"interactionBindings": [
|
|
44
|
+
{
|
|
45
|
+
"surface": "native",
|
|
46
|
+
"protocolInteraction": "native",
|
|
47
|
+
"capabilityId": "native-questions"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"surface": "chat",
|
|
51
|
+
"protocolInteraction": "chat",
|
|
52
|
+
"capabilityId": "structured-chat"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"surface": "terminal",
|
|
56
|
+
"protocolInteraction": "terminal",
|
|
57
|
+
"capabilityId": "attached-terminal"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"surface": "headless",
|
|
61
|
+
"protocolInteraction": "none"
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"hostProfileId": "codex-default",
|
|
67
|
+
"hostProfileVersion": "1.0.0",
|
|
68
|
+
"host": "codex",
|
|
69
|
+
"description": "Codex profile with composer questions and portable interactive fallbacks.",
|
|
70
|
+
"authorityCeiling": {
|
|
71
|
+
"repositoryAccess": "read-only",
|
|
72
|
+
"externalDataAccess": "none",
|
|
73
|
+
"allowedCapabilities": [
|
|
74
|
+
"read"
|
|
75
|
+
],
|
|
76
|
+
"allowedTools": [
|
|
77
|
+
"read"
|
|
78
|
+
],
|
|
79
|
+
"allowedOperations": [
|
|
80
|
+
"render"
|
|
81
|
+
],
|
|
82
|
+
"allowedOutputClasses": [
|
|
83
|
+
"A"
|
|
84
|
+
],
|
|
85
|
+
"forbiddenEffects": [
|
|
86
|
+
"network-write"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
"source": {
|
|
90
|
+
"path": "packages/protocol/host-profiles/codex.md",
|
|
91
|
+
"digest": "sha256:fe7f1efa8a4ef5b4c51765e270cfc68368b060fdecb54148bdf1874688f01007"
|
|
92
|
+
},
|
|
93
|
+
"overlayModules": [],
|
|
94
|
+
"runtimeCapabilities": [
|
|
95
|
+
"attached-terminal",
|
|
96
|
+
"native-questions",
|
|
97
|
+
"structured-chat"
|
|
98
|
+
],
|
|
99
|
+
"interactionBindings": [
|
|
100
|
+
{
|
|
101
|
+
"surface": "native",
|
|
102
|
+
"protocolInteraction": "native",
|
|
103
|
+
"capabilityId": "native-questions"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"surface": "chat",
|
|
107
|
+
"protocolInteraction": "chat",
|
|
108
|
+
"capabilityId": "structured-chat"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"surface": "terminal",
|
|
112
|
+
"protocolInteraction": "terminal",
|
|
113
|
+
"capabilityId": "attached-terminal"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"surface": "headless",
|
|
117
|
+
"protocolInteraction": "none"
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"hostProfileId": "cursor-default",
|
|
123
|
+
"hostProfileVersion": "1.0.0",
|
|
124
|
+
"host": "cursor",
|
|
125
|
+
"description": "Cursor profile with structured chat and attached-terminal fallbacks.",
|
|
126
|
+
"authorityCeiling": {
|
|
127
|
+
"repositoryAccess": "read-only",
|
|
128
|
+
"externalDataAccess": "none",
|
|
129
|
+
"allowedCapabilities": [
|
|
130
|
+
"read"
|
|
131
|
+
],
|
|
132
|
+
"allowedTools": [
|
|
133
|
+
"read"
|
|
134
|
+
],
|
|
135
|
+
"allowedOperations": [
|
|
136
|
+
"render"
|
|
137
|
+
],
|
|
138
|
+
"allowedOutputClasses": [
|
|
139
|
+
"A"
|
|
140
|
+
],
|
|
141
|
+
"forbiddenEffects": [
|
|
142
|
+
"network-write"
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
"source": {
|
|
146
|
+
"path": "packages/protocol/host-profiles/cursor.md",
|
|
147
|
+
"digest": "sha256:a57cd97781cf646c4150da44235ddbd0b7904db3bbf009855a7ea022f6545098"
|
|
148
|
+
},
|
|
149
|
+
"overlayModules": [],
|
|
150
|
+
"runtimeCapabilities": [
|
|
151
|
+
"attached-terminal",
|
|
152
|
+
"structured-chat"
|
|
153
|
+
],
|
|
154
|
+
"interactionBindings": [
|
|
155
|
+
{
|
|
156
|
+
"surface": "chat",
|
|
157
|
+
"protocolInteraction": "chat",
|
|
158
|
+
"capabilityId": "structured-chat"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"surface": "terminal",
|
|
162
|
+
"protocolInteraction": "terminal",
|
|
163
|
+
"capabilityId": "attached-terminal"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"surface": "headless",
|
|
167
|
+
"protocolInteraction": "none"
|
|
168
|
+
}
|
|
169
|
+
]
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"hostProfileId": "pipeline-default",
|
|
173
|
+
"hostProfileVersion": "1.0.0",
|
|
174
|
+
"host": "pipeline",
|
|
175
|
+
"description": "Host-neutral pipeline projection profile; narrows to read-only repository access.",
|
|
176
|
+
"authorityCeiling": {
|
|
177
|
+
"repositoryAccess": "read-only",
|
|
178
|
+
"externalDataAccess": "none",
|
|
179
|
+
"allowedCapabilities": [
|
|
180
|
+
"read"
|
|
181
|
+
],
|
|
182
|
+
"allowedTools": [
|
|
183
|
+
"read"
|
|
184
|
+
],
|
|
185
|
+
"allowedOperations": [
|
|
186
|
+
"render"
|
|
187
|
+
],
|
|
188
|
+
"allowedOutputClasses": [
|
|
189
|
+
"A"
|
|
190
|
+
],
|
|
191
|
+
"forbiddenEffects": [
|
|
192
|
+
"network-write"
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
"source": {
|
|
196
|
+
"path": "packages/protocol/host-profiles/pipeline.md",
|
|
197
|
+
"digest": "sha256:f5039bb4c67fac1e934ed803d0728723806a6712b53c5dd3c99ce6144ffb5482"
|
|
198
|
+
},
|
|
199
|
+
"overlayModules": []
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"hostProfileId": "pipeline-default",
|
|
203
|
+
"hostProfileVersion": "1.1.0",
|
|
204
|
+
"host": "pipeline",
|
|
205
|
+
"description": "Host-neutral pipeline profile with terminal and headless fallbacks.",
|
|
206
|
+
"authorityCeiling": {
|
|
207
|
+
"repositoryAccess": "read-only",
|
|
208
|
+
"externalDataAccess": "none",
|
|
209
|
+
"allowedCapabilities": [
|
|
210
|
+
"read"
|
|
211
|
+
],
|
|
212
|
+
"allowedTools": [
|
|
213
|
+
"read"
|
|
214
|
+
],
|
|
215
|
+
"allowedOperations": [
|
|
216
|
+
"render"
|
|
217
|
+
],
|
|
218
|
+
"allowedOutputClasses": [
|
|
219
|
+
"A"
|
|
220
|
+
],
|
|
221
|
+
"forbiddenEffects": [
|
|
222
|
+
"network-write"
|
|
223
|
+
]
|
|
224
|
+
},
|
|
225
|
+
"source": {
|
|
226
|
+
"path": "packages/protocol/host-profiles/pipeline-capabilities.md",
|
|
227
|
+
"digest": "sha256:5f032622114c45adb510d85b73a019b9a0e2a347b868dff82440445e463c1a1f"
|
|
228
|
+
},
|
|
229
|
+
"overlayModules": [],
|
|
230
|
+
"runtimeCapabilities": [
|
|
231
|
+
"attached-terminal"
|
|
232
|
+
],
|
|
233
|
+
"interactionBindings": [
|
|
234
|
+
{
|
|
235
|
+
"surface": "terminal",
|
|
236
|
+
"protocolInteraction": "terminal",
|
|
237
|
+
"capabilityId": "attached-terminal"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"surface": "headless",
|
|
241
|
+
"protocolInteraction": "none"
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"documentDigest": "sha256:e1b8a3c4e1b3d66bc01bb1c0cf0b43591e596e232f1330285083b00a93b38db2"
|
|
247
|
+
}
|