Emit prompt-build + hydration trace events for Haskell agent runs.
Scope:
- Add new AgentEvent variants for prompt build start/section/end + hydration stats.
- Capture section metadata: name/source/token count/content preview.
- Capture hydration stats: memory counts, bytes/tokens per source, section sizes.
- Log these events to events.jsonl via Omni.Agent.Events.
Touch points:
- Omni/Agent/Prompt/Hydrate
- Omni/Agent/Prompt/Compile
- Omni/Agent/Interpreter/Sequential or OpBridge
- Omni/Agent/Trace/Events
Out of scope: CLI/debugger UI.
Emitted prompt build trace events in Sequential interpreter (prompt_build_start/section/end + hydration_stats), added section metadata payloads, and forwarded custom Trace events through OpBridge into Engine EventCustom. Tests: lint Omni/Agent/Interpreter/Sequential.hs Omni/Agent/Op/Bridge.hs; bild --test Omni/Agent/Interpreter/Sequential.hs