/** * openlore gryph-watch * * Standalone Gryph behavioral observer. Runs as an independent background * process — lifetime decoupled from the MCP server session. Polls Gryph every * interval and writes behavioral signals to panic-state.json via CAS writes. * * Why a separate process: MCP-path Gryph polling only starts after the first * openlore tool call. Agents working exclusively via Bash/Edit/Read never * trigger that path. gryph-watch closes this gap by running continuously from * session start. * * Signals provided (standalone, without MCP tracker context): * repetitiveRetryBurst — low entropy + failing commands (no stale context needed) * * Signals requiring MCP tracker (not available here): * largePatchWhileStale — staleDepth unknown without EpistemicLease session * * Install via: openlore setup --hooks claude * Which installs a UserPromptSubmit hook: openlore gryph-watch & */ import { Command } from 'commander'; export declare const gryphWatchCommand: Command; //# sourceMappingURL=gryph-watch.d.ts.map