Expand description
Pack trait — the declarative composition unit for khive (ADR-025).
A pack declares vocabulary (note kinds, entity kinds), verbs, and edge
endpoint rules. This is purely static metadata — no I/O, no async.
Runtime dispatch lives in khive-runtime (PackRuntime trait +
VerbRegistry).
This trait lives in khive-types (no_std, zero deps) so downstream crates can reference pack metadata without pulling in the full runtime.
Structs§
- Edge
Endpoint Rule - A pack-declared endpoint rule for a specific edge relation (ADR-031).
- VerbDef
- Verb metadata for discovery and documentation.
Enums§
- Endpoint
Kind - Match spec for one end of an
EdgeEndpointRule(ADR-031).
Traits§
- Pack
- A composable module that contributes vocabulary, verbs, and edge endpoint rules to the khive runtime.