overlord-cli 3.8.0 → 3.10.0

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 (2) hide show
  1. package/bin/ovld.mjs +3 -4
  2. package/package.json +1 -1
package/bin/ovld.mjs CHANGED
@@ -1,12 +1,11 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  /**
4
- * Thin wrapper that delegates to the canonical CLI in packages/overlord-cli.
5
- * All CLI source files live in packages/overlord-cli/bin/_cli/ this file
6
- * exists only so that `node bin/ovld.mjs` works during local development.
4
+ * Canonical CLI entrypoint. Used by both the npm package and the Electron app.
5
+ * All CLI source files live in _cli/ alongside this file.
7
6
  */
8
7
 
9
- import { runCli } from '../packages/overlord-cli/bin/_cli/index.mjs';
8
+ import { runCli } from './_cli/index.mjs';
10
9
 
11
10
  runCli({ primaryCommand: 'ovld' }).catch((error) => {
12
11
  console.error(error instanceof Error ? error.message : error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "overlord-cli",
3
- "version": "3.8.0",
3
+ "version": "3.10.0",
4
4
  "description": "Overlord CLI — launch AI agents on tickets from anywhere",
5
5
  "type": "module",
6
6
  "bin": {