@danielng23/dsh-edex-radar-ui 0.1.0

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/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # @danielng23/dsh-edex-ui
2
+
3
+ **DeepSeek Harness eDEX-UI shell plugin** — a terminal-inspired overlay for the
4
+ DSH web GUI. Adds a classic eDEX-UI layout: system telemetry left bar, world-map
5
+ right bar, filesystem browser, and a terminal-styled composer input — all wrapped
6
+ around the original UI.
7
+
8
+ ![dsh-edex-ui screenshot](screenshot.png)
9
+
10
+ ## Features
11
+
12
+ - **Left bar** — system overview panel: CPU, memory, swap, processes, platform
13
+ info, and thermal/power state, with per-core CPU sparklines
14
+ - **Right bar** — network status + encom-globe world view with endpoint markers
15
+ and spline links, plus a dual up/down traffic chart with grid
16
+ - **Bottom-left** — filesystem browser: directory listing, file preview, storage
17
+ bar, with folder/file SVG icons in the theme green
18
+ - **Bottom-right** — file preview pane (text, code, images)
19
+ - **Terminal-styled composer** — flattened input capsule, green block caret, and
20
+ a `~/<workspace>` path prompt at the left edge of the input area
21
+ - **Workspace-follow** — the dir panel and prompt track the active conversation's
22
+ workspace; switching sessions navigates both the filesystem browser and the
23
+ prompt
24
+ - **Green-on-black skin** — token overrides recolour the entire original UI to
25
+ terminal green, without touching the user's theme preference
26
+
27
+ ## Installation
28
+
29
+ From the harness checkout:
30
+
31
+ ```sh
32
+ pnpm dsh plugin --profile web add @danielng23/dsh-edex-ui
33
+ ```
34
+
35
+ ## Packages
36
+
37
+ | Package | Host/Client | Description |
38
+ |---|---|---|
39
+ | `@danielng23/dsh-edex-ui` | — | Installable bundle (`cordis.patch.yml`) |
40
+ | `@danielng23/dsh-radar-client-ui-edex` | client | The eDEX shell frame and all panels |
41
+ | `@danielng23/dsh-radar-client-ui-theme-terminal` | client | Appearance → Terminal theme row |
42
+ | `@danielng23/dsh-radar-host-system-metrics` | host | System telemetry RPC endpoints |
43
+
44
+ ## License
45
+
46
+ MIT
@@ -0,0 +1,20 @@
1
+ # The dsh-edex-ui bundle patch: an eDEX-UI style shell frame around the
2
+ # default web surface. Purely additive — nothing in the default surface is
3
+ # disabled: the original UI stays fully composed and interactive, and the
4
+ # eDEX frame (left system bar, right network bar, bottom-left filesystem
5
+ # browser) is registered into the root `shell.overlay` list slot, which the
6
+ # stock layout renders above every column. The frame reshapes the layout
7
+ # frame into the center region and restores it on unload.
8
+ #
9
+ # The systemMetrics Host Remote provides the panels' data; the CRT theme
10
+ # package registers an opt-in Appearance row (Settings → Appearance →
11
+ # Terminal) that recolors the whole app green-on-black.
12
+ - insert:
13
+ - id: host-system-metrics
14
+ name: '@danielng23/dsh-radar-host-system-metrics'
15
+
16
+ - id: ui-edex
17
+ name: '@danielng23/dsh-radar-client-ui-edex'
18
+
19
+ - id: ui-theme-terminal
20
+ name: '@danielng23/dsh-radar-client-ui-theme-terminal'
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@danielng23/dsh-edex-radar-ui",
3
+ "description": "eDEX-UI RADAR radar-console shell over the web surface: VERTICAL SCALE / HOME LOCATION left bar, TARGET SETTING / RADAR DISPLAY / RADAR PROPERTIES right bar, filesystem browser bottom-left, original UI centered",
4
+ "version": "0.1.0",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/ph4310822/dsh-edex-radar-ui.git",
11
+ "directory": "packages/bundle"
12
+ },
13
+ "type": "module",
14
+ "dsh": {
15
+ "bundle": {
16
+ "patch": "./cordis.patch.yml"
17
+ }
18
+ },
19
+ "files": [
20
+ "cordis.patch.yml"
21
+ ],
22
+ "dependencies": {
23
+ "@danielng23/dsh-radar-client-ui-edex": "file:../ui-edex",
24
+ "@danielng23/dsh-radar-client-ui-theme-terminal": "file:../ui-theme-terminal",
25
+ "@danielng23/dsh-radar-host-system-metrics": "file:../host/system-metrics"
26
+ },
27
+ "license": "MIT"
28
+ }