/** * `o11y/` domain — observability primitives for the backend platform. * * Currently scoped to W3C trace-context management. The three tools let the * agent pin a trace id on the session so subsequent calls share * one correlation root without per-call plumbing: * * - — generate + pin * - — set / clear specific values * - — inspect the current pin * * The session pin is shadowed by `_metadata.traceId` (MCP client) and by * per-call `traceId` arguments — see * for the precedence rule. */ import { Tool } from '../../../../tools'; import { BackendToolSessionContext } from '../context'; export declare const tools: Tool[];