@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 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
- ## Codex (streamable HTTP)
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
- 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):
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
- python3 -m zocket mcp --transport streamable-http --mode admin --host 127.0.0.1 --port 18003
60
+ zocket tui
51
61
  ```
52
62
 
53
63
  ## Docs