(agentType: string)
| 29 | * e.g., <cwd>/.claude/agent-memory-snapshots/<agentType>/ |
| 30 | */ |
| 31 | export function getSnapshotDirForAgent(agentType: string): string { |
| 32 | return join(getCwd(), '.claude', SNAPSHOT_BASE, agentType) |
| 33 | } |
| 34 | |
| 35 | function getSnapshotJsonPath(agentType: string): string { |
| 36 | return join(getSnapshotDirForAgent(agentType), SNAPSHOT_JSON) |
no test coverage detected