@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 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/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 --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
- PYTHONPATH=. pytest -q
87
- bash scripts/release-check.sh
80
+ npm install
81
+ npm run build
82
+ npm test
88
83
  ```
89
84
 
90
85
  ## License