rterm-backend 2.9.2 → 2.9.3

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
@@ -342195,6 +342195,22 @@ var BUILTIN_TOOL_INFO = [
342195
342195
  name: "create_or_edit",
342196
342196
  description: CREATE_OR_EDIT_TOOL_DESCRIPTION
342197
342197
  },
342198
+ {
342199
+ name: "write_file",
342200
+ description: WRITE_FILE_TOOL_DESCRIPTION
342201
+ },
342202
+ {
342203
+ name: "edit_file",
342204
+ description: EDIT_FILE_TOOL_DESCRIPTION
342205
+ },
342206
+ {
342207
+ name: "skill",
342208
+ description: "Load a skill to get detailed instructions for a specific task. Skills provide specialized knowledge, step-by-step guidance, and may include supporting files (scripts, references)."
342209
+ },
342210
+ {
342211
+ name: "create_skill",
342212
+ description: "Create a new skill in GyShell skills. This tool only creates new skills and does not modify or overwrite existing ones. If the skill name already exists, the call must fail and you should choose a different name. If you need to modify an existing skill, use edit_file to edit that skill's md file directly, or write_file only when intentionally replacing the full file."
342213
+ },
342198
342214
  {
342199
342215
  name: "wait",
342200
342216
  description: WAIT_TOOL_DESCRIPTION
@@ -342294,6 +342310,42 @@ var BUILTIN_TOOL_INFO = [
342294
342310
  {
342295
342311
  name: "manage_trigger",
342296
342312
  description: MANAGE_TRIGGER_DESCRIPTION
342313
+ },
342314
+ {
342315
+ name: "get_metrics",
342316
+ description: 'Read host metrics as Prometheus exposition text (for a scraper) or a one-line dashboard summary. Use to answer "how are my hosts doing" or to feed an external Prometheus/OTel collector.'
342317
+ },
342318
+ {
342319
+ name: "manage_secret",
342320
+ description: "Manage the encrypted secrets vault \u2014 list metadata (never values), set, delete, or check a secret. Secrets are materialized only at exec time and never enter the conversation. Vault must be unlocked (RTERM_SECRETS_MASTER_KEY)."
342321
+ },
342322
+ {
342323
+ name: "manage_oncall",
342324
+ description: "Incident on-call paging \u2014 list open pages, raise a page for an incident under an escalation policy, acknowledge or resolve a page, list policies, or advance the escalation clock."
342325
+ },
342326
+ {
342327
+ name: "get_cost",
342328
+ description: "AI cost & budgets \u2014 summarize token spend in dollars (per model/profile, daily/monthly), check an intended run against budgets (ok/warn/throttle/deny), or list budgets."
342329
+ },
342330
+ {
342331
+ name: "manage_recording",
342332
+ description: "asciinema-style session recording \u2014 list, start, stop, replay (scrub), export (.cast), or delete a terminal session recording."
342333
+ },
342334
+ {
342335
+ name: "manage_gitops",
342336
+ description: "GitOps for desired state \u2014 export the live estate (connections/playbooks/triggers/etc.) as a content-hashed manifest, or detect drift / verify a manifest against live."
342337
+ },
342338
+ {
342339
+ name: "manage_playbook_version",
342340
+ description: "Playbook/runbook versioning + lint \u2014 statically lint a playbook definition (undefined params, dependsOn cycles, empty steps, missing rollback), list version history, roll back, or diff two versions."
342341
+ },
342342
+ {
342343
+ name: "get_cloud_inventory",
342344
+ description: "Cloud resource inventory (AWS/GCP/Azure) \u2014 summary counts by provider/state, query instances (filter by provider/state/region), or pull fresh inventory."
342345
+ },
342346
+ {
342347
+ name: "get_live_dashboard",
342348
+ description: "Live multi-client dashboard \u2014 read the current unified dashboard state/summary, or the number of connected dashboard subscribers."
342297
342349
  }
342298
342350
  ];
342299
342351
  function buildReadFileDescription(support) {
package/bin/gybackend.js CHANGED
@@ -342195,6 +342195,22 @@ var BUILTIN_TOOL_INFO = [
342195
342195
  name: "create_or_edit",
342196
342196
  description: CREATE_OR_EDIT_TOOL_DESCRIPTION
342197
342197
  },
342198
+ {
342199
+ name: "write_file",
342200
+ description: WRITE_FILE_TOOL_DESCRIPTION
342201
+ },
342202
+ {
342203
+ name: "edit_file",
342204
+ description: EDIT_FILE_TOOL_DESCRIPTION
342205
+ },
342206
+ {
342207
+ name: "skill",
342208
+ description: "Load a skill to get detailed instructions for a specific task. Skills provide specialized knowledge, step-by-step guidance, and may include supporting files (scripts, references)."
342209
+ },
342210
+ {
342211
+ name: "create_skill",
342212
+ description: "Create a new skill in GyShell skills. This tool only creates new skills and does not modify or overwrite existing ones. If the skill name already exists, the call must fail and you should choose a different name. If you need to modify an existing skill, use edit_file to edit that skill's md file directly, or write_file only when intentionally replacing the full file."
342213
+ },
342198
342214
  {
342199
342215
  name: "wait",
342200
342216
  description: WAIT_TOOL_DESCRIPTION
@@ -342294,6 +342310,42 @@ var BUILTIN_TOOL_INFO = [
342294
342310
  {
342295
342311
  name: "manage_trigger",
342296
342312
  description: MANAGE_TRIGGER_DESCRIPTION
342313
+ },
342314
+ {
342315
+ name: "get_metrics",
342316
+ description: 'Read host metrics as Prometheus exposition text (for a scraper) or a one-line dashboard summary. Use to answer "how are my hosts doing" or to feed an external Prometheus/OTel collector.'
342317
+ },
342318
+ {
342319
+ name: "manage_secret",
342320
+ description: "Manage the encrypted secrets vault \u2014 list metadata (never values), set, delete, or check a secret. Secrets are materialized only at exec time and never enter the conversation. Vault must be unlocked (RTERM_SECRETS_MASTER_KEY)."
342321
+ },
342322
+ {
342323
+ name: "manage_oncall",
342324
+ description: "Incident on-call paging \u2014 list open pages, raise a page for an incident under an escalation policy, acknowledge or resolve a page, list policies, or advance the escalation clock."
342325
+ },
342326
+ {
342327
+ name: "get_cost",
342328
+ description: "AI cost & budgets \u2014 summarize token spend in dollars (per model/profile, daily/monthly), check an intended run against budgets (ok/warn/throttle/deny), or list budgets."
342329
+ },
342330
+ {
342331
+ name: "manage_recording",
342332
+ description: "asciinema-style session recording \u2014 list, start, stop, replay (scrub), export (.cast), or delete a terminal session recording."
342333
+ },
342334
+ {
342335
+ name: "manage_gitops",
342336
+ description: "GitOps for desired state \u2014 export the live estate (connections/playbooks/triggers/etc.) as a content-hashed manifest, or detect drift / verify a manifest against live."
342337
+ },
342338
+ {
342339
+ name: "manage_playbook_version",
342340
+ description: "Playbook/runbook versioning + lint \u2014 statically lint a playbook definition (undefined params, dependsOn cycles, empty steps, missing rollback), list version history, roll back, or diff two versions."
342341
+ },
342342
+ {
342343
+ name: "get_cloud_inventory",
342344
+ description: "Cloud resource inventory (AWS/GCP/Azure) \u2014 summary counts by provider/state, query instances (filter by provider/state/region), or pull fresh inventory."
342345
+ },
342346
+ {
342347
+ name: "get_live_dashboard",
342348
+ description: "Live multi-client dashboard \u2014 read the current unified dashboard state/summary, or the number of connected dashboard subscribers."
342297
342349
  }
342298
342350
  ];
342299
342351
  function buildReadFileDescription(support) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rterm-backend",
3
- "version": "2.9.2",
4
- "description": "RTerm headless backend run RTerm-as-a-service (AI agent, SSH/WinRM/Serial/local terminals, fleet orchestration, advanced automation with event-driven triggers + NATS event mesh, scheduled automation, SRE observability, Netdata integration, AWS APerf, plugin system, governance/audit, Prometheus/OTel metrics export, secrets vault, on-call paging, AI cost budgets, GitOps, cloud inventory). v2.9.2: 9 capabilities now exposed as gateway RPC + agent tools.",
3
+ "version": "2.9.3",
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.3: all agent tools now visible in the Tools section.",
5
5
  "main": "bin/gybackend.js",
6
6
  "bin": {
7
7
  "gybackend": "bin/gybackend.cjs"