MCPcopy Create free account
hub / github.com/Pimzino/claude-code-spec-workflow / setupDirectories

Method setupDirectories

src/setup.ts:158–175  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 = [

Callers 2

runSetupMethod · 0.95
setup.test.tsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected