iaurora 1.0.10 → 1.0.11

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/README.md CHANGED
@@ -48,6 +48,16 @@ docker run --rm -p 8080:8080 \
48
48
  gurveeer/Aurora
49
49
  ```
50
50
 
51
+ **npm (global CLI)**
52
+
53
+ ```bash
54
+ npm install -g iaurora
55
+ # Now run `aurora` anywhere:
56
+ aurora --help
57
+ ```
58
+
59
+ Requires Go 1.26.2+ to be installed on the machine; the `aurora` binary is downloaded on first use.
60
+
51
61
  **From source**
52
62
 
53
63
  ```bash
package/bin/aurora.exe CHANGED
Binary file
package/config.yaml CHANGED
@@ -1,7 +1,9 @@
1
1
  # Aurora OSS minimal local profile
2
- # Usage: $env:AURORA_CONFIG_PATH = "configs/editions/oss.example.yaml"; go run ./apps/aurora
3
- # Goal: start with no external dependencies. Use provider env vars such as OPENAI_API_KEY or GROQ_API_KEY.
4
- # Config pipeline: defaults -> this YAML -> env vars. Env vars always win.
2
+ # Usage: set AURORA_CONFIG_PATH to this file, create a .env with your keys, then run `aurora`.
3
+ # $env:AURORA_CONFIG_PATH="configs/editions/oss.example.yaml"
4
+ # (or copy this file somewhere convenient and point AURORA_CONFIG_PATH there)
5
+ # Goal: start with no external dependencies. Use provider env vars such as GROQ_API_KEY or OPENAI_API_KEY.
6
+ # Config pipeline: defaults -> this YAML -> env vars. Env vars always win.
5
7
  # Do not put real provider keys in this file.
6
8
 
7
9
  edition:
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.10",
2
+ "version": "1.0.11",
3
3
  "author": "SantiagoDePolonia",
4
4
  "license": "Apache-2.0",
5
5
  "files": [
@@ -30,7 +30,7 @@
30
30
  "node": "\u003e=18"
31
31
  },
32
32
  "scripts": {
33
- "postinstall": "node scripts/npm-postinstall.js"
33
+ "postinstall": "node ./scripts/npm-postinstall.js"
34
34
  },
35
35
  "homepage": "https://github.com/gurveeer/Aurora#readme",
36
36
  "repository": {