()
| 51 | } |
| 52 | |
| 53 | async claudeDirectoryExists(): Promise<boolean> { |
| 54 | try { |
| 55 | await fs.access(this.claudeDir); |
| 56 | return true; |
| 57 | } catch { |
| 58 | return false; |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Check if the installation is complete by verifying all required files and directories exist |
no outgoing calls
no test coverage detected