( agentType: string, scope: AgentMemoryScope, )
| 107 | * Returns the agent memory file path for a given agent type and scope. |
| 108 | */ |
| 109 | export function getAgentMemoryEntrypoint( |
| 110 | agentType: string, |
| 111 | scope: AgentMemoryScope, |
| 112 | ): string { |
| 113 | return join(getAgentMemoryDir(agentType, scope), 'MEMORY.md') |
| 114 | } |
| 115 | |
| 116 | export function getMemoryScopeDisplay( |
| 117 | memory: AgentMemoryScope | undefined, |
nothing calls this directly
no test coverage detected