@mnstry/atelier 0.2.0-alpha.5 → 0.2.0-alpha.8
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/CHANGELOG.md +191 -0
- package/README.md +86 -25
- package/SECURITY.md +6 -1
- package/contracts/atelier-adoption-policy.v1.schema.json +49 -0
- package/contracts/atelier-coauthor.v1.schema.json +163 -0
- package/contracts/atelier-decision-request.v1.schema.json +476 -0
- package/contracts/atelier-decision-result.v1.schema.json +500 -0
- package/contracts/atelier-guide.v1.schema.json +227 -0
- package/contracts/atelier-intake.v1.schema.json +151 -0
- package/contracts/atelier-migration.v2.schema.json +61 -0
- package/contracts/atelier-obsidian-acceptance-receipt.v1.schema.json +211 -0
- package/contracts/atelier-obsidian-apply-policy.v1.schema.json +298 -0
- package/contracts/atelier-obsidian-corpus-profile.v1.schema.json +98 -0
- package/contracts/atelier-obsidian-edit-operation.v1.schema.json +138 -0
- package/contracts/atelier-obsidian-ext-settings.v1.schema.json +287 -0
- package/contracts/atelier-obsidian-generation-manifest.v1.schema.json +353 -0
- package/contracts/atelier-obsidian-proposal-receipt.v1.schema.json +110 -0
- package/contracts/atelier-obsidian-publication-journal.v1.schema.json +167 -0
- package/contracts/atelier-obsidian-scope.v1.schema.json +264 -0
- package/contracts/atelier-obsidian-service-state.v1.schema.json +149 -0
- package/contracts/atelier-obsidian-source-snapshot.v1.schema.json +179 -0
- package/contracts/atelier-pane-presentation.v1.schema.json +76 -0
- package/contracts/atelier-presentation.v1.schema.json +1293 -0
- package/contracts/atelier-repository-observation.v1.schema.json +163 -0
- package/contracts/atelier-review.v1.schema.json +1601 -0
- package/contracts/atelier-skill-steward.v1.schema.json +692 -0
- package/contracts/atelier-upgrade-plan.v2.schema.json +398 -0
- package/contracts/atelier-upgrade-receipt.v1.schema.json +99 -0
- package/contracts/atelier-vault-publication.v1.schema.json +58 -0
- package/docs/assurance-controls.md +12 -2
- package/docs/atelier-runtime.md +13 -2
- package/docs/atelier-sync.md +172 -0
- package/docs/blocks/claims.md +28 -18
- package/docs/blocks/will-not-do.md +12 -3
- package/docs/coauthor-session.md +57 -0
- package/docs/connected-composition.md +75 -0
- package/docs/decisions.md +167 -0
- package/docs/exact-upgrades.md +159 -0
- package/docs/extension-pack-lifecycle.md +33 -0
- package/docs/guided-upgrades.md +99 -0
- package/docs/install.md +65 -9
- package/docs/intake-and-guides.md +65 -0
- package/docs/integration-and-review-plan.md +409 -0
- package/docs/integration-contract-decisions.md +22 -0
- package/docs/local-review.md +84 -0
- package/docs/local-services.md +227 -0
- package/docs/local-state.md +107 -0
- package/docs/obsidian-contract.md +687 -0
- package/docs/obsidian.md +387 -0
- package/docs/portable-presentation.md +328 -0
- package/docs/presentation-consumer-boundaries.md +75 -0
- package/docs/presentation-review-disposition.md +47 -0
- package/docs/project-command-inventory.md +38 -0
- package/docs/project-options.md +53 -0
- package/docs/release-engineering.md +99 -2
- package/docs/review-portability.md +55 -0
- package/docs/skill-steward.md +156 -0
- package/docs/upgrade.md +70 -2
- package/docs/vault-service.md +292 -0
- package/fixtures/atelier-coauthor/invalid/authority.v1.json +5 -0
- package/fixtures/atelier-coauthor/valid/config.v1.json +12 -0
- package/fixtures/atelier-guide/invalid/authority.v1.json +11 -0
- package/fixtures/atelier-guide/valid/capability.v1.json +10 -0
- package/fixtures/atelier-guide/valid/consent.v1.json +11 -0
- package/fixtures/atelier-guide/valid/engagement.v1.json +7 -0
- package/fixtures/atelier-guide/valid/offer.v1.json +10 -0
- package/fixtures/atelier-intake/invalid/authority.v1.json +9 -0
- package/fixtures/atelier-intake/valid/attempt.v1.json +8 -0
- package/fixtures/atelier-intake/valid/completion.v1.json +9 -0
- package/fixtures/atelier-intake/valid/source.v1.json +7 -0
- package/fixtures/atelier-repository-observation/invalid/complete-with-blocker.v1.json +18 -0
- package/fixtures/atelier-repository-observation/valid/complete-local.v1.json +48 -0
- package/fixtures/atelier-review/invalid/authenticated-identity.v1.json +22 -0
- package/fixtures/atelier-review/valid/bound.v1.json +229 -0
- package/fixtures/atelier-review/valid/bundle.v1.json +267 -0
- package/fixtures/atelier-review/valid/contribution.v1.json +22 -0
- package/fixtures/atelier-review/valid/lifecycle.v1.json +14 -0
- package/fixtures/atelier-skill-steward/audit/invalid/source-mutation.v1.json +26 -0
- package/fixtures/atelier-skill-steward/audit/valid/clean.v1.json +26 -0
- package/fixtures/atelier-skill-steward/candidates/invalid/workflow-key.v1.json +37 -0
- package/fixtures/atelier-skill-steward/candidates/valid/create.v1.json +37 -0
- package/fixtures/atelier-skill-steward/lock/invalid/bad-digest.v1.json +18 -0
- package/fixtures/atelier-skill-steward/lock/valid/installed.v1.json +23 -0
- package/fixtures/atelier-skill-steward/plan/invalid/delete-action.v1.json +33 -0
- package/fixtures/atelier-skill-steward/plan/valid/add.v1.json +33 -0
- package/fixtures/atelier-upgrade-transaction/adoption-policy/invalid/example.json +12 -0
- package/fixtures/atelier-upgrade-transaction/adoption-policy/valid/example.json +11 -0
- package/fixtures/atelier-upgrade-transaction/migration/invalid/example.json +20 -0
- package/fixtures/atelier-upgrade-transaction/migration/valid/example.json +19 -0
- package/fixtures/atelier-upgrade-transaction/upgrade-plan/invalid/example.json +58 -0
- package/fixtures/atelier-upgrade-transaction/upgrade-plan/valid/example.json +57 -0
- package/fixtures/atelier-upgrade-transaction/upgrade-receipt/invalid/example.json +15 -0
- package/fixtures/atelier-upgrade-transaction/upgrade-receipt/valid/example.json +14 -0
- package/fixtures/atelier-vault-publication/invalid/publication.json +5 -0
- package/fixtures/atelier-vault-publication/valid/publication.json +11 -0
- package/fixtures/decisions/request/invalid/unknown-authority.v1.json +61 -0
- package/fixtures/decisions/request/valid/triage.v1.json +60 -0
- package/fixtures/decisions/result/invalid/execution-authority.v1.json +50 -0
- package/fixtures/decisions/result/valid/abstained.v1.json +23 -0
- package/fixtures/decisions/result/valid/assessed.v1.json +50 -0
- package/fixtures/obsidian/acceptance/ap05-extra-notes.json +14 -0
- package/fixtures/obsidian/acceptance/receipts/G07.valid.v1.json +63 -0
- package/fixtures/obsidian/acceptance/receipts/G13.valid.v1.json +69 -0
- package/fixtures/obsidian/acceptance/receipts/G14.valid.v1.json +62 -0
- package/fixtures/obsidian/acceptance/receipts/G15.valid.v1.json +56 -0
- package/fixtures/obsidian/acceptance/receipts/G16.valid.v1.json +73 -0
- package/fixtures/obsidian/acceptance/receipts/G17.valid.v1.json +75 -0
- package/fixtures/obsidian/acceptance/receipts/G18.valid.v1.json +64 -0
- package/fixtures/obsidian/acceptance/service-sentinels.json +10 -0
- package/fixtures/obsidian/contracts/acceptance-receipt/invalid/duplicate-evidence-name.v1.json +39 -0
- package/fixtures/obsidian/contracts/acceptance-receipt/invalid/evidence-by-absolute-path.v1.json +34 -0
- package/fixtures/obsidian/contracts/acceptance-receipt/invalid/missing-candidate-tree.v1.json +33 -0
- package/fixtures/obsidian/contracts/acceptance-receipt/invalid/no-evidence.v1.json +28 -0
- package/fixtures/obsidian/contracts/acceptance-receipt/invalid/unknown-outcome.v1.json +34 -0
- package/fixtures/obsidian/contracts/acceptance-receipt/invalid/unknown-top-level-field.v1.json +35 -0
- package/fixtures/obsidian/contracts/acceptance-receipt/valid/node-gate.v1.json +34 -0
- package/fixtures/obsidian/contracts/apply-policy/invalid/automatic-without-edit-class.v1.json +27 -0
- package/fixtures/obsidian/contracts/apply-policy/invalid/conflict-overwrite.v1.json +29 -0
- package/fixtures/obsidian/contracts/apply-policy/invalid/missing-policy-digest.v1.json +28 -0
- package/fixtures/obsidian/contracts/apply-policy/invalid/unbounded-batch.v1.json +29 -0
- package/fixtures/obsidian/contracts/apply-policy/invalid/unimplemented-edit-class.v1.json +30 -0
- package/fixtures/obsidian/contracts/apply-policy/invalid/unknown-mode.v1.json +29 -0
- package/fixtures/obsidian/contracts/apply-policy/invalid/unknown-selector-operator.v1.json +22 -0
- package/fixtures/obsidian/contracts/apply-policy/invalid/unknown-top-level-field.v1.json +30 -0
- package/fixtures/obsidian/contracts/apply-policy/valid/automatic-scoped.v1.json +29 -0
- package/fixtures/obsidian/contracts/apply-policy/valid/manual-default.v1.json +20 -0
- package/fixtures/obsidian/contracts/corpus-profile/invalid/absolute-path-in-ext.v1.json +30 -0
- package/fixtures/obsidian/contracts/corpus-profile/invalid/absolute-repository-root.v1.json +27 -0
- package/fixtures/obsidian/contracts/corpus-profile/invalid/duplicate-repository-id.v1.json +27 -0
- package/fixtures/obsidian/contracts/corpus-profile/invalid/overlapping-managed-roots.v1.json +27 -0
- package/fixtures/obsidian/contracts/corpus-profile/invalid/unknown-enrollment.v1.json +27 -0
- package/fixtures/obsidian/contracts/corpus-profile/invalid/unknown-top-level-field.v1.json +28 -0
- package/fixtures/obsidian/contracts/corpus-profile/valid/three-repositories.v1.json +27 -0
- package/fixtures/obsidian/contracts/edit-operation/invalid/absolute-recovery-ref.v1.json +21 -0
- package/fixtures/obsidian/contracts/edit-operation/invalid/inline-observed-bytes.v1.json +22 -0
- package/fixtures/obsidian/contracts/edit-operation/invalid/missing-base-digest.v1.json +20 -0
- package/fixtures/obsidian/contracts/edit-operation/invalid/short-idempotency-key.v1.json +21 -0
- package/fixtures/obsidian/contracts/edit-operation/invalid/unknown-kind.v1.json +21 -0
- package/fixtures/obsidian/contracts/edit-operation/valid/pending-body-replacement.v1.json +21 -0
- package/fixtures/obsidian/contracts/ext-settings/invalid/absolute-path-prefix.v1.json +28 -0
- package/fixtures/obsidian/contracts/ext-settings/invalid/apply-policy-in-portable-settings.v1.json +30 -0
- package/fixtures/obsidian/contracts/ext-settings/invalid/duplicate-scope-id.v1.json +27 -0
- package/fixtures/obsidian/contracts/ext-settings/invalid/machine-local-vault-path.v1.json +28 -0
- package/fixtures/obsidian/contracts/ext-settings/invalid/service-port-in-portable-settings.v1.json +28 -0
- package/fixtures/obsidian/contracts/ext-settings/invalid/unknown-default-scope.v1.json +27 -0
- package/fixtures/obsidian/contracts/ext-settings/valid/disabled.v1.json +5 -0
- package/fixtures/obsidian/contracts/ext-settings/valid/enabled-with-scopes.v1.json +27 -0
- package/fixtures/obsidian/contracts/generation-manifest/invalid/absolute-note-path.v1.json +114 -0
- package/fixtures/obsidian/contracts/generation-manifest/invalid/complete-with-unwritten-notes.v1.json +114 -0
- package/fixtures/obsidian/contracts/generation-manifest/invalid/derived-link-claimed-declared.v1.json +114 -0
- package/fixtures/obsidian/contracts/generation-manifest/invalid/duplicate-note-identity.v1.json +114 -0
- package/fixtures/obsidian/contracts/generation-manifest/invalid/in-scope-endpoint-missing.v1.json +114 -0
- package/fixtures/obsidian/contracts/generation-manifest/invalid/title-only-note-path.v1.json +114 -0
- package/fixtures/obsidian/contracts/generation-manifest/invalid/unknown-note-field.v1.json +115 -0
- package/fixtures/obsidian/contracts/generation-manifest/invalid/unknown-relation-type.v1.json +114 -0
- package/fixtures/obsidian/contracts/generation-manifest/invalid/withheld-endpoint.v1.json +114 -0
- package/fixtures/obsidian/contracts/generation-manifest/valid/two-notes.v1.json +114 -0
- package/fixtures/obsidian/contracts/oracles/scope-cases.json +412 -0
- package/fixtures/obsidian/contracts/proposal-receipt/invalid/accepted-without-proposal-id.v1.json +12 -0
- package/fixtures/obsidian/contracts/proposal-receipt/invalid/missing-adapter-operation-id.v1.json +11 -0
- package/fixtures/obsidian/contracts/proposal-receipt/invalid/unknown-backpressure-outcome.v1.json +12 -0
- package/fixtures/obsidian/contracts/proposal-receipt/invalid/unknown-top-level-field.v1.json +13 -0
- package/fixtures/obsidian/contracts/proposal-receipt/valid/accepted-new.v1.json +12 -0
- package/fixtures/obsidian/contracts/proposal-receipt/valid/deferred.v1.json +12 -0
- package/fixtures/obsidian/contracts/publication-journal/invalid/absolute-recovery-ref.v1.json +47 -0
- package/fixtures/obsidian/contracts/publication-journal/invalid/duplicate-sequence.v1.json +47 -0
- package/fixtures/obsidian/contracts/publication-journal/invalid/empty-protocol-id.v1.json +47 -0
- package/fixtures/obsidian/contracts/publication-journal/invalid/missing-protocol-id.v1.json +46 -0
- package/fixtures/obsidian/contracts/publication-journal/invalid/unknown-entry-field.v1.json +48 -0
- package/fixtures/obsidian/contracts/publication-journal/invalid/unknown-state.v1.json +47 -0
- package/fixtures/obsidian/contracts/publication-journal/valid/committed.v1.json +47 -0
- package/fixtures/obsidian/contracts/publication-journal/valid/updating-after-restart.v1.json +22 -0
- package/fixtures/obsidian/contracts/scope/invalid/absolute-path-prefix.v1.json +15 -0
- package/fixtures/obsidian/contracts/scope/invalid/duplicate-ids.v1.json +18 -0
- package/fixtures/obsidian/contracts/scope/invalid/expansion-without-node-budget.v1.json +40 -0
- package/fixtures/obsidian/contracts/scope/invalid/full-mode-with-subset.v1.json +8 -0
- package/fixtures/obsidian/contracts/scope/invalid/unknown-mode.v1.json +41 -0
- package/fixtures/obsidian/contracts/scope/invalid/unknown-selector-key.v1.json +15 -0
- package/fixtures/obsidian/contracts/scope/invalid/unknown-selector-operator.v1.json +14 -0
- package/fixtures/obsidian/contracts/scope/invalid/unknown-top-level-field.v1.json +42 -0
- package/fixtures/obsidian/contracts/scope/valid/explicit-empty.v1.json +8 -0
- package/fixtures/obsidian/contracts/scope/valid/focus.v1.json +11 -0
- package/fixtures/obsidian/contracts/scope/valid/full.v1.json +8 -0
- package/fixtures/obsidian/contracts/scope/valid/scoped-set-expression.v1.json +41 -0
- package/fixtures/obsidian/contracts/service-state/invalid/hostname-instead-of-literal-loopback.v1.json +23 -0
- package/fixtures/obsidian/contracts/service-state/invalid/missing-consent.v1.json +18 -0
- package/fixtures/obsidian/contracts/service-state/invalid/privileged-port.v1.json +23 -0
- package/fixtures/obsidian/contracts/service-state/invalid/unknown-top-level-field.v1.json +24 -0
- package/fixtures/obsidian/contracts/service-state/invalid/wildcard-bind.v1.json +23 -0
- package/fixtures/obsidian/contracts/service-state/valid/healthy.v1.json +23 -0
- package/fixtures/obsidian/contracts/source-snapshot/invalid/absolute-file-path.v1.json +48 -0
- package/fixtures/obsidian/contracts/source-snapshot/invalid/duplicate-repository-id.v1.json +48 -0
- package/fixtures/obsidian/contracts/source-snapshot/invalid/mixed-read.v1.json +48 -0
- package/fixtures/obsidian/contracts/source-snapshot/invalid/parent-traversal-path.v1.json +48 -0
- package/fixtures/obsidian/contracts/source-snapshot/invalid/unknown-file-field.v1.json +49 -0
- package/fixtures/obsidian/contracts/source-snapshot/valid/two-repositories.v1.json +48 -0
- package/fixtures/obsidian/edits/workspace.json +65 -0
- package/fixtures/obsidian/materialization/expected-full.json +99 -0
- package/fixtures/obsidian/materialization/expected-scoped.json +39 -0
- package/fixtures/obsidian/materialization/workspace.json +54 -0
- package/fixtures/obsidian/proposals/expected-shapes.json +11 -0
- package/fixtures/ui/presentation/pane.v1.json +7 -0
- package/fixtures/ui/presentation/reference.v1.json +293 -0
- package/package.json +61 -6
- package/skills/claude/atelier-guided-coauthor/SKILL.md +49 -0
- package/skills/claude/atelier-guided-upgrade/SKILL.md +97 -0
- package/skills/claude/atelier-open/SKILL.md +5 -0
- package/skills/claude/atelier-skill-steward/SKILL.md +62 -0
- package/skills/claude/mnstry-readiness/SKILL.md +5 -0
- package/skills/codex/atelier-guided-coauthor/SKILL.md +49 -0
- package/skills/codex/atelier-guided-upgrade/SKILL.md +97 -0
- package/skills/codex/atelier-open/SKILL.md +5 -0
- package/skills/codex/atelier-skill-steward/SKILL.md +62 -0
- package/skills/codex/mnstry-readiness/SKILL.md +5 -0
- package/src/access/preview-enforcer.mjs +84 -0
- package/src/boundary/content-rules.mjs +9 -4
- package/src/boundary/policy.mjs +74 -42
- package/src/cli/project-options.mjs +58 -0
- package/src/cli/run.mjs +61 -3
- package/src/coauthor/session.mjs +161 -0
- package/src/coauthor/store.mjs +173 -0
- package/src/collaboration/event-ledger.mjs +16 -33
- package/src/collaboration/inspection-bundle.mjs +223 -0
- package/src/collaboration/review-contracts.mjs +25 -0
- package/src/collaboration/review-store.mjs +305 -0
- package/src/commands/coauthor.mjs +26 -0
- package/src/commands/config.mjs +6 -1
- package/src/commands/extension-pack.mjs +15 -8
- package/src/commands/init.mjs +44 -5
- package/src/commands/obsidian.mjs +368 -0
- package/src/commands/review.mjs +147 -0
- package/src/commands/setup.mjs +51 -14
- package/src/commands/skills.mjs +199 -0
- package/src/commands/sync.mjs +107 -0
- package/src/composition/registry.mjs +27 -0
- package/src/composition/wire.mjs +122 -0
- package/src/contracts/corpus.mjs +35 -0
- package/src/decisions/contracts.d.mts +96 -0
- package/src/decisions/contracts.mjs +321 -0
- package/src/disclosure/content-scan.mjs +13 -0
- package/src/export/atelier-export-contract.mjs +16 -1
- package/src/extension-packs/lifecycle.mjs +154 -0
- package/src/graph/graph.mjs +64 -2
- package/src/graph/knowledge-graph.mjs +548 -24
- package/src/guides/contracts.mjs +54 -0
- package/src/index.mjs +29 -0
- package/src/intake/store.mjs +119 -0
- package/src/preview/channel.mjs +89 -0
- package/src/project/config.mjs +50 -49
- package/src/project/durable-state.mjs +161 -0
- package/src/project/file-class.mjs +166 -0
- package/src/project/private-state.mjs +11 -1
- package/src/projection/obsidian/contracts.mjs +571 -0
- package/src/projection/obsidian/edits/align.mjs +169 -0
- package/src/projection/obsidian/edits/apply.mjs +889 -0
- package/src/projection/obsidian/edits/arbitrate.mjs +414 -0
- package/src/projection/obsidian/edits/contribution.mjs +108 -0
- package/src/projection/obsidian/edits/index.mjs +19 -0
- package/src/projection/obsidian/edits/object-identity.mjs +61 -0
- package/src/projection/obsidian/edits/object-store.mjs +517 -0
- package/src/projection/obsidian/edits/observe.mjs +123 -0
- package/src/projection/obsidian/edits/policy.mjs +123 -0
- package/src/projection/obsidian/edits/regions.mjs +648 -0
- package/src/projection/obsidian/materialize/byte-lens.mjs +98 -0
- package/src/projection/obsidian/materialize/index.mjs +7 -0
- package/src/projection/obsidian/materialize/path-registry.mjs +105 -0
- package/src/projection/obsidian/materialize/prepare-view.mjs +746 -0
- package/src/projection/obsidian/materialize/settings.mjs +57 -0
- package/src/projection/obsidian/materialize/stage.mjs +27 -0
- package/src/projection/obsidian/proposals/adapter.mjs +572 -0
- package/src/projection/obsidian/proposals/backpressure.mjs +113 -0
- package/src/projection/obsidian/proposals/contribution.mjs +55 -0
- package/src/projection/obsidian/proposals/index.mjs +23 -0
- package/src/projection/obsidian/proposals/observation.mjs +216 -0
- package/src/projection/obsidian/proposals/queue.mjs +277 -0
- package/src/projection/obsidian/proposals/router.mjs +168 -0
- package/src/projection/obsidian/publication/bridge-script.mjs +266 -0
- package/src/projection/obsidian/publication/exchange.mjs +117 -0
- package/src/projection/obsidian/publication/index.mjs +5 -0
- package/src/projection/obsidian/publication/publisher.mjs +588 -0
- package/src/projection/obsidian/publication/test-seam.mjs +16 -0
- package/src/projection/obsidian/publication/transport.mjs +139 -0
- package/src/projection/obsidian/recovery/index.mjs +6 -0
- package/src/projection/obsidian/recovery/journal.mjs +134 -0
- package/src/projection/obsidian/recovery/late-writer.mjs +46 -0
- package/src/projection/obsidian/recovery/restart.mjs +316 -0
- package/src/projection/obsidian/recovery/store.mjs +234 -0
- package/src/projection/obsidian/selection-ui/conflict-view.mjs +91 -0
- package/src/projection/obsidian/selection-ui/contribution.mjs +141 -0
- package/src/projection/obsidian/selection-ui/focus.mjs +82 -0
- package/src/projection/obsidian/selection-ui/index.mjs +12 -0
- package/src/projection/obsidian/selection-ui/policy-setup.mjs +107 -0
- package/src/projection/obsidian/selection-ui/receipt.mjs +173 -0
- package/src/projection/obsidian/selection-ui/selection-state.mjs +122 -0
- package/src/projection/obsidian/selection-ui/selection.mjs +109 -0
- package/src/projection/project.mjs +28 -19
- package/src/readiness-protocols/evidence.mjs +282 -0
- package/src/readiness-protocols/runtime.mjs +4 -3
- package/src/readiness-protocols/source-read.mjs +39 -0
- package/src/runtime/git-adapter.mjs +189 -0
- package/src/runtime/local-state.mjs +439 -0
- package/src/runtime/obsidian/app-capability.mjs +110 -0
- package/src/runtime/obsidian/app-production-seams.mjs +96 -0
- package/src/runtime/obsidian/contributions/proposal-adapter.mjs +4 -0
- package/src/runtime/obsidian/contributions/selection-ui.mjs +4 -0
- package/src/runtime/obsidian/contributions/source-apply.mjs +4 -0
- package/src/runtime/obsidian/contributions.mjs +27 -0
- package/src/runtime/obsidian/documents.mjs +37 -0
- package/src/runtime/obsidian/enablement.mjs +53 -0
- package/src/runtime/obsidian/engine.mjs +532 -0
- package/src/runtime/obsidian/errors.mjs +14 -0
- package/src/runtime/obsidian/extension-points.mjs +103 -0
- package/src/runtime/obsidian/index.mjs +34 -0
- package/src/runtime/obsidian/lifecycle.mjs +258 -0
- package/src/runtime/obsidian/machine-settings.mjs +260 -0
- package/src/runtime/obsidian/observation.mjs +158 -0
- package/src/runtime/obsidian/opening.mjs +243 -0
- package/src/runtime/obsidian/pending-edits.mjs +141 -0
- package/src/runtime/obsidian/pipeline.mjs +122 -0
- package/src/runtime/obsidian/private-lock.mjs +156 -0
- package/src/runtime/obsidian/process-identity.mjs +58 -0
- package/src/runtime/obsidian/service-client.mjs +66 -0
- package/src/runtime/obsidian/service-main.mjs +89 -0
- package/src/runtime/obsidian/service-record.mjs +169 -0
- package/src/runtime/obsidian/service-server.mjs +121 -0
- package/src/runtime/obsidian/service.mjs +216 -0
- package/src/runtime/obsidian/startup-adapters.mjs +87 -0
- package/src/runtime/obsidian/state-store.mjs +180 -0
- package/src/runtime/obsidian/sync-notice.mjs +33 -0
- package/src/runtime/obsidian/tick-loop.mjs +84 -0
- package/src/runtime/obsidian/watchers.mjs +36 -0
- package/src/runtime/repository-observation.mjs +491 -0
- package/src/runtime/supervisor.mjs +803 -0
- package/src/server/local-sidecar.mjs +44 -0
- package/src/server/server.mjs +1 -0
- package/src/skills/steward.mjs +780 -0
- package/src/ui/presentation/browser.mjs +278 -0
- package/src/ui/presentation/contract.mjs +116 -0
- package/src/ui/presentation/index.mjs +7 -0
- package/src/ui/presentation/native.mjs +153 -0
- package/src/ui/presentation/proof.mjs +57 -0
- package/src/ui/presentation/schema-check.mjs +30 -0
- package/src/ui/presentation/schema.generated.mjs +1371 -0
- package/src/ui/presentation/state.mjs +43 -0
- package/src/ui/presentation/styles.mjs +67 -0
- package/src/ui/presentation/tokens.mjs +74 -0
- package/src/ui/presentation/web.mjs +85 -0
- package/src/ui/review-page.mjs +32 -0
- package/src/upgrade/explanation.mjs +33 -0
- package/src/upgrade/provenance.mjs +338 -0
- package/src/upgrade/transaction-files.mjs +103 -0
- package/src/upgrade/transaction.mjs +475 -0
- package/src/upgrade/upgrade.mjs +63 -28
- package/src/vault/hosts.mjs +21 -0
- package/src/vault/identity.mjs +19 -0
- package/src/vault/index.mjs +7 -0
- package/src/vault/interface.mjs +11 -0
- package/src/vault/metadata.mjs +31 -0
- package/src/vault/privacy.mjs +148 -0
- package/src/vault/probe.mjs +89 -0
- package/src/vault/service.mjs +131 -0
- package/src/vault/source.mjs +45 -0
- package/src/vault/storage.mjs +23 -0
- package/templates/distribution-workspace/.claude/launch.json +6 -2
- package/templates/distribution-workspace/gitignore +1 -0
- package/templates/distribution-workspace/project/README.md +2 -2
- package/templates/external-project-workspace/README.md +45 -0
- package/templates/external-project-workspace/answers.example.json +4 -0
- package/templates/external-project-workspace/atelier.project.json +40 -0
- package/templates/external-project-workspace/boundary-policy.v1.json +60 -0
- package/templates/external-project-workspace/gitignore +8 -0
- package/templates/external-project-workspace/pack-lifecycle.json +14 -0
- package/templates/external-project-workspace/packs/protocols/contract-gate.v1.json +109 -0
- package/templates/external-project-workspace/packs/sample-pack.v1.json +48 -0
- package/templates/external-project-workspace/repo-access.v1.json +9 -0
- package/templates/external-project-workspace/source/README.md +11 -0
- package/templates/launch.json +6 -2
- package/templates/private-domain-workspace/.claude/launch.json +6 -2
- package/templates/private-domain-workspace/domain/README.md +2 -2
- package/templates/private-domain-workspace/gitignore +1 -0
- package/templates/shared-project-workspace/.claude/launch.json +6 -2
- package/templates/shared-project-workspace/gitignore +1 -0
- package/templates/shared-project-workspace/project/README.md +2 -2
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "atelier-bound-run@v1",
|
|
3
|
+
"run": {
|
|
4
|
+
"schema": "atelier-readiness-run@v1",
|
|
5
|
+
"runId": "readiness-run-2061e72d2051ed20fc51b9ef",
|
|
6
|
+
"protocolId": "sample.readiness:contract-gate",
|
|
7
|
+
"createdAt": "2026-01-01T00:00:00.000Z",
|
|
8
|
+
"project": "sample-adapter",
|
|
9
|
+
"answers": {
|
|
10
|
+
"scope.name": "Sample observation",
|
|
11
|
+
"scope.sourceRef": "sample-source:observation"
|
|
12
|
+
},
|
|
13
|
+
"status": "review-needed",
|
|
14
|
+
"score": 100,
|
|
15
|
+
"blockers": [],
|
|
16
|
+
"warnings": [],
|
|
17
|
+
"claims": [
|
|
18
|
+
{
|
|
19
|
+
"schema": "atelier-claim@v1",
|
|
20
|
+
"claimId": "claim:readiness-run-2061e72d2051ed20fc51b9ef:scope-supports-review",
|
|
21
|
+
"subject": "readiness:sample-adapter:contract-gate",
|
|
22
|
+
"predicate": "supports",
|
|
23
|
+
"object": "readiness:contract-gate:scope-supports-review",
|
|
24
|
+
"provider": "atelier-readiness",
|
|
25
|
+
"status": "proposed",
|
|
26
|
+
"promoted": false,
|
|
27
|
+
"evidence": [
|
|
28
|
+
"readiness-run:readiness-run-2061e72d2051ed20fc51b9ef"
|
|
29
|
+
],
|
|
30
|
+
"notes": [
|
|
31
|
+
"Proposed sample.readiness:contract-gate.scope-supports-review from Sample contract gate.",
|
|
32
|
+
"Answer presence is not evidence confidence; human judgment is required."
|
|
33
|
+
],
|
|
34
|
+
"createdAt": "2026-01-01T00:00:00.000Z"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"safety": {
|
|
38
|
+
"runtimeMutation": false,
|
|
39
|
+
"runtimeImport": false,
|
|
40
|
+
"canonicalWrites": false,
|
|
41
|
+
"claimOnly": true,
|
|
42
|
+
"storage": "ignored-local"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"runDigest": "sha256:f8df3d130264a55d6b246f8265f192da5ce6044d16d98be06a146cd41ac233e6",
|
|
46
|
+
"snapshot": {
|
|
47
|
+
"schema": "atelier-review-evidence@v1",
|
|
48
|
+
"protocolId": "sample.readiness:contract-gate",
|
|
49
|
+
"protocol": {
|
|
50
|
+
"schema": "atelier-readiness-protocol@v1",
|
|
51
|
+
"id": "sample.readiness:contract-gate",
|
|
52
|
+
"slug": "contract-gate",
|
|
53
|
+
"version": "v1",
|
|
54
|
+
"stage": "formation",
|
|
55
|
+
"title": "Sample contract gate",
|
|
56
|
+
"purpose": "Verify neutral protocol inputs before a readiness run is accepted.",
|
|
57
|
+
"questions": [
|
|
58
|
+
{
|
|
59
|
+
"id": "scope",
|
|
60
|
+
"prompt": "What neutral scope is being prepared?",
|
|
61
|
+
"inputFields": [
|
|
62
|
+
"scope.name",
|
|
63
|
+
"scope.sourceRef"
|
|
64
|
+
],
|
|
65
|
+
"required": true
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"inputFields": [
|
|
69
|
+
{
|
|
70
|
+
"id": "scope.name",
|
|
71
|
+
"type": "string",
|
|
72
|
+
"required": true,
|
|
73
|
+
"description": "Neutral scope name."
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": "scope.sourceRef",
|
|
77
|
+
"type": "string",
|
|
78
|
+
"required": true,
|
|
79
|
+
"description": "Evidence reference for the scope."
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"outputHints": [
|
|
83
|
+
{
|
|
84
|
+
"id": "contract-gate.summary",
|
|
85
|
+
"text": "Render scope and evidence before review."
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"outputs": {
|
|
89
|
+
"runSchema": "atelier-readiness-run@v1",
|
|
90
|
+
"artifacts": [
|
|
91
|
+
{
|
|
92
|
+
"id": "sample.readiness:contract-gate.summary",
|
|
93
|
+
"kind": "draft",
|
|
94
|
+
"schema": "atelier-readiness-run@v1",
|
|
95
|
+
"description": "Draft readiness summary."
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
"claimMappings": [
|
|
100
|
+
{
|
|
101
|
+
"id": "sample.readiness:contract-gate.scope-supports-review",
|
|
102
|
+
"claimPredicate": "supports",
|
|
103
|
+
"sourceFields": [
|
|
104
|
+
"scope.name"
|
|
105
|
+
],
|
|
106
|
+
"target": "atelier-claim@v1",
|
|
107
|
+
"evidence": "scope.sourceRef"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"readinessRules": [
|
|
111
|
+
{
|
|
112
|
+
"id": "sample.readiness:contract-gate.scope-present",
|
|
113
|
+
"severity": "blocker",
|
|
114
|
+
"condition": "Scope name and evidence are present.",
|
|
115
|
+
"remediation": "Add scope.name and scope.sourceRef.",
|
|
116
|
+
"failClosed": true
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"graphLenses": [
|
|
120
|
+
{
|
|
121
|
+
"id": "sample.readiness:contract-gate.lens",
|
|
122
|
+
"title": "Sample contract gate lens",
|
|
123
|
+
"query": {
|
|
124
|
+
"protocolId": "sample.readiness:contract-gate"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"exportMappings": [
|
|
129
|
+
{
|
|
130
|
+
"id": "sample.readiness:contract-gate.export",
|
|
131
|
+
"sourceField": "scope",
|
|
132
|
+
"sourceTerm": "sample.readiness:contract-gate.scope",
|
|
133
|
+
"target": "core.artifact",
|
|
134
|
+
"runtimeOwner": "audit",
|
|
135
|
+
"targetCollection": "staffPrep"
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"ui": {
|
|
139
|
+
"section": "readiness-journey",
|
|
140
|
+
"title": "Sample contract gate",
|
|
141
|
+
"description": "Neutral protocol fixture.",
|
|
142
|
+
"agentPrompt": "Run atelier readiness run sample.readiness:contract-gate --project ./atelier.project.json."
|
|
143
|
+
},
|
|
144
|
+
"safety": {
|
|
145
|
+
"runtimeMutation": false,
|
|
146
|
+
"runtimeImport": false,
|
|
147
|
+
"canonicalWrites": false,
|
|
148
|
+
"claimOnly": true,
|
|
149
|
+
"telemetry": false,
|
|
150
|
+
"egress": false,
|
|
151
|
+
"sendPath": false,
|
|
152
|
+
"browserApply": false,
|
|
153
|
+
"dryRunOnly": true
|
|
154
|
+
},
|
|
155
|
+
"safetyPosture": {
|
|
156
|
+
"runtimeMutation": false,
|
|
157
|
+
"externalEgress": false,
|
|
158
|
+
"defaultVisibility": "private",
|
|
159
|
+
"authority": "proposal-only",
|
|
160
|
+
"reviewMode": "static-inspection",
|
|
161
|
+
"failClosedOnMissingEvidence": true,
|
|
162
|
+
"refuses": [
|
|
163
|
+
"runtime writes"
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"protocolDigest": "sha256:9acc7315916332fca63495fd256739403a5a46833094dd056343c5776e5bbbbd",
|
|
168
|
+
"answers": {
|
|
169
|
+
"scope.name": "Sample observation",
|
|
170
|
+
"scope.sourceRef": "sample-source:observation"
|
|
171
|
+
},
|
|
172
|
+
"answersDigest": "sha256:e2fc229e8deaf4c6e004f011aa2abe466572425c6d7bdd677b893375980f67e8",
|
|
173
|
+
"configDigest": "sha256:1a4f8d12aad9bf457521e2ec4675a3cf372ad1be552817d7fb08a85f625c2145",
|
|
174
|
+
"lifecycleDigest": "sha256:bb744765b3b8825285a1168d6ec7ac4abb3a7e97459d1e828d1317a0d841d5f9",
|
|
175
|
+
"policyDigest": "sha256:93d58dd57620ba26497459dedc0744a4909ad2204112186fd0d9e49532c9e64b",
|
|
176
|
+
"packs": [
|
|
177
|
+
{
|
|
178
|
+
"id": "sample.readiness",
|
|
179
|
+
"version": "v1",
|
|
180
|
+
"digest": "sha256:0eff795765e0bbd4c2510acda2e492201c23bc870df6c354eef623484643ab11"
|
|
181
|
+
}
|
|
182
|
+
],
|
|
183
|
+
"evaluator": {
|
|
184
|
+
"id": "answer-completeness/v1",
|
|
185
|
+
"digest": "sha256:223fcaf96e973c2798803e177893d4eb749e52237a5767c082446c2c60c79159"
|
|
186
|
+
},
|
|
187
|
+
"sources": [
|
|
188
|
+
{
|
|
189
|
+
"id": "sample-source:observation",
|
|
190
|
+
"repo": "source",
|
|
191
|
+
"path": "README.md",
|
|
192
|
+
"audience": "private",
|
|
193
|
+
"digest": "sha256:5e4159e37577f4fe466b69646b9d1a5067eaa85cf2d4f9a6e65bd7de157d9b6b",
|
|
194
|
+
"metadata": null
|
|
195
|
+
}
|
|
196
|
+
],
|
|
197
|
+
"claimEvidence": [
|
|
198
|
+
{
|
|
199
|
+
"mappingId": "sample.readiness:contract-gate.scope-supports-review",
|
|
200
|
+
"sourceFields": [
|
|
201
|
+
"scope.name"
|
|
202
|
+
],
|
|
203
|
+
"answers": {
|
|
204
|
+
"scope.name": "Sample observation"
|
|
205
|
+
},
|
|
206
|
+
"evidenceField": "scope.sourceRef",
|
|
207
|
+
"references": [
|
|
208
|
+
"sample-source:observation"
|
|
209
|
+
],
|
|
210
|
+
"resolved": [
|
|
211
|
+
{
|
|
212
|
+
"id": "sample-source:observation",
|
|
213
|
+
"repo": "source",
|
|
214
|
+
"path": "README.md",
|
|
215
|
+
"digest": "sha256:5e4159e37577f4fe466b69646b9d1a5067eaa85cf2d4f9a6e65bd7de157d9b6b",
|
|
216
|
+
"excerpt": "---\ntitle: Sample observation\nkg:\n id: \"sample-source:observation\"\n type: \"document\"\n status: \"active\"\n audience: \"private\"\n---\n# Sample observation\n\nThe sample observation needs an owner to confirm its interpretation.\n"
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"unresolved": [],
|
|
220
|
+
"status": "linked-source"
|
|
221
|
+
}
|
|
222
|
+
],
|
|
223
|
+
"limitations": [
|
|
224
|
+
"Answers are operator assertions; source presence does not substantiate each claim.",
|
|
225
|
+
"No calibrated evidence confidence or runtime acceptance is established."
|
|
226
|
+
],
|
|
227
|
+
"digest": "sha256:4ada62e30889014598a5f57af253789424dd668dfbe36b38f51f176a49db2633"
|
|
228
|
+
}
|
|
229
|
+
}
|
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "atelier-inspection-bundle@v1",
|
|
3
|
+
"purpose": "historical-inspection-only",
|
|
4
|
+
"classification": "owner-selected-private-review",
|
|
5
|
+
"members": [
|
|
6
|
+
{
|
|
7
|
+
"id": "readiness-run-2061e72d2051ed20fc51b9ef",
|
|
8
|
+
"bytes": 6308,
|
|
9
|
+
"digest": "sha256:22dab719af422721507fdcbc3100db2c1378d9edacfb55f4c134b05ca872d614",
|
|
10
|
+
"value": {
|
|
11
|
+
"schema": "atelier-bound-run@v1",
|
|
12
|
+
"run": {
|
|
13
|
+
"schema": "atelier-readiness-run@v1",
|
|
14
|
+
"runId": "readiness-run-2061e72d2051ed20fc51b9ef",
|
|
15
|
+
"protocolId": "sample.readiness:contract-gate",
|
|
16
|
+
"createdAt": "2026-01-01T00:00:00.000Z",
|
|
17
|
+
"project": "sample-adapter",
|
|
18
|
+
"answers": {
|
|
19
|
+
"scope.name": "Sample observation",
|
|
20
|
+
"scope.sourceRef": "sample-source:observation"
|
|
21
|
+
},
|
|
22
|
+
"status": "review-needed",
|
|
23
|
+
"score": 100,
|
|
24
|
+
"blockers": [],
|
|
25
|
+
"warnings": [],
|
|
26
|
+
"claims": [
|
|
27
|
+
{
|
|
28
|
+
"schema": "atelier-claim@v1",
|
|
29
|
+
"claimId": "claim:readiness-run-2061e72d2051ed20fc51b9ef:scope-supports-review",
|
|
30
|
+
"subject": "readiness:sample-adapter:contract-gate",
|
|
31
|
+
"predicate": "supports",
|
|
32
|
+
"object": "readiness:contract-gate:scope-supports-review",
|
|
33
|
+
"provider": "atelier-readiness",
|
|
34
|
+
"status": "proposed",
|
|
35
|
+
"promoted": false,
|
|
36
|
+
"evidence": [
|
|
37
|
+
"readiness-run:readiness-run-2061e72d2051ed20fc51b9ef"
|
|
38
|
+
],
|
|
39
|
+
"notes": [
|
|
40
|
+
"Proposed sample.readiness:contract-gate.scope-supports-review from Sample contract gate.",
|
|
41
|
+
"Answer presence is not evidence confidence; human judgment is required."
|
|
42
|
+
],
|
|
43
|
+
"createdAt": "2026-01-01T00:00:00.000Z"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"safety": {
|
|
47
|
+
"runtimeMutation": false,
|
|
48
|
+
"runtimeImport": false,
|
|
49
|
+
"canonicalWrites": false,
|
|
50
|
+
"claimOnly": true,
|
|
51
|
+
"storage": "ignored-local"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"runDigest": "sha256:f8df3d130264a55d6b246f8265f192da5ce6044d16d98be06a146cd41ac233e6",
|
|
55
|
+
"snapshot": {
|
|
56
|
+
"schema": "atelier-review-evidence@v1",
|
|
57
|
+
"protocolId": "sample.readiness:contract-gate",
|
|
58
|
+
"protocol": {
|
|
59
|
+
"schema": "atelier-readiness-protocol@v1",
|
|
60
|
+
"id": "sample.readiness:contract-gate",
|
|
61
|
+
"slug": "contract-gate",
|
|
62
|
+
"version": "v1",
|
|
63
|
+
"stage": "formation",
|
|
64
|
+
"title": "Sample contract gate",
|
|
65
|
+
"purpose": "Verify neutral protocol inputs before a readiness run is accepted.",
|
|
66
|
+
"questions": [
|
|
67
|
+
{
|
|
68
|
+
"id": "scope",
|
|
69
|
+
"prompt": "What neutral scope is being prepared?",
|
|
70
|
+
"inputFields": [
|
|
71
|
+
"scope.name",
|
|
72
|
+
"scope.sourceRef"
|
|
73
|
+
],
|
|
74
|
+
"required": true
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"inputFields": [
|
|
78
|
+
{
|
|
79
|
+
"id": "scope.name",
|
|
80
|
+
"type": "string",
|
|
81
|
+
"required": true,
|
|
82
|
+
"description": "Neutral scope name."
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"id": "scope.sourceRef",
|
|
86
|
+
"type": "string",
|
|
87
|
+
"required": true,
|
|
88
|
+
"description": "Evidence reference for the scope."
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"outputHints": [
|
|
92
|
+
{
|
|
93
|
+
"id": "contract-gate.summary",
|
|
94
|
+
"text": "Render scope and evidence before review."
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
"outputs": {
|
|
98
|
+
"runSchema": "atelier-readiness-run@v1",
|
|
99
|
+
"artifacts": [
|
|
100
|
+
{
|
|
101
|
+
"id": "sample.readiness:contract-gate.summary",
|
|
102
|
+
"kind": "draft",
|
|
103
|
+
"schema": "atelier-readiness-run@v1",
|
|
104
|
+
"description": "Draft readiness summary."
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
"claimMappings": [
|
|
109
|
+
{
|
|
110
|
+
"id": "sample.readiness:contract-gate.scope-supports-review",
|
|
111
|
+
"claimPredicate": "supports",
|
|
112
|
+
"sourceFields": [
|
|
113
|
+
"scope.name"
|
|
114
|
+
],
|
|
115
|
+
"target": "atelier-claim@v1",
|
|
116
|
+
"evidence": "scope.sourceRef"
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"readinessRules": [
|
|
120
|
+
{
|
|
121
|
+
"id": "sample.readiness:contract-gate.scope-present",
|
|
122
|
+
"severity": "blocker",
|
|
123
|
+
"condition": "Scope name and evidence are present.",
|
|
124
|
+
"remediation": "Add scope.name and scope.sourceRef.",
|
|
125
|
+
"failClosed": true
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"graphLenses": [
|
|
129
|
+
{
|
|
130
|
+
"id": "sample.readiness:contract-gate.lens",
|
|
131
|
+
"title": "Sample contract gate lens",
|
|
132
|
+
"query": {
|
|
133
|
+
"protocolId": "sample.readiness:contract-gate"
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"exportMappings": [
|
|
138
|
+
{
|
|
139
|
+
"id": "sample.readiness:contract-gate.export",
|
|
140
|
+
"sourceField": "scope",
|
|
141
|
+
"sourceTerm": "sample.readiness:contract-gate.scope",
|
|
142
|
+
"target": "core.artifact",
|
|
143
|
+
"runtimeOwner": "audit",
|
|
144
|
+
"targetCollection": "staffPrep"
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"ui": {
|
|
148
|
+
"section": "readiness-journey",
|
|
149
|
+
"title": "Sample contract gate",
|
|
150
|
+
"description": "Neutral protocol fixture.",
|
|
151
|
+
"agentPrompt": "Run atelier readiness run sample.readiness:contract-gate --project ./atelier.project.json."
|
|
152
|
+
},
|
|
153
|
+
"safety": {
|
|
154
|
+
"runtimeMutation": false,
|
|
155
|
+
"runtimeImport": false,
|
|
156
|
+
"canonicalWrites": false,
|
|
157
|
+
"claimOnly": true,
|
|
158
|
+
"telemetry": false,
|
|
159
|
+
"egress": false,
|
|
160
|
+
"sendPath": false,
|
|
161
|
+
"browserApply": false,
|
|
162
|
+
"dryRunOnly": true
|
|
163
|
+
},
|
|
164
|
+
"safetyPosture": {
|
|
165
|
+
"runtimeMutation": false,
|
|
166
|
+
"externalEgress": false,
|
|
167
|
+
"defaultVisibility": "private",
|
|
168
|
+
"authority": "proposal-only",
|
|
169
|
+
"reviewMode": "static-inspection",
|
|
170
|
+
"failClosedOnMissingEvidence": true,
|
|
171
|
+
"refuses": [
|
|
172
|
+
"runtime writes"
|
|
173
|
+
]
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"protocolDigest": "sha256:9acc7315916332fca63495fd256739403a5a46833094dd056343c5776e5bbbbd",
|
|
177
|
+
"answers": {
|
|
178
|
+
"scope.name": "Sample observation",
|
|
179
|
+
"scope.sourceRef": "sample-source:observation"
|
|
180
|
+
},
|
|
181
|
+
"answersDigest": "sha256:e2fc229e8deaf4c6e004f011aa2abe466572425c6d7bdd677b893375980f67e8",
|
|
182
|
+
"configDigest": "sha256:1a4f8d12aad9bf457521e2ec4675a3cf372ad1be552817d7fb08a85f625c2145",
|
|
183
|
+
"lifecycleDigest": "sha256:bb744765b3b8825285a1168d6ec7ac4abb3a7e97459d1e828d1317a0d841d5f9",
|
|
184
|
+
"policyDigest": "sha256:93d58dd57620ba26497459dedc0744a4909ad2204112186fd0d9e49532c9e64b",
|
|
185
|
+
"packs": [
|
|
186
|
+
{
|
|
187
|
+
"id": "sample.readiness",
|
|
188
|
+
"version": "v1",
|
|
189
|
+
"digest": "sha256:0eff795765e0bbd4c2510acda2e492201c23bc870df6c354eef623484643ab11"
|
|
190
|
+
}
|
|
191
|
+
],
|
|
192
|
+
"evaluator": {
|
|
193
|
+
"id": "answer-completeness/v1",
|
|
194
|
+
"digest": "sha256:223fcaf96e973c2798803e177893d4eb749e52237a5767c082446c2c60c79159"
|
|
195
|
+
},
|
|
196
|
+
"sources": [
|
|
197
|
+
{
|
|
198
|
+
"id": "sample-source:observation",
|
|
199
|
+
"repo": "source",
|
|
200
|
+
"path": "README.md",
|
|
201
|
+
"audience": "private",
|
|
202
|
+
"digest": "sha256:5e4159e37577f4fe466b69646b9d1a5067eaa85cf2d4f9a6e65bd7de157d9b6b",
|
|
203
|
+
"metadata": null
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"claimEvidence": [
|
|
207
|
+
{
|
|
208
|
+
"mappingId": "sample.readiness:contract-gate.scope-supports-review",
|
|
209
|
+
"sourceFields": [
|
|
210
|
+
"scope.name"
|
|
211
|
+
],
|
|
212
|
+
"answers": {
|
|
213
|
+
"scope.name": "Sample observation"
|
|
214
|
+
},
|
|
215
|
+
"evidenceField": "scope.sourceRef",
|
|
216
|
+
"references": [
|
|
217
|
+
"sample-source:observation"
|
|
218
|
+
],
|
|
219
|
+
"resolved": [
|
|
220
|
+
{
|
|
221
|
+
"id": "sample-source:observation",
|
|
222
|
+
"repo": "source",
|
|
223
|
+
"path": "README.md",
|
|
224
|
+
"digest": "sha256:5e4159e37577f4fe466b69646b9d1a5067eaa85cf2d4f9a6e65bd7de157d9b6b",
|
|
225
|
+
"excerpt": "---\ntitle: Sample observation\nkg:\n id: \"sample-source:observation\"\n type: \"document\"\n status: \"active\"\n audience: \"private\"\n---\n# Sample observation\n\nThe sample observation needs an owner to confirm its interpretation.\n"
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"unresolved": [],
|
|
229
|
+
"status": "linked-source"
|
|
230
|
+
}
|
|
231
|
+
],
|
|
232
|
+
"limitations": [
|
|
233
|
+
"Answers are operator assertions; source presence does not substantiate each claim.",
|
|
234
|
+
"No calibrated evidence confidence or runtime acceptance is established."
|
|
235
|
+
],
|
|
236
|
+
"digest": "sha256:4ada62e30889014598a5f57af253789424dd668dfbe36b38f51f176a49db2633"
|
|
237
|
+
},
|
|
238
|
+
"decisions": [
|
|
239
|
+
{
|
|
240
|
+
"schema": "atelier-contribution@v1",
|
|
241
|
+
"input": {
|
|
242
|
+
"requestId": "example-decision",
|
|
243
|
+
"kind": "decision",
|
|
244
|
+
"targetId": "claim:readiness-run-2061e72d2051ed20fc51b9ef:scope-supports-review",
|
|
245
|
+
"expectedVersion": 0,
|
|
246
|
+
"reviewer": "Example Reader",
|
|
247
|
+
"rationale": "Read the mapped source.",
|
|
248
|
+
"runId": "readiness-run-2061e72d2051ed20fc51b9ef",
|
|
249
|
+
"evidenceDigest": "sha256:4ada62e30889014598a5f57af253789424dd668dfbe36b38f51f176a49db2633",
|
|
250
|
+
"decision": "accepted"
|
|
251
|
+
},
|
|
252
|
+
"inputDigest": "sha256:b86ef8ee5d46d01b3e1ea438284f72558c81b37667d618c260198d675aad20c5",
|
|
253
|
+
"key": "sha256:4a166ed7e3de11fbde448638c30d1e1e5dfe52e1ecdf36ad4b25e5e49d54fe8e",
|
|
254
|
+
"version": 1,
|
|
255
|
+
"identity": {
|
|
256
|
+
"kind": "local-asserted",
|
|
257
|
+
"name": "Example Reader"
|
|
258
|
+
},
|
|
259
|
+
"recordedAt": "2026-09-06T14:24:30.169Z"
|
|
260
|
+
}
|
|
261
|
+
]
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
"responses": [],
|
|
266
|
+
"digest": "sha256:6d3254b36f9410dbc3419981d058937e83ffebea7bcbda8df5bb6e390c65d6f1"
|
|
267
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "atelier-contribution@v1",
|
|
3
|
+
"input": {
|
|
4
|
+
"requestId": "example-decision",
|
|
5
|
+
"kind": "decision",
|
|
6
|
+
"targetId": "claim:readiness-run-2061e72d2051ed20fc51b9ef:scope-supports-review",
|
|
7
|
+
"expectedVersion": 0,
|
|
8
|
+
"reviewer": "Example Reader",
|
|
9
|
+
"rationale": "Read the mapped source.",
|
|
10
|
+
"runId": "readiness-run-2061e72d2051ed20fc51b9ef",
|
|
11
|
+
"evidenceDigest": "sha256:4ada62e30889014598a5f57af253789424dd668dfbe36b38f51f176a49db2633",
|
|
12
|
+
"decision": "accepted"
|
|
13
|
+
},
|
|
14
|
+
"inputDigest": "sha256:b86ef8ee5d46d01b3e1ea438284f72558c81b37667d618c260198d675aad20c5",
|
|
15
|
+
"key": "sha256:4a166ed7e3de11fbde448638c30d1e1e5dfe52e1ecdf36ad4b25e5e49d54fe8e",
|
|
16
|
+
"version": 1,
|
|
17
|
+
"identity": {
|
|
18
|
+
"kind": "local-asserted",
|
|
19
|
+
"name": "Example Reader"
|
|
20
|
+
},
|
|
21
|
+
"recordedAt": "2026-09-06T14:24:30.169Z"
|
|
22
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "atelier-pack-lifecycle@v1",
|
|
3
|
+
"packs": [
|
|
4
|
+
{
|
|
5
|
+
"id": "sample.readiness",
|
|
6
|
+
"version": "v1",
|
|
7
|
+
"digest": "sha256:0eff795765e0bbd4c2510acda2e492201c23bc870df6c354eef623484643ab11",
|
|
8
|
+
"compatibleRootVersions": [
|
|
9
|
+
"0.2.0-alpha.6"
|
|
10
|
+
],
|
|
11
|
+
"status": "active"
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-skill-audit@v1",
|
|
3
|
+
"generatedAt": "2026-01-01T00:00:00.000Z",
|
|
4
|
+
"ok": true,
|
|
5
|
+
"surfaces": [
|
|
6
|
+
{
|
|
7
|
+
"name": "sample",
|
|
8
|
+
"path": "skills/sample"
|
|
9
|
+
}
|
|
10
|
+
],
|
|
11
|
+
"summary": {
|
|
12
|
+
"skills": 0,
|
|
13
|
+
"errors": 0,
|
|
14
|
+
"warnings": 0
|
|
15
|
+
},
|
|
16
|
+
"entries": [],
|
|
17
|
+
"findings": [],
|
|
18
|
+
"authority": {
|
|
19
|
+
"telemetry": false,
|
|
20
|
+
"egress": false,
|
|
21
|
+
"promptCapture": false,
|
|
22
|
+
"sourceMutation": true,
|
|
23
|
+
"runtimeMutation": false,
|
|
24
|
+
"applyEndpoint": null
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-skill-audit@v1",
|
|
3
|
+
"generatedAt": "2026-01-01T00:00:00.000Z",
|
|
4
|
+
"ok": true,
|
|
5
|
+
"surfaces": [
|
|
6
|
+
{
|
|
7
|
+
"name": "sample",
|
|
8
|
+
"path": "skills/sample"
|
|
9
|
+
}
|
|
10
|
+
],
|
|
11
|
+
"summary": {
|
|
12
|
+
"skills": 0,
|
|
13
|
+
"errors": 0,
|
|
14
|
+
"warnings": 0
|
|
15
|
+
},
|
|
16
|
+
"entries": [],
|
|
17
|
+
"findings": [],
|
|
18
|
+
"authority": {
|
|
19
|
+
"telemetry": false,
|
|
20
|
+
"egress": false,
|
|
21
|
+
"promptCapture": false,
|
|
22
|
+
"sourceMutation": false,
|
|
23
|
+
"runtimeMutation": false,
|
|
24
|
+
"applyEndpoint": null
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-skill-candidates@v1",
|
|
3
|
+
"generatedAt": "2026-01-01T00:00:00.000Z",
|
|
4
|
+
"ok": true,
|
|
5
|
+
"candidates": [
|
|
6
|
+
{
|
|
7
|
+
"workflowKey": "Not A Stable Key",
|
|
8
|
+
"kind": "create",
|
|
9
|
+
"status": "eligible",
|
|
10
|
+
"skill": null,
|
|
11
|
+
"evidenceCount": 3,
|
|
12
|
+
"signals": {
|
|
13
|
+
"repeated-task": 3,
|
|
14
|
+
"missing-workflow": 0,
|
|
15
|
+
"user-correction": 0,
|
|
16
|
+
"trigger-miss": 0,
|
|
17
|
+
"trigger-collision": 0,
|
|
18
|
+
"tool-failure": 0,
|
|
19
|
+
"stale-guidance": 0,
|
|
20
|
+
"successful-run": 0,
|
|
21
|
+
"unused-skill": 0,
|
|
22
|
+
"superseded-skill": 0
|
|
23
|
+
},
|
|
24
|
+
"lastObservedAt": "2026-01-01T00:00:00.000Z"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"observationCount": 3,
|
|
28
|
+
"diagnostics": [],
|
|
29
|
+
"authority": {
|
|
30
|
+
"telemetry": false,
|
|
31
|
+
"egress": false,
|
|
32
|
+
"promptCapture": false,
|
|
33
|
+
"sourceMutation": false,
|
|
34
|
+
"runtimeMutation": false,
|
|
35
|
+
"applyEndpoint": null
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-skill-candidates@v1",
|
|
3
|
+
"generatedAt": "2026-01-01T00:00:00.000Z",
|
|
4
|
+
"ok": true,
|
|
5
|
+
"candidates": [
|
|
6
|
+
{
|
|
7
|
+
"workflowKey": "sample.weekly-brief",
|
|
8
|
+
"kind": "create",
|
|
9
|
+
"status": "eligible",
|
|
10
|
+
"skill": null,
|
|
11
|
+
"evidenceCount": 3,
|
|
12
|
+
"signals": {
|
|
13
|
+
"repeated-task": 3,
|
|
14
|
+
"missing-workflow": 0,
|
|
15
|
+
"user-correction": 0,
|
|
16
|
+
"trigger-miss": 0,
|
|
17
|
+
"trigger-collision": 0,
|
|
18
|
+
"tool-failure": 0,
|
|
19
|
+
"stale-guidance": 0,
|
|
20
|
+
"successful-run": 0,
|
|
21
|
+
"unused-skill": 0,
|
|
22
|
+
"superseded-skill": 0
|
|
23
|
+
},
|
|
24
|
+
"lastObservedAt": "2026-01-01T00:00:00.000Z"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"observationCount": 3,
|
|
28
|
+
"diagnostics": [],
|
|
29
|
+
"authority": {
|
|
30
|
+
"telemetry": false,
|
|
31
|
+
"egress": false,
|
|
32
|
+
"promptCapture": false,
|
|
33
|
+
"sourceMutation": false,
|
|
34
|
+
"runtimeMutation": false,
|
|
35
|
+
"applyEndpoint": null
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-skill-sync-lock@v1",
|
|
3
|
+
"generatedAt": "2026-01-01T00:00:00.000Z",
|
|
4
|
+
"source": {
|
|
5
|
+
"packageName": "@mnstry/atelier",
|
|
6
|
+
"packageVersion": "0.1.0",
|
|
7
|
+
"catalogDigest": "sha256:not-a-digest"
|
|
8
|
+
},
|
|
9
|
+
"target": ".agents/skills",
|
|
10
|
+
"skills": [],
|
|
11
|
+
"authority": {
|
|
12
|
+
"telemetry": false,
|
|
13
|
+
"egress": false,
|
|
14
|
+
"sourceMutation": false,
|
|
15
|
+
"targetMutation": "content-bound-confirmed",
|
|
16
|
+
"destructiveDelete": false
|
|
17
|
+
}
|
|
18
|
+
}
|