/** * engram_outcome — record session outcome for closed-loop learning. * * WHEN TO USE: At the end of a session or task. Records whether the goal was achieved, * enabling engram to learn which observations lead to successful outcomes. */ import type { EngramRestClient } from '../client.js'; import type { PluginConfig } from '../config.js'; import type { AnyAgentTool, OpenClawPluginToolContext } from '../types/openclaw.js'; export declare function createEngramOutcomeTool(ctx: OpenClawPluginToolContext, client: EngramRestClient, config: PluginConfig): AnyAgentTool; //# sourceMappingURL=engram-outcome.d.ts.map