/** * **@noy-db/hub/cargo** — the orchestration seam klum binds. Canonical * successor to `/kernel` (the published `/kernel` subpath alias has been * retired — coordinated removal, consumers migrated). * * `cargo` is the layer of services + interfaces required to **manage pods** — * the multi-vault management plane klum-db binds: custody, deed, diff, * distributed query, addressing, and change-observation. It consolidates the * runtime floor formerly published as `/kernel` plus the orchestration delta. * * See docs/superpowers/specs/2026-07-01-noydb-architecture-lexicon.md. * * @packageDocumentation */ export * from '../legacy/kernel.js'; export { CustodyApi } from '../with-party/custody/index.js'; export type { GrantCustodianOptions } from '../with-party/custody/index.js'; export { liberateVault } from '../with-party/custody/liberate.js'; export type { LiberateOptions, LiberateResult } from '../with-party/custody/liberate.js'; export { createDeedOwner, loadDeedMarker, isDeedVault } from '../with-party/team/deed.js'; export type { DeedMarker } from '../with-party/team/deed.js'; export type { SealingKeyProvider } from '../with-party/team/managed-passphrase.js'; export { diffVault } from './vault-diff.js'; export { STATE_VAULT_NAME } from '../kernel/constants.js'; export { withCargo } from './active.js'; export { NO_CARGO } from './strategy.js'; export type { CargoStrategy } from './strategy.js'; export { CargoNotEnabledError } from '../kernel/errors.js'; export type { WriteHook } from '../port/with/write-hooks.js'; export type { WriteQueue } from '../kernel/write-queue.js'; export type { WriteConflict } from '../kernel/types.js'; export type { AccessibleVault } from '../kernel/types.js'; export type { Unsubscribe } from '../kernel/types.js';