@jahia/agentic 0.1.0 → 0.1.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # `@jahia/agentic`
2
2
 
3
+ ## 0.1.1
4
+
5
+ * Fixed execution error because of a missing shebang in the JS binary. (#2)
6
+
3
7
  ## 0.1.0
4
8
 
5
9
  Initial release! 🎉
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import V, { argv, stdin, stdout } from "node:process";
2
3
  import { stripVTControlCharacters, styleText } from "node:util";
3
4
  import "node:readline";
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "@jahia/agentic",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A CLI to bootstrap an agentic harness for Jahia",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/Jahia/agentic.git"
8
+ },
5
9
  "license": "MIT",
6
10
  "type": "module",
7
11
  "bin": "./dist/index.js",