weside-cli 0.2.1 → 0.3.4
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 +49 -0
- package/package.json +8 -2
package/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# weside-cli
|
|
2
|
+
|
|
3
|
+
The official CLI for [weside.ai](https://weside.ai) — chat with your AI Companions from the terminal.
|
|
4
|
+
|
|
5
|
+
This npm package downloads the pre-built Go binary for your platform.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx weside-cli version
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or install globally:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install -g weside-cli
|
|
17
|
+
weside version
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Other install methods
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
# Homebrew (macOS/Linux)
|
|
24
|
+
brew tap weside-ai/tap && brew install weside-cli
|
|
25
|
+
|
|
26
|
+
# Shell script
|
|
27
|
+
curl -fsSL https://raw.githubusercontent.com/weside-ai/weside-cli/main/scripts/install.sh | sh
|
|
28
|
+
|
|
29
|
+
# From source
|
|
30
|
+
go install github.com/weside-ai/weside-cli@latest
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Quick Start
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
weside auth login
|
|
37
|
+
weside companions list
|
|
38
|
+
weside companions select nox
|
|
39
|
+
weside chat -m "Hey!"
|
|
40
|
+
weside chat --stream -m "Tell me a story"
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Documentation
|
|
44
|
+
|
|
45
|
+
Full docs: [github.com/weside-ai/weside-cli](https://github.com/weside-ai/weside-cli)
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
Apache 2.0
|
package/package.json
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weside-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "CLI for the weside.ai AI Companion Platform",
|
|
5
5
|
"homepage": "https://github.com/weside-ai/weside-cli",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/weside-ai/weside-cli.git"
|
|
9
9
|
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"registry": "https://registry.npmjs.org",
|
|
12
|
+
"access": "public",
|
|
13
|
+
"provenance": true
|
|
14
|
+
},
|
|
10
15
|
"license": "Apache-2.0",
|
|
11
16
|
"bin": {
|
|
12
17
|
"weside": "bin/weside"
|
|
@@ -16,7 +21,8 @@
|
|
|
16
21
|
},
|
|
17
22
|
"files": [
|
|
18
23
|
"bin/",
|
|
19
|
-
"postinstall.js"
|
|
24
|
+
"postinstall.js",
|
|
25
|
+
"README.md"
|
|
20
26
|
],
|
|
21
27
|
"keywords": [
|
|
22
28
|
"weside",
|