()
| 71 | * disabled via env var or settings. |
| 72 | */ |
| 73 | export function isTeamMemoryEnabled(): boolean { |
| 74 | if (!isAutoMemoryEnabled()) { |
| 75 | return false |
| 76 | } |
| 77 | return getFeatureValue_CACHED_MAY_BE_STALE('tengu_herring_clock', false) |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Returns the team memory path: <memoryBase>/projects/<sanitized-project-root>/memory/team/ |
no test coverage detected