owo-cli 1.1.0 → 1.2.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.
@@ -24579,7 +24579,7 @@ async function copyToClipboard(text) {
24579
24579
  throw new Error(`Clipboard operation failed: ${error2}`);
24580
24580
  }
24581
24581
  }
24582
- var VERSION3 = "1.1.0";
24582
+ var VERSION3 = "1.1.3";
24583
24583
  function printHelp() {
24584
24584
  console.log(`owo v${VERSION3} - Natural language to shell commands using AI
24585
24585
 
@@ -24864,6 +24864,6 @@ try {
24864
24864
  }
24865
24865
  console.log(command);
24866
24866
  } catch (error2) {
24867
- console.error("Error generating command:", error2.message);
24867
+ console.error(`Error generating command (provider: ${config.type}, model: ${config.model}):`, error2.message);
24868
24868
  process.exit(1);
24869
24869
  }
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "owo-cli",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "Natural language to shell commands using AI",
5
5
  "type": "module",
6
6
  "bin": {
7
- "owo-cli": "dist/owo-cli.js"
7
+ "owo": "dist/owo.js"
8
8
  },
9
9
  "files": [
10
- "dist/owo-cli.js"
10
+ "dist/owo.js"
11
11
  ],
12
12
  "scripts": {
13
13
  "dev": "bun run index.ts",
14
- "build": "bun build ./index.ts --compile --outfile dist/owo-cli",
15
- "build:npm": "bun build ./index.ts --outfile dist/owo-cli.js --target node && echo '#!/usr/bin/env node' | cat - dist/owo-cli.js > dist/owo-cli.tmp.js && mv dist/owo-cli.tmp.js dist/owo-cli.js",
14
+ "build": "bun build ./index.ts --compile --outfile dist/owo",
15
+ "build:npm": "bun build ./index.ts --outfile dist/owo.js --target node && echo '#!/usr/bin/env node' | cat - dist/owo.js > dist/owo.tmp.js && mv dist/owo.tmp.js dist/owo.js",
16
16
  "prepublishOnly": "npm run build:npm"
17
17
  },
18
18
  "keywords": [
@@ -27,11 +27,11 @@
27
27
  ],
28
28
  "repository": {
29
29
  "type": "git",
30
- "url": "git+https://github.com/context-labs/uwu.git"
30
+ "url": "git+https://github.com/ibealec/owo.git"
31
31
  },
32
- "homepage": "https://github.com/context-labs/uwu#readme",
32
+ "homepage": "https://github.com/ibealec/owo#readme",
33
33
  "bugs": {
34
- "url": "https://github.com/context-labs/uwu/issues"
34
+ "url": "https://github.com/ibealec/owo/issues"
35
35
  },
36
36
  "license": "MIT",
37
37
  "engines": {