[PR #72] Real-Time Interactive Terminal #71

Open
opened 2026-03-02 02:13:04 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/amidaware/rmmagent/pull/72
Author: @fahadkhan-fk
Created: 2/16/2026
Status: 🔄 Open

Base: developHead: feature-terminal


📝 Commits (10+)

  • 3b0c803 feat: add terminal_start related functionality
  • 4e48b45 feat: add terminal_input related functionality
  • ed3fff6 feat: add terminal_resize related functionality
  • aade362 feat: add terminal_kill related functionality
  • f45477a feat: add more changes
  • f9cbd91 feat: reuse msgpack handle and add debug logs
  • 68f3ebd feat: handle cleaned-up sessions by returning nil
  • 2bd02a5 feat: improve terminal streaming efficiency
  • 046a1c2 feat: add windows conpty based terminal support
  • 6ce928e feat: implement terminal rpcs with windows and linux support

📊 Changes

15 files changed (+1118 additions, -0 deletions)

View changed files

📝 .gitignore (+3 -0)
📝 agent/agent.go (+200 -0)
📝 agent/agent_unix.go (+16 -0)
📝 agent/rpc.go (+104 -0)
agent/terminal_windows.go (+516 -0)
agent/terminal_windows_selector.go (+25 -0)
agent/terminal_windows_winpty.go (+153 -0)
agent/winpty_bins/386/winpty-agent.exe (+0 -0)
agent/winpty_bins/386/winpty.dll (+0 -0)
agent/winpty_bins/amd64/winpty-agent.exe (+0 -0)
agent/winpty_bins/amd64/winpty.dll (+0 -0)
agent/winpty_embed_windows.go (+8 -0)
agent/winpty_install_windows.go (+87 -0)
📝 go.mod (+2 -0)
📝 go.sum (+4 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/amidaware/rmmagent/pull/72 **Author:** [@fahadkhan-fk](https://github.com/fahadkhan-fk) **Created:** 2/16/2026 **Status:** 🔄 Open **Base:** `develop` ← **Head:** `feature-terminal` --- ### 📝 Commits (10+) - [`3b0c803`](https://github.com/amidaware/rmmagent/commit/3b0c803d6fea04507d21829a0e7cc730131a0182) feat: add terminal_start related functionality - [`4e48b45`](https://github.com/amidaware/rmmagent/commit/4e48b45ca6e0cb46687277e0fd11727f6159a4b4) feat: add terminal_input related functionality - [`ed3fff6`](https://github.com/amidaware/rmmagent/commit/ed3fff67c9d57c425792d62ca6251d0c21ee8432) feat: add terminal_resize related functionality - [`aade362`](https://github.com/amidaware/rmmagent/commit/aade36283396e87cb0e5d187cba795aace8d4b36) feat: add terminal_kill related functionality - [`f45477a`](https://github.com/amidaware/rmmagent/commit/f45477a4653a9e88a2b74ba398685128240b1ebf) feat: add more changes - [`f9cbd91`](https://github.com/amidaware/rmmagent/commit/f9cbd915206f92185c58fdba4cb3f087d8d39abc) feat: reuse msgpack handle and add debug logs - [`68f3ebd`](https://github.com/amidaware/rmmagent/commit/68f3ebd4efdecb02d15ff587f18f10957121cc9c) feat: handle cleaned-up sessions by returning nil - [`2bd02a5`](https://github.com/amidaware/rmmagent/commit/2bd02a57d1a686e48a0d4faf304cd872f9563d69) feat: improve terminal streaming efficiency - [`046a1c2`](https://github.com/amidaware/rmmagent/commit/046a1c28f33e0accffd2d73fdda3ae9d1cc52683) feat: add windows conpty based terminal support - [`6ce928e`](https://github.com/amidaware/rmmagent/commit/6ce928e0fc98864b14e60f085e1eb606fd82c5a1) feat: implement terminal rpcs with windows and linux support ### 📊 Changes **15 files changed** (+1118 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+3 -0) 📝 `agent/agent.go` (+200 -0) 📝 `agent/agent_unix.go` (+16 -0) 📝 `agent/rpc.go` (+104 -0) ➕ `agent/terminal_windows.go` (+516 -0) ➕ `agent/terminal_windows_selector.go` (+25 -0) ➕ `agent/terminal_windows_winpty.go` (+153 -0) ➕ `agent/winpty_bins/386/winpty-agent.exe` (+0 -0) ➕ `agent/winpty_bins/386/winpty.dll` (+0 -0) ➕ `agent/winpty_bins/amd64/winpty-agent.exe` (+0 -0) ➕ `agent/winpty_bins/amd64/winpty.dll` (+0 -0) ➕ `agent/winpty_embed_windows.go` (+8 -0) ➕ `agent/winpty_install_windows.go` (+87 -0) 📝 `go.mod` (+2 -0) 📝 `go.sum` (+4 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/rmmagent#71
No description provided.