(key: string[])
| 436 | } |
| 437 | |
| 438 | async function readState(key: string[]) { |
| 439 | return Storage.read<ClaudeImportState>(key).catch((err) => { |
| 440 | if (err instanceof Storage.NotFoundError) return undefined |
| 441 | throw err |
| 442 | }) |
| 443 | } |
| 444 | |
| 445 | async function findProjectClaudeCommandDir(): Promise<string | undefined> { |
| 446 | const found = await Filesystem.findUp(PROJECT_COMMANDS_DIR, process.cwd()) |
no test coverage detected