@verboo/code 0.7.2 → 0.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/cli.mjs +850 -644
  2. package/package.json +2 -4
  3. package/bin/openclaude +0 -34
package/package.json CHANGED
@@ -1,15 +1,13 @@
1
1
  {
2
2
  "name": "@verboo/code",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "description": "Verboo Code — coding agent for the Verboo platform",
5
5
  "type": "module",
6
6
  "bin": {
7
- "verboo": "bin/verboo",
8
- "openclaude": "bin/openclaude"
7
+ "verboo": "bin/verboo"
9
8
  },
10
9
  "files": [
11
10
  "bin/verboo",
12
- "bin/openclaude",
13
11
  "bin/import-specifier.mjs",
14
12
  "dist/cli.mjs",
15
13
  "README.md"
package/bin/openclaude DELETED
@@ -1,34 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- /**
4
- * VERBOO-BRAND: Legacy alias for `verboo` binary. Kept for backward compat
5
- * during transition — prefer `bin/verboo` going forward.
6
- *
7
- * If dist/cli.mjs exists (built), run that.
8
- * Otherwise, tell the user to build first or use `bun run dev`.
9
- */
10
-
11
- import { existsSync } from 'fs'
12
- import { join, dirname } from 'path'
13
- import { fileURLToPath, pathToFileURL } from 'url'
14
-
15
- const __dirname = dirname(fileURLToPath(import.meta.url))
16
- const distPath = join(__dirname, '..', 'dist', 'cli.mjs')
17
-
18
- if (existsSync(distPath)) {
19
- process.env.VERBOO_CLI_BRAND = 'openclaude';
20
- await import(pathToFileURL(distPath).href)
21
- } else {
22
- console.error(`
23
- verboo (openclaude alias): dist/cli.mjs not found.
24
-
25
- Build first:
26
- bun run build
27
-
28
- Or run directly with Bun:
29
- bun run dev
30
-
31
- See README.md for setup instructions.
32
- `)
33
- process.exit(1)
34
- }