automagik-forge 0.2.16-beta.4 → 0.2.16-beta.6

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.
Binary file
Binary file
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+
3
+ // NPX entry point for automagik-forge
4
+ // This file is referenced as the main entry in package.json
5
+ // The actual CLI logic is in bin/cli.js
6
+
7
+ require('./bin/cli.js');
package/package.json CHANGED
@@ -1,16 +1,19 @@
1
1
  {
2
2
  "name": "automagik-forge",
3
3
  "private": false,
4
- "version": "0.2.16-beta.4",
5
- "main": "bin/cli.js",
6
- "bin": "bin/cli.js",
4
+ "version": "0.2.16-beta.6",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "automagik-forge": "bin/cli.js"
8
+ },
7
9
  "keywords": [],
8
10
  "author": "Namastex Labs",
9
11
  "license": "",
10
12
  "description": "NPX wrapper around automagik-forge and automagik-forge-mcp",
11
13
  "files": [
12
14
  "dist",
13
- "bin"
15
+ "bin",
16
+ "index.js"
14
17
  ],
15
18
  "dependencies": {}
16
19
  }