@tyvm/knowhow 0.0.74 → 0.0.75

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.
package/bin/knowhow.js CHANGED
@@ -12,7 +12,7 @@ if (!process.env.KNOWHOW_REEXEC_NO_SNAPSHOT) {
12
12
  const hasFlag = nodeArgs.includes("--no-node-snapshot");
13
13
 
14
14
  if (!hasFlag) {
15
- const cliEntrypoint = path.join(__dirname, "../ts_build/cli.js"); // adjust to your real entry
15
+ const cliEntrypoint = path.join(__dirname, "../ts_build/src/cli.js"); // adjust to your real entry
16
16
  const r = spawnSync(
17
17
  process.execPath,
18
18
  ["--no-node-snapshot", cliEntrypoint, ...process.argv.slice(2)],
@@ -26,4 +26,4 @@ if (!process.env.KNOWHOW_REEXEC_NO_SNAPSHOT) {
26
26
  }
27
27
 
28
28
  // If already launched with the flag, just run the real CLI.
29
- await import("../dist/cli.js"); // or require(...) if CJS
29
+ await import("../ts_build/src/cli.js"); // or require(...) if CJS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tyvm/knowhow",
3
- "version": "0.0.74",
3
+ "version": "0.0.75",
4
4
  "description": "ai cli with plugins and agents",
5
5
  "main": "ts_build/src/index.js",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tyvm/knowhow",
3
- "version": "0.0.74",
3
+ "version": "0.0.75",
4
4
  "description": "ai cli with plugins and agents",
5
5
  "main": "ts_build/src/index.js",
6
6
  "bin": {