(sessionPath: string, options: { chat?: boolean | undefined } = {})
| 30 | import { ensureProject } from './writes.ts' |
| 31 | |
| 32 | function matchesThreadScope(sessionPath: string, options: { chat?: boolean | undefined } = {}) { |
| 33 | return options.chat ? isChatSessionPath(sessionPath) : !isChatSessionPath(sessionPath) |
| 34 | } |
| 35 | |
| 36 | function getChatSessionLikePattern() { |
| 37 | return `${getChatSessionDir() + path.sep}%` |
no test coverage detected