@danielng23/dsh-edex-cyber-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 +46 -0
- package/cordis.patch.yml +20 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# @danielng23/dsh-edex-cyber-ui
|
|
2
|
+
|
|
3
|
+
**DeepSeek Harness eDEX-UI shell plugin — CYBER theme** — a terminal-inspired
|
|
4
|
+
overlay for the DSH web GUI themed after a cyberpunk dashboard: neon
|
|
5
|
+
electric-blue `#27c2ff` accent on deep navy surfaces, chamfered corner-bracket
|
|
6
|
+
card frames, and a pulsing calendar.
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
## Features
|
|
11
|
+
|
|
12
|
+
- **Left bar** — system overview + **SALES** (big number + bar chart) and
|
|
13
|
+
**GOALS** (adjustable value with +/- controls + bar chart)
|
|
14
|
+
- **Right bar** — network status, the featured **CALENDAR** month-grid widget
|
|
15
|
+
(copper pulsing selected date), and a **SUBSCRIPTIONS** growth line chart
|
|
16
|
+
- **Bottom-left** — filesystem browser: directory listing, file preview,
|
|
17
|
+
storage bar, with folder/file SVG icons in the theme neon-blue
|
|
18
|
+
- **Bottom-right** — file preview pane (text, code, images) and a real host
|
|
19
|
+
terminal
|
|
20
|
+
- **Terminal-styled composer** — flattened input capsule, neon-blue block
|
|
21
|
+
caret, and a `~/<workspace>` path prompt at the left edge of the input area
|
|
22
|
+
- **Workspace-follow** — the dir panel and prompt track the active
|
|
23
|
+
conversation's workspace
|
|
24
|
+
- **CYBER skin** — token overrides recolour the entire original UI to the
|
|
25
|
+
neon-blue CYBER palette, 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-cyber-ui
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Packages
|
|
36
|
+
|
|
37
|
+
| Package | Host/Client | Description |
|
|
38
|
+
|---|---|---|
|
|
39
|
+
| `@danielng23/dsh-edex-cyber-ui` | — | Installable bundle (`cordis.patch.yml`) |
|
|
40
|
+
| `@danielng23/dsh-cyber-client-ui-edex` | client | The eDEX shell frame and all panels |
|
|
41
|
+
| `@danielng23/dsh-cyber-client-ui-theme-terminal` | client | Appearance → Terminal theme row |
|
|
42
|
+
| `@danielng23/dsh-cyber-host-system-metrics` | host | System telemetry RPC endpoints |
|
|
43
|
+
|
|
44
|
+
## License
|
|
45
|
+
|
|
46
|
+
MIT
|
package/cordis.patch.yml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# The dsh-edex-cyber-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-cyber-host-system-metrics'
|
|
15
|
+
|
|
16
|
+
- id: ui-edex
|
|
17
|
+
name: '@danielng23/dsh-cyber-client-ui-edex'
|
|
18
|
+
|
|
19
|
+
- id: ui-theme-terminal
|
|
20
|
+
name: '@danielng23/dsh-cyber-client-ui-theme-terminal'
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@danielng23/dsh-edex-cyber-ui",
|
|
3
|
+
"description": "eDEX-UI style shell over the web surface (CYBER theme): SALES/GOALS left bar, CALENDAR + SUBSCRIPTIONS 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-cyber-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-cyber-client-ui-edex": "^0.1.0",
|
|
24
|
+
"@danielng23/dsh-cyber-client-ui-theme-terminal": "^0.1.0",
|
|
25
|
+
"@danielng23/dsh-cyber-host-system-metrics": "^0.1.0"
|
|
26
|
+
},
|
|
27
|
+
"license": "MIT"
|
|
28
|
+
}
|