DeepSeek Harness plugin

dsh-top

System monitoring tool for the dsh web GUI: live CPU, RAM, disk, network, and top processes in a floating, collapsible panel.

Jump to install

Source facts

Repository
glenngit/dsh-top
Latest update
Aug 17, 2026
Category
Tools & Capabilities
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/glenngit/dsh-top
Plugin: dsh-top
Author: glenngit

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-top

A plugin for the DeepSeek Harness (DSH) web GUI: a system monitoring tool that shows live system stats in a floating, collapsible panel pinned to the top-right corner.

<p align="center"> <img src="docs/screenshot.png" alt="dsh-top System Monitor panel" width="342" /> </p>

![dsh.so security](https://www.dsh.so/artifact/dsh-top/)

Features

  • CPU — live utilisation (computed from /proc/stat deltas) + core count
  • MEM — used / total with percentage bar
  • DISK — used / total with percentage bar
  • NETWORK — download / upload throughput (computed from /proc/net/dev byte deltas)
  • Top 6 processes — PID, name, CPU%, MEM%
  • Dark color-coded palette (cyan CPU, magenta RAM, yellow disk, blue/green network), monospace
  • Draggable via the title bar, collapsible via the / + button
  • Transient monitor processes (ps, awk, head, …) are filtered out of the top-processes list

How it works

PartFileWhat it does
Host halflib/index.jsRegisters GET /api/dsh-top-stats; reads CPU, memory, disk, network and top processes with read-only /proc + ps + df reads.
Browser halflib/client.jsdsh.client web bundle; registers the panel into the frame-wide shell.overlay slot; polls every 2 s.
Compositioncordis.patch.ymlThe dsh.bundle patch layer that inserts the loader entry.

Security

Because it is a system monitor, the host half reads host-wide process, CPU, memory and disk state. To do that it invokes the fixed read-only binaries cat, ps and df via execFileSync with a static argv array (never a shell string), so there is no shell-injection surface and no attacker-controlled input. No data leaves the host, no credentials are read, and every read is read-only.

> dsh.so's static scanner flags the node:child_process import as "critical". That is a heuristic signal on the mere presence of process access — not a vulnerability. Process access is intrinsic to a monitoring tool; review the (small) source yourself: the commands are hard-coded, read-only, and argument-confined.

Install

dsh plugin --profile web add dsh-top

Then restart the web app and refresh the page — the panel appears at the top-right.

License

[MIT](LICENSE)