@mnstry/atelier 0.2.0-alpha.6 → 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 +176 -0
- package/README.md +59 -15
- 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-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 +9 -1
- package/docs/atelier-sync.md +5 -4
- package/docs/blocks/claims.md +15 -10
- package/docs/blocks/will-not-do.md +4 -1
- 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 +88 -0
- package/docs/review-portability.md +55 -0
- package/docs/skill-steward.md +156 -0
- package/docs/upgrade.md +55 -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-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 +57 -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/policy.mjs +57 -25
- package/src/cli/project-options.mjs +58 -0
- package/src/cli/run.mjs +43 -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 +8 -1
- package/src/composition/registry.mjs +27 -0
- package/src/composition/wire.mjs +122 -0
- package/src/contracts/corpus.mjs +29 -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/intake/store.mjs +119 -0
- package/src/preview/channel.mjs +89 -0
- package/src/project/config.mjs +26 -27
- 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/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/supervisor.mjs +16 -1
- 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,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "atelier-obsidian-source-snapshot/v1",
|
|
3
|
+
"snapshotId": "snap-0001",
|
|
4
|
+
"workspaceId": "ws-synthetic-0001",
|
|
5
|
+
"capturedAt": "2026-01-05T10:00:00Z",
|
|
6
|
+
"readConsistency": "single-read",
|
|
7
|
+
"graphPin": {
|
|
8
|
+
"graphDigest": "sha256:1111111111111111111111111111111111111111111111111111111111111111",
|
|
9
|
+
"nodeCount": 5,
|
|
10
|
+
"edgeCount": 10
|
|
11
|
+
},
|
|
12
|
+
"versions": {
|
|
13
|
+
"source": "1",
|
|
14
|
+
"config": "1",
|
|
15
|
+
"emitter": "1.0.0"
|
|
16
|
+
},
|
|
17
|
+
"repositories": [
|
|
18
|
+
{
|
|
19
|
+
"repoId": "north",
|
|
20
|
+
"head": "0123456789abcdef0123456789abcdef01234567",
|
|
21
|
+
"dirty": false,
|
|
22
|
+
"files": [
|
|
23
|
+
{
|
|
24
|
+
"path": "plans/one.md",
|
|
25
|
+
"rawDigest": "sha256:2222222222222222222222222222222222222222222222222222222222222222",
|
|
26
|
+
"byteLength": 120
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"path": "notes/four.md",
|
|
30
|
+
"rawDigest": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
|
|
31
|
+
"byteLength": 64
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"repoId": "north",
|
|
37
|
+
"head": null,
|
|
38
|
+
"dirty": true,
|
|
39
|
+
"files": [
|
|
40
|
+
{
|
|
41
|
+
"path": "notes/two.json",
|
|
42
|
+
"rawDigest": "sha256:4444444444444444444444444444444444444444444444444444444444444444",
|
|
43
|
+
"byteLength": 48
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "atelier-obsidian-source-snapshot/v1",
|
|
3
|
+
"snapshotId": "snap-0001",
|
|
4
|
+
"workspaceId": "ws-synthetic-0001",
|
|
5
|
+
"capturedAt": "2026-01-05T10:00:00Z",
|
|
6
|
+
"readConsistency": "mixed",
|
|
7
|
+
"graphPin": {
|
|
8
|
+
"graphDigest": "sha256:1111111111111111111111111111111111111111111111111111111111111111",
|
|
9
|
+
"nodeCount": 5,
|
|
10
|
+
"edgeCount": 10
|
|
11
|
+
},
|
|
12
|
+
"versions": {
|
|
13
|
+
"source": "1",
|
|
14
|
+
"config": "1",
|
|
15
|
+
"emitter": "1.0.0"
|
|
16
|
+
},
|
|
17
|
+
"repositories": [
|
|
18
|
+
{
|
|
19
|
+
"repoId": "north",
|
|
20
|
+
"head": "0123456789abcdef0123456789abcdef01234567",
|
|
21
|
+
"dirty": false,
|
|
22
|
+
"files": [
|
|
23
|
+
{
|
|
24
|
+
"path": "plans/one.md",
|
|
25
|
+
"rawDigest": "sha256:2222222222222222222222222222222222222222222222222222222222222222",
|
|
26
|
+
"byteLength": 120
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"path": "notes/four.md",
|
|
30
|
+
"rawDigest": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
|
|
31
|
+
"byteLength": 64
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"repoId": "south",
|
|
37
|
+
"head": null,
|
|
38
|
+
"dirty": true,
|
|
39
|
+
"files": [
|
|
40
|
+
{
|
|
41
|
+
"path": "notes/two.json",
|
|
42
|
+
"rawDigest": "sha256:4444444444444444444444444444444444444444444444444444444444444444",
|
|
43
|
+
"byteLength": 48
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "atelier-obsidian-source-snapshot/v1",
|
|
3
|
+
"snapshotId": "snap-0001",
|
|
4
|
+
"workspaceId": "ws-synthetic-0001",
|
|
5
|
+
"capturedAt": "2026-01-05T10:00:00Z",
|
|
6
|
+
"readConsistency": "single-read",
|
|
7
|
+
"graphPin": {
|
|
8
|
+
"graphDigest": "sha256:1111111111111111111111111111111111111111111111111111111111111111",
|
|
9
|
+
"nodeCount": 5,
|
|
10
|
+
"edgeCount": 10
|
|
11
|
+
},
|
|
12
|
+
"versions": {
|
|
13
|
+
"source": "1",
|
|
14
|
+
"config": "1",
|
|
15
|
+
"emitter": "1.0.0"
|
|
16
|
+
},
|
|
17
|
+
"repositories": [
|
|
18
|
+
{
|
|
19
|
+
"repoId": "north",
|
|
20
|
+
"head": "0123456789abcdef0123456789abcdef01234567",
|
|
21
|
+
"dirty": false,
|
|
22
|
+
"files": [
|
|
23
|
+
{
|
|
24
|
+
"path": "plans/../../outside.md",
|
|
25
|
+
"rawDigest": "sha256:2222222222222222222222222222222222222222222222222222222222222222",
|
|
26
|
+
"byteLength": 120
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"path": "notes/four.md",
|
|
30
|
+
"rawDigest": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
|
|
31
|
+
"byteLength": 64
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"repoId": "south",
|
|
37
|
+
"head": null,
|
|
38
|
+
"dirty": true,
|
|
39
|
+
"files": [
|
|
40
|
+
{
|
|
41
|
+
"path": "notes/two.json",
|
|
42
|
+
"rawDigest": "sha256:4444444444444444444444444444444444444444444444444444444444444444",
|
|
43
|
+
"byteLength": 48
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "atelier-obsidian-source-snapshot/v1",
|
|
3
|
+
"snapshotId": "snap-0001",
|
|
4
|
+
"workspaceId": "ws-synthetic-0001",
|
|
5
|
+
"capturedAt": "2026-01-05T10:00:00Z",
|
|
6
|
+
"readConsistency": "single-read",
|
|
7
|
+
"graphPin": {
|
|
8
|
+
"graphDigest": "sha256:1111111111111111111111111111111111111111111111111111111111111111",
|
|
9
|
+
"nodeCount": 5,
|
|
10
|
+
"edgeCount": 10
|
|
11
|
+
},
|
|
12
|
+
"versions": {
|
|
13
|
+
"source": "1",
|
|
14
|
+
"config": "1",
|
|
15
|
+
"emitter": "1.0.0"
|
|
16
|
+
},
|
|
17
|
+
"repositories": [
|
|
18
|
+
{
|
|
19
|
+
"repoId": "north",
|
|
20
|
+
"head": "0123456789abcdef0123456789abcdef01234567",
|
|
21
|
+
"dirty": false,
|
|
22
|
+
"files": [
|
|
23
|
+
{
|
|
24
|
+
"path": "plans/one.md",
|
|
25
|
+
"rawDigest": "sha256:2222222222222222222222222222222222222222222222222222222222222222",
|
|
26
|
+
"byteLength": 120,
|
|
27
|
+
"content": "inline body"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "notes/four.md",
|
|
31
|
+
"rawDigest": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
|
|
32
|
+
"byteLength": 64
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"repoId": "south",
|
|
38
|
+
"head": null,
|
|
39
|
+
"dirty": true,
|
|
40
|
+
"files": [
|
|
41
|
+
{
|
|
42
|
+
"path": "notes/two.json",
|
|
43
|
+
"rawDigest": "sha256:4444444444444444444444444444444444444444444444444444444444444444",
|
|
44
|
+
"byteLength": 48
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "atelier-obsidian-source-snapshot/v1",
|
|
3
|
+
"snapshotId": "snap-0001",
|
|
4
|
+
"workspaceId": "ws-synthetic-0001",
|
|
5
|
+
"capturedAt": "2026-01-05T10:00:00Z",
|
|
6
|
+
"readConsistency": "single-read",
|
|
7
|
+
"graphPin": {
|
|
8
|
+
"graphDigest": "sha256:1111111111111111111111111111111111111111111111111111111111111111",
|
|
9
|
+
"nodeCount": 5,
|
|
10
|
+
"edgeCount": 10
|
|
11
|
+
},
|
|
12
|
+
"versions": {
|
|
13
|
+
"source": "1",
|
|
14
|
+
"config": "1",
|
|
15
|
+
"emitter": "1.0.0"
|
|
16
|
+
},
|
|
17
|
+
"repositories": [
|
|
18
|
+
{
|
|
19
|
+
"repoId": "north",
|
|
20
|
+
"head": "0123456789abcdef0123456789abcdef01234567",
|
|
21
|
+
"dirty": false,
|
|
22
|
+
"files": [
|
|
23
|
+
{
|
|
24
|
+
"path": "plans/one.md",
|
|
25
|
+
"rawDigest": "sha256:2222222222222222222222222222222222222222222222222222222222222222",
|
|
26
|
+
"byteLength": 120
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"path": "notes/four.md",
|
|
30
|
+
"rawDigest": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
|
|
31
|
+
"byteLength": 64
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"repoId": "south",
|
|
37
|
+
"head": null,
|
|
38
|
+
"dirty": true,
|
|
39
|
+
"files": [
|
|
40
|
+
{
|
|
41
|
+
"path": "notes/two.json",
|
|
42
|
+
"rawDigest": "sha256:4444444444444444444444444444444444444444444444444444444444444444",
|
|
43
|
+
"byteLength": 48
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"description": "Invented one-repository workspace for the edit lens. Files are JSON strings so CRLF, mixed line endings, the byte order prefix and missing final newlines survive version control; hex is for non-text bytes.",
|
|
3
|
+
"repositories": [
|
|
4
|
+
"reading-room"
|
|
5
|
+
],
|
|
6
|
+
"files": {
|
|
7
|
+
"reading-room/guide.md": {
|
|
8
|
+
"text": "---\ntitle: \"Field guide\"\nkg:\n id: \"reading-room:guide\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n relations:\n supports:\n - \"reading-room:delta\"\n---\n\n# Field guide\n\nÜberblick ☕ first: see [first](topics/alpha.md) and [[Alpha topic]] before [second](topics/beta.md#part).\nTwice over: [again](./topics/alpha.md), heading [[Alpha topic#Part one]] and block [[Alpha topic^blk1]].\nPictures:  and ![[assets/plan.png|200]].\n\nLeft alone: \\[escaped\\] text, `[[Alpha topic]]` in inline code, [site](https://example.invalid/a.md) and [gone](missing.md).\n\n```\n[fenced](topics/alpha.md)\n[[Alpha topic]]\n```\n\nClosing words.\n"
|
|
9
|
+
},
|
|
10
|
+
"reading-room/topics/alpha.md": {
|
|
11
|
+
"text": "---\r\ntitle: \"Alpha topic\"\r\nkg:\r\n id: \"reading-room:alpha\"\r\n type: \"document\"\r\n status: \"active\"\r\n audience: \"team\"\r\n---\r\n\r\n# Alpha topic\r\n\r\n## Part one\r\n\r\nBack to the [guide](../guide.md). ^blk1\r\n"
|
|
12
|
+
},
|
|
13
|
+
"reading-room/topics/beta.md": {
|
|
14
|
+
"text": "---\ntitle: \"Beta topic\"\nkg:\n id: \"reading-room:beta\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Beta topic\r\n\r\n## Part\n\nMixed line endings and a [[Field guide|pointer]].\r\nNo final newline"
|
|
15
|
+
},
|
|
16
|
+
"reading-room/log.md": {
|
|
17
|
+
"text": "# Reading log\n\nA byte order prefix, no front matter, naïve ✓ and a link to [[Alpha topic]].\n"
|
|
18
|
+
},
|
|
19
|
+
"reading-room/delta.md": {
|
|
20
|
+
"text": "---\ntitle: \"Delta note\"\nkg:\n id: \"reading-room:delta\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n relations:\n related:\n - \"reading-room:alpha\"\n---\n\n# Delta note\n\nNo authored links here at all.\n"
|
|
21
|
+
},
|
|
22
|
+
"reading-room/bare.md": {
|
|
23
|
+
"text": "# Bare note\n\nNo front matter and no links.\n"
|
|
24
|
+
},
|
|
25
|
+
"reading-room/open-fence.md": {
|
|
26
|
+
"text": "---\ntitle: \"Open fence\"\nkg:\n id: \"reading-room:open-fence\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Open fence\n\nBefore the fence: [[Alpha topic]].\n\n```js\nconst answer = 42\n[[Alpha topic]]"
|
|
27
|
+
},
|
|
28
|
+
"reading-room/open-fence-crlf.md": {
|
|
29
|
+
"text": "---\r\ntitle: \"Open fence two\"\r\nkg:\r\n id: \"reading-room:open-fence-crlf\"\r\n type: \"document\"\r\n status: \"active\"\r\n audience: \"team\"\r\n---\r\n\r\n# Open fence two\r\n\r\nSee [alpha](topics/alpha.md).\r\n\r\n~~~~\r\nraw text\r\n"
|
|
30
|
+
},
|
|
31
|
+
"reading-room/endings/nl0-linked.md": {
|
|
32
|
+
"text": "---\ntitle: \"Ending nl0 linked\"\nkg:\n id: \"reading-room:nl0-linked\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Ending nl0\n\nLinked to [[Alpha topic]] here"
|
|
33
|
+
},
|
|
34
|
+
"reading-room/endings/nl0-alone.md": {
|
|
35
|
+
"text": "---\ntitle: \"Ending nl0 alone\"\nkg:\n id: \"reading-room:nl0-alone\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Ending nl0\n\nNothing generated follows"
|
|
36
|
+
},
|
|
37
|
+
"reading-room/endings/nl1-linked.md": {
|
|
38
|
+
"text": "---\ntitle: \"Ending nl1 linked\"\nkg:\n id: \"reading-room:nl1-linked\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Ending nl1\n\nLinked to [[Alpha topic]] here\n"
|
|
39
|
+
},
|
|
40
|
+
"reading-room/endings/nl1-alone.md": {
|
|
41
|
+
"text": "---\ntitle: \"Ending nl1 alone\"\nkg:\n id: \"reading-room:nl1-alone\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Ending nl1\n\nNothing generated follows\n"
|
|
42
|
+
},
|
|
43
|
+
"reading-room/endings/nl2-linked.md": {
|
|
44
|
+
"text": "---\ntitle: \"Ending nl2 linked\"\nkg:\n id: \"reading-room:nl2-linked\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Ending nl2\n\nLinked to [[Alpha topic]] here\n\n"
|
|
45
|
+
},
|
|
46
|
+
"reading-room/endings/nl2-alone.md": {
|
|
47
|
+
"text": "---\ntitle: \"Ending nl2 alone\"\nkg:\n id: \"reading-room:nl2-alone\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Ending nl2\n\nNothing generated follows\n\n"
|
|
48
|
+
},
|
|
49
|
+
"reading-room/twins.md": {
|
|
50
|
+
"text": "---\ntitle: \"Twin links\"\nkg:\n id: \"reading-room:twins\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Twin links\n\nPair: [one](topics/alpha.md) [two](./topics/alpha.md) end.\n\nApart: [left](topics/alpha.md), some words in between, [right](./topics/alpha.md) done.\n"
|
|
51
|
+
},
|
|
52
|
+
"reading-room/lookalike.md": {
|
|
53
|
+
"text": "---\ntitle: \"Lookalike paths\"\nkg:\n id: \"reading-room:lookalike\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Lookalike paths\n\nThe source itself keeps a [list](notes/todo.md) and an  of its own.\n\nMore words follow.\n"
|
|
54
|
+
},
|
|
55
|
+
"reading-room/assets/plan.png": {
|
|
56
|
+
"hex": "89504e470d0a1a0a73796e7468657469632d706c616e"
|
|
57
|
+
},
|
|
58
|
+
"reading-room/charts/table.pdf": {
|
|
59
|
+
"hex": "255044462d312e340a25e2e3cfd30a73796e7468657469630a"
|
|
60
|
+
},
|
|
61
|
+
"reading-room/charts/table.pdf.kg.json": {
|
|
62
|
+
"text": "{\n \"schema\": \"mnstry.source-sidecar@v1\",\n \"asset\": \"table.pdf\",\n \"title\": \"Reference table\",\n \"summary\": \"Invented figures.\",\n \"tags\": [\n \"chart\"\n ],\n \"kg\": {\n \"id\": \"reading-room:table\",\n \"type\": \"evidence\",\n \"domain\": \"sample\",\n \"lifecycle\": \"source\",\n \"status\": \"active\",\n \"audience\": \"team\",\n \"relations\": {\n \"evidences\": [\n \"reading-room:guide\"\n ]\n }\n }\n}\n"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nodes": [
|
|
3
|
+
"north-desk:depth-chart",
|
|
4
|
+
"north-desk:harbor-plan",
|
|
5
|
+
"north-desk:journal-signal-log",
|
|
6
|
+
"north-desk:shared-a",
|
|
7
|
+
"north-desk:shared-b",
|
|
8
|
+
"south-desk:tide-table"
|
|
9
|
+
],
|
|
10
|
+
"edges": [
|
|
11
|
+
[
|
|
12
|
+
"north-desk:depth-chart",
|
|
13
|
+
"evidences",
|
|
14
|
+
"north-desk:harbor-plan"
|
|
15
|
+
],
|
|
16
|
+
[
|
|
17
|
+
"north-desk:harbor-plan",
|
|
18
|
+
"depends_on",
|
|
19
|
+
"north-desk:shared-a"
|
|
20
|
+
],
|
|
21
|
+
[
|
|
22
|
+
"north-desk:harbor-plan",
|
|
23
|
+
"links_to",
|
|
24
|
+
"north-desk:depth-chart"
|
|
25
|
+
],
|
|
26
|
+
[
|
|
27
|
+
"north-desk:harbor-plan",
|
|
28
|
+
"links_to",
|
|
29
|
+
"north-desk:shared-a"
|
|
30
|
+
],
|
|
31
|
+
[
|
|
32
|
+
"north-desk:harbor-plan",
|
|
33
|
+
"links_to",
|
|
34
|
+
"south-desk:tide-table"
|
|
35
|
+
],
|
|
36
|
+
[
|
|
37
|
+
"north-desk:harbor-plan",
|
|
38
|
+
"supports",
|
|
39
|
+
"south-desk:tide-table"
|
|
40
|
+
],
|
|
41
|
+
[
|
|
42
|
+
"north-desk:shared-a",
|
|
43
|
+
"links_to",
|
|
44
|
+
"north-desk:harbor-plan"
|
|
45
|
+
],
|
|
46
|
+
[
|
|
47
|
+
"north-desk:shared-b",
|
|
48
|
+
"contradicts",
|
|
49
|
+
"north-desk:shared-a"
|
|
50
|
+
],
|
|
51
|
+
[
|
|
52
|
+
"south-desk:tide-table",
|
|
53
|
+
"links_to",
|
|
54
|
+
"north-desk:harbor-plan"
|
|
55
|
+
]
|
|
56
|
+
],
|
|
57
|
+
"attachments": [
|
|
58
|
+
{
|
|
59
|
+
"path": "attachments/Depth chart--74e876c145b7.pdf",
|
|
60
|
+
"digest": "sha256:d990e2501d6e0fabd1d326b9c6df2e0980562014bb060aa9e44163dfb2c74406",
|
|
61
|
+
"byteLength": 25
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"files": {
|
|
65
|
+
".obsidian/core-plugins.json": {
|
|
66
|
+
"digest": "sha256:9cc6bb2c8a1f7a0af211504020926be7a210d0c7d5fe4ea35ed0586f13e32a84",
|
|
67
|
+
"text": "{\n \"publish\": false,\n \"sync\": false\n}\n"
|
|
68
|
+
},
|
|
69
|
+
"attachments/Depth chart--74e876c145b7.pdf": {
|
|
70
|
+
"digest": "sha256:d990e2501d6e0fabd1d326b9c6df2e0980562014bb060aa9e44163dfb2c74406",
|
|
71
|
+
"hex": "255044462d312e340a25e2e3cfd30a73796e7468657469630a"
|
|
72
|
+
},
|
|
73
|
+
"notes/Depth chart--74e876c145b7.md": {
|
|
74
|
+
"digest": "sha256:569cfbd9982f55cb0062b9cde19aeaddd266fb04bef70891a778792cce118ce0",
|
|
75
|
+
"text": "# Depth chart\n\nInvented soundings with \\[\\[brackets\\]\\] and a \\#tag that must stay inert.\n\n- Format: pdf\n- Source: north-desk · charts / depth-chart.pdf\n- Tags: chart\n- Original: [[attachments/Depth chart--74e876c145b7.pdf|Open the original file]]\n\n![[attachments/Depth chart--74e876c145b7.pdf]]\n\n## Relations (generated)\n\n%% Generated from the canonical graph. Edits to this section are not applied to any source. %%\n\n- evidences → [[Harbor plan--6ec5d50e7b5a|Harbor plan]]\n"
|
|
76
|
+
},
|
|
77
|
+
"notes/Harbor plan--6ec5d50e7b5a.md": {
|
|
78
|
+
"digest": "sha256:b86c37f743d2033090eabf69a71326c4afc741b5649eec50cc4aeeb0a136a025",
|
|
79
|
+
"text": "---\ntitle: \"Harbor plan\"\nkg:\n id: \"north-desk:harbor-plan\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n relations:\n supports:\n - \"south-desk:tide-table\"\n depends_on:\n - \"north-desk:shared-a\"\n related:\n - \"north-desk:sealed-ledger\"\n---\n\n# Harbor plan\n\nÜberblick — café ☕ first, so byte offsets and character offsets differ.\n\nSee the [tide table](Tide%20table--8a198323462b.md#spring) and again as [[Tide table--8a198323462b|Tide table]] or [[Tide table--8a198323462b#Spring|spring tides]].\nThe [depth chart](Depth%20chart--74e876c145b7.md) is a wrapped source. The concept is in [shared](Shared%20concept--9f1852499f52.md).\n\nLeft alone: [ledger](../sealed/ledger.md), [gone](missing.md), [site](https://example.invalid/page.md) and `[[Tide table]]` in inline code.\n\n```\n[fenced](../../south-desk/tables/tide-table.md)\n[[Tide table]]\n```\n\n## Relations (generated)\n\n%% Generated from the canonical graph. Edits to this section are not applied to any source. %%\n\n- supports → [[Tide table--8a198323462b|Tide table]]\n- depends_on → [[Shared concept--9f1852499f52|Shared concept]]\n- evidences ← Depth chart\n- links_to → [[Depth chart--74e876c145b7|Depth chart]]\n- links_to → [[Shared concept--9f1852499f52|Shared concept]]\n- links_to → [[Tide table--8a198323462b|Tide table]]\n"
|
|
80
|
+
},
|
|
81
|
+
"notes/Shared concept--9f1852499f52.md": {
|
|
82
|
+
"digest": "sha256:f0ff39340e772377817076d3029605ea28381a2c99ecc2d2934a624fd2604142",
|
|
83
|
+
"text": "---\r\ntitle: \"Shared concept\"\r\nkg:\r\n id: \"north-desk:shared-a\"\r\n type: \"document\"\r\n status: \"active\"\r\n audience: \"team\"\r\n---\r\n\r\n# Shared concept\r\n\r\nFirst of two notes with one title.\r\nBack to the [plan](Harbor%20plan--6ec5d50e7b5a.md).\r\n\n## Relations (generated)\n\n%% Generated from the canonical graph. Edits to this section are not applied to any source. %%\n\n- depends_on ← Harbor plan\n- contradicts ← Shared concept\n- links_to → [[Harbor plan--6ec5d50e7b5a|Harbor plan]]\n"
|
|
84
|
+
},
|
|
85
|
+
"notes/Shared concept--eb0b05f4a215.md": {
|
|
86
|
+
"digest": "sha256:0611ec664ea7bcdd266b64575940257c9424475563680f0da4755f970fbf091f",
|
|
87
|
+
"text": "---\ntitle: \"Shared concept\"\nkg:\n id: \"north-desk:shared-b\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n relations:\n contradicts:\n - \"north-desk:shared-a\"\n---\n\n# Shared concept\n\nSecond note with the same title, and no final newline\n\n## Relations (generated)\n\n%% Generated from the canonical graph. Edits to this section are not applied to any source. %%\n\n- contradicts → [[Shared concept--9f1852499f52|Shared concept]]\n"
|
|
88
|
+
},
|
|
89
|
+
"notes/Signal Log--cb2cfa5faba8.md": {
|
|
90
|
+
"digest": "sha256:e40918ebaacb948dd2fadbd2a0877ff524e18226b2ec0249f6ba31bf397e31c7",
|
|
91
|
+
"text": "# Signal log\n\nA byte order prefix and no front matter. naïve — ✓\n"
|
|
92
|
+
},
|
|
93
|
+
"notes/Tide table--8a198323462b.md": {
|
|
94
|
+
"digest": "sha256:cf03259cf3b29765d3299d327aed1f5e0d9fe000c706bf1e9a7eec18e3dbe80a",
|
|
95
|
+
"text": "---\ntitle: \"Tide table\"\nkg:\n id: \"south-desk:tide-table\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Tide table\n\n## Spring\n\nUsed by [[Harbor plan--6ec5d50e7b5a|the plan]]; embedded: ![[Harbor plan--6ec5d50e7b5a]]\n\n## Relations (generated)\n\n%% Generated from the canonical graph. Edits to this section are not applied to any source. %%\n\n- supports ← Harbor plan\n- links_to → [[Harbor plan--6ec5d50e7b5a|Harbor plan]]\n"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"manifestDigest": "sha256:453652705b6fa529f3365c33e168fe531f9f89d6457c7aeef99efebcd9051473"
|
|
99
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nodes": [
|
|
3
|
+
"north-desk:harbor-plan",
|
|
4
|
+
"south-desk:tide-table"
|
|
5
|
+
],
|
|
6
|
+
"edges": [
|
|
7
|
+
[
|
|
8
|
+
"north-desk:harbor-plan",
|
|
9
|
+
"links_to",
|
|
10
|
+
"south-desk:tide-table"
|
|
11
|
+
],
|
|
12
|
+
[
|
|
13
|
+
"north-desk:harbor-plan",
|
|
14
|
+
"supports",
|
|
15
|
+
"south-desk:tide-table"
|
|
16
|
+
],
|
|
17
|
+
[
|
|
18
|
+
"south-desk:tide-table",
|
|
19
|
+
"links_to",
|
|
20
|
+
"north-desk:harbor-plan"
|
|
21
|
+
]
|
|
22
|
+
],
|
|
23
|
+
"attachments": [],
|
|
24
|
+
"files": {
|
|
25
|
+
".obsidian/core-plugins.json": {
|
|
26
|
+
"digest": "sha256:9cc6bb2c8a1f7a0af211504020926be7a210d0c7d5fe4ea35ed0586f13e32a84",
|
|
27
|
+
"text": "{\n \"publish\": false,\n \"sync\": false\n}\n"
|
|
28
|
+
},
|
|
29
|
+
"notes/Harbor plan--6ec5d50e7b5a.md": {
|
|
30
|
+
"digest": "sha256:1213e251d98af10f7bad73a0a6d00c75111a2d87439a77ac3eb0c7b8007c4f2b",
|
|
31
|
+
"text": "---\ntitle: \"Harbor plan\"\nkg:\n id: \"north-desk:harbor-plan\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n relations:\n supports:\n - \"south-desk:tide-table\"\n depends_on:\n - \"north-desk:shared-a\"\n related:\n - \"north-desk:sealed-ledger\"\n---\n\n# Harbor plan\n\nÜberblick — café ☕ first, so byte offsets and character offsets differ.\n\nSee the [tide table](Tide%20table--8a198323462b.md#spring) and again as [[Tide table--8a198323462b|Tide table]] or [[Tide table--8a198323462b#Spring|spring tides]].\nThe [depth chart](../charts/depth-chart.pdf) is a wrapped source. The concept is in [shared](shared-a.md).\n\nLeft alone: [ledger](../sealed/ledger.md), [gone](missing.md), [site](https://example.invalid/page.md) and `[[Tide table]]` in inline code.\n\n```\n[fenced](../../south-desk/tables/tide-table.md)\n[[Tide table]]\n```\n\n## Relations (generated)\n\n%% Generated from the canonical graph. Edits to this section are not applied to any source. %%\n\n- supports → [[Tide table--8a198323462b|Tide table]]\n- links_to → [[Tide table--8a198323462b|Tide table]]\n\nRelationships leading outside this view: 5\n"
|
|
32
|
+
},
|
|
33
|
+
"notes/Tide table--8a198323462b.md": {
|
|
34
|
+
"digest": "sha256:cf03259cf3b29765d3299d327aed1f5e0d9fe000c706bf1e9a7eec18e3dbe80a",
|
|
35
|
+
"text": "---\ntitle: \"Tide table\"\nkg:\n id: \"south-desk:tide-table\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Tide table\n\n## Spring\n\nUsed by [[Harbor plan--6ec5d50e7b5a|the plan]]; embedded: ![[Harbor plan--6ec5d50e7b5a]]\n\n## Relations (generated)\n\n%% Generated from the canonical graph. Edits to this section are not applied to any source. %%\n\n- supports ← Harbor plan\n- links_to → [[Harbor plan--6ec5d50e7b5a|Harbor plan]]\n"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"manifestDigest": "sha256:0f11177e4cd9a9aa82409dafd33209b860f8248ff0fb9bd0abe1041895591e4a"
|
|
39
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"description": "Invented two-repository workspace. Files are JSON strings so CRLF, the byte order prefix and the missing final newline survive version control; hex is for non-text bytes.",
|
|
3
|
+
"repositories": [
|
|
4
|
+
"north-desk",
|
|
5
|
+
"south-desk"
|
|
6
|
+
],
|
|
7
|
+
"withheldByEligibility": [
|
|
8
|
+
"north-desk:sealed-ledger"
|
|
9
|
+
],
|
|
10
|
+
"sentinels": [
|
|
11
|
+
"ZQXWITHHELD",
|
|
12
|
+
"ZQXBODY",
|
|
13
|
+
"ZQXSUMMARY",
|
|
14
|
+
"zqx-hidden-tag",
|
|
15
|
+
"ZQYWITHHELD",
|
|
16
|
+
"ZQYBODY",
|
|
17
|
+
"zqy-hidden-tag",
|
|
18
|
+
"north-desk:sealed-audit",
|
|
19
|
+
"sealed/audit"
|
|
20
|
+
],
|
|
21
|
+
"authoredOnlySentinels": [
|
|
22
|
+
"sealed/ledger",
|
|
23
|
+
"north-desk:sealed-ledger"
|
|
24
|
+
],
|
|
25
|
+
"files": {
|
|
26
|
+
"north-desk/plans/harbor-plan.md": {
|
|
27
|
+
"text": "---\ntitle: \"Harbor plan\"\nkg:\n id: \"north-desk:harbor-plan\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n relations:\n supports:\n - \"south-desk:tide-table\"\n depends_on:\n - \"north-desk:shared-a\"\n related:\n - \"north-desk:sealed-ledger\"\n---\n\n# Harbor plan\n\nÜberblick — café ☕ first, so byte offsets and character offsets differ.\n\nSee the [tide table](../../south-desk/tables/tide-table.md#spring) and again as [[Tide table]] or [[Tide table#Spring|spring tides]].\nThe [depth chart](../charts/depth-chart.pdf) is a wrapped source. The concept is in [shared](shared-a.md).\n\nLeft alone: [ledger](../sealed/ledger.md), [gone](missing.md), [site](https://example.invalid/page.md) and `[[Tide table]]` in inline code.\n\n```\n[fenced](../../south-desk/tables/tide-table.md)\n[[Tide table]]\n```\n"
|
|
28
|
+
},
|
|
29
|
+
"north-desk/plans/shared-a.md": {
|
|
30
|
+
"text": "---\r\ntitle: \"Shared concept\"\r\nkg:\r\n id: \"north-desk:shared-a\"\r\n type: \"document\"\r\n status: \"active\"\r\n audience: \"team\"\r\n---\r\n\r\n# Shared concept\r\n\r\nFirst of two notes with one title.\r\nBack to the [plan](harbor-plan.md).\r\n"
|
|
31
|
+
},
|
|
32
|
+
"north-desk/plans/shared-b.md": {
|
|
33
|
+
"text": "---\ntitle: \"Shared concept\"\nkg:\n id: \"north-desk:shared-b\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n relations:\n contradicts:\n - \"north-desk:shared-a\"\n---\n\n# Shared concept\n\nSecond note with the same title, and no final newline"
|
|
34
|
+
},
|
|
35
|
+
"north-desk/sealed/ledger.md": {
|
|
36
|
+
"text": "---\ntitle: \"Sealed ledger ZQXWITHHELD\"\ntags:\n - \"zqx-hidden-tag\"\nsummary: \"ZQXSUMMARY of the ledger\"\nkg:\n id: \"north-desk:sealed-ledger\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n relations:\n supports:\n - \"north-desk:harbor-plan\"\n---\n\n# Sealed ledger ZQXWITHHELD\n\nZQXBODY text. It links to the [plan](../plans/harbor-plan.md).\n"
|
|
37
|
+
},
|
|
38
|
+
"north-desk/sealed/audit.md": {
|
|
39
|
+
"text": "---\ntitle: \"Vault audit ZQYWITHHELD\"\ntags:\n - \"zqy-hidden-tag\"\nkg:\n id: \"north-desk:sealed-audit\"\n type: \"document\"\n status: \"active\"\n audience: \"sensitive\"\n---\n\n# Vault audit ZQYWITHHELD\n\nZQYBODY text about [[Harbor plan]].\n"
|
|
40
|
+
},
|
|
41
|
+
"north-desk/journal/signal-log.md": {
|
|
42
|
+
"text": "# Signal log\n\nA byte order prefix and no front matter. naïve — ✓\n"
|
|
43
|
+
},
|
|
44
|
+
"north-desk/charts/depth-chart.pdf": {
|
|
45
|
+
"hex": "255044462d312e340a25e2e3cfd30a73796e7468657469630a"
|
|
46
|
+
},
|
|
47
|
+
"north-desk/charts/depth-chart.pdf.kg.json": {
|
|
48
|
+
"text": "{\n \"schema\": \"mnstry.source-sidecar@v1\",\n \"asset\": \"depth-chart.pdf\",\n \"title\": \"Depth chart\",\n \"summary\": \"Invented soundings with [[brackets]] and a #tag that must stay inert.\",\n \"tags\": [\n \"chart\"\n ],\n \"kg\": {\n \"id\": \"north-desk:depth-chart\",\n \"type\": \"evidence\",\n \"domain\": \"sample\",\n \"lifecycle\": \"source\",\n \"status\": \"active\",\n \"audience\": \"team\",\n \"relations\": {\n \"evidences\": [\n \"north-desk:harbor-plan\"\n ]\n }\n }\n}\n"
|
|
49
|
+
},
|
|
50
|
+
"south-desk/tables/tide-table.md": {
|
|
51
|
+
"text": "---\ntitle: \"Tide table\"\nkg:\n id: \"south-desk:tide-table\"\n type: \"document\"\n status: \"active\"\n audience: \"team\"\n---\n\n# Tide table\n\n## Spring\n\nUsed by [[Harbor plan|the plan]]; embedded: ![[Harbor plan]]\n"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ledgerLimits": { "maxLineBytes": 262144, "maxBytes": 16777216, "maxEvents": 10000 },
|
|
3
|
+
"reserve": { "events": 32, "bytes": 524288 },
|
|
4
|
+
"bounds": { "maxBatchPerRepository": 8, "maxExaminedPerTick": 64, "maxObservedPerTick": 16, "maxAttempts": 8, "retryIntervalMs": 60000, "maxRetryIntervalMs": 3600000, "lineMarginBytes": 1024 },
|
|
5
|
+
"payloadKeys": ["adapter", "change", "editId", "idempotencyKey", "identity", "kind", "origin", "references", "schema", "sourcePath", "summary"],
|
|
6
|
+
"changeKeys": ["code", "firstDifference", "occurrenceCount", "occurrences", "publishedEnd", "publishedStart", "reason"],
|
|
7
|
+
"statusRepositoryKeys": ["acknowledged", "backpressure", "backpressureCodes", "enrolled", "exhausted", "ledger", "queued", "refused", "refusedCodes", "repoId", "storeId", "submitted"],
|
|
8
|
+
"listKeys": ["adapterOperationId", "attempts", "code", "editId", "exhausted", "nextAttemptAt", "nodeId", "proposalId", "recordedAt", "repoId", "state"],
|
|
9
|
+
"backpressureCodes": ["ledger-full", "store-unavailable", "route-visibility-unknown"],
|
|
10
|
+
"storeRefusalCodes": ["proposal-too-large", "ledger-corrupt", "store-refused", "identity-not-preserved"]
|
|
11
|
+
}
|