()
| 261 | |
| 262 | // Load repository structure |
| 263 | async loadRepository() { |
| 264 | CarrotDebug.repo('🔍 Loading BunnyMo repository structure...'); |
| 265 | |
| 266 | try { |
| 267 | // Load root directory |
| 268 | await this.navigateToPath('/'); |
| 269 | |
| 270 | CarrotDebug.repo('✅ Repository structure loaded successfully'); |
| 271 | } catch (error) { |
| 272 | CarrotDebug.error('❌ Failed to load repository:', error); |
| 273 | throw error; |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | // Navigate to specific path in repository |
| 278 | async navigateToPath(path) { |
no test coverage detected