()
| 156 | } |
| 157 | |
| 158 | async setupDirectories(): Promise<void> { |
| 159 | const directories = [ |
| 160 | this.claudeDir, |
| 161 | this.commandsDir, |
| 162 | this.specsDir, |
| 163 | this.templatesDir, |
| 164 | // scriptsDir removed from directory creation |
| 165 | this.steeringDir, |
| 166 | this.bugsDir |
| 167 | ]; |
| 168 | |
| 169 | // Agents are now mandatory |
| 170 | directories.push(this.agentsDir); |
| 171 | |
| 172 | for (const dir of directories) { |
| 173 | await fs.mkdir(dir, { recursive: true }); |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | async createSlashCommands(): Promise<void> { |
| 178 | const commandNames = [ |
no outgoing calls
no test coverage detected