kestrel.markets
Version:
A typed, token-efficient language + runtime for agentic trading: agents author bounded plans, the runtime fires them at the tick. CLI + typed library + MCP server.
14 lines (13 loc) • 814 B
JavaScript
/**
* # cli/backend/wire — the PLATFORM HTTP/SSE wire shapes (kestrel-5rb).
*
* Per OSS-ADR-0046 the wire shapes are OWNED by `src/protocol` (the one home for
* every wire shape this repo speaks — the `Scope` union, `RECEIPT_KINDS`, the SSE
* constants, and now the operation/offer/trial-capability bodies + decoders). This
* module is the transport-side re-export: `remote.ts` (the client), `mock.ts` (the
* truthful in-process server), the SDK client, and the offer renderer all import the
* dialect from HERE, so it keeps a single import path while the definitions live once
* in {@link ../../protocol/wire.ts}. No shape is defined in this file — a shape change
* is a single edit in protocol, drift-guarded by `tests/cli.remote-conformance.test.ts`.
*/
export * from "../../protocol/wire.js";