/** * absorb_observations Tool (GitMem v2 Phase 2) * * Captures observations from sub-agents and teammates. * The lead agent parses findings from sub-agent responses, * then calls this tool to persist and analyze them. * * Identifies scar candidates via explicit severity or pattern matching. * Observations are stored in-memory (session state) and optionally * persisted to Supabase as a fire-and-forget upsert. * * Performance target: <500ms (in-memory + optional upsert) */ import type { AbsorbObservationsParams, AbsorbObservationsResult } from "../types/index.js"; export declare function absorbObservations(params: AbsorbObservationsParams): Promise; //# sourceMappingURL=absorb-observations.d.ts.map