@ao_zorin/zocket 1.0.0 → 1.1.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 +17 -22
- package/dist/zocket.js +1999 -0
- package/docs/GIT_NPM_RELEASE.md +53 -0
- package/docs/INSTALL.md +27 -56
- package/docs/SOURCES.md +29 -0
- package/package.json +49 -37
- package/scripts/install-zocket.ps1 +1 -1
- package/scripts/install-zocket.sh +131 -13
- package/bin/zocket-setup.cjs +0 -12
- package/bin/zocket.cjs +0 -174
- package/pyproject.toml +0 -29
- package/scripts/ai-autodeploy.py +0 -127
- package/zocket/__init__.py +0 -2
- package/zocket/__main__.py +0 -5
- package/zocket/audit.py +0 -76
- package/zocket/auth.py +0 -34
- package/zocket/autostart.py +0 -281
- package/zocket/backup.py +0 -33
- package/zocket/cli.py +0 -655
- package/zocket/config_store.py +0 -68
- package/zocket/crypto.py +0 -158
- package/zocket/harden.py +0 -136
- package/zocket/i18n.py +0 -216
- package/zocket/mcp_server.py +0 -249
- package/zocket/paths.py +0 -50
- package/zocket/runner.py +0 -108
- package/zocket/templates/index.html +0 -1062
- package/zocket/templates/login.html +0 -244
- package/zocket/vault.py +0 -331
- package/zocket/web.py +0 -490
package/README.md
CHANGED
|
@@ -22,40 +22,34 @@ Local encrypted vault + web panel + MCP server for AI agent workflows.
|
|
|
22
22
|
## Install (instant)
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
npm i -g @zocket
|
|
26
|
-
zocket
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
## Install (dev)
|
|
30
|
-
|
|
31
|
-
### Python
|
|
32
|
-
```bash
|
|
33
|
-
pip install -e .
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
### npm wrapper
|
|
37
|
-
```bash
|
|
38
|
-
npm install
|
|
39
|
-
npm run smoke:npm
|
|
25
|
+
npm i -g @ao_zorin/zocket
|
|
26
|
+
zocket init
|
|
40
27
|
```
|
|
41
28
|
|
|
42
29
|
or global from git:
|
|
43
30
|
```bash
|
|
44
|
-
npm i -g github:
|
|
45
|
-
zocket
|
|
31
|
+
npm i -g github:aozorin/zocket
|
|
32
|
+
zocket init
|
|
46
33
|
```
|
|
47
34
|
|
|
48
35
|
## Quick start
|
|
49
36
|
|
|
50
37
|
```bash
|
|
51
38
|
zocket init
|
|
52
|
-
zocket
|
|
53
|
-
zocket mcp --transport sse --mode metadata --host 127.0.0.1 --port 18002
|
|
54
|
-
zocket mcp --transport streamable-http --mode metadata --host 127.0.0.1 --port 18003
|
|
39
|
+
zocket start --host 127.0.0.1 --web-port 18001 --mcp-port 18002 --mode admin
|
|
55
40
|
```
|
|
56
41
|
|
|
57
42
|
Open `http://127.0.0.1:18001`.
|
|
58
43
|
|
|
44
|
+
## Codex (streamable HTTP)
|
|
45
|
+
|
|
46
|
+
Codex requires streamable HTTP on `127.0.0.1:18003/mcp`. The Node CLI does **SSE only** today.
|
|
47
|
+
Until streamable HTTP is implemented in Node, run the companion Python service (separate package):
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
python3 -m zocket mcp --transport streamable-http --mode admin --host 127.0.0.1 --port 18003
|
|
51
|
+
```
|
|
52
|
+
|
|
59
53
|
## Docs
|
|
60
54
|
|
|
61
55
|
- installation (Windows/Linux/macOS): [`docs/INSTALL.md`](docs/INSTALL.md)
|
|
@@ -83,8 +77,9 @@ Open `http://127.0.0.1:18001`.
|
|
|
83
77
|
## Development
|
|
84
78
|
|
|
85
79
|
```bash
|
|
86
|
-
|
|
87
|
-
|
|
80
|
+
npm install
|
|
81
|
+
npm run build
|
|
82
|
+
npm test
|
|
88
83
|
```
|
|
89
84
|
|
|
90
85
|
## License
|