@vfarcic/dot-ai 0.4.8 → 0.4.9

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.js +19 -0
  2. package/package.json +2 -2
package/bin.js ADDED
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log('Hello from dot-ai CLI!');
4
+ console.log('Arguments:', process.argv.slice(2));
5
+
6
+ // Simple help output
7
+ if (process.argv.includes('--help') || process.argv.includes('-h')) {
8
+ console.log(`
9
+ Usage: dot-ai [options]
10
+
11
+ Options:
12
+ --help, -h Show help
13
+ --version, -v Show version
14
+ `);
15
+ }
16
+
17
+ if (process.argv.includes('--version') || process.argv.includes('-v')) {
18
+ console.log('dot-ai version 0.4.8');
19
+ }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@vfarcic/dot-ai",
3
- "version": "0.4.8",
3
+ "version": "0.4.9",
4
4
  "description": "Universal Kubernetes application deployment agent with CLI and MCP interfaces",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "bin": {
8
- "dot-ai": "dist/cli.js"
8
+ "dot-ai": "./bin.js"
9
9
  },
10
10
  "exports": {
11
11
  ".": "./dist/index.js",