yoi/crates/pod-registry
2026-06-12 17:10:59 +09:00
..
src fix: validate spawn delegation authority 2026-06-12 17:10:59 +09:00
Cargo.toml chore: 依存パッケージの集約 2026-05-01 23:35:46 +09:00
README.md docs: reorganize developer documentation 2026-06-01 20:59:32 +09:00

pod-registry

Role

pod-registry tracks live Pod process ownership and delegated scope locks at runtime.

Boundaries

Owns:

  • machine-local live Pod registration
  • collision detection for running Pod names
  • delegated scope lock bookkeeping
  • registry cleanup hooks for stopped or unreachable children

Does not own:

  • durable Pod metadata (pod-store)
  • replayable session logs (session-store)
  • socket protocol definitions (protocol)
  • project work item state

Design notes

The registry is a runtime coordination mechanism. It can help decide whether a Pod is live or colliding, but durable visibility/restoration should be backed by Pod metadata when possible.

See also