project-tiny-context-harness 0.11.0 → 0.12.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/README.md +73 -543
- package/assets/agents/AGENTS_CORE.md +11 -87
- package/assets/tools/context_rules.json +2 -1
- package/dist/commands/context-inspect.js +19 -89
- package/dist/commands/context-list.d.ts +1 -0
- package/dist/commands/context-list.js +24 -0
- package/dist/commands/context.js +4 -0
- package/dist/commands/doctor.js +1 -18
- package/dist/commands/index.js +33 -63
- package/dist/commands/init.d.ts +0 -2
- package/dist/commands/init.js +26 -108
- package/dist/commands/upgrade.js +14 -2
- package/dist/commands/validate.js +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/lib/config.js +14 -45
- package/dist/lib/constants.d.ts +1 -1
- package/dist/lib/constants.js +1 -1
- package/dist/lib/context-catalog/catalog-default-footprint.d.ts +1 -1
- package/dist/lib/context-catalog/catalog-default-footprint.js +5 -7
- package/dist/lib/context-catalog/catalog-load.js +19 -1
- package/dist/lib/context-catalog/catalog-path-validation.js +10 -0
- package/dist/lib/context-catalog/catalog-validation.js +13 -5
- package/dist/lib/context-controlling-source.d.ts +4 -0
- package/dist/lib/context-controlling-source.js +106 -0
- package/dist/lib/context-create/context-create.js +2 -0
- package/dist/lib/context-default-footprint.js +2 -0
- package/dist/lib/context-doctor/context-doctor-types.d.ts +0 -10
- package/dist/lib/context-doctor/context-doctor-types.js +0 -12
- package/dist/lib/context-export.js +17 -9
- package/dist/lib/context-inspect/context-inspect-projection.d.ts +1 -2
- package/dist/lib/context-inspect/context-inspect-projection.js +0 -1
- package/dist/lib/context-inspect/context-inspect-render.js +0 -8
- package/dist/lib/context-inspect/context-inspect-types.d.ts +0 -14
- package/dist/lib/context-inspect/context-inspect.js +0 -27
- package/dist/lib/context-manifest-schema.d.ts +1 -0
- package/dist/lib/context-manifest-schema.js +2 -1
- package/dist/lib/context-manifest.js +1 -41
- package/dist/lib/context-markdown/context-markdown-analysis.js +8 -0
- package/dist/lib/context-markdown/context-markdown-extract.d.ts +2 -1
- package/dist/lib/context-markdown/context-markdown-extract.js +20 -0
- package/dist/lib/context-markdown/context-markdown-types.d.ts +26 -0
- package/dist/lib/context-move/context-move.js +3 -2
- package/dist/lib/context-mutation/manifest-lossless-patch.js +11 -0
- package/dist/lib/context-mutation/mutation-commit.js +2 -2
- package/dist/lib/context-mutation/mutation-interlock.d.ts +1 -0
- package/dist/lib/context-mutation/mutation-interlock.js +9 -0
- package/dist/lib/context-mutation/mutation-recovery.js +3 -3
- package/dist/lib/context-register/context-register.js +3 -0
- package/dist/lib/context-templates.d.ts +0 -4
- package/dist/lib/context-templates.js +1 -210
- package/dist/lib/doctor.d.ts +2 -2
- package/dist/lib/doctor.js +44 -133
- package/dist/lib/init.js +34 -39
- package/dist/lib/maintenance-lock.d.ts +3 -0
- package/dist/lib/maintenance-lock.js +203 -0
- package/dist/lib/maintenance-write.d.ts +3 -0
- package/dist/lib/maintenance-write.js +55 -0
- package/dist/lib/migrations.d.ts +1 -20
- package/dist/lib/migrations.js +48 -755
- package/dist/lib/package-json-config.js +34 -21
- package/dist/lib/package-source.js +27 -14
- package/dist/lib/repository-path-safety.d.ts +2 -0
- package/dist/lib/repository-path-safety.js +20 -0
- package/dist/lib/retirement-assets.d.ts +13 -0
- package/dist/lib/retirement-assets.js +182 -0
- package/dist/lib/retirement-binding.d.ts +10 -0
- package/dist/lib/retirement-binding.js +59 -0
- package/dist/lib/retirement-defaults.d.ts +7 -0
- package/dist/lib/retirement-defaults.js +29 -0
- package/dist/lib/retirement-plan.d.ts +10 -0
- package/dist/lib/retirement-plan.js +96 -0
- package/dist/lib/retirement-preflight.d.ts +2 -0
- package/dist/lib/retirement-preflight.js +13 -0
- package/dist/lib/retirement-references.d.ts +6 -0
- package/dist/lib/retirement-references.js +102 -0
- package/dist/lib/retirement-runner.d.ts +22 -0
- package/dist/lib/retirement-runner.js +217 -0
- package/dist/lib/schema-guard.d.ts +1 -0
- package/dist/lib/schema-guard.js +47 -6
- package/dist/lib/source-files.d.ts +0 -2
- package/dist/lib/source-files.js +0 -21
- package/dist/lib/source-pack-export.js +4 -1
- package/dist/lib/source-pack-manifest.js +93 -38
- package/dist/lib/sync-engine.d.ts +7 -1
- package/dist/lib/sync-engine.js +38 -336
- package/dist/lib/types.d.ts +0 -19
- package/dist/lib/upgrade.d.ts +3 -2
- package/dist/lib/upgrade.js +30 -40
- package/dist/lib/validators.d.ts +3 -3
- package/dist/lib/validators.js +72 -401
- package/dist/public-api-core.d.ts +14 -11
- package/dist/public-api-core.js +14 -11
- package/dist/public-types.d.ts +7 -13
- package/migrations/README.md +19 -178
- package/migrations/schema-4-owned-assets.json +170 -0
- package/package.json +14 -20
- package/source-mappings.yaml +3 -39
- package/assets/README.md +0 -944
- package/assets/README.zh-CN.md +0 -556
- package/assets/agents/.gitkeep +0 -1
- package/assets/agents/long-task-implementation.toml +0 -15
- package/assets/context_templates/architecture.md +0 -37
- package/assets/context_templates/area.md +0 -40
- package/assets/context_templates/context.toml +0 -46
- package/assets/context_templates/deployment.md +0 -35
- package/assets/context_templates/global.md +0 -57
- package/assets/context_templates/product-surface-contract.md +0 -70
- package/assets/context_templates/screen-contract.md +0 -205
- package/assets/context_templates/verification.md +0 -35
- package/assets/github/.gitkeep +0 -1
- package/assets/github/harness.yml +0 -41
- package/assets/make/.gitkeep +0 -1
- package/assets/make/ty-context.mk +0 -48
- package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_helpers.cs +0 -301
- package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_run.cs +0 -197
- package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_types.cs +0 -215
- package/assets/runtime/windows-job-supervisor/windows_job_process_supervisor.ps1 +0 -117
- package/assets/skills/context_development_engineer/SKILL.md +0 -58
- package/assets/skills/context_development_engineer/references/engineering-design-reasoning.md +0 -93
- package/assets/skills/context_full_project_export/SKILL.md +0 -70
- package/assets/skills/context_harness_upgrade/SKILL.md +0 -60
- package/assets/skills/context_product_plan/SKILL.md +0 -42
- package/assets/skills/context_surface_contract/SKILL.md +0 -205
- package/assets/skills/context_uiux_design/SKILL.md +0 -53
- package/assets/skills/context_uiux_design/references/task-uiux-analysis.md +0 -82
- package/assets/skills/design-resource-authoring/SKILL.md +0 -63
- package/assets/skills/design-resource-authoring/references/authority-delta-assessment.md +0 -52
- package/assets/skills/design-resource-authoring/references/downstream-handoff.md +0 -67
- package/assets/skills/design-resource-authoring/references/formal-selected-web-app-handoff.md +0 -114
- package/assets/skills/design-resource-authoring/references/implementation-feasibility.md +0 -111
- package/assets/skills/design-resource-authoring/references/open-design-provider.md +0 -198
- package/assets/skills/design-resource-authoring/references/recovery-and-writeback.md +0 -205
- package/assets/skills/design-resource-authoring/references/resource-selection.md +0 -290
- package/assets/skills/design-system-authoring/SKILL.md +0 -63
- package/assets/skills/design-system-authoring/agents/openai.yaml +0 -6
- package/assets/skills/design-system-authoring/references/authority-adoption.md +0 -58
- package/assets/skills/design-system-authoring/references/open-design-design-system-provider.md +0 -114
- package/assets/skills/long-task-workflow/SKILL.md +0 -75
- package/assets/skills/long-task-workflow/agents/openai.yaml +0 -6
- package/assets/skills/long-task-workflow/references/authority-lifecycle.md +0 -86
- package/assets/skills/long-task-workflow/references/contract-authoring.md +0 -152
- package/assets/skills/long-task-workflow/references/evidence-design.md +0 -132
- package/assets/skills/long-task-workflow/references/source-authoring.md +0 -126
- package/assets/tools/validate_context.py +0 -667
- package/dist/commands/check-modularity.d.ts +0 -1
- package/dist/commands/check-modularity.js +0 -181
- package/dist/commands/composite-campaign.d.ts +0 -1
- package/dist/commands/composite-campaign.js +0 -8
- package/dist/commands/composite-long-task.d.ts +0 -1
- package/dist/commands/composite-long-task.js +0 -8
- package/dist/commands/delivery-set.d.ts +0 -1
- package/dist/commands/delivery-set.js +0 -8
- package/dist/commands/design-authority-delta.d.ts +0 -1
- package/dist/commands/design-authority-delta.js +0 -53
- package/dist/commands/design-authority.d.ts +0 -1
- package/dist/commands/design-authority.js +0 -104
- package/dist/commands/design-resource-recovery.d.ts +0 -1
- package/dist/commands/design-resource-recovery.js +0 -152
- package/dist/commands/design-resource.d.ts +0 -1
- package/dist/commands/design-resource.js +0 -132
- package/dist/commands/disable.d.ts +0 -1
- package/dist/commands/disable.js +0 -15
- package/dist/commands/enable.d.ts +0 -1
- package/dist/commands/enable.js +0 -16
- package/dist/commands/long-task-authoring.d.ts +0 -3
- package/dist/commands/long-task-authoring.js +0 -234
- package/dist/commands/long-task-command-args.d.ts +0 -4
- package/dist/commands/long-task-command-args.js +0 -26
- package/dist/commands/long-task-explain.d.ts +0 -1
- package/dist/commands/long-task-explain.js +0 -52
- package/dist/commands/long-task-revision.d.ts +0 -1
- package/dist/commands/long-task-revision.js +0 -177
- package/dist/commands/long-task-workdir.d.ts +0 -2
- package/dist/commands/long-task-workdir.js +0 -23
- package/dist/commands/long-task.d.ts +0 -1
- package/dist/commands/long-task.js +0 -212
- package/dist/commands/route.d.ts +0 -15
- package/dist/commands/route.js +0 -142
- package/dist/lib/compact-authoring-support.d.ts +0 -22
- package/dist/lib/compact-authoring-support.js +0 -143
- package/dist/lib/compact-shared-structure-authoring.d.ts +0 -5
- package/dist/lib/compact-shared-structure-authoring.js +0 -9
- package/dist/lib/compact-shared-structure-types.d.ts +0 -61
- package/dist/lib/compact-shared-structure-types.js +0 -1
- package/dist/lib/compact-shared-structure-validation.d.ts +0 -2
- package/dist/lib/compact-shared-structure-validation.js +0 -159
- package/dist/lib/compact-shared-structures.d.ts +0 -3
- package/dist/lib/compact-shared-structures.js +0 -204
- package/dist/lib/context-doctor/context-doctor.d.ts +0 -2
- package/dist/lib/context-doctor/context-doctor.js +0 -130
- package/dist/lib/context-graph-snapshot.d.ts +0 -23
- package/dist/lib/context-graph-snapshot.js +0 -199
- package/dist/lib/context-mutation/mutation-long-task-guard.d.ts +0 -6
- package/dist/lib/context-mutation/mutation-long-task-guard.js +0 -57
- package/dist/lib/context-router/context-route-budget.d.ts +0 -15
- package/dist/lib/context-router/context-route-budget.js +0 -14
- package/dist/lib/context-router/context-route-candidates.d.ts +0 -15
- package/dist/lib/context-router/context-route-candidates.js +0 -112
- package/dist/lib/context-router/context-route-order.d.ts +0 -6
- package/dist/lib/context-router/context-route-order.js +0 -53
- package/dist/lib/context-router/context-route-paths.d.ts +0 -16
- package/dist/lib/context-router/context-route-paths.js +0 -109
- package/dist/lib/context-router/context-route-render.d.ts +0 -2
- package/dist/lib/context-router/context-route-render.js +0 -32
- package/dist/lib/context-router/context-route-scan.d.ts +0 -18
- package/dist/lib/context-router/context-route-scan.js +0 -156
- package/dist/lib/context-router/context-route-selection.d.ts +0 -16
- package/dist/lib/context-router/context-route-selection.js +0 -72
- package/dist/lib/context-router/context-route-terms.d.ts +0 -13
- package/dist/lib/context-router/context-route-terms.js +0 -202
- package/dist/lib/context-router/context-route-types.d.ts +0 -101
- package/dist/lib/context-router/context-route-types.js +0 -1
- package/dist/lib/context-router/context-route.d.ts +0 -2
- package/dist/lib/context-router/context-route.js +0 -127
- package/dist/lib/context-units-migration.d.ts +0 -13
- package/dist/lib/context-units-migration.js +0 -217
- package/dist/lib/design-authority-binding.d.ts +0 -7
- package/dist/lib/design-authority-binding.js +0 -96
- package/dist/lib/design-authority-closure.d.ts +0 -3
- package/dist/lib/design-authority-closure.js +0 -201
- package/dist/lib/design-authority-delta-codec-primitives.d.ts +0 -10
- package/dist/lib/design-authority-delta-codec-primitives.js +0 -58
- package/dist/lib/design-authority-delta-codec.d.ts +0 -2
- package/dist/lib/design-authority-delta-codec.js +0 -193
- package/dist/lib/design-authority-delta-types.d.ts +0 -65
- package/dist/lib/design-authority-delta-types.js +0 -6
- package/dist/lib/design-authority-delta-validation.d.ts +0 -2
- package/dist/lib/design-authority-delta-validation.js +0 -16
- package/dist/lib/design-authority-digest.d.ts +0 -8
- package/dist/lib/design-authority-digest.js +0 -36
- package/dist/lib/design-authority-files.d.ts +0 -9
- package/dist/lib/design-authority-files.js +0 -62
- package/dist/lib/design-authority-format.d.ts +0 -2
- package/dist/lib/design-authority-format.js +0 -93
- package/dist/lib/design-authority-links.d.ts +0 -10
- package/dist/lib/design-authority-links.js +0 -137
- package/dist/lib/design-authority-manifest.d.ts +0 -4
- package/dist/lib/design-authority-manifest.js +0 -144
- package/dist/lib/design-authority-tokens.d.ts +0 -9
- package/dist/lib/design-authority-tokens.js +0 -45
- package/dist/lib/design-authority-types.d.ts +0 -80
- package/dist/lib/design-authority-types.js +0 -23
- package/dist/lib/design-md-tool-adapter.d.ts +0 -9
- package/dist/lib/design-md-tool-adapter.js +0 -152
- package/dist/lib/design-md-tool-normalization.d.ts +0 -7
- package/dist/lib/design-md-tool-normalization.js +0 -78
- package/dist/lib/design-md-tool-types.d.ts +0 -99
- package/dist/lib/design-md-tool-types.js +0 -8
- package/dist/lib/design-md.d.ts +0 -12
- package/dist/lib/design-md.js +0 -169
- package/dist/lib/design-resource-fact-enums.d.ts +0 -24
- package/dist/lib/design-resource-fact-enums.js +0 -182
- package/dist/lib/design-resource-fact-locator-extractors.d.ts +0 -8
- package/dist/lib/design-resource-fact-locator-extractors.js +0 -108
- package/dist/lib/design-resource-fact-locator-resolver.d.ts +0 -3
- package/dist/lib/design-resource-fact-locator-resolver.js +0 -112
- package/dist/lib/design-resource-fact-locator-validation.d.ts +0 -5
- package/dist/lib/design-resource-fact-locator-validation.js +0 -16
- package/dist/lib/design-resource-fact-manifest-catalog.d.ts +0 -4
- package/dist/lib/design-resource-fact-manifest-catalog.js +0 -249
- package/dist/lib/design-resource-fact-manifest-model.d.ts +0 -91
- package/dist/lib/design-resource-fact-manifest-model.js +0 -21
- package/dist/lib/design-resource-fact-manifest-shape-axes.d.ts +0 -6
- package/dist/lib/design-resource-fact-manifest-shape-axes.js +0 -159
- package/dist/lib/design-resource-fact-manifest-shape-evidence.d.ts +0 -4
- package/dist/lib/design-resource-fact-manifest-shape-evidence.js +0 -59
- package/dist/lib/design-resource-fact-manifest-shape-facts.d.ts +0 -4
- package/dist/lib/design-resource-fact-manifest-shape-facts.js +0 -109
- package/dist/lib/design-resource-fact-manifest-shape-inspector.d.ts +0 -5
- package/dist/lib/design-resource-fact-manifest-shape-inspector.js +0 -144
- package/dist/lib/design-resource-fact-manifest-shape.d.ts +0 -7
- package/dist/lib/design-resource-fact-manifest-shape.js +0 -75
- package/dist/lib/design-resource-fact-manifest-types.d.ts +0 -3
- package/dist/lib/design-resource-fact-manifest-types.js +0 -3
- package/dist/lib/design-resource-fact-manifest-universe.d.ts +0 -5
- package/dist/lib/design-resource-fact-manifest-universe.js +0 -50
- package/dist/lib/design-resource-fact-manifest-validation.d.ts +0 -5
- package/dist/lib/design-resource-fact-manifest-validation.js +0 -111
- package/dist/lib/design-resource-fact-policy.d.ts +0 -43
- package/dist/lib/design-resource-fact-policy.js +0 -106
- package/dist/lib/design-resource-fact-property-methods.d.ts +0 -3
- package/dist/lib/design-resource-fact-property-methods.js +0 -158
- package/dist/lib/design-resource-fact-shape-primitives.d.ts +0 -3
- package/dist/lib/design-resource-fact-shape-primitives.js +0 -18
- package/dist/lib/design-resource-fact-types.d.ts +0 -164
- package/dist/lib/design-resource-fact-types.js +0 -1
- package/dist/lib/design-resource-fact-universe-assets.d.ts +0 -4
- package/dist/lib/design-resource-fact-universe-assets.js +0 -71
- package/dist/lib/design-resource-fact-universe-catalog.d.ts +0 -4
- package/dist/lib/design-resource-fact-universe-catalog.js +0 -161
- package/dist/lib/design-resource-fact-universe-conditions.d.ts +0 -2
- package/dist/lib/design-resource-fact-universe-conditions.js +0 -92
- package/dist/lib/design-resource-fact-universe-facts.d.ts +0 -4
- package/dist/lib/design-resource-fact-universe-facts.js +0 -108
- package/dist/lib/design-resource-fact-universe-helpers.d.ts +0 -30
- package/dist/lib/design-resource-fact-universe-helpers.js +0 -171
- package/dist/lib/design-resource-fact-universe-inspector.d.ts +0 -7
- package/dist/lib/design-resource-fact-universe-inspector.js +0 -119
- package/dist/lib/design-resource-fact-universe-proof.d.ts +0 -4
- package/dist/lib/design-resource-fact-universe-proof.js +0 -113
- package/dist/lib/design-resource-fact-universe-subjects.d.ts +0 -5
- package/dist/lib/design-resource-fact-universe-subjects.js +0 -97
- package/dist/lib/design-resource-fact-universe-variations.d.ts +0 -2
- package/dist/lib/design-resource-fact-universe-variations.js +0 -75
- package/dist/lib/design-resource-fact-value-validation.d.ts +0 -2
- package/dist/lib/design-resource-fact-value-validation.js +0 -80
- package/dist/lib/design-resource-handoff-bundle-draft.d.ts +0 -11
- package/dist/lib/design-resource-handoff-bundle-draft.js +0 -40
- package/dist/lib/design-resource-handoff-bundle.d.ts +0 -31
- package/dist/lib/design-resource-handoff-bundle.js +0 -152
- package/dist/lib/design-resource-handoff-file-primitives.d.ts +0 -4
- package/dist/lib/design-resource-handoff-file-primitives.js +0 -16
- package/dist/lib/design-resource-handoff-file-validation.d.ts +0 -2
- package/dist/lib/design-resource-handoff-file-validation.js +0 -47
- package/dist/lib/design-resource-handoff-input-types.d.ts +0 -14
- package/dist/lib/design-resource-handoff-input-types.js +0 -1
- package/dist/lib/design-resource-handoff-manifest-projection.d.ts +0 -4
- package/dist/lib/design-resource-handoff-manifest-projection.js +0 -41
- package/dist/lib/design-resource-handoff-parser.d.ts +0 -8
- package/dist/lib/design-resource-handoff-parser.js +0 -49
- package/dist/lib/design-resource-handoff-policy.d.ts +0 -4
- package/dist/lib/design-resource-handoff-policy.js +0 -143
- package/dist/lib/design-resource-handoff-set-integrity.d.ts +0 -8
- package/dist/lib/design-resource-handoff-set-integrity.js +0 -94
- package/dist/lib/design-resource-handoff-shape-evidence.d.ts +0 -6
- package/dist/lib/design-resource-handoff-shape-evidence.js +0 -187
- package/dist/lib/design-resource-handoff-shape-primitives.d.ts +0 -14
- package/dist/lib/design-resource-handoff-shape-primitives.js +0 -70
- package/dist/lib/design-resource-handoff-shape-structure.d.ts +0 -5
- package/dist/lib/design-resource-handoff-shape-structure.js +0 -239
- package/dist/lib/design-resource-handoff-shape.d.ts +0 -6
- package/dist/lib/design-resource-handoff-shape.js +0 -192
- package/dist/lib/design-resource-handoff-snapshot.d.ts +0 -6
- package/dist/lib/design-resource-handoff-snapshot.js +0 -25
- package/dist/lib/design-resource-handoff-types.d.ts +0 -264
- package/dist/lib/design-resource-handoff-types.js +0 -68
- package/dist/lib/design-resource-handoff-validation-coverage.d.ts +0 -4
- package/dist/lib/design-resource-handoff-validation-coverage.js +0 -223
- package/dist/lib/design-resource-handoff-validation-fact-cells.d.ts +0 -2
- package/dist/lib/design-resource-handoff-validation-fact-cells.js +0 -60
- package/dist/lib/design-resource-handoff-validation-fact-records.d.ts +0 -2
- package/dist/lib/design-resource-handoff-validation-fact-records.js +0 -90
- package/dist/lib/design-resource-handoff-validation-facts.d.ts +0 -2
- package/dist/lib/design-resource-handoff-validation-facts.js +0 -13
- package/dist/lib/design-resource-handoff-validation-primitives.d.ts +0 -11
- package/dist/lib/design-resource-handoff-validation-primitives.js +0 -26
- package/dist/lib/design-resource-handoff-validation-proofs.d.ts +0 -2
- package/dist/lib/design-resource-handoff-validation-proofs.js +0 -67
- package/dist/lib/design-resource-handoff-validation-resource-closure.d.ts +0 -3
- package/dist/lib/design-resource-handoff-validation-resource-closure.js +0 -88
- package/dist/lib/design-resource-handoff-validation-structure.d.ts +0 -6
- package/dist/lib/design-resource-handoff-validation-structure.js +0 -124
- package/dist/lib/design-resource-handoff-validation.d.ts +0 -8
- package/dist/lib/design-resource-handoff-validation.js +0 -177
- package/dist/lib/design-resource-handoff-web-dependency-validation.d.ts +0 -6
- package/dist/lib/design-resource-handoff-web-dependency-validation.js +0 -130
- package/dist/lib/design-resource-implementation-feasibility-model.d.ts +0 -35
- package/dist/lib/design-resource-implementation-feasibility-model.js +0 -62
- package/dist/lib/design-resource-implementation-feasibility-shape-sections.d.ts +0 -43
- package/dist/lib/design-resource-implementation-feasibility-shape-sections.js +0 -142
- package/dist/lib/design-resource-implementation-feasibility-shape.d.ts +0 -4
- package/dist/lib/design-resource-implementation-feasibility-shape.js +0 -154
- package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.d.ts +0 -24
- package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.js +0 -106
- package/dist/lib/design-resource-implementation-feasibility-source-decision.d.ts +0 -21
- package/dist/lib/design-resource-implementation-feasibility-source-decision.js +0 -75
- package/dist/lib/design-resource-implementation-feasibility-types.d.ts +0 -135
- package/dist/lib/design-resource-implementation-feasibility-types.js +0 -37
- package/dist/lib/design-resource-implementation-feasibility-validation-cells.d.ts +0 -5
- package/dist/lib/design-resource-implementation-feasibility-validation-cells.js +0 -125
- package/dist/lib/design-resource-implementation-feasibility-validation-document.d.ts +0 -4
- package/dist/lib/design-resource-implementation-feasibility-validation-document.js +0 -167
- package/dist/lib/design-resource-implementation-feasibility-validation-facts.d.ts +0 -3
- package/dist/lib/design-resource-implementation-feasibility-validation-facts.js +0 -76
- package/dist/lib/design-resource-implementation-feasibility-validation-realizations.d.ts +0 -8
- package/dist/lib/design-resource-implementation-feasibility-validation-realizations.js +0 -76
- package/dist/lib/design-resource-implementation-feasibility-validation-support.d.ts +0 -10
- package/dist/lib/design-resource-implementation-feasibility-validation-support.js +0 -75
- package/dist/lib/design-resource-implementation-feasibility-validation.d.ts +0 -3
- package/dist/lib/design-resource-implementation-feasibility-validation.js +0 -138
- package/dist/lib/design-resource-reconciliation-codec.d.ts +0 -2
- package/dist/lib/design-resource-reconciliation-codec.js +0 -174
- package/dist/lib/design-resource-reconciliation-types.d.ts +0 -62
- package/dist/lib/design-resource-reconciliation-types.js +0 -1
- package/dist/lib/design-resource-reconciliation.d.ts +0 -3
- package/dist/lib/design-resource-reconciliation.js +0 -224
- package/dist/lib/design-resource-recovery-authority-policy.d.ts +0 -8
- package/dist/lib/design-resource-recovery-authority-policy.js +0 -123
- package/dist/lib/design-resource-recovery-catalog-resources.d.ts +0 -6
- package/dist/lib/design-resource-recovery-catalog-resources.js +0 -121
- package/dist/lib/design-resource-recovery-catalog-shape.d.ts +0 -3
- package/dist/lib/design-resource-recovery-catalog-shape.js +0 -104
- package/dist/lib/design-resource-recovery-catalog.d.ts +0 -9
- package/dist/lib/design-resource-recovery-catalog.js +0 -103
- package/dist/lib/design-resource-recovery-cleanup.d.ts +0 -2
- package/dist/lib/design-resource-recovery-cleanup.js +0 -11
- package/dist/lib/design-resource-recovery-codec-primitives.d.ts +0 -19
- package/dist/lib/design-resource-recovery-codec-primitives.js +0 -92
- package/dist/lib/design-resource-recovery-codec.d.ts +0 -4
- package/dist/lib/design-resource-recovery-codec.js +0 -93
- package/dist/lib/design-resource-recovery-current.d.ts +0 -9
- package/dist/lib/design-resource-recovery-current.js +0 -63
- package/dist/lib/design-resource-recovery-delta-policy.d.ts +0 -5
- package/dist/lib/design-resource-recovery-delta-policy.js +0 -108
- package/dist/lib/design-resource-recovery-files.d.ts +0 -37
- package/dist/lib/design-resource-recovery-files.js +0 -204
- package/dist/lib/design-resource-recovery-final-disposition-shape.d.ts +0 -2
- package/dist/lib/design-resource-recovery-final-disposition-shape.js +0 -47
- package/dist/lib/design-resource-recovery-patch-types.d.ts +0 -54
- package/dist/lib/design-resource-recovery-patch-types.js +0 -1
- package/dist/lib/design-resource-recovery-replay.d.ts +0 -7
- package/dist/lib/design-resource-recovery-replay.js +0 -112
- package/dist/lib/design-resource-recovery-repository-bindings.d.ts +0 -9
- package/dist/lib/design-resource-recovery-repository-bindings.js +0 -49
- package/dist/lib/design-resource-recovery-schema.d.ts +0 -5
- package/dist/lib/design-resource-recovery-schema.js +0 -5
- package/dist/lib/design-resource-recovery-shape.d.ts +0 -10
- package/dist/lib/design-resource-recovery-shape.js +0 -241
- package/dist/lib/design-resource-recovery-source-authority.d.ts +0 -5
- package/dist/lib/design-resource-recovery-source-authority.js +0 -219
- package/dist/lib/design-resource-recovery-text.d.ts +0 -17
- package/dist/lib/design-resource-recovery-text.js +0 -186
- package/dist/lib/design-resource-recovery-types.d.ts +0 -200
- package/dist/lib/design-resource-recovery-types.js +0 -1
- package/dist/lib/design-resource-recovery-writeback-policy.d.ts +0 -5
- package/dist/lib/design-resource-recovery-writeback-policy.js +0 -326
- package/dist/lib/design-resource-recovery-writeback-shape.d.ts +0 -6
- package/dist/lib/design-resource-recovery-writeback-shape.js +0 -155
- package/dist/lib/design-resource-recovery.d.ts +0 -44
- package/dist/lib/design-resource-recovery.js +0 -216
- package/dist/lib/design-resource-symbolic-applicability-authority.d.ts +0 -7
- package/dist/lib/design-resource-symbolic-applicability-authority.js +0 -19
- package/dist/lib/design-resource-symbolic-applicability-policy.d.ts +0 -12
- package/dist/lib/design-resource-symbolic-applicability-policy.js +0 -79
- package/dist/lib/design-resource-symbolic-applicability-profiles.d.ts +0 -8
- package/dist/lib/design-resource-symbolic-applicability-profiles.js +0 -55
- package/dist/lib/design-resource-symbolic-applicability-shape.d.ts +0 -2
- package/dist/lib/design-resource-symbolic-applicability-shape.js +0 -76
- package/dist/lib/design-resource-symbolic-applicability-validation.d.ts +0 -7
- package/dist/lib/design-resource-symbolic-applicability-validation.js +0 -128
- package/dist/lib/design-resource-symbolic-compilation.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-compilation.js +0 -13
- package/dist/lib/design-resource-symbolic-denotation.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-denotation.js +0 -167
- package/dist/lib/design-resource-symbolic-disposition-validation.d.ts +0 -4
- package/dist/lib/design-resource-symbolic-disposition-validation.js +0 -28
- package/dist/lib/design-resource-symbolic-fact-policy.d.ts +0 -12
- package/dist/lib/design-resource-symbolic-fact-policy.js +0 -12
- package/dist/lib/design-resource-symbolic-fact-shape.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-fact-shape.js +0 -146
- package/dist/lib/design-resource-symbolic-fact-types.d.ts +0 -221
- package/dist/lib/design-resource-symbolic-fact-types.js +0 -1
- package/dist/lib/design-resource-symbolic-fact-validation.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-fact-validation.js +0 -111
- package/dist/lib/design-resource-symbolic-indexes.d.ts +0 -23
- package/dist/lib/design-resource-symbolic-indexes.js +0 -54
- package/dist/lib/design-resource-symbolic-manifest-shape.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-manifest-shape.js +0 -155
- package/dist/lib/design-resource-symbolic-manifest-validation.d.ts +0 -6
- package/dist/lib/design-resource-symbolic-manifest-validation.js +0 -132
- package/dist/lib/design-resource-symbolic-noninterference-artifact.d.ts +0 -33
- package/dist/lib/design-resource-symbolic-noninterference-artifact.js +0 -110
- package/dist/lib/design-resource-symbolic-noninterference-equivalence.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-noninterference-equivalence.js +0 -77
- package/dist/lib/design-resource-symbolic-noninterference-recompute.d.ts +0 -4
- package/dist/lib/design-resource-symbolic-noninterference-recompute.js +0 -146
- package/dist/lib/design-resource-symbolic-noninterference-scope.d.ts +0 -7
- package/dist/lib/design-resource-symbolic-noninterference-scope.js +0 -49
- package/dist/lib/design-resource-symbolic-noninterference-shape.d.ts +0 -2
- package/dist/lib/design-resource-symbolic-noninterference-shape.js +0 -152
- package/dist/lib/design-resource-symbolic-noninterference-types.d.ts +0 -103
- package/dist/lib/design-resource-symbolic-noninterference-types.js +0 -1
- package/dist/lib/design-resource-symbolic-noninterference-validation.d.ts +0 -5
- package/dist/lib/design-resource-symbolic-noninterference-validation.js +0 -62
- package/dist/lib/design-resource-symbolic-oracle-fingerprint.d.ts +0 -1
- package/dist/lib/design-resource-symbolic-oracle-fingerprint.js +0 -47
- package/dist/lib/design-resource-symbolic-predicate-shape.d.ts +0 -6
- package/dist/lib/design-resource-symbolic-predicate-shape.js +0 -123
- package/dist/lib/design-resource-symbolic-production-closure.d.ts +0 -4
- package/dist/lib/design-resource-symbolic-production-closure.js +0 -144
- package/dist/lib/design-resource-symbolic-proof-authority-validation.d.ts +0 -10
- package/dist/lib/design-resource-symbolic-proof-authority-validation.js +0 -68
- package/dist/lib/design-resource-symbolic-proof-validation.d.ts +0 -10
- package/dist/lib/design-resource-symbolic-proof-validation.js +0 -89
- package/dist/lib/design-resource-symbolic-region-validation.d.ts +0 -19
- package/dist/lib/design-resource-symbolic-region-validation.js +0 -146
- package/dist/lib/design-resource-symbolic-resource-validation.d.ts +0 -5
- package/dist/lib/design-resource-symbolic-resource-validation.js +0 -90
- package/dist/lib/design-resource-symbolic-rule-shape.d.ts +0 -27
- package/dist/lib/design-resource-symbolic-rule-shape.js +0 -158
- package/dist/lib/design-resource-symbolic-safety-validation.d.ts +0 -6
- package/dist/lib/design-resource-symbolic-safety-validation.js +0 -29
- package/dist/lib/design-resource-symbolic-source-ir-evaluation.d.ts +0 -19
- package/dist/lib/design-resource-symbolic-source-ir-evaluation.js +0 -74
- package/dist/lib/design-resource-symbolic-source-ir-evidence.d.ts +0 -44
- package/dist/lib/design-resource-symbolic-source-ir-evidence.js +0 -88
- package/dist/lib/design-resource-symbolic-source-ir-oracle.d.ts +0 -13
- package/dist/lib/design-resource-symbolic-source-ir-oracle.js +0 -96
- package/dist/lib/design-resource-symbolic-source-ir-proof.d.ts +0 -14
- package/dist/lib/design-resource-symbolic-source-ir-proof.js +0 -98
- package/dist/lib/design-resource-symbolic-source-ir-shape.d.ts +0 -2
- package/dist/lib/design-resource-symbolic-source-ir-shape.js +0 -38
- package/dist/lib/design-resource-symbolic-source-ir-types.d.ts +0 -17
- package/dist/lib/design-resource-symbolic-source-ir-types.js +0 -2
- package/dist/lib/design-resource-symbolic-static-dependency-validation.d.ts +0 -2
- package/dist/lib/design-resource-symbolic-static-dependency-validation.js +0 -83
- package/dist/lib/design-resource-symbolic-structural-closure-validation.d.ts +0 -6
- package/dist/lib/design-resource-symbolic-structural-closure-validation.js +0 -79
- package/dist/lib/design-resource-symbolic-validation-support.d.ts +0 -29
- package/dist/lib/design-resource-symbolic-validation-support.js +0 -111
- package/dist/lib/design-resource-v1-capacity-header.d.ts +0 -8
- package/dist/lib/design-resource-v1-capacity-header.js +0 -231
- package/dist/lib/design-resource-v1-capacity.d.ts +0 -5
- package/dist/lib/design-resource-v1-capacity.js +0 -45
- package/dist/lib/execution-target-capabilities.d.ts +0 -2
- package/dist/lib/execution-target-capabilities.js +0 -45
- package/dist/lib/legacy-managed-scan.d.ts +0 -2
- package/dist/lib/legacy-managed-scan.js +0 -95
- package/dist/lib/legacy-sdlc-migration.d.ts +0 -2
- package/dist/lib/legacy-sdlc-migration.js +0 -199
- package/dist/lib/long-task-acceptance-reachability-claims.d.ts +0 -2
- package/dist/lib/long-task-acceptance-reachability-claims.js +0 -279
- package/dist/lib/long-task-acceptance-reachability-design.d.ts +0 -2
- package/dist/lib/long-task-acceptance-reachability-design.js +0 -96
- package/dist/lib/long-task-acceptance-reachability-external.d.ts +0 -9
- package/dist/lib/long-task-acceptance-reachability-external.js +0 -123
- package/dist/lib/long-task-acceptance-reachability-helpers.d.ts +0 -64
- package/dist/lib/long-task-acceptance-reachability-helpers.js +0 -473
- package/dist/lib/long-task-acceptance-reachability-semantic.d.ts +0 -2
- package/dist/lib/long-task-acceptance-reachability-semantic.js +0 -122
- package/dist/lib/long-task-acceptance-reachability-types.d.ts +0 -91
- package/dist/lib/long-task-acceptance-reachability-types.js +0 -1
- package/dist/lib/long-task-acceptance-reachability.d.ts +0 -4
- package/dist/lib/long-task-acceptance-reachability.js +0 -115
- package/dist/lib/long-task-acceptance-reference.d.ts +0 -22
- package/dist/lib/long-task-acceptance-reference.js +0 -46
- package/dist/lib/long-task-acceptance-shape.d.ts +0 -5
- package/dist/lib/long-task-acceptance-shape.js +0 -198
- package/dist/lib/long-task-activation-validation.d.ts +0 -27
- package/dist/lib/long-task-activation-validation.js +0 -246
- package/dist/lib/long-task-active-authority-lock-context.d.ts +0 -4
- package/dist/lib/long-task-active-authority-lock-context.js +0 -29
- package/dist/lib/long-task-admitted-observation-records.d.ts +0 -25
- package/dist/lib/long-task-admitted-observation-records.js +0 -40
- package/dist/lib/long-task-admitted-observation.d.ts +0 -93
- package/dist/lib/long-task-admitted-observation.js +0 -201
- package/dist/lib/long-task-applicability-identity.d.ts +0 -25
- package/dist/lib/long-task-applicability-identity.js +0 -60
- package/dist/lib/long-task-applicability-shape.d.ts +0 -4
- package/dist/lib/long-task-applicability-shape.js +0 -54
- package/dist/lib/long-task-artifacts.d.ts +0 -6
- package/dist/lib/long-task-artifacts.js +0 -35
- package/dist/lib/long-task-assertions-v2.d.ts +0 -22
- package/dist/lib/long-task-assertions-v2.js +0 -220
- package/dist/lib/long-task-authoring-authority-preview.d.ts +0 -5
- package/dist/lib/long-task-authoring-authority-preview.js +0 -87
- package/dist/lib/long-task-authoring-preflight-diagnostics.d.ts +0 -8
- package/dist/lib/long-task-authoring-preflight-diagnostics.js +0 -199
- package/dist/lib/long-task-authoring-preflight-repair-order.d.ts +0 -8
- package/dist/lib/long-task-authoring-preflight-repair-order.js +0 -98
- package/dist/lib/long-task-authoring-preflight-types.d.ts +0 -48
- package/dist/lib/long-task-authoring-preflight-types.js +0 -47
- package/dist/lib/long-task-authoring-preflight.d.ts +0 -3
- package/dist/lib/long-task-authoring-preflight.js +0 -102
- package/dist/lib/long-task-authority-material-diff.d.ts +0 -17
- package/dist/lib/long-task-authority-material-diff.js +0 -225
- package/dist/lib/long-task-authority-materials.d.ts +0 -7
- package/dist/lib/long-task-authority-materials.js +0 -185
- package/dist/lib/long-task-authority-policy.d.ts +0 -290
- package/dist/lib/long-task-authority-policy.js +0 -310
- package/dist/lib/long-task-authority-revision-analysis.d.ts +0 -34
- package/dist/lib/long-task-authority-revision-analysis.js +0 -121
- package/dist/lib/long-task-authority-revision-brief.d.ts +0 -3
- package/dist/lib/long-task-authority-revision-brief.js +0 -76
- package/dist/lib/long-task-authority-revision-details.d.ts +0 -21
- package/dist/lib/long-task-authority-revision-details.js +0 -205
- package/dist/lib/long-task-authority-revision-diagnosis.d.ts +0 -24
- package/dist/lib/long-task-authority-revision-diagnosis.js +0 -149
- package/dist/lib/long-task-authority-revision-enforcement.d.ts +0 -5
- package/dist/lib/long-task-authority-revision-enforcement.js +0 -53
- package/dist/lib/long-task-authority-revision-summary.d.ts +0 -14
- package/dist/lib/long-task-authority-revision-summary.js +0 -246
- package/dist/lib/long-task-authority-revision-types.d.ts +0 -119
- package/dist/lib/long-task-authority-revision-types.js +0 -1
- package/dist/lib/long-task-authority-revision.d.ts +0 -4
- package/dist/lib/long-task-authority-revision.js +0 -156
- package/dist/lib/long-task-authority-transition-policy.d.ts +0 -62
- package/dist/lib/long-task-authority-transition-policy.js +0 -62
- package/dist/lib/long-task-authority-types.d.ts +0 -131
- package/dist/lib/long-task-authority-types.js +0 -1
- package/dist/lib/long-task-authority.d.ts +0 -7
- package/dist/lib/long-task-authority.js +0 -202
- package/dist/lib/long-task-boundary-check.d.ts +0 -15
- package/dist/lib/long-task-boundary-check.js +0 -9
- package/dist/lib/long-task-check-evidence-decoder.d.ts +0 -3
- package/dist/lib/long-task-check-evidence-decoder.js +0 -84
- package/dist/lib/long-task-check-execution-policy.d.ts +0 -21
- package/dist/lib/long-task-check-execution-policy.js +0 -48
- package/dist/lib/long-task-check-runner.d.ts +0 -2
- package/dist/lib/long-task-check-runner.js +0 -307
- package/dist/lib/long-task-check-shape.d.ts +0 -2
- package/dist/lib/long-task-check-shape.js +0 -176
- package/dist/lib/long-task-claim-definitions.d.ts +0 -7
- package/dist/lib/long-task-claim-definitions.js +0 -83
- package/dist/lib/long-task-claim-proof-policy.d.ts +0 -4
- package/dist/lib/long-task-claim-proof-policy.js +0 -57
- package/dist/lib/long-task-claim-semantic-proof-floor.d.ts +0 -3
- package/dist/lib/long-task-claim-semantic-proof-floor.js +0 -78
- package/dist/lib/long-task-claims.d.ts +0 -10
- package/dist/lib/long-task-claims.js +0 -374
- package/dist/lib/long-task-codex-agent-profile.d.ts +0 -42
- package/dist/lib/long-task-codex-agent-profile.js +0 -276
- package/dist/lib/long-task-command-process.d.ts +0 -9
- package/dist/lib/long-task-command-process.js +0 -178
- package/dist/lib/long-task-compact-authoring-projections.d.ts +0 -12
- package/dist/lib/long-task-compact-authoring-projections.js +0 -67
- package/dist/lib/long-task-compact-authoring.d.ts +0 -3
- package/dist/lib/long-task-compact-authoring.js +0 -176
- package/dist/lib/long-task-compact-carrier.d.ts +0 -7
- package/dist/lib/long-task-compact-carrier.js +0 -132
- package/dist/lib/long-task-compact-parser.d.ts +0 -14
- package/dist/lib/long-task-compact-parser.js +0 -123
- package/dist/lib/long-task-compact-primitives.d.ts +0 -22
- package/dist/lib/long-task-compact-primitives.js +0 -132
- package/dist/lib/long-task-compact-projections.d.ts +0 -4
- package/dist/lib/long-task-compact-projections.js +0 -163
- package/dist/lib/long-task-compact-structure-targets.d.ts +0 -2
- package/dist/lib/long-task-compact-structure-targets.js +0 -91
- package/dist/lib/long-task-complete-delivery-evidence-types.d.ts +0 -38
- package/dist/lib/long-task-complete-delivery-evidence-types.js +0 -1
- package/dist/lib/long-task-completion-types.d.ts +0 -109
- package/dist/lib/long-task-completion-types.js +0 -1
- package/dist/lib/long-task-conformance-policy.d.ts +0 -6
- package/dist/lib/long-task-conformance-policy.js +0 -44
- package/dist/lib/long-task-context-authority-topology.d.ts +0 -7
- package/dist/lib/long-task-context-authority-topology.js +0 -39
- package/dist/lib/long-task-context-authority.d.ts +0 -14
- package/dist/lib/long-task-context-authority.js +0 -66
- package/dist/lib/long-task-contract-types.d.ts +0 -317
- package/dist/lib/long-task-contract-types.js +0 -1
- package/dist/lib/long-task-control-fields.d.ts +0 -12
- package/dist/lib/long-task-control-fields.js +0 -66
- package/dist/lib/long-task-control-types.d.ts +0 -1
- package/dist/lib/long-task-control-types.js +0 -1
- package/dist/lib/long-task-counterfactual-claim-policy.d.ts +0 -9
- package/dist/lib/long-task-counterfactual-claim-policy.js +0 -72
- package/dist/lib/long-task-counterfactual-sandbox.d.ts +0 -19
- package/dist/lib/long-task-counterfactual-sandbox.js +0 -195
- package/dist/lib/long-task-counterfactual-types.d.ts +0 -38
- package/dist/lib/long-task-counterfactual-types.js +0 -1
- package/dist/lib/long-task-delivery-compiler-preflight.d.ts +0 -24
- package/dist/lib/long-task-delivery-compiler-preflight.js +0 -32
- package/dist/lib/long-task-delivery-compiler.d.ts +0 -14
- package/dist/lib/long-task-delivery-compiler.js +0 -170
- package/dist/lib/long-task-delivery-parser.d.ts +0 -17
- package/dist/lib/long-task-delivery-parser.js +0 -153
- package/dist/lib/long-task-delivery-preflight.d.ts +0 -5
- package/dist/lib/long-task-delivery-preflight.js +0 -175
- package/dist/lib/long-task-delivery-shape.d.ts +0 -6
- package/dist/lib/long-task-delivery-shape.js +0 -6
- package/dist/lib/long-task-delivery-types.d.ts +0 -15
- package/dist/lib/long-task-delivery-types.js +0 -15
- package/dist/lib/long-task-delivery-validation.d.ts +0 -11
- package/dist/lib/long-task-delivery-validation.js +0 -267
- package/dist/lib/long-task-design-feasibility-binding-owners.d.ts +0 -6
- package/dist/lib/long-task-design-feasibility-binding-owners.js +0 -52
- package/dist/lib/long-task-design-feasibility-binding.d.ts +0 -14
- package/dist/lib/long-task-design-feasibility-binding.js +0 -114
- package/dist/lib/long-task-design-feasibility-source-closure.d.ts +0 -11
- package/dist/lib/long-task-design-feasibility-source-closure.js +0 -87
- package/dist/lib/long-task-design-obligation.d.ts +0 -50
- package/dist/lib/long-task-design-obligation.js +0 -99
- package/dist/lib/long-task-design-resource-handoff.d.ts +0 -20
- package/dist/lib/long-task-design-resource-handoff.js +0 -265
- package/dist/lib/long-task-design-resource-method-binding.d.ts +0 -15
- package/dist/lib/long-task-design-resource-method-binding.js +0 -309
- package/dist/lib/long-task-design-target-capabilities.d.ts +0 -14
- package/dist/lib/long-task-design-target-capabilities.js +0 -126
- package/dist/lib/long-task-effective-external-takeover.d.ts +0 -15
- package/dist/lib/long-task-effective-external-takeover.js +0 -109
- package/dist/lib/long-task-effective-external-ui-takeover.d.ts +0 -5
- package/dist/lib/long-task-effective-external-ui-takeover.js +0 -117
- package/dist/lib/long-task-evidence-adapter-policy.d.ts +0 -4
- package/dist/lib/long-task-evidence-adapter-policy.js +0 -15
- package/dist/lib/long-task-evidence-adapter-types.d.ts +0 -1
- package/dist/lib/long-task-evidence-adapter-types.js +0 -1
- package/dist/lib/long-task-evidence-capability-codec.d.ts +0 -96
- package/dist/lib/long-task-evidence-capability-codec.js +0 -983
- package/dist/lib/long-task-evidence-capability-policy.d.ts +0 -9
- package/dist/lib/long-task-evidence-capability-policy.js +0 -345
- package/dist/lib/long-task-evidence-capability-runtime.d.ts +0 -5
- package/dist/lib/long-task-evidence-capability-runtime.js +0 -628
- package/dist/lib/long-task-evidence-capability-types.d.ts +0 -277
- package/dist/lib/long-task-evidence-capability-types.js +0 -1
- package/dist/lib/long-task-evidence-findings.d.ts +0 -5
- package/dist/lib/long-task-evidence-findings.js +0 -120
- package/dist/lib/long-task-evidence-sensitivity-policy.d.ts +0 -13
- package/dist/lib/long-task-evidence-sensitivity-policy.js +0 -166
- package/dist/lib/long-task-evidence-v2.d.ts +0 -10
- package/dist/lib/long-task-evidence-v2.js +0 -608
- package/dist/lib/long-task-exact-comparison.d.ts +0 -16
- package/dist/lib/long-task-exact-comparison.js +0 -28
- package/dist/lib/long-task-execution-observation.d.ts +0 -31
- package/dist/lib/long-task-execution-observation.js +0 -349
- package/dist/lib/long-task-expected-authority.d.ts +0 -4
- package/dist/lib/long-task-expected-authority.js +0 -126
- package/dist/lib/long-task-explain-acceptance-link.d.ts +0 -50
- package/dist/lib/long-task-explain-acceptance-link.js +0 -100
- package/dist/lib/long-task-explain-claim-links.d.ts +0 -47
- package/dist/lib/long-task-explain-claim-links.js +0 -90
- package/dist/lib/long-task-explain-source-links.d.ts +0 -99
- package/dist/lib/long-task-explain-source-links.js +0 -51
- package/dist/lib/long-task-external-confirmation-artifacts.d.ts +0 -9
- package/dist/lib/long-task-external-confirmation-artifacts.js +0 -138
- package/dist/lib/long-task-external-confirmation-attestation.d.ts +0 -20
- package/dist/lib/long-task-external-confirmation-attestation.js +0 -115
- package/dist/lib/long-task-external-confirmation-challenge.d.ts +0 -23
- package/dist/lib/long-task-external-confirmation-challenge.js +0 -164
- package/dist/lib/long-task-external-confirmation-context.d.ts +0 -14
- package/dist/lib/long-task-external-confirmation-context.js +0 -53
- package/dist/lib/long-task-external-confirmation-evaluation.d.ts +0 -11
- package/dist/lib/long-task-external-confirmation-evaluation.js +0 -454
- package/dist/lib/long-task-external-confirmation-expected.d.ts +0 -8
- package/dist/lib/long-task-external-confirmation-expected.js +0 -200
- package/dist/lib/long-task-external-confirmation-identity.d.ts +0 -10
- package/dist/lib/long-task-external-confirmation-identity.js +0 -77
- package/dist/lib/long-task-external-confirmation-plan.d.ts +0 -25
- package/dist/lib/long-task-external-confirmation-plan.js +0 -148
- package/dist/lib/long-task-external-confirmation-preparation.d.ts +0 -4
- package/dist/lib/long-task-external-confirmation-preparation.js +0 -100
- package/dist/lib/long-task-external-confirmation-shape.d.ts +0 -8
- package/dist/lib/long-task-external-confirmation-shape.js +0 -387
- package/dist/lib/long-task-external-confirmation-state.d.ts +0 -10
- package/dist/lib/long-task-external-confirmation-state.js +0 -109
- package/dist/lib/long-task-external-confirmation-types.d.ts +0 -195
- package/dist/lib/long-task-external-confirmation-types.js +0 -1
- package/dist/lib/long-task-final-integrity.d.ts +0 -18
- package/dist/lib/long-task-final-integrity.js +0 -109
- package/dist/lib/long-task-final-v2.d.ts +0 -7
- package/dist/lib/long-task-final-v2.js +0 -275
- package/dist/lib/long-task-finalization-identity.d.ts +0 -27
- package/dist/lib/long-task-finalization-identity.js +0 -58
- package/dist/lib/long-task-finding-context.d.ts +0 -3
- package/dist/lib/long-task-finding-context.js +0 -189
- package/dist/lib/long-task-freshness.d.ts +0 -30
- package/dist/lib/long-task-freshness.js +0 -203
- package/dist/lib/long-task-hook-install.d.ts +0 -26
- package/dist/lib/long-task-hook-install.js +0 -381
- package/dist/lib/long-task-hook-preflight.d.ts +0 -7
- package/dist/lib/long-task-hook-preflight.js +0 -58
- package/dist/lib/long-task-json-pointer-observation.d.ts +0 -59
- package/dist/lib/long-task-json-pointer-observation.js +0 -184
- package/dist/lib/long-task-material-input-closure.d.ts +0 -3
- package/dist/lib/long-task-material-input-closure.js +0 -92
- package/dist/lib/long-task-obligation-authority-resolution.d.ts +0 -12
- package/dist/lib/long-task-obligation-authority-resolution.js +0 -57
- package/dist/lib/long-task-obligation-semantic-identity.d.ts +0 -16
- package/dist/lib/long-task-obligation-semantic-identity.js +0 -116
- package/dist/lib/long-task-observation-artifact.d.ts +0 -8
- package/dist/lib/long-task-observation-artifact.js +0 -58
- package/dist/lib/long-task-observation-authority.d.ts +0 -28
- package/dist/lib/long-task-observation-authority.js +0 -479
- package/dist/lib/long-task-observation-ownership.d.ts +0 -2
- package/dist/lib/long-task-observation-ownership.js +0 -22
- package/dist/lib/long-task-outcome-parser.d.ts +0 -4
- package/dist/lib/long-task-outcome-parser.js +0 -143
- package/dist/lib/long-task-paths.d.ts +0 -48
- package/dist/lib/long-task-paths.js +0 -414
- package/dist/lib/long-task-playwright-capability-records.d.ts +0 -7
- package/dist/lib/long-task-playwright-capability-records.js +0 -218
- package/dist/lib/long-task-playwright-case-evidence.d.ts +0 -46
- package/dist/lib/long-task-playwright-case-evidence.js +0 -91
- package/dist/lib/long-task-playwright-case-primitives.d.ts +0 -28
- package/dist/lib/long-task-playwright-case-primitives.js +0 -143
- package/dist/lib/long-task-playwright-counterfactual-policy.d.ts +0 -7
- package/dist/lib/long-task-playwright-counterfactual-policy.js +0 -125
- package/dist/lib/long-task-playwright-evidence.d.ts +0 -8
- package/dist/lib/long-task-playwright-evidence.js +0 -147
- package/dist/lib/long-task-process-observation.d.ts +0 -6
- package/dist/lib/long-task-process-observation.js +0 -117
- package/dist/lib/long-task-process-runtime-closure.d.ts +0 -13
- package/dist/lib/long-task-process-runtime-closure.js +0 -207
- package/dist/lib/long-task-process-table.d.ts +0 -9
- package/dist/lib/long-task-process-table.js +0 -87
- package/dist/lib/long-task-process-tree.d.ts +0 -8
- package/dist/lib/long-task-process-tree.js +0 -108
- package/dist/lib/long-task-product-shape.d.ts +0 -8
- package/dist/lib/long-task-product-shape.js +0 -197
- package/dist/lib/long-task-progress.d.ts +0 -4
- package/dist/lib/long-task-progress.js +0 -120
- package/dist/lib/long-task-proof-adequacy.d.ts +0 -12
- package/dist/lib/long-task-proof-adequacy.js +0 -57
- package/dist/lib/long-task-proof-capability-floor.d.ts +0 -6
- package/dist/lib/long-task-proof-capability-floor.js +0 -137
- package/dist/lib/long-task-protected-files.d.ts +0 -1
- package/dist/lib/long-task-protected-files.js +0 -1
- package/dist/lib/long-task-repair-frontier-checks.d.ts +0 -8
- package/dist/lib/long-task-repair-frontier-checks.js +0 -93
- package/dist/lib/long-task-repair-frontier-groups.d.ts +0 -2
- package/dist/lib/long-task-repair-frontier-groups.js +0 -64
- package/dist/lib/long-task-repair-frontier-utils.d.ts +0 -6
- package/dist/lib/long-task-repair-frontier-utils.js +0 -27
- package/dist/lib/long-task-repair-frontier.d.ts +0 -14
- package/dist/lib/long-task-repair-frontier.js +0 -132
- package/dist/lib/long-task-required-proof-surfaces.d.ts +0 -2
- package/dist/lib/long-task-required-proof-surfaces.js +0 -13
- package/dist/lib/long-task-requirement-shape.d.ts +0 -2
- package/dist/lib/long-task-requirement-shape.js +0 -21
- package/dist/lib/long-task-risk-surfaces.d.ts +0 -2
- package/dist/lib/long-task-risk-surfaces.js +0 -60
- package/dist/lib/long-task-risk-types.d.ts +0 -5
- package/dist/lib/long-task-risk-types.js +0 -12
- package/dist/lib/long-task-risk.d.ts +0 -10
- package/dist/lib/long-task-risk.js +0 -186
- package/dist/lib/long-task-root-shape.d.ts +0 -5
- package/dist/lib/long-task-root-shape.js +0 -322
- package/dist/lib/long-task-runner-environment.d.ts +0 -7
- package/dist/lib/long-task-runner-environment.js +0 -57
- package/dist/lib/long-task-runner-files.d.ts +0 -3
- package/dist/lib/long-task-runner-files.js +0 -39
- package/dist/lib/long-task-runner-freeze.d.ts +0 -5
- package/dist/lib/long-task-runner-freeze.js +0 -318
- package/dist/lib/long-task-runtime-types.d.ts +0 -346
- package/dist/lib/long-task-runtime-types.js +0 -1
- package/dist/lib/long-task-scoped-binding.d.ts +0 -13
- package/dist/lib/long-task-scoped-binding.js +0 -11
- package/dist/lib/long-task-semantic-assurance-policy.d.ts +0 -4
- package/dist/lib/long-task-semantic-assurance-policy.js +0 -43
- package/dist/lib/long-task-semantic-contract-types.d.ts +0 -55
- package/dist/lib/long-task-semantic-contract-types.js +0 -1
- package/dist/lib/long-task-semantic-drift-migration.d.ts +0 -3
- package/dist/lib/long-task-semantic-drift-migration.js +0 -150
- package/dist/lib/long-task-semantic-fact-binding-types.d.ts +0 -85
- package/dist/lib/long-task-semantic-fact-binding-types.js +0 -1
- package/dist/lib/long-task-semantic-fact-closure-primitives.d.ts +0 -5
- package/dist/lib/long-task-semantic-fact-closure-primitives.js +0 -43
- package/dist/lib/long-task-semantic-fact-closure.d.ts +0 -17
- package/dist/lib/long-task-semantic-fact-closure.js +0 -79
- package/dist/lib/long-task-semantic-fact-contract-closure.d.ts +0 -4
- package/dist/lib/long-task-semantic-fact-contract-closure.js +0 -211
- package/dist/lib/long-task-semantic-fact-contract-facts.d.ts +0 -4
- package/dist/lib/long-task-semantic-fact-contract-facts.js +0 -33
- package/dist/lib/long-task-semantic-fact-contract-proofs.d.ts +0 -4
- package/dist/lib/long-task-semantic-fact-contract-proofs.js +0 -123
- package/dist/lib/long-task-semantic-fact-evidence.d.ts +0 -25
- package/dist/lib/long-task-semantic-fact-evidence.js +0 -225
- package/dist/lib/long-task-semantic-fact-input-closure.d.ts +0 -18
- package/dist/lib/long-task-semantic-fact-input-closure.js +0 -224
- package/dist/lib/long-task-semantic-fact-provenance-closure.d.ts +0 -4
- package/dist/lib/long-task-semantic-fact-provenance-closure.js +0 -140
- package/dist/lib/long-task-semantic-fact-shape.d.ts +0 -4
- package/dist/lib/long-task-semantic-fact-shape.js +0 -134
- package/dist/lib/long-task-semantic-fact-value-closure.d.ts +0 -3
- package/dist/lib/long-task-semantic-fact-value-closure.js +0 -110
- package/dist/lib/long-task-semantic-mutation.d.ts +0 -7
- package/dist/lib/long-task-semantic-mutation.js +0 -81
- package/dist/lib/long-task-semantic-proof-adequacy.d.ts +0 -2
- package/dist/lib/long-task-semantic-proof-adequacy.js +0 -19
- package/dist/lib/long-task-semantic-proof-profile.d.ts +0 -5
- package/dist/lib/long-task-semantic-proof-profile.js +0 -187
- package/dist/lib/long-task-shape-primitives.d.ts +0 -21
- package/dist/lib/long-task-shape-primitives.js +0 -121
- package/dist/lib/long-task-source-anchors.d.ts +0 -10
- package/dist/lib/long-task-source-anchors.js +0 -102
- package/dist/lib/long-task-source-authority-types.d.ts +0 -61
- package/dist/lib/long-task-source-authority-types.js +0 -1
- package/dist/lib/long-task-source-claim-validation.d.ts +0 -5
- package/dist/lib/long-task-source-claim-validation.js +0 -135
- package/dist/lib/long-task-source-conservation-facts.d.ts +0 -8
- package/dist/lib/long-task-source-conservation-facts.js +0 -57
- package/dist/lib/long-task-source-conservation-types.d.ts +0 -34
- package/dist/lib/long-task-source-conservation-types.js +0 -1
- package/dist/lib/long-task-source-conservation.d.ts +0 -7
- package/dist/lib/long-task-source-conservation.js +0 -110
- package/dist/lib/long-task-source-continuity.d.ts +0 -4
- package/dist/lib/long-task-source-continuity.js +0 -57
- package/dist/lib/long-task-source-fragments.d.ts +0 -6
- package/dist/lib/long-task-source-fragments.js +0 -219
- package/dist/lib/long-task-source-inventory.d.ts +0 -2
- package/dist/lib/long-task-source-inventory.js +0 -21
- package/dist/lib/long-task-source-item-parser.d.ts +0 -11
- package/dist/lib/long-task-source-item-parser.js +0 -108
- package/dist/lib/long-task-source-markers.d.ts +0 -12
- package/dist/lib/long-task-source-markers.js +0 -146
- package/dist/lib/long-task-source-owned-sections.d.ts +0 -29
- package/dist/lib/long-task-source-owned-sections.js +0 -90
- package/dist/lib/long-task-source-projection-resolution.d.ts +0 -5
- package/dist/lib/long-task-source-projection-resolution.js +0 -57
- package/dist/lib/long-task-source-projection-validation.d.ts +0 -17
- package/dist/lib/long-task-source-projection-validation.js +0 -154
- package/dist/lib/long-task-source-shape.d.ts +0 -2
- package/dist/lib/long-task-source-shape.js +0 -64
- package/dist/lib/long-task-source-supersession.d.ts +0 -5
- package/dist/lib/long-task-source-supersession.js +0 -138
- package/dist/lib/long-task-source-target-continuity.d.ts +0 -4
- package/dist/lib/long-task-source-target-continuity.js +0 -141
- package/dist/lib/long-task-source-target-index.d.ts +0 -15
- package/dist/lib/long-task-source-target-index.js +0 -91
- package/dist/lib/long-task-source-validation.d.ts +0 -3
- package/dist/lib/long-task-source-validation.js +0 -46
- package/dist/lib/long-task-stage-policy.d.ts +0 -9
- package/dist/lib/long-task-stage-policy.js +0 -170
- package/dist/lib/long-task-state.d.ts +0 -93
- package/dist/lib/long-task-state.js +0 -897
- package/dist/lib/long-task-static-observation-freeze.d.ts +0 -83
- package/dist/lib/long-task-static-observation-freeze.js +0 -429
- package/dist/lib/long-task-status-projection.d.ts +0 -26
- package/dist/lib/long-task-status-projection.js +0 -211
- package/dist/lib/long-task-status-v2.d.ts +0 -61
- package/dist/lib/long-task-status-v2.js +0 -363
- package/dist/lib/long-task-target-policy.d.ts +0 -11
- package/dist/lib/long-task-target-policy.js +0 -181
- package/dist/lib/long-task-technical-shape.d.ts +0 -3
- package/dist/lib/long-task-technical-shape.js +0 -44
- package/dist/lib/long-task-terminal-finalization.d.ts +0 -12
- package/dist/lib/long-task-terminal-finalization.js +0 -190
- package/dist/lib/long-task-ui-design-policy.d.ts +0 -17
- package/dist/lib/long-task-ui-design-policy.js +0 -236
- package/dist/lib/long-task-ui-surface-policy.d.ts +0 -5
- package/dist/lib/long-task-ui-surface-policy.js +0 -112
- package/dist/lib/long-task-ui-surface-shape.d.ts +0 -2
- package/dist/lib/long-task-ui-surface-shape.js +0 -402
- package/dist/lib/long-task-ui-surface-types.d.ts +0 -134
- package/dist/lib/long-task-ui-surface-types.js +0 -1
- package/dist/lib/long-task-ui-surface-validation.d.ts +0 -13
- package/dist/lib/long-task-ui-surface-validation.js +0 -62
- package/dist/lib/long-task-verification-preview.d.ts +0 -65
- package/dist/lib/long-task-verification-preview.js +0 -120
- package/dist/lib/long-task-verifier-authority.d.ts +0 -12
- package/dist/lib/long-task-verifier-authority.js +0 -49
- package/dist/lib/long-task-verifier-counterfactuals.d.ts +0 -11
- package/dist/lib/long-task-verifier-counterfactuals.js +0 -96
- package/dist/lib/long-task-verifier-dependency-closure.d.ts +0 -3
- package/dist/lib/long-task-verifier-dependency-closure.js +0 -183
- package/dist/lib/long-task-verifier-execution.d.ts +0 -9
- package/dist/lib/long-task-verifier-execution.js +0 -67
- package/dist/lib/long-task-verifier-identity.d.ts +0 -2
- package/dist/lib/long-task-verifier-identity.js +0 -66
- package/dist/lib/long-task-verifier-v2.d.ts +0 -17
- package/dist/lib/long-task-verifier-v2.js +0 -317
- package/dist/lib/long-task-windows-job-supervisor-helper.d.ts +0 -1
- package/dist/lib/long-task-windows-job-supervisor-helper.js +0 -104
- package/dist/lib/long-task-windows-job-supervisor-protocol.d.ts +0 -28
- package/dist/lib/long-task-windows-job-supervisor-protocol.js +0 -124
- package/dist/lib/long-task-windows-job-supervisor-result.d.ts +0 -11
- package/dist/lib/long-task-windows-job-supervisor-result.js +0 -152
- package/dist/lib/long-task-windows-job-supervisor.d.ts +0 -2
- package/dist/lib/long-task-windows-job-supervisor.js +0 -126
- package/dist/lib/long-task-worker-selection.d.ts +0 -2
- package/dist/lib/long-task-worker-selection.js +0 -7
- package/dist/lib/long-task-workspace-manifest.d.ts +0 -8
- package/dist/lib/long-task-workspace-manifest.js +0 -173
- package/dist/lib/long-task-workspace-runtime-types.d.ts +0 -23
- package/dist/lib/long-task-workspace-runtime-types.js +0 -1
- package/dist/lib/long-task-workspace-scope.d.ts +0 -39
- package/dist/lib/long-task-workspace-scope.js +0 -126
- package/dist/lib/long-task-workspace-snapshot.d.ts +0 -8
- package/dist/lib/long-task-workspace-snapshot.js +0 -176
- package/dist/lib/long-task-workspace.d.ts +0 -6
- package/dist/lib/long-task-workspace.js +0 -14
- package/dist/lib/modularity-capability-migration.d.ts +0 -2
- package/dist/lib/modularity-capability-migration.js +0 -165
- package/dist/lib/modularity-python.d.ts +0 -7
- package/dist/lib/modularity-python.js +0 -191
- package/dist/lib/modularity.d.ts +0 -60
- package/dist/lib/modularity.js +0 -781
- package/dist/lib/profiles.d.ts +0 -13
- package/dist/lib/profiles.js +0 -65
- package/dist/lib/semantic-fact-base-types.d.ts +0 -14
- package/dist/lib/semantic-fact-base-types.js +0 -1
- package/dist/lib/semantic-fact-catalog.d.ts +0 -8
- package/dist/lib/semantic-fact-catalog.js +0 -191
- package/dist/lib/semantic-fact-compact-authoring.d.ts +0 -2
- package/dist/lib/semantic-fact-compact-authoring.js +0 -160
- package/dist/lib/semantic-fact-compact-capacity.d.ts +0 -9
- package/dist/lib/semantic-fact-compact-capacity.js +0 -40
- package/dist/lib/semantic-fact-compact-carrier.d.ts +0 -16
- package/dist/lib/semantic-fact-compact-carrier.js +0 -146
- package/dist/lib/semantic-fact-compact-parser.d.ts +0 -17
- package/dist/lib/semantic-fact-compact-parser.js +0 -168
- package/dist/lib/semantic-fact-compact-revision.d.ts +0 -11
- package/dist/lib/semantic-fact-compact-revision.js +0 -64
- package/dist/lib/semantic-fact-compact-support.d.ts +0 -23
- package/dist/lib/semantic-fact-compact-support.js +0 -159
- package/dist/lib/semantic-fact-condition-shape.d.ts +0 -48
- package/dist/lib/semantic-fact-condition-shape.js +0 -111
- package/dist/lib/semantic-fact-input-shape.d.ts +0 -39
- package/dist/lib/semantic-fact-input-shape.js +0 -135
- package/dist/lib/semantic-fact-inventory-types.d.ts +0 -153
- package/dist/lib/semantic-fact-inventory-types.js +0 -1
- package/dist/lib/semantic-fact-manifest-shape.d.ts +0 -4
- package/dist/lib/semantic-fact-manifest-shape.js +0 -135
- package/dist/lib/semantic-fact-manifest-types.d.ts +0 -58
- package/dist/lib/semantic-fact-manifest-types.js +0 -19
- package/dist/lib/semantic-fact-policy-authority.d.ts +0 -8
- package/dist/lib/semantic-fact-policy-authority.js +0 -79
- package/dist/lib/semantic-fact-policy-census.d.ts +0 -3
- package/dist/lib/semantic-fact-policy-census.js +0 -126
- package/dist/lib/semantic-fact-policy-condition-references.d.ts +0 -7
- package/dist/lib/semantic-fact-policy-condition-references.js +0 -19
- package/dist/lib/semantic-fact-policy-conditions.d.ts +0 -2
- package/dist/lib/semantic-fact-policy-conditions.js +0 -105
- package/dist/lib/semantic-fact-policy-facts.d.ts +0 -3
- package/dist/lib/semantic-fact-policy-facts.js +0 -73
- package/dist/lib/semantic-fact-policy-primitives.d.ts +0 -26
- package/dist/lib/semantic-fact-policy-primitives.js +0 -169
- package/dist/lib/semantic-fact-policy-proofs.d.ts +0 -2
- package/dist/lib/semantic-fact-policy-proofs.js +0 -75
- package/dist/lib/semantic-fact-policy-properties.d.ts +0 -3
- package/dist/lib/semantic-fact-policy-properties.js +0 -84
- package/dist/lib/semantic-fact-policy-units.d.ts +0 -4
- package/dist/lib/semantic-fact-policy-units.js +0 -103
- package/dist/lib/semantic-fact-policy.d.ts +0 -17
- package/dist/lib/semantic-fact-policy.js +0 -41
- package/dist/lib/semantic-fact-proof-shape.d.ts +0 -51
- package/dist/lib/semantic-fact-proof-shape.js +0 -121
- package/dist/lib/semantic-fact-proof-types.d.ts +0 -74
- package/dist/lib/semantic-fact-proof-types.js +0 -1
- package/dist/lib/semantic-fact-property-shape.d.ts +0 -29
- package/dist/lib/semantic-fact-property-shape.js +0 -77
- package/dist/lib/semantic-fact-shape-constants.d.ts +0 -3
- package/dist/lib/semantic-fact-shape-constants.js +0 -38
- package/dist/lib/semantic-fact-shape-primitives.d.ts +0 -15
- package/dist/lib/semantic-fact-shape-primitives.js +0 -68
- package/dist/lib/semantic-fact-source-parser.d.ts +0 -14
- package/dist/lib/semantic-fact-source-parser.js +0 -87
- package/dist/lib/semantic-fact-support-shape.d.ts +0 -21
- package/dist/lib/semantic-fact-support-shape.js +0 -59
- package/dist/lib/semantic-fact-types.d.ts +0 -5
- package/dist/lib/semantic-fact-types.js +0 -5
- package/dist/lib/semantic-fact-unit-shape.d.ts +0 -34
- package/dist/lib/semantic-fact-unit-shape.js +0 -89
- package/dist/lib/semantic-fact-value-shape.d.ts +0 -12
- package/dist/lib/semantic-fact-value-shape.js +0 -39
- package/dist/lib/source-line-scanner.d.ts +0 -3
- package/dist/lib/source-line-scanner.js +0 -42
- package/dist/lib/stable-json.d.ts +0 -2
- package/dist/lib/stable-json.js +0 -21
- package/dist/lib/structural-closure-cost.d.ts +0 -79
- package/dist/lib/structural-closure-cost.js +0 -91
- package/dist/lib/symbolic-denotation-dag-builder.d.ts +0 -25
- package/dist/lib/symbolic-denotation-dag-builder.js +0 -176
- package/dist/lib/symbolic-denotation-domain-validation.d.ts +0 -3
- package/dist/lib/symbolic-denotation-domain-validation.js +0 -56
- package/dist/lib/symbolic-denotation-engine.d.ts +0 -32
- package/dist/lib/symbolic-denotation-engine.js +0 -140
- package/dist/lib/symbolic-denotation-public.d.ts +0 -11
- package/dist/lib/symbolic-denotation-public.js +0 -12
- package/dist/lib/symbolic-denotation-runtime.d.ts +0 -20
- package/dist/lib/symbolic-denotation-runtime.js +0 -90
- package/dist/lib/symbolic-denotation-support.d.ts +0 -11
- package/dist/lib/symbolic-denotation-support.js +0 -49
- package/dist/lib/symbolic-denotation-types.d.ts +0 -133
- package/dist/lib/symbolic-denotation-types.js +0 -18
- package/dist/lib/symbolic-denotation-validation.d.ts +0 -6
- package/dist/lib/symbolic-denotation-validation.js +0 -126
- package/dist/long-task-hook.d.ts +0 -2
- package/dist/long-task-hook.js +0 -103
- package/dist/public-api-long-task.d.ts +0 -10
- package/dist/public-api-long-task.js +0 -10
- package/dist/schemas/design-authority-delta-assessment-v1.schema.json +0 -191
- package/dist/schemas/design-resource-symbolic-noninterference-artifact-v2.schema.json +0 -289
- package/dist/schemas/design-resource-symbolic-source-ir-v1.schema.json +0 -130
- package/dist/schemas/long-task-delivery-v2/long-task-delivery-v2.schema.json +0 -2354
- package/dist/schemas/long-task-delivery-v2/long-task-outcomes-v2.schema.json +0 -18
- package/dist/schemas/long-task-external-confirmation-record-v1.schema.json +0 -155
- package/dist/schemas/long-task-external-confirmation-record-v2.schema.json +0 -209
- /package/dist/lib/{long-task-git.d.ts → git.d.ts} +0 -0
- /package/dist/lib/{long-task-git.js → git.js} +0 -0
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
# Design-System Authority Adoption
|
|
2
|
-
|
|
3
|
-
Adopt one explicitly selected Open Design result through existing Minimal Context owners. This is a reconciliation step, not a new authority lifecycle.
|
|
4
|
-
|
|
5
|
-
## Preconditions
|
|
6
|
-
|
|
7
|
-
- Selection is explicit, or the user explicitly delegated selection and the stated criteria support one defensible choice.
|
|
8
|
-
- After seeing the selected candidate's exact project diff and migration impact, the user separately and explicitly confirmed Authority adoption. Page/resource approval and system-candidate selection are insufficient.
|
|
9
|
-
- The current complete project Authority closure identity is readable and still matches the candidate base. A stale `reconcile` packet returns to DRA assessment.
|
|
10
|
-
- The exact provider design-system ID and selected revision/body are readable.
|
|
11
|
-
- `DESIGN.md`, optional sparse manifest/subordinate owners, generated token artifacts and relevant preview/workspace files have been inspected.
|
|
12
|
-
- The selected content has a stable digest or user-approved snapshot.
|
|
13
|
-
- Conflicts with product/surface Context are resolved or remain an explicit decision; provider output never silently overrides product meaning.
|
|
14
|
-
|
|
15
|
-
## Single-owner writeback
|
|
16
|
-
|
|
17
|
-
Use these owners:
|
|
18
|
-
|
|
19
|
-
- `project_context/**`: durable surface responsibility, information hierarchy, navigation, stable interaction/state, product accessibility requirements and repeatable verification entrypoints;
|
|
20
|
-
- root `DESIGN.md`: unique Authority entry/revision owner, visual principles, supported front-matter exact Token authority and the canonical body-leading `<!-- ty-context-design-authority-format: bundle-v1 -->` bundle declaration;
|
|
21
|
-
- sparse `design_system/**` subordinate owners: only real reusable component/pattern/motion/platform rules, indexed from the entry;
|
|
22
|
-
- `design_system/tokens.json`: deterministic generated DTCG output from `DESIGN.md`, never independently authored;
|
|
23
|
-
- `design_system/authority.manifest.json`: complete closure membership and digest only, never revision, direction or Token values;
|
|
24
|
-
- selected authored targets: concrete composition/condition coverage, kept as ordinary versioned project Source.
|
|
25
|
-
|
|
26
|
-
Do not copy the same fact into several owners. Open Design metadata is provenance only.
|
|
27
|
-
|
|
28
|
-
## Adoption procedure
|
|
29
|
-
|
|
30
|
-
1. Inspect the complete current closure and preserve its identity as the adoption CAS base. Read the project's `DESIGN.md` format and lint expectations. Preserve valid project-specific content unless the user explicitly authorized replacement.
|
|
31
|
-
2. Reconcile selected provider semantics against controlling Context. Provider-invented business, permission, data or algorithmic rules are excluded unless independently authorized by product Source.
|
|
32
|
-
3. Write selected system semantics and exact Token values into root `DESIGN.md`. When adopting or retaining bundle format, place the exact `<!-- ty-context-design-authority-format: bundle-v1 -->` declaration on the first non-empty Markdown body line after supported YAML front matter. Add or revise a subordinate owner only for an actual reusable durable rule; do not scaffold an empty taxonomy. Avoid style-only adjectives without implementation meaning.
|
|
33
|
-
4. Record provider provenance in a normal `DESIGN.md` section unless the format explicitly permits metadata fields. Include provider name/version, design-system ID, selected revision when applicable, selection basis, immutable source/snapshot locator and SHA-256 digest, plus the editable upstream owner/locator/update/export route. State that project files are canonical.
|
|
34
|
-
5. Update only relevant Context when durable surface/interaction/verification facts changed. Use stable surface/control/target keys to make every adopted decision-relevant target Context-reachable without duplicating the visual prose.
|
|
35
|
-
6. Deterministically project DTCG `design_system/tokens.json` from the adopted `DESIGN.md`; never hand-edit generated Token values. The read-only `ty-context design-authority tokens --from-entry` command may project while the old bundle digest is intentionally stale. Create/update the sparse manifest together with the canonical marker, without revision or Token semantics, calculate the canonical complete-closure digest and make a second current-base check immediately before writeback. A deliberate bundle-to-one-file adoption removes both marker and manifest in the same explicit Authority Revision; never leave either half orphaned.
|
|
36
|
-
7. Put concrete selected targets in project-native versioned paths selected by the user or existing convention. Never silently choose a repository directory merely because Open Design has a mutable workspace. Never overwrite an adopted selected-resource baseline in place; create a new immutable version/digest and update its owner.
|
|
37
|
-
8. Inspect the new closure and require its claimed digest, generated Tokens, links, file identities and extra-file policy to validate. Rebind affected DRA handoffs/resources to the new identity and rerun their affected preflight/representative verification.
|
|
38
|
-
9. Accept the selected provider revision if one exists, then re-read the MCP resource and compare identity/body or digest with the adopted selection.
|
|
39
|
-
10. Verify downstream project binding by creating or reading a provider project with the selected ID. Provider mismatch is synchronization drift, not evidence that project Authority is absent.
|
|
40
|
-
|
|
41
|
-
## Validation
|
|
42
|
-
|
|
43
|
-
Run the repository-owned Design Authority lint, Context validation and token generation/check paths. At minimum confirm:
|
|
44
|
-
|
|
45
|
-
- `DESIGN.md` is no longer an unconfigured starter;
|
|
46
|
-
- root `DESIGN.md` is the sole revision and editable exact-Token owner;
|
|
47
|
-
- the exact bundle marker is the first non-empty Markdown body line and exists if and only if the sparse manifest exists;
|
|
48
|
-
- generated `tokens.json` exactly matches deterministic projection;
|
|
49
|
-
- the sparse manifest contains only complete closure membership/digest and the claimed closure validates;
|
|
50
|
-
- provenance points to the selected provider ID/revision/digest;
|
|
51
|
-
- each adopted target has a readable immutable locator and a verified editable upstream/update route or an explicit manual/external-update boundary;
|
|
52
|
-
- no competing design-system authority or duplicate token owner was introduced;
|
|
53
|
-
- MCP can read the provider design system;
|
|
54
|
-
- a downstream Open Design project reports the matching `designSystemId`;
|
|
55
|
-
- candidate resources remain candidates unless independently selected.
|
|
56
|
-
- affected DRA handoffs bind the new closure identity and their current validation was rerun.
|
|
57
|
-
|
|
58
|
-
Report changed owners and validation results. Do not claim production visual acceptance from these checks.
|
package/assets/skills/design-system-authoring/references/open-design-design-system-provider.md
DELETED
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
# Open Design Design-System Provider
|
|
2
|
-
|
|
3
|
-
Use Open Design's live structured surface. Do not assume the installed version matches this compatibility note; discover first and branch on actual tool/resource schemas.
|
|
4
|
-
|
|
5
|
-
## Capability order
|
|
6
|
-
|
|
7
|
-
1. Open Design MCP resources/tools.
|
|
8
|
-
2. The same installed Open Design daemon's structured HTTP API when MCP lacks the required design-system lifecycle operation.
|
|
9
|
-
3. Open Design UI/CLI only for bootstrap, preview inspection or a capability unavailable through structured paths.
|
|
10
|
-
|
|
11
|
-
Never call a copied prompt or local imitation a provider result. Persistent MCP registration, plugin/auth changes and new disclosure paths require separate authorization.
|
|
12
|
-
|
|
13
|
-
The package-local `@google/design.md` adapter performs deterministic lint, parse/validate, export and diff only. It is not Open Design, does not generate candidates and owns no provider authentication, polling, selection or adoption.
|
|
14
|
-
|
|
15
|
-
## Current verified MCP contract
|
|
16
|
-
|
|
17
|
-
Open Design 0.15.1 exposed MCP server 0.2.0 using protocol `2025-06-18`. A live read-only smoke observed 152 concrete design-system resources through `resources/list`; `resources/read` returned their Markdown bodies. The URI families are:
|
|
18
|
-
|
|
19
|
-
- `od://design-systems/<id>/DESIGN.md` for current design-system bodies;
|
|
20
|
-
- `od://skills/<id>/SKILL.md` for functional skills;
|
|
21
|
-
- `od://focus/active` for current focus.
|
|
22
|
-
|
|
23
|
-
This version returns `-32601` for `resources/templates/list`. Treat template enumeration as optional protocol capability: use concrete `resources/list` results when present and never reject a readable design-system catalogue merely because the template-list method is absent.
|
|
24
|
-
|
|
25
|
-
Its 18 observed tools included `list_projects`, `get_project`, `create_project`, `start_run`, `get_run`, file/artifact operations and capability discovery. `create_project` accepts optional `designSystem`; verify the result through `get_project.designSystemId`. This version exposes design systems as resources but no create/update design-system MCP tool.
|
|
26
|
-
|
|
27
|
-
Feature-detect future structured methods before using the fallback. A tool name alone is insufficient: inspect its input schema and result.
|
|
28
|
-
|
|
29
|
-
## Generation fallback for Open Design 0.15.1
|
|
30
|
-
|
|
31
|
-
When MCP cannot create a design system, discover the running daemon and use its official API. Prefer install metadata supplied by Open Design rather than hardcoded paths. Confirm `/api/health` and the version first.
|
|
32
|
-
|
|
33
|
-
Start generation:
|
|
34
|
-
|
|
35
|
-
```http
|
|
36
|
-
POST /api/design-systems/generation-jobs
|
|
37
|
-
Content-Type: application/json
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
The body is the provider's current design-system input. Supported 0.15.1 fields observed in the installed provider include:
|
|
41
|
-
|
|
42
|
-
```json
|
|
43
|
-
{
|
|
44
|
-
"title": "Product design system",
|
|
45
|
-
"category": "Custom",
|
|
46
|
-
"surface": "web",
|
|
47
|
-
"summary": "Product and brand intent",
|
|
48
|
-
"sourceNotes": "Bounded design brief",
|
|
49
|
-
"provenance": {
|
|
50
|
-
"companyBlurb": "Product context",
|
|
51
|
-
"sourceUrls": [],
|
|
52
|
-
"githubUrls": [],
|
|
53
|
-
"localCodeFiles": [],
|
|
54
|
-
"figFiles": [],
|
|
55
|
-
"assetFiles": [],
|
|
56
|
-
"notes": "Selection constraints"
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
Send only relevant, user-authorized sources. Do not transmit secrets or unrelated repository content. `surface` is provider-defined; validate the live accepted value. A supplied `body` creates a direct draft and must not be misrepresented as model generation.
|
|
62
|
-
|
|
63
|
-
Poll `GET /api/design-systems/generation-jobs/<jobId>` at a bounded cadence until a terminal state. Preserve the job ID, step diagnostics and returned `designSystemId`. The observed pipeline explores resources, creates a draft, generates `DESIGN.md`/README/SKILL/tokens/previews/context files, registers files and prepares review.
|
|
64
|
-
|
|
65
|
-
## Review and revision
|
|
66
|
-
|
|
67
|
-
Read the system and inspect its assets through:
|
|
68
|
-
|
|
69
|
-
- `GET /api/design-systems/<id>`;
|
|
70
|
-
- `GET /api/design-systems/<id>/files` and `/file?path=<path>`;
|
|
71
|
-
- `GET /api/design-systems/<id>/preview` or `/showcase`;
|
|
72
|
-
- `POST /api/design-systems/<id>/workspace` when an editable review project is required.
|
|
73
|
-
|
|
74
|
-
Create scoped feedback with:
|
|
75
|
-
|
|
76
|
-
```http
|
|
77
|
-
POST /api/design-systems/<id>/revision-jobs
|
|
78
|
-
Content-Type: application/json
|
|
79
|
-
|
|
80
|
-
{"feedback":"...","sectionTitle":"optional section"}
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
Poll the returned job through the generation-job endpoint. A succeeded revision job creates a pending revision; it does not alter project authority and must not be called accepted. Inspect revisions with `GET /api/design-systems/<id>/revisions`. After explicit selection, set exactly that revision to accepted:
|
|
84
|
-
|
|
85
|
-
```http
|
|
86
|
-
PATCH /api/design-systems/<id>/revisions/<revisionId>
|
|
87
|
-
Content-Type: application/json
|
|
88
|
-
|
|
89
|
-
{"status":"accepted"}
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
Reject explicitly discarded revisions when useful. Accepting a provider revision updates the provider copy only; the authority-adoption step still owns the project writeback.
|
|
93
|
-
|
|
94
|
-
The provider also exposes `POST /api/design-systems/<id>/token-contract/rebuild-jobs`. Use it only when the live token-quality decision says a rebuild is available or the user explicitly requests a forced rebuild. A generated token contract still needs selection and project adoption.
|
|
95
|
-
|
|
96
|
-
## Provider binding for downstream resources
|
|
97
|
-
|
|
98
|
-
For a new Open Design resource project, call MCP `create_project` with the adopted provider ID in `designSystem`. Immediately call `get_project` and require `designSystemId` to match.
|
|
99
|
-
|
|
100
|
-
For an existing project, inspect `get_project` first. When it is missing or mismatched, prefer a new bounded project with the correct binding if MCP offers no safe update. Use a live structured provider update only after feature-detecting it and preserving project identity. Never proceed with a style-bearing run while silently bound to another system.
|
|
101
|
-
|
|
102
|
-
In DSA `reconcile` mode, send only the current Authority material needed for the proposed Token/component/pattern/motion/platform delta, the user-promoted non-authoritative assessment, immutable constraints, affected platforms, supporting resources and representative scenarios. Provider output remains a system candidate. It cannot emit an effective `selected`, `adopted` or `authority_updated` decision.
|
|
103
|
-
|
|
104
|
-
## Failure semantics
|
|
105
|
-
|
|
106
|
-
Keep these states separate:
|
|
107
|
-
|
|
108
|
-
- daemon/MCP execution: queued, running, succeeded, failed, cancelled or unknown;
|
|
109
|
-
- candidate artifacts: missing, partial, retrievable, rendered or corrupt;
|
|
110
|
-
- selection: unreviewed, selected, rejected or decision-required;
|
|
111
|
-
- project adoption: unchanged, partially adopted, adopted or inconsistent;
|
|
112
|
-
- provider binding: unverified, matched or mismatched.
|
|
113
|
-
|
|
114
|
-
Preserve exact errors and stop bounded polling. Do not mark a candidate selected because generation succeeded, and do not mark project authority adopted because a provider revision was accepted.
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: long-task-workflow
|
|
3
|
-
description: Author, preflight, execute, resume, verify, or close one complete Single-Goal Delivery Contract in the currently selected host execution Goal and workspace. Use only when explicitly invoked or a valid common-dir active authority binding exists.
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Single-Goal Long-Task Workflow
|
|
7
|
-
|
|
8
|
-
## Boundaries
|
|
9
|
-
|
|
10
|
-
Use one currently selected host execution Goal, one repository, one selected verification workspace, one complete Contract and one Final Gate. This workflow never creates, invokes or manages a scheduler, agent runtime, App Server, branch/worktree fan-out, merge, push, PR, deployment, legacy orchestration chain, matrix, verdict or second Contract plan. The parent Goal owns Source, Contract, Authority, architecture, Context writeback, integration, current-candidate checks, formal verification, Final Gate, close and completion. Harness never allocates, schedules, retries or recovers delegated workers; their reports are not Progress, Evidence or proof, and every result must converge into the selected verification workspace before verification counts. Never activate from task size alone.
|
|
11
|
-
|
|
12
|
-
That Goal is host/user-selected; Harness does not create, persist or reconnect a Goal identifier. Compaction may continue inside it; a later physical Goal/session restores semantic state through `resume`, not a prior Turn. With a valid binding, run `ty-context long-task resume <workdir>`, then directly load the installed `long-task-workflow` Skill; recovery needs no implicit invocation.
|
|
13
|
-
|
|
14
|
-
The host/user owns model selection. Exactly one unconditional terminal-turn checkpoint follows the first Authority Lock before implementation. Harness neither switches nor verifies the model, persists checkpoint/acknowledgement/route state, nor creates a model scheduler, automatic switch or native-Goal completion state. Do not otherwise pause a healthy Goal solely to change models.
|
|
15
|
-
|
|
16
|
-
A Codex-root `long-task` install may expose fixed package-owned `long_task_implementation` with child agents disabled. It is static, stateless, non-Authority and post-checkpoint; install proves neither selection nor effective model/reasoning/tier. Profile and spawn never set `service_tier`. Exact-call or capability failure returns a packet to the parent; never infer it, use a generic child, or add tiers/retry/scheduling.
|
|
17
|
-
|
|
18
|
-
`long-task-delivery-v2` is the active Contract schema. `delivery-contract.yaml` is the root authoring file. New authoring uses inline Outcomes; existing `outcome_files` are compatibility only. Legacy split-delivery commands are non-executing.
|
|
19
|
-
|
|
20
|
-
## Controlling Objective
|
|
21
|
-
|
|
22
|
-
Prevent false completion inside declared authority. Given complete Source, a meaning-preserving Contract projection, complete applicability and admitted machine/external authority boundaries, `AcceptedDeliveryTerminal` implies every declared obligation is fulfilled. Machine proof needs package-admitted Actual and Harness-owned comparison; unsupported proof needs a complete declared external route. Every requirement, Fact, proof obligation and independently falsifiable AC stays traceable, and every unproved item blocks.
|
|
23
|
-
|
|
24
|
-
Complete Source is not a prose or current-code ceiling. Material non-UI meaning uses the finest independently decidable standard and custom semantic Facts plus every required proof method. For selected design resources, Agent implementation, acceptance and testing fully conform to every material Fact in declared scope and conditions; formal input therefore uses complete canonical acquisition, Census, atomic Fact/proof closure and exact production-target evidence. Deliberately partial design input remains an explicitly scoped constraint or blocking unresolved input; incomplete implementation-source acquisition is blocking, and an exact target requires layout and pixel Facts for every declared condition. `UI symbolic V2 is explicit opt-in; V1 remains the default.` Non-UI symbolic admission remains out of scope; machine-observer and verifier/runner trust-boundary closure is mandatory rather than deferred Provider/P0 work. Read the Source, Contract and Evidence references for the exact V1/V2 authoring and proof rules.
|
|
25
|
-
|
|
26
|
-
Only current-final-snapshot evidence may accept. `AcceptedDeliveryTerminal` is fresh `machine_accepted` with no blocking external fulfillment or fresh `delivery_accepted` after exact current fulfillment; every other or legacy status is non-closeable. Progress is repair evidence only and never acceptance authority; external records alone never accept. Final Gate alone carries Long-Task Engineering Quality Conformance, Architecture Conformance and terminal status for the declared project-check-bound set—not overall code quality. This adds no quality Boolean, matrix, Source aspect, Claim/risk kind, Contract field, second Gate, state or Receipt, and no separate default Contract Conformance closure.
|
|
27
|
-
|
|
28
|
-
Anti-Degradation Assurance protects coverage, false-negative resistance, fail-closed Authority and final-snapshot proof before cost. Purpose replacement requires a project-owner design-purpose decision and replacement proof. `F = Implementation Freedom Boundary` leaves methods, feedback, packet decomposition and dynamic count Goal-owned within Source/Contract/safety. After the checkpoint, identify packets before profile/capacity. Each is `independently_safe`, has `positive_expected_parallel_benefit` and `bounded_input_and_output`, is `parent_integratable`, and the set is pairwise `owner_disjoint`, `path_disjoint` and `source_of_truth_disjoint`. Unless explicit user/host policy prohibits agents, make actual host calls for multiple exact workers with `agent_type: long_task_implementation`; intent is not delegation and only call or explicit capability results establish profile/capacity. Count stays dynamic.
|
|
29
|
-
|
|
30
|
-
Select one zero-start reason by the Workflow Contract's ordered first-match rule: policy prohibition -> insufficient base candidates -> disjointness conflict -> coordination cost -> actual exact-spawn capacity failure -> other exact-worker unavailability. Unknown capacity is not insufficiency. Once any exact worker starts, later profile/capacity failure is partial delegation rather than a parent-only reason: keep that worker, return the rest to the parent and report the cause; use no generic substitute or retry. A type mismatch returns its packet. Never override `service_tier` or claim unobservable inheritance. Add no development phase/method Gate, fixed count/Outcome mapping, allocator/scheduler, queue/DAG/registry/proof or persistent delegation state.
|
|
31
|
-
|
|
32
|
-
Each worker gets one self-contained packet containing its goal, allowed owners and paths, forbidden paths, relevant Source, Contract and Context references, implementation entrypoints, checks, expected return format and known dependency/integration risk. Before dispatch, the parent reads `git status --short` and `git diff --name-only` non-persistently. Workers only implement/check; truth, Authority, spawning, worktrees and acceptance remain parent-owned. `PreToolUse` denies non-exact creation and freshly checks visible profile parity; `SubagentStart` reinforces type without proving trust, effective execution or load atomicity. After return, the parent inspects the actual diff and integrates results only after comparing actual changed paths and the final working-tree diff with the union of packet envelopes. This proves path-envelope conformance, not per-line actor attribution; unexplained/overlapping/out-of-envelope/shared-owner changes block integration and Final Gate.
|
|
33
|
-
|
|
34
|
-
## Progressive Reference Loading
|
|
35
|
-
|
|
36
|
-
Read the reference for the current activity completely. These four one-level references are detailed guidance, not new artifacts, stages or authority:
|
|
37
|
-
|
|
38
|
-
- For raw, mixed, attachment-heavy, incomplete or conversation-only inputs, read [`references/source-authoring.md`](references/source-authoring.md) alongside Contract authoring. It owns Source inventory, synthesis/refinement, provenance, preference/research decisions, complete semantic input expansion, selected-resource intake and marker convergence inside the same Draft loop.
|
|
39
|
-
- Before creating or structurally revising Source markers, Outcomes, requirements, Controls, obligations, applicability, architecture boundaries, paths, Bindings, Assertions or risk, read [`references/contract-authoring.md`](references/contract-authoring.md). It owns the exact Contract projection and structural closure rules, including selected-design V1/V2 authoring.
|
|
40
|
-
- Before creating or repairing Checks, runners, Observations, proof surfaces, Counterfactuals, Population/environment probes or selected-design evidence, read [`references/evidence-design.md`](references/evidence-design.md). It owns exact execution evidence, sensitivity and Oracle boundaries.
|
|
41
|
-
- Before Preflight, Compile, the one-time model checkpoint, protected revision, resume, targeted verify, Final Gate, Stop, close or abandon, read [`references/authority-lifecycle.md`](references/authority-lifecycle.md). It owns command and lifecycle detail.
|
|
42
|
-
|
|
43
|
-
Do not copy reference detail into another Skill, plan or state file. The same `delivery-contract.yaml`, active authority and current workspace remain the only lifecycle surfaces.
|
|
44
|
-
|
|
45
|
-
## Contract Draft And Outcome Decomposition
|
|
46
|
-
|
|
47
|
-
Every external initial proposal, selected design resource, ordinary planning document or other material input enters the same non-authoritative `delivery-contract.yaml` Draft immediately. Inventory, Source-quality synthesis/refinement, provenance, markers, repository binding and Contract mapping converge in one `long-task-workflow` lifecycle and need not be completed in one response. Conversation-only material becomes exactly one project-native Markdown Source. Do not create a Source-authoring phase, standalone Contract Draft Skill, Draft Receipt, Authoring State, draft schema/CLI/runtime state, handoff or second plan.
|
|
48
|
-
|
|
49
|
-
A Draft Outcome is an Outcome before Authority Lock, not a new schema field or runtime entity. Decompose only vertical, independently observable, decidable and target-verifiable results whose dependencies and owner boundary can be stated. `depends_on` and Stage gates express acceptance and intermediate-proof readiness, never implementation permission. Do not split for response/YAML/file length, implementation layer, module/file count, Agent capacity, Worker assignment or desired parallelism.
|
|
50
|
-
|
|
51
|
-
> Outcome decomposes execution and diagnosis, not completion authority.
|
|
52
|
-
|
|
53
|
-
## Lifecycle Summary
|
|
54
|
-
|
|
55
|
-
1. Read the request, real Source, relevant Context, repository owners and selected design resources. Before formal Compile and the first implementation edit, surface one repository-bound `Architecture Deliberation`: owner/extension point/source of truth, dependencies and lifecycle, selected and rejected alternatives, future-change challenge, debt disposition, forbidden shortcuts, project-owned Checks and triggered quality attributes or concrete preservation. Put durable conclusions in owning Context and material falsifiable delivery conclusions in real marked Source plus existing Contract fields. Decide `Context Delta: none|required`.
|
|
56
|
-
2. Open the one Contract Draft immediately. When inputs need Source repair, read Source authoring and Contract authoring together; preserve at least one real `source_path`, complete all required semantic/design closure and repair every `decision_required` item without inventing product meaning.
|
|
57
|
-
3. Run read-only `ty-context long-task preflight <workdir>`, repair the same Draft, then run formal Compile only when Source, Context, Contract, repository scope and proof bindings are ready. Preflight classifies every blocking obligation as `machine_admitted`, `external_fulfillable` or `unreachable`; any unreachable row blocks before implementation. Compile creates the first Authority Lock; Preflight creates no Authority, Progress, Receipt or state.
|
|
58
|
-
4. On the first Compile result with `execution_model_checkpoint.required: true`, do no product implementation, edit, build or test; end the turn. Tell a Chinese-speaking user exactly `处理好模型更换后,请仅回复:模型切换卡点解除,继续`; in English use `After handling the model change, reply exactly: model checkpoint cleared, continue`. Generic continuation does not satisfy this managed prompt protocol. Harness observes neither the next host message nor the model change, so this is no machine unlock or attestation. Later Compile returns `required: false` without repeating the pause.
|
|
59
|
-
5. After continuation, begin Goal-owned rolling implementation and apply Delegation Suitability above. Qualifying work gets actual multiple exact `long_task_implementation` calls; otherwise record one admitted solo reason. Keep coupled work in the parent. Refresh Context Delta and Architecture Deliberation when durable scope, ownership, dependency, design, quality or debt changes.
|
|
60
|
-
6. Use targeted verification only when its expected localization value exceeds cost. If authority changes, keep the same Draft and follow protected revision; mechanically bounded repairs may auto-adopt, while semantic weakening or unknown change requires the exact user decision. Adoption returns to rolling implementation and is never completion.
|
|
61
|
-
7. Complete Context, implementation and project tests, create the clean candidate required by the lifecycle reference, then run the one source-recompiled current-snapshot Final Gate. Stop/close and any native Goal completion remain subject to the exact lifecycle and veto rules in the Authority reference.
|
|
62
|
-
|
|
63
|
-
## Rolling Execution
|
|
64
|
-
|
|
65
|
-
Apply packet-first above. Outcomes/Stages govern acceptance, not edits; coherent-owner packets may cross them. Parent retains Authority, packet selection, Context, integration and verification; proof-bearing changes converge into the selected verification workspace.
|
|
66
|
-
|
|
67
|
-
Status/resume frontiers and the Finding-derived Repair Frontier are non-persisted diagnostic projections only; they never accept, schedule or authorize protected semantic changes. Use `verify --explain [--outcome/--check]` for a read-only cost preview and targeted `verify --outcome/--check` for optional feedback. `progress_stale` is a freshness fact; refresh only before an intermediate decision relies on it. Final Gate ignores Progress and reruns all required Checks. Add no model-switch pause, trigger queue, implementation gate, per-edit rebuild rule or per-platform progress state.
|
|
68
|
-
|
|
69
|
-
When implementation discovers a blocker, classify it under the existing protected-revision rules. Difficulty or delay never makes machine-verifiable scope external and never removes Source. Keep exact revision identity, old-Authority continuity, compare-and-swap adoption, evidence invalidation and the complete Final Gate; use the lifecycle reference for diagnosis, decision transport, approval and adoption.
|
|
70
|
-
|
|
71
|
-
## Final Authority And Handoff
|
|
72
|
-
|
|
73
|
-
Final Gate recompiles Source authority, rechecks the complete protected current snapshot, reruns every declared Check/control, revalidates exact current external records and rejects protected-input, workspace/tree or Active Authority drift. It trusts no historical result, cache, record, delegated report or Agent judgment. Use external commands only through the lifecycle reference. Before native Goal completion, perform its veto-only user/Goal-to-Source comparison; mismatch returns to Source/Contract repair without creating proof.
|
|
74
|
-
|
|
75
|
-
Report implementation/risk, conformance, Claim/Stage/target/Gate results, exact terminal status, acceptance scope, external evaluations, Context and blockers. Keep verifier boundaries honest: incomplete Source and unsound Oracles are not mechanically repaired; local actor checks are not authentication; the host owns Goal/model; worker reports never accept. The observer remains Level 3; `observed_lifecycle_*` cannot replace complete total-cost ROI or the independent Level 4 audit.
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
interface:
|
|
2
|
-
display_name: "Long-Task Workflow"
|
|
3
|
-
short_description: "Run one Delivery Contract in the current native Goal"
|
|
4
|
-
default_prompt: "Use $long-task-workflow for one Canonical Delivery Contract. After the first-Authority-Lock checkpoint, identify qualifying bounded packets before profile/capacity; absent an explicit policy prohibition, make actual calls for multiple exact long_task_implementation workers and let host results determine zero-start or partial fallback. Never infer unavailability, use a generic substitute or fix the count. Keep Source, Contract, Authority, architecture, Context, packet selection, integration and formal verification in the parent Goal."
|
|
5
|
-
policy:
|
|
6
|
-
allow_implicit_invocation: false
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
# Authority Lifecycle Reference
|
|
2
|
-
|
|
3
|
-
Read this before Preflight, Compile, revision, resume, targeted verify, Final Gate, Stop, close or abandon.
|
|
4
|
-
|
|
5
|
-
## Preflight And Compile
|
|
6
|
-
|
|
7
|
-
Run `ty-context long-task preflight <workdir>` before first formal Compile. Resolve every `error` and `decision_required` diagnostic and review warnings. Preflight is read-only: it creates no Active Authority, initial base, marker, cache, Progress, Receipt or pending revision, runs no project Check and persists no success record.
|
|
8
|
-
|
|
9
|
-
Preflight and Compile call the same activation-safety validator. Skipping Preflight bypasses no closed-grammar Source/background continuity, semantic-manifest input/Census/family/unit/relation/population/condition/property/Fact/proof set closure, architecture Source obligation, Control field/relation closure, atomic applicability dimensions, criterion, Claim/all-of-surface, Population universe binding, Stage closure/cross-surface gate, required-target/root/capability/runner binding, scenario/journey separation, capability adequacy, typed external impact, per-Fact semantic proof binding, per-method selected-design artifact binding, bounded Product Conformance, adapter/Observation, risk, owner/path/Binding, recursively frozen verifier dependencies, narrow semantic Counterfactual/liveness or sensitivity rule.
|
|
10
|
-
|
|
11
|
-
The same workspace classifier also runs before activation and during verification. Before first lock it classifies `HEAD`-relative current paths; later it classifies immutable-`initial_task_base` changes. Protected authority, declared expected change and allowed support remain distinct from forbidden or unclassified paths, which block activation. During first enable, protection covers only exact files present in the current package asset tree for configured managed destinations plus the exact harness config/hook files; managed directory roots and broad `.codex/**` are never implicitly allowed.
|
|
12
|
-
|
|
13
|
-
Preflight keeps every independently discovered diagnostic. When a structural duplicate makes the same Claim ambiguous or repeated, only that pair receives stable `diagnostic_id`, `repair_group`, `repair_priority` and `blocked_by` metadata so the structural blocker is repaired first. Independent findings keep their compact existing shape; no finding is hidden, reclassified or treated as resolved, and no repair state or authority is created.
|
|
14
|
-
|
|
15
|
-
The first successful `ty-context long-task compile <workdir>` is Authority Lock and freezes the immutable initial base and complete compiled authority snapshot in Git common-dir, bound to the worktree marker by task id, revision and compiled identity.
|
|
16
|
-
|
|
17
|
-
Its JSON result includes `execution_model_checkpoint.required: true`, `action: change_model_in_host_then_continue`, `resume_token: model checkpoint cleared, continue`, `generic_continue_satisfies: false`, `turn_boundary: end_current_turn`, the blocked implementation actions and explicit model non-observability. Always do no product implementation, file edit, build or test after that result, even when an earlier message stated a model strategy. End the turn and tell a Chinese-speaking user exactly `处理好模型更换后,请仅回复:模型切换卡点解除,继续`; use `After handling the model change, reply exactly: model checkpoint cleared, continue` in English. Do not accept a generic continuation under this package-managed prompt protocol. Harness cannot observe the next host message or verify the host model change, and the continuation is neither a machine-enforced unlock nor an acknowledgement record. Later Compile revisions return `required: false`; no checkpoint file, acknowledgement state, model route or automatic model switch is created.
|
|
18
|
-
|
|
19
|
-
The optional Codex `long_task_implementation` custom agent is available only as a post-checkpoint rolling implementation affordance. Its fixed package-owned configuration is not a checkpoint option and cannot acknowledge, satisfy or replace the host boundary. It writes no workflow state and owns no Source, Contract, Authority, Context writeback, Progress, Evidence, Receipt or Final Gate; if the exact profile selector or Codex custom-agent support is unavailable, the parent Goal continues directly without a generic substitute and formal acceptance is unchanged. The main Skill owns the complete Delegation Suitability and parent/worker policy.
|
|
20
|
-
|
|
21
|
-
## Protected Revision
|
|
22
|
-
|
|
23
|
-
After Authority Lock, every candidate compares against active authority. `authority_changed` does not by itself mean `user_decision_required`:
|
|
24
|
-
|
|
25
|
-
1. proven monotonic evidence strengthening—including added capabilities while preserving every existing Assertion meaning—and proven tightening auto-revise;
|
|
26
|
-
2. mechanically bounded repair may auto-revise when compiled user-facing meaning and proof obligations stay fixed: raw Source/Context snapshot updates with unchanged Claims/targets, operational Runner or verification-input repair, risk strengthening and machine-proven equivalent Counterfactual Claim/assertion-failure coverage;
|
|
27
|
-
3. repo-bound owner/expected-change/allowed-support or Binding-carrier expansion may auto-revise; `diagnose-revision` may exercise existing active Check identities without creating state before final Compile; or
|
|
28
|
-
4. Product/Source Claim/target/external-confirmation change, lost scenario/Claim/Evidence Capability/failure interception, forbidden or owner-Context removal, runner type/effect change, verifier-kernel change and every unknown reason fails closed for the exact revision identity and is never candidate-executed.
|
|
29
|
-
|
|
30
|
-
Automatic adoption never means “unprotected”: exact identity, active-Authority compare-and-swap, affected-evidence invalidation and the complete source-recompiled Final Gate remain mandatory. Risk downgrade is still rejected.
|
|
31
|
-
|
|
32
|
-
`diagnose-revision` recompiles the same `delivery-contract.yaml` in memory, creates only a disposable workspace snapshot when class 2 is proven, and returns transient repair results with `acceptance_authorized: false`. It writes no pending/approval state, authority/marker, cache, Progress or Receipt. Repeated edits therefore accumulate only in the one existing Contract authoring file, not a pending Draft authority or candidate state plane.
|
|
33
|
-
|
|
34
|
-
Ordinary `compile --revise` is the only operation that may create the one pending decision. It binds a deterministic concise change summary into the revision identity and distinguishes `user_decision_reasons` from `mechanically_bounded_reasons`. Compile/status/resume derive the same self-contained `decision_brief` from that canonical summary. The brief explains what Authority Revision is, why this one needs a decision, material changes, affected Outcomes, previous-Authority/reject behavior, the no-completion effect and mandatory Final Gate.
|
|
35
|
-
|
|
36
|
-
Present that brief before asking for the exact identity. First compare every listed decision reason with explicit instructions in the current task: if one task-specific instruction already covers all of them exactly, mechanically relay that existing user decision through the exact approval command without asking again. This is decision transport, not Agent approval. A generic continue/resume/finish, blanket “approve later revisions”, recommendation, partial coverage or Agent inference never qualifies. The executing Agent never originates its own weakening decision.
|
|
37
|
-
|
|
38
|
-
During repair, use stateless diagnosis and ordinary edits; do not invoke decision-producing Compile for intermediate candidates. Withdrawn or replaced identities therefore generate no question. When the final blocking candidate is stable, ask at most once. If it later changes, its identity changes and any old approval is rejected. No instruction ledger, standing approval or candidate state is created.
|
|
39
|
-
|
|
40
|
-
The previous Authority remains active until exact approval and compare-and-swap adoption. Adoption reports `delivery_completed_by_this_event: false`, invalidates affected evidence and returns to rolling implementation or repair under the revised Authority; the complete source-recompiled Final Gate remains mandatory.
|
|
41
|
-
|
|
42
|
-
Every path-bearing field uses canonical grammar. Internal `.`/`..`, control characters, empty segments, absolute/drive/UNC paths and unsupported glob syntax fail closed.
|
|
43
|
-
|
|
44
|
-
Controlling Context includes core Context, explicit `context_refs`, verification/deployment Context and every selected Context file. `context_snapshot_mode: full` is mandatory; legacy referenced-mode Contracts require semantic migration rather than silently retaining a partial authority snapshot.
|
|
45
|
-
|
|
46
|
-
A selected design target, its exact/constraint interpretation, an authored token source or any applicable Control semantic is product/verification authority, not generated evidence. External design resources are ordinary Context-reachable Source: a candidate or unresolved selection cannot authorize fidelity work, while a selected exact target still requires downstream UI Authority Closure, stable key, readable immutable identity/digest, declared Fact universe, editable upstream/update route and Contract adoption. Open every affected exact target/constraint during authoring and repair; a registry mention alone is not consumption. Adding or changing its selected resource, selection basis, immutable identity, condition/variation/property/Fact/proof universe, expected located digest, comparator/tolerance/mask, Oracle/environment, sensitivity policy or acceptance-affecting token/prototype fixture after Authority Lock follows Authority Revision and returns to rolling implementation. Never silently overwrite an adopted baseline; a candidate/planned target, implementation screenshot or historical diff cannot authorize fidelity work or preserve affected Progress by itself.
|
|
47
|
-
|
|
48
|
-
`context.toml` retrieval guidance (`triggers`, `read_when`, `read_policy`, default selection and unselected nodes) is excluded from the selected delivery-authority projection. Selected area ownership, role/dependency structure and selected Context contents remain protected revision material. Retrieval-only edits may preserve scoped Progress, but a changed final Git tree still invalidates historical final acceptance and must pass the Live Final Gate again.
|
|
49
|
-
|
|
50
|
-
## Targeted Verification And Recovery
|
|
51
|
-
|
|
52
|
-
Implementation remains parent-Goal-owned throughout rolling execution. Apply the complete suitability and worker policy in the main Skill; Harness allocates and records no worker. Delegated reports are not Progress, Evidence or proof, and every proof-bearing result must converge into the selected verification workspace. Stage/Outcome readiness, `progress_stale` and targeted feedback never become agent allocation, edit permission, a method Gate or a scheduler.
|
|
53
|
-
|
|
54
|
-
`verify --explain [--outcome/--check]` is a read-only execution preview. It groups declared Main Raw Executions, lists applicable Counterfactual runner invocations and bounded declared retry-attempt counts, but runs no command, writes no Progress, predicts no duration/internal subprocess count and creates no proof.
|
|
55
|
-
|
|
56
|
-
Before an expensive first targeted run, use the preview to review selected Check count, deduplicated Main executions, Counterfactual mutations and retry bounds. If the expanded plan reveals an obsolete carrier, unnecessarily broad invalidation surface or repeated expensive runner, repair the same Contract Draft/Authority through the normal revision path. The preview cannot see build systems or subprocesses hidden inside a project runner.
|
|
57
|
-
|
|
58
|
-
`verify --outcome/--check` runs scoped current-snapshot checks for repair and rechecks active identity before writing Progress. A Counterfactual finding is projected into the owning Main Check, changes an otherwise passed Check to `invalid_evidence`, clears Claim proofs and remains recoverable through `status`/`resume`. Global Checks use the same record without a new Global Outcome state.
|
|
59
|
-
|
|
60
|
-
For a declared target-runtime Check, the earliest useful runnable boundary and later coalesced relevant changes are recommended targeted-feedback points only when their expected localization value exceeds cost. The owning Outcome binds proof; it does not gate implementation order. `progress_stale` is a fact about evidence freshness, not an immediate execution instruction. Refresh the declared Check only before an intermediate decision relies on its Progress. Continuing implementation and entering Final Gate require no targeted refresh because Final Gate ignores Progress and reruns all Checks. Do not create a per-edit/per-Outcome rebuild rule, implementation gate, trigger queue or platform state. These runs remain `acceptance_authorized: false`.
|
|
61
|
-
|
|
62
|
-
Do not add a second executing `diagnose-check` mode merely to avoid Progress: it would still pay the project runner's cost and create a competing execution path. Use project-owned fast feedback while editing, the read-only preview for declared cost shape, targeted verify at a useful stability boundary and the complete Final Gate for acceptance.
|
|
63
|
-
|
|
64
|
-
Progress freshness binds Outcome authority, applicability, runner, verification inputs, Controlling Context and implementation inputs. Retry defaults to none; one retry is allowed only for explicit `transient_once`, idempotent, read-only/test-sandbox work.
|
|
65
|
-
|
|
66
|
-
Status, Progress, Receipts and workdir compiled output are audit/recovery projections only. Development-period authority state is `manual_required` and never migrated.
|
|
67
|
-
|
|
68
|
-
Report their exact meaning: `progress_passing` is current targeted repair evidence rather than “Outcome complete”; `progress_stale` is a freshness fact rather than a current pass or immediate rerun command; `final_workflow_status: null` means the Goal is unfinished. `status`/`resume` derive `ready_stages`, `ready_outcomes`, Stage status, live external-record evaluations and a non-persisted diagnostic Repair Frontier from current findings/bindings/Progress; they do not persist a Stage pass, repair queue or scheduler state. `target_state` remains `not_accepted` until a fresh Final Gate accepts, becomes `blocked_external` for a pending target blocker, or names the Contract's `implementation_complete`, `target_profile_usable` or `production_release_ready` state after `machine_accepted` or `delivery_accepted`. Do not invent per-platform progress/status.
|
|
69
|
-
|
|
70
|
-
## Final Gate And Terminal Paths
|
|
71
|
-
|
|
72
|
-
Final Gate is the sole Long-Task `Engineering Quality Conformance`/`Architecture Conformance` carrier; no parallel default conformance carrier runs for an active Long-Task.
|
|
73
|
-
|
|
74
|
-
Before Final Gate, complete Context/code/tests and create a clean candidate commit. Final Gate first verifies the accepted compiled authority is still fresh, recompiles Source authority and records semantic plus raw protected-input identity for the Contract/fragments, Source-embedded semantic manifest, every Source file, full Controlling Context, verifier/runner, recursively frozen local verifier dependencies, `verification_inputs`, workdir inputs and external state. It validates the common-dir record/marker, creates one Git-tree snapshot and runs every Check and sensitivity control exactly once. Non-UI semantic evidence reproduces every compiled machine Fact × method expectation; selected-design evidence reproduces its exact admitted result universe. Blocking External Record v2 validation includes schema/content hash, protected Source-bound Ed25519 identity, current challenge and signature, exact actor/target/environment/applicability/obligation/result-kind sets, whole-candidate identity, immutable artifact snapshots, objective comparator or Source-backed judgment and passed per-obligation results. Ed25519 proves possession of the bound key, not real-world identity beyond that binding.
|
|
75
|
-
|
|
76
|
-
After the long execution phase, Final Gate enters one short `withActiveAuthorityLock("finalize")` phase and does not rerun machine Checks. It re-reads Active Authority and CAS identity, candidate HEAD/tree/workspace fingerprint, compiled/verifier freshness, every external record/challenge/signature/artifact/evaluation and the complete `FinalizationIdentityV1`. `finalizeDeliveryGateCas` compares that identity, binds `finalization_identity_sha256` into Receipt v3 and publishes atomically. `final-gate` uses `close_on_accept=false`; Stop/close use `true`, so an accepted Receipt and Authority cleanup commit together, while a blocked/failed result keeps Authority. Any candidate, Authority, record, challenge, signature or artifact race is non-accepted, preserves Authority and cannot leave a fresh accepted Receipt. Final Gate remains the sole Engineering Quality/Architecture Conformance, semantic, selected-design and terminal carrier; it proves only its declared project-check-bound set, not overall code quality. Receipt v3 reports `machine_accepted`, `delivery_accepted`, `blocked_external` or `needs_work`; historical v3 Receipts without the Finalization Identity are audit-readable and stale.
|
|
77
|
-
|
|
78
|
-
Use exactly `ty-context long-task external prepare <workdir> [--confirmation <key>]`, `external submit <workdir> --confirmation <key> --record <path>`, `external status <workdir>`, `external rotate <workdir> --confirmation <key>` and `external revoke <workdir> --confirmation <key>`. Preparation creates or reuses the current challenge, emits the exact whole-candidate signable packet and may batch only compatible actor/target/environment/journey/evidence rows without merging logical obligation identity. Submit validates Authority/freshness, v2 schema, candidate, challenge, actor, detached Ed25519 signature, exact obligation/result-kind set, immutable artifact snapshots and comparator before atomic storage. Status re-evaluates identity/signature/challenge/artifact integrity; rotate changes the challenge; revoke removes the named record and rotates its challenge. None runs a Gate or accepts a delivery, and Harness never reads the actor's private key or signs v2 records.
|
|
79
|
-
|
|
80
|
-
Authority commit/migration, external submit/rotate/revoke, finalization, clear and abandon share the applicable active-state integrity/lock boundary. Stop/close rerun the Live Final Gate and clear only the identity accepted in that same Finalization CAS as `machine_accepted` or `delivery_accepted`. `blocked_external`, `needs_work`, Record v1, declared-only identity and legacy `machine_accepted_external_pending` never clear or close. Final Gate/Stop/close identify `acceptance_scope: declared_delivery_authority` and `native_goal_effect: none`; close additionally identifies `closed_scope: complete_long_task_authority`. The Stop Hook emits the same scope as one non-blocking message for either accepted terminal. A stale Receipt exposes no accepted workflow status.
|
|
81
|
-
|
|
82
|
-
Before platform-native Goal completion, compare current Goal/user meaning with accepted marked Source and check for a pending revision, unresolved blocker or omitted requirement. This review may only veto completion and direct Source/Contract repair; it is not a second acceptance Gate and cannot create proof.
|
|
83
|
-
|
|
84
|
-
For invalid, mismatched, unrecoverable or stale-lock continuity, use only `ty-context long-task abandon <workdir> --force-corrupt-state`; it preserves authored Contract, Source, Context and Git content.
|
|
85
|
-
|
|
86
|
-
An older `long-task-delivery-v2` Contract that lacks the Source `semantic-fact-manifest-v1`, root manifest identity, exact Outcome Fact/proof bindings, typed per-Fact results, Stage, required-target capabilities, full Context mode, atomic applicability dimensions, scenario, journey, success/degradation, Population universe binding, Control-relation applicability, per-method design record/primary-observation artifacts, canonical design `fact_expectations`, blocker-required capabilities, narrow semantic witnesses or typed external-impact fields is a manual migration. A missing `completion_authority` alone deterministically defaults to `machine_only`; migration never infers `declared_authorities`. Exact unchanged Fragment projections may be preserved, but changed or missing projections receive current refs/digests plus `decision_required`, no inferred Fact/support/polarity/supersession/exclusion, and stale anchors/provenance are removed. Every blocking external route must be re-authored from Source with actor Ed25519 identity assurance/public-key authority, exact target/environment/scenario/evidence/obligations and Source-backed judgment basis where applicable; migration never generates a signature. Record v1, Receipt v2 and Receipt v3 without `finalization_identity_sha256` remain audit-readable only and cannot be upgraded into acceptance. Run `upgrade --check`, repair every `manual_required` item, recompile and rerun the current Final Gate. Reclassify every Check path explicitly: implementation/runtime material belongs in `input_paths`, `expected_output_paths` or `artifact_globs`; Oracle/config/data inputs belong in `verification_inputs`. Supported direct-literal local Oracle dependencies are frozen recursively, while non-literal loaders fail closed and indirect runtime access remains declared Oracle TCB.
|