| 18 | `Run the \`continual-learning\` skill now. Use the \`agents-memory-updater\` subagent for the full memory update flow. Use incremental transcript processing with index file \`${INCREMENTAL_INDEX_PATH}\`: only consider transcripts not in the index or transcripts whose mtime is newer than indexed mtime. Have the subagent refresh index mtimes, remove entries for deleted transcripts, and update \`AGENTS.md\` only for high-signal recurring user corrections and durable workspace facts. Exclude one-off/transient details and secrets. If no meaningful updates exist, respond exactly: No high-signal memory updates.`; |
| 19 | |
| 20 | interface StopHookInput { |
| 21 | conversation_id: string; |
| 22 | generation_id?: string; |
| 23 | status: "completed" | "aborted" | "error" | string; |
| 24 | loop_count: number; |
| 25 | transcript_path?: string | null; |
| 26 | } |
| 27 | |
| 28 | interface ContinuousLearningState { |
| 29 | version: 1; |
nothing calls this directly
no outgoing calls
no test coverage detected