neuralos 2.9.10 → 2.9.11

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 (2) hide show
  1. package/bin/gybackend.cjs +11 -1
  2. package/package.json +2 -6
package/bin/gybackend.cjs CHANGED
@@ -347146,13 +347146,23 @@ async function manageRecording(args, context2) {
347146
347146
  if (!args.terminalId) {
347147
347147
  out = "start requires terminalId.";
347148
347148
  } else {
347149
- out = `Recording started: ${r.start(args.terminalId, { title: args.title })}`;
347149
+ const ts = context2.terminalService;
347150
+ const id = ts && typeof ts.startRecording === "function" ? ts.startRecording(args.terminalId, { title: args.title }) : r.start(args.terminalId, { title: args.title });
347151
+ out = `Recording started: ${id}`;
347150
347152
  }
347151
347153
  } else if (args.action === "stop") {
347152
347154
  if (!args.recordingId) {
347153
347155
  out = "stop requires recordingId.";
347154
347156
  } else {
347155
347157
  const rec = r.stop(args.recordingId);
347158
+ try {
347159
+ const ts = context2.terminalService;
347160
+ const termId = rec.terminalId ?? args.terminalId;
347161
+ if (termId && ts?.activeRecordings instanceof Map) {
347162
+ if (ts.activeRecordings.get(termId) === args.recordingId) ts.activeRecordings.delete(termId);
347163
+ }
347164
+ } catch {
347165
+ }
347156
347166
  out = `Recording ${args.recordingId} stopped (${rec.events.length} events).`;
347157
347167
  }
347158
347168
  } else if (args.action === "replay") {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "neuralos",
3
- "version": "2.9.10",
4
- "description": "neuralOS — the headless AI-native backend for RTerm. 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, AgentSpan/Conductor durable-agent bridge). The RTerm desktop app stays RTerm; neuralOS is the standalone backend daemon. Dual-published as rterm-backend. v2.9.10: AgentSpan Phase 2 export/register RTerm playbooks as Conductor workflows + durable task delegation (9 bridge tools, 7 plugins total).",
3
+ "version": "2.9.11",
4
+ "description": "neuralOS — the headless AI-native backend for RTerm. 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, AgentSpan/Conductor durable-agent bridge). The RTerm desktop app stays RTerm; neuralOS is the standalone backend daemon. Dual-published as rterm-backend. v2.9.11: fixagent-tool session recording now captures (start routed via TerminalService).",
5
5
  "main": "bin/gybackend.cjs",
6
6
  "bin": {
7
7
  "neuralos": "bin/gybackend.cjs",
@@ -63,10 +63,6 @@
63
63
  "apm",
64
64
  "dem",
65
65
  "etw",
66
- "agentspan",
67
- "conductor",
68
- "durable-agents",
69
- "playbooks",
70
66
  "monitoring"
71
67
  ]
72
68
  }