import type { ExtensionAPI } from "../sdk/coding-agent/index.js"; /** * Project-observation memory layer. * * This layer owns the five project-observation tools * (`write_project_observation`, `read_project_observations`, `recall`, * `share_project_observation`, `receive_agent_observations`) plus the * `project-observations-store.ts` shim and the inter-agent broker wiring. * * Storage is per-machine + per-cwd + cross-session: observations are keyed by * the local project resolved from the absolute working directory and persisted * in the same-machine SQLite store. There is no cloud/team sync and no * cross-machine fan-out. */ export declare function registerProjectObservationMemory(ext: ExtensionAPI): void; //# sourceMappingURL=project-observation-memory.d.ts.map