scorpion-cli 0.1.1 → 0.1.2
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 +4 -4
- package/package.json +4 -3
- package/src/index.js +1 -1
package/README.md
CHANGED
|
@@ -59,24 +59,24 @@ After the `0.1.0` release, Scorpion can be installed on Windows, macOS, and Linu
|
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
61
|
# Global npm install
|
|
62
|
-
npm install --global scorpion-cli@0.1.
|
|
62
|
+
npm install --global scorpion-cli@0.1.2
|
|
63
63
|
scorpion
|
|
64
64
|
|
|
65
65
|
# Run without installing globally
|
|
66
|
-
npx scorpion-cli@0.1.
|
|
66
|
+
npx scorpion-cli@0.1.2
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
PowerShell:
|
|
70
70
|
|
|
71
71
|
```powershell
|
|
72
|
-
irm https://raw.githubusercontent.com/amaansyed27/scorpion-cli-agent/v0.1.
|
|
72
|
+
irm https://raw.githubusercontent.com/amaansyed27/scorpion-cli-agent/v0.1.2/install.ps1 | iex
|
|
73
73
|
scorpion
|
|
74
74
|
```
|
|
75
75
|
|
|
76
76
|
macOS/Linux:
|
|
77
77
|
|
|
78
78
|
```bash
|
|
79
|
-
curl -fsSL https://raw.githubusercontent.com/amaansyed27/scorpion-cli-agent/v0.1.
|
|
79
|
+
curl -fsSL https://raw.githubusercontent.com/amaansyed27/scorpion-cli-agent/v0.1.2/install.sh | sh
|
|
80
80
|
scorpion
|
|
81
81
|
```
|
|
82
82
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scorpion-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Agentic AI CLI assistant powered by Ollama",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"scorpion": "src/index.js"
|
|
7
|
+
"bin": {
|
|
8
|
+
"scorpion": "src/index.js",
|
|
9
|
+
"scorpion-cli": "src/index.js"
|
|
9
10
|
},
|
|
10
11
|
"files": [
|
|
11
12
|
"src",
|