(agentType: string, scope: AgentMemoryScope)
| 37 | } |
| 38 | |
| 39 | function getSyncedJsonPath(agentType: string, scope: AgentMemoryScope): string { |
| 40 | return join(getAgentMemoryDir(agentType, scope), SYNCED_JSON) |
| 41 | } |
| 42 | |
| 43 | async function readJsonFile<T>( |
| 44 | path: string, |
no test coverage detected