neuralos 3.4.2 → 3.4.4

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/bin/gybackend.cjs CHANGED
@@ -350383,11 +350383,21 @@ init_zod();
350383
350383
  function parseMemoryEntries(content) {
350384
350384
  const out = [];
350385
350385
  const lines = String(content || "").replace(/\r\n/g, "\n").split("\n");
350386
+ let currentSection;
350387
+ let pos = 0;
350386
350388
  for (const line of lines) {
350387
350389
  const t = line.trim();
350388
350390
  if (!t || t === "# Memory" || t.startsWith("- Add durable cross-session notes")) continue;
350391
+ const sectionMatch = /^##\s+(.+)$/.exec(t);
350392
+ if (sectionMatch) {
350393
+ currentSection = sectionMatch[1].trim();
350394
+ out.push({ text: t, tokens: tokenize2(t), position: pos, section: currentSection });
350395
+ pos += 1;
350396
+ continue;
350397
+ }
350389
350398
  if (/^#{1,6}\s/.test(t) || /^[-*]\s/.test(t) || t.length > 24) {
350390
- out.push({ text: t, tokens: tokenize2(t) });
350399
+ out.push({ text: t, tokens: tokenize2(t), position: pos, section: currentSection });
350400
+ pos += 1;
350391
350401
  }
350392
350402
  }
350393
350403
  return out;
@@ -350423,11 +350433,16 @@ function searchMemory(content, query, limit2 = 10) {
350423
350433
  const q = tokenize2(query);
350424
350434
  if (q.length === 0) return [];
350425
350435
  const qSet = new Set(q);
350436
+ const entries = parseMemoryEntries(content);
350437
+ const total = Math.max(1, entries.length);
350426
350438
  const scored = [];
350427
- for (const e of parseMemoryEntries(content)) {
350428
- let score = 0;
350429
- for (const tok of e.tokens) if (qSet.has(tok)) score += 1;
350430
- if (score > 0) scored.push({ text: e.text, score });
350439
+ for (const e of entries) {
350440
+ let overlap = 0;
350441
+ for (const tok of e.tokens) if (qSet.has(tok)) overlap += 1;
350442
+ if (overlap === 0) continue;
350443
+ const recency = e.position / total;
350444
+ const score = overlap * (0.6 + 0.4 * recency);
350445
+ scored.push({ text: e.text, score });
350431
350446
  }
350432
350447
  return scored.sort((a, b) => b.score - a.score).slice(0, limit2);
350433
350448
  }
@@ -350455,7 +350470,11 @@ function appendMemoryNote(content, note, opts = {}) {
350455
350470
  tail4.unshift(all[j]);
350456
350471
  if (tail4.join("\n").length > maxChars * 0.9) break;
350457
350472
  }
350458
- return [...head, ...tail4].join("\n").replace(/\n{3,}/g, "\n\n").trim() + "\n";
350473
+ let result = [...head, ...tail4].join("\n").replace(/\n{3,}/g, "\n\n").trim() + "\n";
350474
+ if (result.length > maxChars * 1.2) {
350475
+ result = result.slice(0, Math.floor(maxChars)) + "\n";
350476
+ }
350477
+ return result;
350459
350478
  }
350460
350479
  function recallForPrompt(content, opts = {}) {
350461
350480
  const maxChars = Math.max(2e3, opts.maxChars ?? 12e3);
@@ -350463,6 +350482,7 @@ function recallForPrompt(content, opts = {}) {
350463
350482
  if (body.length <= maxChars) return body;
350464
350483
  const hits = opts.query ? searchMemory(body, opts.query, 30) : [];
350465
350484
  const picked = [];
350485
+ const emittedSections = /* @__PURE__ */ new Set();
350466
350486
  let total = 0;
350467
350487
  const push2 = (t) => {
350468
350488
  if (total + t.length + 1 > maxChars) return false;
@@ -350470,12 +350490,29 @@ function recallForPrompt(content, opts = {}) {
350470
350490
  total += t.length + 1;
350471
350491
  return true;
350472
350492
  };
350493
+ const pushWithSection = (e) => {
350494
+ if (e.section && !emittedSections.has(e.section)) {
350495
+ const heading = `## ${e.section}`;
350496
+ if (!push2(heading)) return false;
350497
+ emittedSections.add(e.section);
350498
+ }
350499
+ return push2(e.text);
350500
+ };
350473
350501
  if (hits.length > 0) {
350474
- for (const h of hits) if (!push2(h.text)) break;
350502
+ const byText = /* @__PURE__ */ new Map();
350503
+ for (const e of parseMemoryEntries(body)) byText.set(e.text, e);
350504
+ for (const h of hits) {
350505
+ const e = byText.get(h.text);
350506
+ if (e) {
350507
+ if (!pushWithSection(e)) break;
350508
+ } else if (!push2(h.text)) {
350509
+ break;
350510
+ }
350511
+ }
350475
350512
  } else {
350476
350513
  const entries = parseMemoryEntries(body);
350477
350514
  for (let i = entries.length - 1; i >= 0; i -= 1) {
350478
- if (!push2(entries[i].text)) break;
350515
+ if (!pushWithSection(entries[i])) break;
350479
350516
  }
350480
350517
  picked.reverse();
350481
350518
  }
@@ -370315,7 +370352,12 @@ var AgentService_v2 = class {
370315
370352
  );
370316
370353
  memoryPrompt = {
370317
370354
  memoryFilePath: snapshot.filePath,
370318
- memoryContent: snapshot.content
370355
+ memoryContent: snapshot.content,
370356
+ // v3.4.2 BUG FIX: pass the user's input so that when memory.md
370357
+ // exceeds the injection cap, recall returns the entries RELEVANT
370358
+ // to this request instead of just the newest ones. The field was
370359
+ // supported since v3.0.5 but never wired at this call site.
370360
+ userInput: displayContent
370319
370361
  };
370320
370362
  } catch (error40) {
370321
370363
  console.warn(
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "neuralos",
3
- "version": "3.4.2",
4
- "description": "Standalone neuralOS backend (rterm-backend): AI-native terminal & agentic-AI operations platform for Forward Deployed Engineers & SREs.",
3
+ "version": "3.4.4",
4
+ "description": "AI-native terminal & agentic-AI operations platform for Forward Deployed Engineers & SREs: AIOps closed-loop remediation, AI SRE, self-healing infrastructure, runbook automation, ChatOps; executes over SSH/WinRM/serial under policy with tamper-evident audit.",
5
5
  "keywords": [
6
6
  "forward-deployed-engineer",
7
7
  "fde",
package/README.md DELETED
@@ -1,366 +0,0 @@
1
- # <img src="./demo_imgs/icon.png" width="40" height="40" align="center" style="margin-right: 10px;"> RTerm
2
-
3
- > **The AI-Native Terminal that thinks, executes, and collaborates with you.**
4
- > **Built for Forward Deployed Engineers (FDEs), SREs, and platform teams** who live inside customer estates: reach any host (SSH / WinRM / serial), execute across fleets, change production safely, and leave behind automation — from one window, under your control.
5
- > **AIOps · AI SRE · Agentic AI for operations**: closed-loop remediation, self-healing infrastructure, runbook automation, and ChatOps — with an AI agent that executes under policy and leaves tamper-evident evidence.
6
-
7
- [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
8
- [![Platform](https://img.shields.io/badge/Platform-Windows%20%7C%20macOS%20%7C%20Linux-blue)](#platforms)
9
- [![Shell](https://img.shields.io/badge/Shell-Zsh%20%7C%20Bash%20%7C%20PowerShell-orange)](#key-capabilities)
10
-
11
- English README | [中文 README](./README.zh-CN.md)
12
- Latest release notes: [`changelogs/v1.6.0.md`](./changelogs/v1.6.0.md)
13
-
14
- If you have any suggestions or questions, please feel free to submit them in [GitHub Discussions](https://github.com/MrOrangeJJ/RTerm/discussions).
15
-
16
- Usage guides:
17
- [`docs/fde.md` — RTerm for Forward Deployed Engineers](./docs/fde.md) ·
18
- [`docs/mobile-web-usage.md`](./docs/mobile-web-usage.md) ·
19
- [`docs/tui-usage.md`](./docs/tui-usage.md) ·
20
- [`docs/gybackend-usage.md`](./docs/gybackend-usage.md)
21
-
22
- > [!WARNING]
23
- > **Active Development**: RTerm evolves quickly. If a version introduces history compatibility breaks, it will be called out explicitly in release notes.
24
-
25
- > [!NOTE]
26
- > **v1.4.0 upgrade note**: the first launch after upgrading from a pre-1.4.0 version may briefly block while RTerm migrates legacy JSON history into SQLite and writes timestamped backup files. v1.4.3 has no additional migration step.
27
-
28
- <p align="center">
29
- <img src="./demo_imgs/v1.6.0_dark.png" width="100%" alt="GyShell dark theme demo">
30
- </p>
31
- <p align="center">
32
- <img src="./demo_imgs/v1.6.0_light.png" width="100%" alt="GyShell light theme demo">
33
- </p>
34
- <p align="center">
35
- <video controls width="100%" src="https://github.com/user-attachments/assets/f9daf884-bda0-4a58-8a6d-934db0eddeb5"></video>
36
- </p>
37
-
38
- ---
39
-
40
- ## Why RTerm Is Different
41
-
42
- Most AI terminal tools either generate one-shot scripts, or run in isolated sandboxes detached from real shell workflows.
43
-
44
- RTerm is built for **persistent execution in your real terminal runtime**:
45
-
46
- - **Persistent execution loop**: observe output -> reason -> continue.
47
- - **Human-in-the-loop by design**: intervene anytime without breaking flow.
48
- - **Multi-tab orchestration**: compile, inspect logs, and run fixes in parallel tabs.
49
- - **Global tab inventory**: scan, reopen, drag, close, and create terminal/chat tabs from a dedicated list panel.
50
- - **Workspace persistence**: terminal tabs, panel layout, and saved layout slots can survive restarts and restore quickly.
51
- - **Detachable multi-window workspace**: peel panels into sub-windows and move tabs or whole panels across windows.
52
- - **Adaptive panel tab display**: keep full tab strips or switch to a compact selector for narrow panel headers.
53
- - **Reusable Agent setting profiles**: save and reapply complete operating profiles for models, tools, policies, memory, and workflow flags.
54
- - **Cross-chat context handoff**: reference previous conversations from the composer with `Pass Chat` mentions instead of manually copying history.
55
- - **Integrated file management**: browse, edit, copy, and transfer files across local and SSH sessions without leaving the workspace.
56
- - **Live resource visibility**: inspect CPU, memory, disks, network, processes, sockets, and GPU from local or SSH sessions.
57
- - **OpenClawd-style remote conversation control**: keep the runtime core on your own computer and steer it from anywhere through chat.
58
- - **Built-in mobile-web delivery**: desktop can publish the mobile-web companion directly over your LAN with copyable access links.
59
- - **Cross-surface runtime model**: desktop, TUI, and mobile-web share one gateway semantics.
60
- - **Profile lock safety**: busy sessions pin active model profile for consistency.
61
- - **Long-horizon context quality**: memory.md + compaction summaries + visible boundaries + deterministic fallback recovery keep long sessions understandable.
62
- - **Tooling-native workflow**: skills, MCP servers, and built-in tools are runtime primitives.
63
- - **Plugin system**: anyone can develop a custom plugin (agent tools, event triggers, dashboard panels) and have it auto-integrate on startup — 6 official plugins ship out of the box.
64
- - **SRE observability pillar**: metrics ledger, golden signals, SLO/error budgets, uptime watchdogs, incident ledger with RCA + postmortems, anomaly detection, capacity forecasting, and a unified live dashboard.
65
- - **APM + DEM + k8s/cloud infra**: OTLP distributed-trace store, Core Web Vitals (RUM), cluster health, and Windows ETW diagnostics.
66
- - **Governance & audit**: hash-chained tamper-evident audit ledger with Merkle-tree evidence sealing, an AGT-style YAML policy engine (allow/deny/escalate), and a maker/checker review model that independently verifies the agent's output for correctness, completeness, safety, compliance, and accuracy.
67
-
68
- ### At a Glance
69
-
70
- - **For Forward Deployed Engineers (FDEs)**: reach any customer estate (SSH / WinRM / serial / Cisco), execute across fleets, land production changes under MOP approval with automatic rollback, and leave behind playbooks, triggers, and audit evidence — see [`docs/fde.md`](./docs/fde.md).
71
- - **For shipping work**: not just planning, but iterative execution and correction.
72
- - **For long-running tasks**: preserves session continuity and state across steps.
73
- - **For real infrastructure**: shell, SSH, forwarding, file management, and multi-tab interactive terminal control.
74
- - **For multi-device flow**: desktop + TUI + mobile-web with shared gateway semantics.
75
- - **For multimodal workflows**: text and image inputs can be combined in one execution turn.
76
-
77
- ## Where RTerm Fits — AIOps, AI SRE & Agentic Ops
78
-
79
- Depending on your lens, RTerm is an **AIOps platform**, an **AI SRE teammate**, an **agentic-AI operations runtime**, a **runbook automation engine**, or **ChatOps for production** — all running on your own machine, against your real estate, under your policy.
80
-
81
- | If you're looking for… | RTerm delivers |
82
- |---|---|
83
- | **AIOps / closed-loop remediation** | Detect (metrics, anomaly detection, early-warning forecasts, triggers) → Decide (AI agent under AGT policy) → Act (playbooks, MOP-gated changes) → Prove (hash-chained audit ledger + Merkle evidence sealing) |
84
- | **AI SRE / SRE agents** | Golden signals, SLOs with error budgets + burn-rate alerting, uptime watchdogs, incident ledger with AI RCA + postmortems, capacity forecasting, on-call paging — executed by an agent with guardrails, not another dashboard you stare at |
85
- | **Agentic AI for infrastructure** | The missing execution layer: a persistent observe→reason→act loop over SSH/WinRM/serial fleets, 100+ built-in tools, MCP support, skills, plugins, and a maker/checker review model that double-checks every consequential action |
86
- | **Runbook automation** | Orchestrated DAG playbooks (incl. dagu YAML), validation steps with automatic rollback, Jinja templates, cron scheduling, GitOps drift detection |
87
- | **Self-healing infrastructure** | Event-driven triggers (terminal pattern / metric threshold / webhook / schedule) fire playbooks or propose approved changes — auto-remediation with cooldowns and concurrency caps |
88
- | **ChatOps for prod** | Steer operations conversationally from the desktop app or your phone's browser (mobile-web companion); approve blocked commands from anywhere; alerts fan out to Slack/Teams/Telegram/SMTP |
89
- | **Copilot for ops/on-call** | Ask "why is db-02 slow?" — the agent pulls facts across hosts, correlates metrics + traces + logs, proposes a fix under approval, writes the postmortem |
90
-
91
- The common thread: **RTerm doesn't just watch or suggest — it executes, safely, and leaves evidence.**
92
-
93
- ## Latest Highlights
94
-
95
- **v2.7.x — Governance, plugins & the maker/checker model:**
96
- - **Review model (maker/checker)** with a visible Settings UI — a second model independently verifies the action model's output (correctness, completeness, safety, compliance, accuracy); skipped when not configured for fast output.
97
- - **AGT policy engine** — YAML policies (allow/deny/escalate) evaluated before every consequential action, with a built-in safe default policy.
98
- - **Hash-chained audit ledger + Merkle evidence sealing** for tamper-evident, independently-verifiable audit trails.
99
- - **Monitor diagnostics** — one-call answer to "why aren't stats displaying?" per terminal.
100
-
101
- **v2.5–v2.6 — Plugin system + official plugin suite + APerf:**
102
- - **Plugin system** — custom plugins (agent tools, triggers, dashboard panels) auto-integrate on startup; 6 official plugins ship out of the box (patch-manager, request-router, sop-assistant, iam-connector, fraudops, netdata-rterm).
103
- - **AWS APerf deep-dive** — deploy aperf to any Linux host for deep performance profiling with agent RCA on the findings.
104
-
105
- **v2.0–v2.4 — The SRE pillar + advanced automation:**
106
- - **Full observability** — metrics ledger, golden signals, SLO/error budgets, uptime watchdogs, incident ledger (RCA + postmortems), anomaly detection, capacity forecasting, unified live dashboard.
107
- - **APM/DEM/infra/ETW** — OTLP traces, Core Web Vitals, k8s/cloud health, Windows ETW diagnostics.
108
- - **Advanced automation** — event-driven triggers (NATS mesh), DAG playbooks, parameterized runbooks, dagu workflows, MOP change management with automatic rollback.
109
-
110
- **v1.6.0 — Workspace foundation:**
111
-
112
- - **Global Tab List panel**
113
- - a new `TAB LIST` panel shows terminal and chat tabs as a vertical workspace inventory, with counts, status dots, latest-first ordering, drag/drop support, close actions, and quick creation for chat, local terminal, and saved-SSH terminal tabs
114
- - **Default workspace refresh**
115
- - new main layouts start with the list panel on the left, chat in the center, and terminal on the right, making tab-heavy sessions easier to scan immediately
116
- - **More predictable background terminal tabs**
117
- - local and SSH tabs created from the list panel can start in the background, stay visible in the global terminal inventory, bind to terminal panels when appropriate, and no longer unexpectedly take over linked filesystem or monitor panels
118
- - **Visible compaction boundaries**
119
- - long chats now persist and render a `[CTX COMPACTED]` marker at the actual retained-history cutoff across desktop, mobile-web, and TUI clients
120
- - **Deterministic compaction fallback**
121
- - when the compaction model fails or returns an empty summary, GyShell can recover with a local deterministic digest while preserving the protected tail and exporting exact older history for on-demand inspection when available
122
- - **Safer stream recovery**
123
- - empty non-tool provider stream finishes now retry through the normal path instead of silently ending a run with no answer, while valid empty tool-call finishes remain routable
124
- - **Terminal inventory stability**
125
- - terminal titles stay unique and stable across duplicate backend snapshots, concurrent terminal creation, explicit numeric suffixes, and detached-window terminal transfers
126
- - **Mobile-web runtime refresh**
127
- - Electron-packaged mobile-web assets were regenerated so desktop builds serve the updated client without requiring a separate mobile-web development server
128
-
129
- ---
130
-
131
- ## Key Capabilities
132
-
133
- ### AI-Native Runtime
134
-
135
- - Thinking-oriented execution for complex tasks.
136
- - Context-aware responses from terminal state and selected resources.
137
- - Per-profile model routing for `Global`, `Thinking`, `Action`, and `Compaction` roles.
138
- - Reusable Agent Setting profiles for model profile, security policy, tools, skills, memory, recursion, and experimental workflow flags.
139
- - Long-session context quality with dedicated compaction models, dynamic summaries, visible `[CTX COMPACTED]` boundary markers, and deterministic fallback recovery when model compaction is unavailable.
140
- - SQLite-backed conversation history with automatic one-time migration from legacy JSON storage.
141
- - AI-assisted terminal command drafting from recent tab context, with paste-before-run control.
142
- - Background (nowait) commands automatically notify the agent on completion, so the agent can close the loop without polling.
143
- - Terminal-targeting agent tools report runtime status and refuse stale operations on disconnected tabs until reconnect succeeds.
144
- - Reference previous conversations with `Pass Chat` mentions; GyShell exports the selected chat as private local Markdown and tells the agent how to read it only when needed.
145
- - Classic or Seamless chat activity display, depending on how much inline tool detail you want.
146
- - Persistent memory injection via `memory.md`, scoped to the active Agent Setting profile when one is applied.
147
- - Multimodal user input pipeline (text + images) for compatible models.
148
- - OpenAI-compatible model endpoint support, with automatic recovery from malformed empty tool-call stream finishes.
149
- - Optional experimental agent tools, including asynchronous cross-machine file transfer between terminal tabs with progress polling.
150
-
151
- ### Terminal + SSH + File Management
152
-
153
- - Shell support: Zsh, Bash, PowerShell.
154
- - Older Windows PowerShell environments now use more reliable sidecar-based command completion tracking for local and SSH sessions.
155
- - SSH support: password/key auth, proxy chaining, bastion workflows.
156
- - SSH sessions use protocol keepalive to reduce silent idle disconnects.
157
- - Port forwarding: local, remote, and dynamic SOCKS.
158
- - Agent can coordinate **multiple SSH/local terminal tabs** in parallel during one task.
159
- - Control-character operations for interactive terminal apps.
160
- - Draft a command for the current terminal tab from recent visible output, then paste it back without auto-running it.
161
- - Search within the active terminal buffer without leaving the panel.
162
- - Terminal tab restoration after backend restart, plus lossless output catch-up for renderer remount/reconnect within the same backend runtime.
163
- - Local terminal tabs auto-respawn their shell if it exits, so a local tab stays usable instead of going dead.
164
- - Disconnected SSH tabs can be reconnected in place from the tab right-click menu using their saved connection config.
165
- - **Integrated file browser panel**: browse, create, rename, delete, preview, sort, filter, and search files across local and SSH sessions.
166
- - **Cross-session file transfer** (copy/move) with real-time progress, cancellation, and adaptive SFTP tuning.
167
- - **Built-in file editor panel** for editing text files, plus inline preview of images (`png/jpg/gif/webp/bmp/ico/svg/avif`) and PDFs (with page navigation and zoom), all directly in the workspace.
168
- - **File row right-click menu** with Copy / Cut / Paste / Rename / Delete and **Copy Full Path(s)** to the system clipboard.
169
- - **Paste conflict resolution**: choose between **Overwrite** and **Keep Both** (auto-numbered names) when pasting into a folder with same-named items.
170
-
171
- ### Workspace + Monitoring
172
-
173
- - Detach panels into dedicated sub-windows and move tabs or whole panels across windows.
174
- - Use the global Tab List panel to scan terminal/chat inventory, restore unhosted tabs, drag tabs across layout targets, close tabs, and create new chat/local/SSH tabs without forcing a terminal panel to appear.
175
- - Save up to three workspace layout slots and restore them from the rail.
176
- - Optionally keep the computer awake while any chat session is running, with the system-sleep block released automatically when runs finish.
177
- - Chat tabs show a running indicator while a session is busy, mirroring terminal tab runtime-state dots.
178
- - Choose `Auto`, `Expanded`, or `Select` panel tab display modes based on how much header space your workspace has.
179
- - `Ctrl/Cmd+F` opens a panel-local find bar in terminal, current chat, file browser, and file editor.
180
- - Open a resource monitor panel for local and SSH terminals from the workspace rail.
181
- - Monitor panel surfaces CPU, memory, disk, network, process, socket, and GPU telemetry when available.
182
- - Monitor collection is shared across tabs that point at the same local or SSH target, with failover if the original source tab exits.
183
- - Monitor polling can be paused or resumed per local/SSH source, with the preference kept across restarts.
184
- - Compact monitor layouts now give GPU telemetry its own card with clearer VRAM usage details.
185
-
186
- ### Skills + MCP + Tools
187
-
188
- - Folder-based skills workflow compatible with agentskills-style structure.
189
- - Dynamic MCP server integration.
190
- - Precision editing tools for safe, targeted file updates.
191
- - Runtime tool toggles and summaries exposed to clients.
192
-
193
- ### Plugin System (v2.5+)
194
-
195
- - **Custom plugins** auto-integrate on startup: drop a folder with `plugin.json` + `index.mjs` into `~/.gybackend-data/plugins/` — the agent gets your tools, triggers, and dashboard panels immediately.
196
- - **6 official plugins ship out of the box** (21 tools, 10 triggers, 6 panels):
197
- - **patch-manager** — autonomous patch management (discover patches via yum/apt/Windows Update, build deployment plans, execute with MOP approval, fleet-wide compliance dashboard).
198
- - **request-router** — automated request handling (submit/approve/list requests with risk classification → auto-approve/queue/MOP routing).
199
- - **sop-assistant** — SOP retrieval + step-by-step guided execution; 8 built-in SOPs (restart-service, disk-cleanup, database-failover, incident-response, …) + IAM policy lookup.
200
- - **iam-connector** — IAM integration (user/group info, privileged access identification, access reviews, disable users with approval) on Linux + Windows.
201
- - **fraudops** — FraudOps operational layer (Flink/NATS/Kafka pipeline health, STR workflow with deadlines, decision summaries).
202
- - **netdata-rterm** — Netdata Cloud alert webhook ingestion + correlation with RTerm metrics/incidents for RCA and auto-remediation.
203
-
204
- ### SRE Observability (v2.0+)
205
-
206
- - **Metrics ledger** with per-second snapshots per host (cpu/mem/disk/net/load/gpu) and trend forecasting ("disk full in N days").
207
- - **Golden signals** per host (saturation/traffic/latency/errors) + capacity forecast.
208
- - **Uptime watchdogs** (tcp/ssh/http/command liveness), up/degraded/down with alerting.
209
- - **SLO/SLI** with error budget + burn rate + fast-burn alerting.
210
- - **Incident ledger** with timelines, AI root-cause analysis, and postmortems.
211
- - **Anomaly detection** (z-score + robust z-score) + predictive early warnings with optional MOP auto-remediation.
212
- - **APM** — OTLP distributed-trace store (per-service p50/95/99, error rate, bottleneck services).
213
- - **DEM/RUM** — Core Web Vitals (LCP/INP/CLS/TTFB) per page + error rate.
214
- - **k8s/cloud infra** — cluster health (pods, restarts, node readiness, cpu/mem % of limit).
215
- - **Windows ETW diagnostics** — built-in ETW providers (network/file/registry/process), agentless.
216
- - **UEBA behavior ledger** — agent run baselines + deviations (run-spike, token-blowout, error-spike, unusual-model).
217
- - **Embedded eval harness** — measures the agent's accuracy, tool selection, safety/policy compliance, and determinism.
218
- - **Unified live dashboard** + browser-renderable HTML dashboard.
219
- - **AWS APerf deep-dive** (v2.6+) — deploy aperf to any Linux host for deep CPU/PMU/process profiling with parsed findings feeding the agent's RCA.
220
-
221
- ### Governance, Audit & the Maker/Checker Model (v2.7+)
222
-
223
- - **Hash-chained audit ledger** — every agent action, command evaluation, approval, MOP change, and playbook step is recorded with the SHA-256 hash of the previous record (tamper-evident), plus **Merkle-tree evidence sealing** for independently-verifiable audit bundles.
224
- - **AGT policy engine** — YAML policies evaluated before every consequential action (allow/deny/escalate); glob action patterns, target wildcards (`prod-*`), agent identity + sponsoring principal for zero-trust.
225
- - **Review model (maker/checker)** — a second model independently verifies the action model's output on 5 dimensions: correctness, completeness, safety, compliance, and accuracy. Three modes (strict/advisory/auto-approve); skipped entirely when no review model is configured (fast output mode).
226
- - **Monitor diagnostics** — one-call answer to "why aren't stats displaying?" per terminal (publisher wired? session exists? collection stuck? connected? last-collect time?).
227
-
228
- ### Automation & Change Management
229
-
230
- - **Playbooks** with validation + automatic rollback; **DAG/orchestrated playbooks** with parallel waves.
231
- - **Event-driven triggers** (pattern/threshold/webhook/schedule) firing playbooks or proposing MOP changes, with cooldown + concurrency caps.
232
- - **MOP change management** — plan → approve → run → status with a durable change ledger and automatic rollback on validation failure.
233
- - **Scheduled tasks** (5-field cron) running headless inside the daemon.
234
- - **dagu workflows** — run declarative dagu YAML DAGs natively on the orchestrated playbook engine, no dagu server required.
235
- - **Parameterized runbooks** with `{{param}}` substitution + secret masking; idempotent `desiredState` steps; cross-host `captureVar`.
236
- - **NATS event mesh** — fleet-wide trigger fan-out across multiple RTerm backends.
237
-
238
- ### Mobile-Web Companion
239
-
240
- - Mobile-first remote client for active session tracking and steering.
241
- - Desktop can serve the mobile-web companion directly and expose copyable access links from settings.
242
- - OpenClawd-style conversational control from anywhere while your core runtime stays on your own machine.
243
- - Session list with search and status hints.
244
- - Pending approval badge with jump-to-blocked-session behavior, plus task-completion toasts.
245
- - Conversation rollback and branch-from-message controls from mobile.
246
- - Swipe-to-delete session flow for faster mobile cleanup.
247
- - Read-only terminal output tails with unread indicators, local/saved-SSH terminal creation, and SSH reconnect.
248
- - Detailed turn event inspection from phone browser.
249
- - Tool, skill, Agent Setting profile, terminal, and settings access through gateway RPC.
250
- - Long chat timelines avoid full-list rerenders during composer input, keeping history-heavy mobile sessions responsive.
251
- - Gateway exposure can now be limited to localhost, LAN-only, custom CIDR ranges, or all interfaces.
252
-
253
- ---
254
-
255
- ## Platforms
256
-
257
- 1. **Electron desktop app** (`apps/electron`)
258
- 2. **Standalone backend runtime** (`apps/gybackend`)
259
- 3. **Deprecated TUI runtime** (`apps/tui` wrapper + `packages/tui` core)
260
- 4. **Mobile-web runtime** (`apps/mobile-web` wrapper + `packages/mobile-web` core)
261
-
262
- ### Which Surface Should You Use?
263
-
264
- - **Desktop app**: primary full-featured experience for daily development.
265
- - **TUI (`gyll`)**: deprecated and unsupported. Desktop packages no longer bundle or install `gyll`.
266
- - **Mobile-web**: OpenClawd-style remote conversational control from phone/browser.
267
-
268
- ---
269
-
270
- ## Quick Start
271
-
272
- ### Prerequisites
273
-
274
- - Node.js 18+
275
- - npm
276
-
277
- ### Development
278
-
279
- ```bash
280
- git clone https://github.com/MrOrangeJJ/RTerm.git
281
- cd RTerm
282
- npm install
283
- npm run dev
284
- ```
285
-
286
- ### One-line Mental Model
287
-
288
- `RTerm = persistent AI runtime + real terminal control + human override at any time.`
289
-
290
- ### Mobile-web development
291
-
292
- ```bash
293
- npm run dev:mobile-web
294
- ```
295
-
296
- ---
297
-
298
- ## Deprecated CLI (`gyll`)
299
-
300
- After installing and launching RTerm desktop once, `gyll` is available from the desktop runtime setup.
301
-
302
- When an existing user updates from a version that installed desktop-managed `gyll` launchers, the updated app removes those legacy launchers on startup while leaving any shell profile PATH block untouched.
303
-
304
- ---
305
-
306
- ## Architecture Notes
307
-
308
- RTerm follows strict layering:
309
-
310
- - `packages/*`: implementation logic.
311
- - `apps/*`: composition/bootstrap/build wrappers.
312
- - Frontend logic does not belong in `packages/backend`.
313
-
314
- Core runtime chain (simplified):
315
-
316
- 1. `startElectronMain` (desktop composition root)
317
- 2. `GatewayService` (session runtime + transport-agnostic orchestration)
318
- 3. `WebSocketGatewayControlService` (policy-based ws gateway control)
319
- 4. `WebSocketGatewayAdapter` / `ElectronWindowTransport` (transport implementations)
320
- 5. Client controllers in TUI and mobile-web
321
-
322
- See:
323
-
324
- - `docs/monorepo-architecture.md`
325
- - `docs/build-commands.md`
326
-
327
- ## Privacy and Update Policy
328
-
329
- - Version checks query only this repository's GitHub `version.json`.
330
- - No third-party auto-update endpoint is used.
331
- - Version check is the only automatic background network request.
332
-
333
- ## Read More
334
-
335
- - Release notes: `changelogs/v1.6.0.md`
336
- - Build matrix and packaging: `docs/build-commands.md`
337
- - Monorepo boundaries and runtime flow: `docs/monorepo-architecture.md`
338
-
339
- ---
340
-
341
- ## Build and Packaging
342
-
343
- - `npm run build`
344
- - `npm run build:backend`
345
- - `npm run build:tui`
346
- - `npm run build:mobile-web`
347
- - `npm run dist`
348
- - `npm run dist:mac`
349
- - `npm run dist:win`
350
- - `npm run dist:linux`
351
- - `npm run dist:linux-arm64`
352
- - `./build.sh --help`
353
-
354
- For the full command matrix and packaging notes, see `docs/build-commands.md`.
355
-
356
- ---
357
-
358
- ## License
359
-
360
- This project is licensed under the **Apache License, Version 2.0** ([LICENSE](./LICENSE)).
361
-
362
- Special acknowledgment: inspirations and references from [Tabby](https://github.com/Eugeny/tabby) (MIT).
363
-
364
- ---
365
-
366
- **RTerm** - _The shell that thinks with you._
Binary file