@ao_zorin/zocket 1.0.0 → 1.2.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 +22 -22
- package/dist/zocket.js +2313 -0
- package/docs/AI_AUTODEPLOY.md +9 -13
- package/docs/GIT_NPM_RELEASE.md +44 -0
- package/docs/INSTALL.md +43 -158
- package/docs/SOURCES.md +29 -0
- package/package.json +49 -37
- package/scripts/install-zocket.ps1 +27 -69
- package/scripts/install-zocket.sh +144 -93
- 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,39 @@ 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 --mcp-stream-port 18003 --mode admin
|
|
55
40
|
```
|
|
56
41
|
|
|
57
42
|
Open `http://127.0.0.1:18001`.
|
|
58
43
|
|
|
44
|
+
## CLI / TUI
|
|
45
|
+
|
|
46
|
+
Full CLI management:
|
|
47
|
+
```bash
|
|
48
|
+
zocket projects list
|
|
49
|
+
zocket projects create myproj --description \"demo\"
|
|
50
|
+
zocket secrets set myproj API_KEY abc123 --description \"example\"
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Interactive TUI:
|
|
54
|
+
```bash
|
|
55
|
+
zocket tui
|
|
56
|
+
```
|
|
57
|
+
|
|
59
58
|
## Docs
|
|
60
59
|
|
|
61
60
|
- installation (Windows/Linux/macOS): [`docs/INSTALL.md`](docs/INSTALL.md)
|
|
@@ -83,8 +82,9 @@ Open `http://127.0.0.1:18001`.
|
|
|
83
82
|
## Development
|
|
84
83
|
|
|
85
84
|
```bash
|
|
86
|
-
|
|
87
|
-
|
|
85
|
+
npm install
|
|
86
|
+
npm run build
|
|
87
|
+
npm test
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
## License
|