SetBaseDir sets the project root directory so Claude runs from there and picks up CLAUDE.md.
(baseDir string)
| 121 | |
| 122 | // SetBaseDir sets the project root directory so Claude runs from there and picks up CLAUDE.md. |
| 123 | func (m *Manager) SetBaseDir(baseDir string) { |
| 124 | m.mu.Lock() |
| 125 | defer m.mu.Unlock() |
| 126 | m.baseDir = baseDir |
| 127 | } |
| 128 | |
| 129 | // SetConfig sets the project config for post-completion actions. |
| 130 | func (m *Manager) SetConfig(cfg *config.Config) { |