rterm-backend 2.9.4 → 2.9.7

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.
Files changed (4) hide show
  1. package/README.md +21 -270
  2. package/bin/gybackend.cjs +2892 -1670
  3. package/package.json +12 -5
  4. package/bin/gybackend.js +0 -387302
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "rterm-backend",
3
- "version": "2.9.4",
4
- "description": "RTerm headless backend \u2014 run RTerm-as-a-service (AI agent, SSH/WinRM/Serial/local terminals, fleet orchestration, advanced automation, SRE observability, Netdata, AWS APerf, plugin system, governance/audit, Prometheus/OTel metrics export, secrets vault, on-call paging, AI cost budgets, GitOps, cloud inventory). Dual-published as neuralos. v2.9.4: the 9 capabilities actually work out of the box (no placeholders).",
5
- "main": "bin/gybackend.js",
3
+ "version": "2.9.7",
4
+ "description": "rterm-backend \u2014 the headless AI-native backend for RTerm (dual-published as neuralOS). run RTerm-as-a-service (AI agent, SSH/WinRM/Serial/local terminals, fleet orchestration, advanced automation, SRE observability, Netdata, AWS APerf, plugin system, governance/audit, Prometheus/OTel metrics export, secrets vault, on-call paging, AI cost budgets, GitOps, cloud inventory, APM/DEM/Infra/ETW ingestion). The RTerm desktop app stays RTerm; neuralOS is the standalone backend daemon. Dual-published as rterm-backend. v2.9.7: SECURITY (republish without bundled local settings; 2.9.6 was deprecated) + settings-driven cost/alerts/on-call/cloud + model-id normalization fix.",
5
+ "main": "bin/gybackend.cjs",
6
6
  "bin": {
7
- "gybackend": "bin/gybackend.cjs"
7
+ "gybackend": "bin/gybackend.cjs",
8
+ "rterm-backend": "bin/gybackend.cjs"
8
9
  },
9
10
  "scripts": {
10
11
  "start": "node bin/gybackend.cjs"
@@ -35,6 +36,8 @@
35
36
  "url": "git+https://github.com/DrOlu/RTerm.git"
36
37
  },
37
38
  "keywords": [
39
+ "rterm-backend",
40
+ "neuralos",
38
41
  "rterm",
39
42
  "terminal",
40
43
  "ssh",
@@ -47,6 +50,7 @@
47
50
  "automation",
48
51
  "headless",
49
52
  "backend",
53
+ "daemon",
50
54
  "websocket",
51
55
  "rpc",
52
56
  "sre",
@@ -57,6 +61,9 @@
57
61
  "on-call",
58
62
  "gitops",
59
63
  "cloud-inventory",
64
+ "apm",
65
+ "dem",
66
+ "etw",
60
67
  "monitoring"
61
68
  ]
62
- }
69
+ }