/** * pi / little-coder normalizer — ADR 0062 slice 3. * * Driven with `pi -p --mode json` (or `--mode rpc`): a JSON-RPC 2.0 notification * stream. Session content arrives as `method` notifications * (`session/message`, `session/reasoning`, `session/toolCall`, * `session/toolResult`, `session/usage`) with a `params` payload. Restore is * `--session-id ` (create-if-missing — the same flag both resumes an * existing session and starts one under a chosen id); `-r` is the short alias and * `--fork` branches. Streaming + resume-by-id → `durable-resume`. */ import type { HarnessNormalizer } from "./types.ts"; export declare const piNormalizer: HarnessNormalizer;