@ao_zorin/zocket 1.1.0 → 1.3.0
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 +15 -5
- package/dist/zocket.js +624 -41
- package/docs/AI_AUTODEPLOY.md +9 -13
- package/docs/GIT_NPM_RELEASE.md +4 -13
- package/docs/INSTALL.md +50 -118
- package/package.json +3 -1
- package/scripts/install-zocket.ps1 +34 -70
- package/scripts/install-zocket.sh +82 -143
package/README.md
CHANGED
|
@@ -36,18 +36,28 @@ zocket init
|
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
38
|
zocket init
|
|
39
|
-
zocket start --host 127.0.0.1 --web-port 18001 --mcp-port 18002 --mode admin
|
|
39
|
+
zocket start --host 127.0.0.1 --web-port 18001 --mcp-port 18002 --mcp-stream-port 18003 --mode admin
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
Open `http://127.0.0.1:18001`.
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
MCP-only (no web panel):
|
|
45
|
+
```bash
|
|
46
|
+
zocket server --host 127.0.0.1 --mcp-port 18002 --mcp-stream-port 18003 --mode admin
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## CLI / TUI
|
|
45
50
|
|
|
46
|
-
|
|
47
|
-
|
|
51
|
+
Full CLI management:
|
|
52
|
+
```bash
|
|
53
|
+
zocket projects list
|
|
54
|
+
zocket projects create myproj --description \"demo\"
|
|
55
|
+
zocket secrets set myproj API_KEY abc123 --description \"example\"
|
|
56
|
+
```
|
|
48
57
|
|
|
58
|
+
Interactive TUI:
|
|
49
59
|
```bash
|
|
50
|
-
|
|
60
|
+
zocket tui
|
|
51
61
|
```
|
|
52
62
|
|
|
53
63
|
## Docs
|