rterm-cli 3.2.11 → 3.2.14
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 +2 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,19 +1,8 @@
|
|
|
1
1
|
# rterm CLI
|
|
2
2
|
|
|
3
3
|
A `gyll`-style command CLI for the RTerm / neuralOS backend. Speaks the backend's
|
|
4
|
-
WebSocket JSON-RPC gateway (`ws://host:17888`) natively —
|
|
5
|
-
|
|
6
|
-
```bash
|
|
7
|
-
# no install (Node >= 21)
|
|
8
|
-
npx rterm-cli ping
|
|
9
|
-
|
|
10
|
-
# global install
|
|
11
|
-
npm install -g rterm-cli
|
|
12
|
-
rterm ping
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
Requires a running backend (`gybackend` from `npm i -g neuralos`, or the RTerm
|
|
16
|
-
desktop app) on `ws://127.0.0.1:17888`.
|
|
4
|
+
WebSocket JSON-RPC gateway (`ws://host:17888`) natively — no Node.js app install,
|
|
5
|
+
no dependencies.
|
|
17
6
|
|
|
18
7
|
## Install / run
|
|
19
8
|
|
|
@@ -34,7 +23,6 @@ rterm version # backend version + method count
|
|
|
34
23
|
rterm methods [--category terminal] # self-describing RPC surface
|
|
35
24
|
rterm call <method> [json-params] # raw JSON-RPC call
|
|
36
25
|
rterm terminals # list terminal tabs
|
|
37
|
-
rterm connections # list saved SSH/WinRM/Serial connections
|
|
38
26
|
rterm open <saved-connection-name> # open a tab for a saved connection
|
|
39
27
|
rterm close <tabIdOrName> # close a terminal tab
|
|
40
28
|
rterm run <tabIdOrName> <command> # run a command in a tab (waits)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rterm-cli",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.14",
|
|
4
4
|
"description": "rterm — zero-dependency command CLI for the RTerm / neuralOS backend WebSocket gateway (ping, terminals, connections, open, run, fleet, chat, dashboard, metrics, raw call)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|