@prometheus-ai/wire
v0.5.18
Published
Shared wire protocol types for Prometheus packages
Downloads
1,487
Readme
@prometheus-ai/wire
Shared TypeScript wire contracts for Prometheus collab live sessions.
The package contains only JSON-safe protocol shapes and constants. It has no runtime dependencies and is consumed by both the host CLI (@prometheus-ai/agent) and browser guest (@prometheus-ai/collab-web).
Exports
import type { GuestFrame, HostFrame, SessionEntry } from "@prometheus-ai/wire";
import { COLLAB_PROTO, DEFAULT_RELAY_URL, ENVELOPE_HEADER_LENGTH } from "@prometheus-ai/wire";Key groups:
- message and transcript entry shapes rendered by collab guests,
- live agent event and task-subagent bus payload shapes,
GuestFrame,HostFrame, andWireFrameunions for AES-GCM sealed payloads,- relay control TEXT messages,
- link/envelope constants shared by host, guest, and local relay code.
Protocol boundary
@prometheus-ai/wire does not encode, decode, validate, encrypt, or route frames. It defines the shared contract used at those boundaries:
- callers build a
GuestFrameorHostFrame, - transport code serializes it as JSON inside an encrypted payload,
- relay code routes opaque envelopes using the plaintext peer-id prefix,
- receivers switch on
frame.tand tolerate unknown future fields.
Keep protocol changes backward-aware: bump COLLAB_PROTO only when old hosts and guests must reject each other.
