[READ-ONLY] Mirror of https://github.com/bombshell-dev/tools. Internal CLI to standardize tooling across all Bombshell projects
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(sync): do not read skills directory

Nate Moore (May 7, 2026, 9:11 PM EDT) 7b3a05b1 00c22e5c

+2 -2
+2 -2
src/commands/sync.ts
··· 1 - import type { Dirent } from 'node:fs'; 1 + import { existsSync, type Dirent } from 'node:fs'; 2 2 import { mkdir, readdir, readFile, readlink, rm, symlink, writeFile } from 'node:fs/promises'; 3 3 import { isAbsolute, relative, resolve } from 'node:path'; 4 4 import { cwd, platform } from 'node:process'; ··· 20 20 } 21 21 22 22 const source = new URL('node_modules/@bomb.sh/tools/skills/', root); 23 - if (!(await safeRead(source))) { 23 + if (!existsSync(source)) { 24 24 console.error('@bomb.sh/tools is not installed. Run `pnpm add -D @bomb.sh/tools` first.'); 25 25 return; 26 26 }