diff --git a/internal/ipc/client.go b/internal/ipc/client.go index e5c2617..5e9d3a6 100644 --- a/internal/ipc/client.go +++ b/internal/ipc/client.go @@ -55,28 +55,28 @@ var ErrAmbiguousOutcome = errors.New("ipc: mutation outcome unknown (connection // conservative (refusing to retry) is the safe default for a method added // here by omission. var readOnlyMethods = map[Method]bool{ - MethodLatestFact: true, - MethodLatestFactBySource: true, - MethodSince: true, - MethodPresence: true, - MethodListReminders: true, - MethodRecentOutcomes: true, - MethodRecentFacts: true, - MethodCalendarEvents: true, - MethodRecentNudges: true, - MethodQueryNotes: true, - MethodRecentNotes: true, + MethodLatestFact: true, + MethodLatestFactBySource: true, + MethodSince: true, + MethodPresence: true, + MethodListReminders: true, + MethodRecentOutcomes: true, + MethodRecentFacts: true, + MethodCalendarEvents: true, + MethodRecentNudges: true, + MethodQueryNotes: true, + MethodRecentNotes: true, MethodRecentNotesFromSource: true, - MethodLookupTool: true, - MethodListTools: true, - MethodListProposedRoutines: true, - MethodListTasks: true, - MethodTickTrace: true, - MethodMorningStatus: true, - MethodMCPServers: true, - MethodDayPlan: true, - MethodRecentEvents: true, - MethodPing: true, + MethodLookupTool: true, + MethodListTools: true, + MethodListProposedRoutines: true, + MethodListTasks: true, + MethodTickTrace: true, + MethodMorningStatus: true, + MethodMCPServers: true, + MethodDayPlan: true, + MethodRecentEvents: true, + MethodPing: true, } // Dial connects to a core socket at path and returns a Client. The module