rterm-backend 3.2.5 → 3.2.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.
- package/bin/gybackend.cjs +68 -34
- package/package.json +2 -2
package/bin/gybackend.cjs
CHANGED
|
@@ -348633,35 +348633,43 @@ var PROBE_CONNECTIVITY_DESCRIPTION = [
|
|
|
348633
348633
|
var BUILTIN_TOOL_INFO = [
|
|
348634
348634
|
{
|
|
348635
348635
|
name: "exec_command",
|
|
348636
|
-
description: EXEC_COMMAND_DESCRIPTION
|
|
348636
|
+
description: EXEC_COMMAND_DESCRIPTION,
|
|
348637
|
+
shortDescription: "Run a command on a terminal (SSH/WinRM/local)"
|
|
348637
348638
|
},
|
|
348638
348639
|
{
|
|
348639
348640
|
name: "read_terminal_tab",
|
|
348640
|
-
description: READ_TERMINAL_TAB_DESCRIPTION
|
|
348641
|
+
description: READ_TERMINAL_TAB_DESCRIPTION,
|
|
348642
|
+
shortDescription: "Read terminal output"
|
|
348641
348643
|
},
|
|
348642
348644
|
{
|
|
348643
348645
|
name: "read_command_output",
|
|
348644
|
-
description: READ_COMMAND_OUTPUT_DESCRIPTION
|
|
348646
|
+
description: READ_COMMAND_OUTPUT_DESCRIPTION,
|
|
348647
|
+
shortDescription: "Read background command output"
|
|
348645
348648
|
},
|
|
348646
348649
|
{
|
|
348647
348650
|
name: "read_file",
|
|
348648
|
-
description: READ_FILE_DESCRIPTION
|
|
348651
|
+
description: READ_FILE_DESCRIPTION,
|
|
348652
|
+
shortDescription: "Read a file from a host"
|
|
348649
348653
|
},
|
|
348650
348654
|
{
|
|
348651
348655
|
name: "write_stdin",
|
|
348652
|
-
description: WRITE_STDIN_TOOL_DESCRIPTION
|
|
348656
|
+
description: WRITE_STDIN_TOOL_DESCRIPTION,
|
|
348657
|
+
shortDescription: "Send keystrokes to a terminal"
|
|
348653
348658
|
},
|
|
348654
348659
|
{
|
|
348655
348660
|
name: "reconnect_terminal_tab",
|
|
348656
|
-
description: RECONNECT_TERMINAL_TAB_DESCRIPTION
|
|
348661
|
+
description: RECONNECT_TERMINAL_TAB_DESCRIPTION,
|
|
348662
|
+
shortDescription: "Reconnect a disconnected terminal"
|
|
348657
348663
|
},
|
|
348658
348664
|
{
|
|
348659
348665
|
name: "open_terminal_tab",
|
|
348660
|
-
description: OPEN_TERMINAL_TAB_DESCRIPTION
|
|
348666
|
+
description: OPEN_TERMINAL_TAB_DESCRIPTION,
|
|
348667
|
+
shortDescription: "Open a new terminal tab"
|
|
348661
348668
|
},
|
|
348662
348669
|
{
|
|
348663
348670
|
name: "create_or_edit",
|
|
348664
|
-
description: CREATE_OR_EDIT_TOOL_DESCRIPTION
|
|
348671
|
+
description: CREATE_OR_EDIT_TOOL_DESCRIPTION,
|
|
348672
|
+
shortDescription: "Create or edit a file"
|
|
348665
348673
|
},
|
|
348666
348674
|
{
|
|
348667
348675
|
name: "write_file",
|
|
@@ -348675,19 +348683,23 @@ var BUILTIN_TOOL_INFO = [
|
|
|
348675
348683
|
},
|
|
348676
348684
|
{
|
|
348677
348685
|
name: "skill",
|
|
348678
|
-
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)."
|
|
348686
|
+
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).",
|
|
348687
|
+
shortDescription: "Load a skill for task guidance"
|
|
348679
348688
|
},
|
|
348680
348689
|
{
|
|
348681
348690
|
name: "create_skill",
|
|
348682
|
-
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."
|
|
348691
|
+
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.",
|
|
348692
|
+
shortDescription: "Create a new skill"
|
|
348683
348693
|
},
|
|
348684
348694
|
{
|
|
348685
348695
|
name: "wait",
|
|
348686
|
-
description: WAIT_TOOL_DESCRIPTION
|
|
348696
|
+
description: WAIT_TOOL_DESCRIPTION,
|
|
348697
|
+
shortDescription: "Pause for a fixed duration"
|
|
348687
348698
|
},
|
|
348688
348699
|
{
|
|
348689
348700
|
name: "wait_terminal_idle",
|
|
348690
|
-
description: WAIT_TERMINAL_IDLE_DESCRIPTION
|
|
348701
|
+
description: WAIT_TERMINAL_IDLE_DESCRIPTION,
|
|
348702
|
+
shortDescription: "Wait for terminal output to stabilize"
|
|
348691
348703
|
},
|
|
348692
348704
|
{
|
|
348693
348705
|
name: "copy_between_tabs",
|
|
@@ -348703,87 +348715,108 @@ var BUILTIN_TOOL_INFO = [
|
|
|
348703
348715
|
},
|
|
348704
348716
|
{
|
|
348705
348717
|
name: "manage_ssh_connection",
|
|
348706
|
-
description: MANAGE_SSH_CONNECTION_DESCRIPTION
|
|
348718
|
+
description: MANAGE_SSH_CONNECTION_DESCRIPTION,
|
|
348719
|
+
shortDescription: "Manage SSH connections"
|
|
348707
348720
|
},
|
|
348708
348721
|
{
|
|
348709
348722
|
name: "manage_winrm_connection",
|
|
348710
|
-
description: MANAGE_WINRM_CONNECTION_DESCRIPTION
|
|
348723
|
+
description: MANAGE_WINRM_CONNECTION_DESCRIPTION,
|
|
348724
|
+
shortDescription: "Manage WinRM connections"
|
|
348711
348725
|
},
|
|
348712
348726
|
{
|
|
348713
348727
|
name: "manage_serial_connection",
|
|
348714
|
-
description: MANAGE_SERIAL_CONNECTION_DESCRIPTION
|
|
348728
|
+
description: MANAGE_SERIAL_CONNECTION_DESCRIPTION,
|
|
348729
|
+
shortDescription: "Manage serial connections"
|
|
348715
348730
|
},
|
|
348716
348731
|
{
|
|
348717
348732
|
name: "list_session_logs",
|
|
348718
|
-
description: LIST_SESSION_LOGS_DESCRIPTION
|
|
348733
|
+
description: LIST_SESSION_LOGS_DESCRIPTION,
|
|
348734
|
+
shortDescription: "List recorded sessions"
|
|
348719
348735
|
},
|
|
348720
348736
|
{
|
|
348721
348737
|
name: "read_session_log",
|
|
348722
|
-
description: READ_SESSION_LOG_DESCRIPTION
|
|
348738
|
+
description: READ_SESSION_LOG_DESCRIPTION,
|
|
348739
|
+
shortDescription: "Read a session log"
|
|
348723
348740
|
},
|
|
348724
348741
|
{
|
|
348725
348742
|
name: "search_session_logs",
|
|
348726
|
-
description: SEARCH_SESSION_LOGS_DESCRIPTION
|
|
348743
|
+
description: SEARCH_SESSION_LOGS_DESCRIPTION,
|
|
348744
|
+
shortDescription: "Search session logs"
|
|
348727
348745
|
},
|
|
348728
348746
|
{
|
|
348729
348747
|
name: "get_run_ledger",
|
|
348730
|
-
description: GET_RUN_LEDGER_DESCRIPTION
|
|
348748
|
+
description: GET_RUN_LEDGER_DESCRIPTION,
|
|
348749
|
+
shortDescription: "Query agent run audit ledger"
|
|
348731
348750
|
},
|
|
348732
348751
|
{
|
|
348733
348752
|
name: "run_fleet_command",
|
|
348734
|
-
description: RUN_FLEET_COMMAND_DESCRIPTION
|
|
348753
|
+
description: RUN_FLEET_COMMAND_DESCRIPTION,
|
|
348754
|
+
shortDescription: "Run a command on multiple terminals"
|
|
348735
348755
|
},
|
|
348736
348756
|
{
|
|
348737
348757
|
name: "collect_facts",
|
|
348738
|
-
description: COLLECT_FACTS_DESCRIPTION
|
|
348758
|
+
description: COLLECT_FACTS_DESCRIPTION,
|
|
348759
|
+
shortDescription: "Inventory terminal tabs"
|
|
348739
348760
|
},
|
|
348740
348761
|
{
|
|
348741
348762
|
name: "probe_connectivity",
|
|
348742
|
-
description: PROBE_CONNECTIVITY_DESCRIPTION
|
|
348763
|
+
description: PROBE_CONNECTIVITY_DESCRIPTION,
|
|
348764
|
+
shortDescription: "Probe SSH reachability"
|
|
348743
348765
|
},
|
|
348744
348766
|
{
|
|
348745
348767
|
name: "manage_device_memory",
|
|
348746
|
-
description: MANAGE_DEVICE_MEMORY_DESCRIPTION
|
|
348768
|
+
description: MANAGE_DEVICE_MEMORY_DESCRIPTION,
|
|
348769
|
+
shortDescription: "Per-host memory and incidents"
|
|
348747
348770
|
},
|
|
348748
348771
|
{
|
|
348749
348772
|
name: "manage_script",
|
|
348750
|
-
description: MANAGE_SCRIPT_DESCRIPTION
|
|
348773
|
+
description: MANAGE_SCRIPT_DESCRIPTION,
|
|
348774
|
+
shortDescription: "Manage reusable scripts"
|
|
348751
348775
|
},
|
|
348752
348776
|
{
|
|
348753
348777
|
name: "manage_group",
|
|
348754
|
-
description: MANAGE_GROUP_DESCRIPTION
|
|
348778
|
+
description: MANAGE_GROUP_DESCRIPTION,
|
|
348779
|
+
shortDescription: "Manage connection groups"
|
|
348755
348780
|
},
|
|
348756
348781
|
{
|
|
348757
348782
|
name: "manage_scheduled_task",
|
|
348758
|
-
description: MANAGE_SCHEDULED_TASK_DESCRIPTION
|
|
348783
|
+
description: MANAGE_SCHEDULED_TASK_DESCRIPTION,
|
|
348784
|
+
shortDescription: "Manage cron tasks"
|
|
348759
348785
|
},
|
|
348760
348786
|
{
|
|
348761
348787
|
name: "manage_template",
|
|
348762
|
-
description: MANAGE_TEMPLATE_DESCRIPTION
|
|
348788
|
+
description: MANAGE_TEMPLATE_DESCRIPTION,
|
|
348789
|
+
shortDescription: "Manage Jinja templates"
|
|
348763
348790
|
},
|
|
348764
348791
|
{
|
|
348765
348792
|
name: "import_putty",
|
|
348766
|
-
description: IMPORT_PUTTY_DESCRIPTION
|
|
348793
|
+
description: IMPORT_PUTTY_DESCRIPTION,
|
|
348794
|
+
shortDescription: "Import PuTTY sessions"
|
|
348767
348795
|
},
|
|
348768
348796
|
{
|
|
348769
348797
|
name: "manage_playbook",
|
|
348770
|
-
description: MANAGE_PLAYBOOK_DESCRIPTION
|
|
348798
|
+
description: MANAGE_PLAYBOOK_DESCRIPTION,
|
|
348799
|
+
shortDescription: "Manage playbooks"
|
|
348771
348800
|
},
|
|
348772
348801
|
{
|
|
348773
348802
|
name: "run_playbook",
|
|
348774
|
-
description: RUN_PLAYBOOK_DESCRIPTION
|
|
348803
|
+
description: RUN_PLAYBOOK_DESCRIPTION,
|
|
348804
|
+
shortDescription: "Execute a playbook"
|
|
348775
348805
|
},
|
|
348776
348806
|
{
|
|
348777
348807
|
name: "manage_change",
|
|
348778
|
-
description: MANAGE_CHANGE_DESCRIPTION
|
|
348808
|
+
description: MANAGE_CHANGE_DESCRIPTION,
|
|
348809
|
+
shortDescription: "Drive MOP changes (plan/approve/run)"
|
|
348779
348810
|
},
|
|
348780
348811
|
{
|
|
348781
348812
|
name: "manage_trigger",
|
|
348782
|
-
description: MANAGE_TRIGGER_DESCRIPTION
|
|
348813
|
+
description: MANAGE_TRIGGER_DESCRIPTION,
|
|
348814
|
+
shortDescription: "Manage event triggers"
|
|
348783
348815
|
},
|
|
348784
348816
|
{
|
|
348785
348817
|
name: "get_metrics",
|
|
348786
|
-
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.'
|
|
348818
|
+
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.',
|
|
348819
|
+
shortDescription: "Read host metrics"
|
|
348787
348820
|
},
|
|
348788
348821
|
{
|
|
348789
348822
|
name: "manage_secret",
|
|
@@ -348827,7 +348860,8 @@ var BUILTIN_TOOL_INFO = [
|
|
|
348827
348860
|
},
|
|
348828
348861
|
{
|
|
348829
348862
|
name: "ingest_apm_spans",
|
|
348830
|
-
description: "Ingest OTLP/HTTP-JSON distributed-trace spans into the APM trace store (feeds bottleneck/slowest-trace analysis and the dashboard APM section)."
|
|
348863
|
+
description: "Ingest OTLP/HTTP-JSON distributed-trace spans into the APM trace store (feeds bottleneck/slowest-trace analysis and the dashboard APM section).",
|
|
348864
|
+
shortDescription: "Ingest APM trace spans"
|
|
348831
348865
|
},
|
|
348832
348866
|
{
|
|
348833
348867
|
name: "get_apm_summary",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rterm-backend",
|
|
3
|
-
"version": "3.2.
|
|
4
|
-
"description": "Headless AI-native backend for RTerm / neuralOS — v3.2.
|
|
3
|
+
"version": "3.2.7",
|
|
4
|
+
"description": "Headless AI-native backend for RTerm / neuralOS — v3.2.7: captureStatus for command output + tsconfig spec exclusion fix. 11 plugins, 55 plugin tools wired, parallel tool execution. Transports (SSH/serial/local), SQLite, and NATS libs install automatically.",
|
|
5
5
|
"main": "bin/gybackend.cjs",
|
|
6
6
|
"bin": { "gybackend": "bin/gybackend.cjs" },
|
|
7
7
|
"license": "MIT",
|