@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 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/cli
26
- zocket setup
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:your-org/zocket
45
- zocket setup
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 web --host 127.0.0.1 --port 18001
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
- PYTHONPATH=. pytest -q
87
- bash scripts/release-check.sh
85
+ npm install
86
+ npm run build
87
+ npm test
88
88
  ```
89
89
 
90
90
  ## License