DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Elden — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
E

dsh-elden

Elden

Souls-style event overlays for the DeepSeek Harness web UI

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:steven-ngle/dsh-elden#6ad5c2eecf76dd83be959c12f651f25c4b3847a3
READMECompatibilityVersions

Compatibility and provenance

Elden is published as dsh-elden and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/30/2026

Versions

0.1.0stable
8/30/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/30/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in ui-customization.

Remote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Client Ui Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundlePet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

dsh-elden

Elden Ring style overlays for the DeepSeek Harness web UI. When something happens in a session, a dark bar crosses the screen and a line fades in over it — like the "YOU DIED" screen, but for your agent.

TriggerTextStyle
Context window crosses the fill threshold (90 %)CONTEXT WINDOW FULLred
History was compacted awayMEMORY FADEDred
A turn finishesTASK FELLEDgold
A long turn finishesGREAT TASK FELLEDgold
An approval or question is waitingA CHOICE AWAITSgold
New Session / the + is clickedLOST SESSION DISCOVEREDgold

Only one overlay is shown at a time and each trigger has a cooldown, so it stays a nice surprise instead of getting annoying. TASK FELLED fires the most; there is a rare-only mode if it gets too much.

Nothing from the games ships in this package — the look is rebuilt in CSS with a free font, and there is no audio.

Install

dsh plugin --profile web add dsh-elden

Or from a local clone:

npm install
npm run build
dsh plugin --profile web add /absolute/path/to/dsh-elden

Then start dsh web and it is active. dsh web --dump-config should show an elden entry if the install worked.

Trying it out

Overlays are rare by design, so the plugin adds a console helper. Open the browser devtools on the dsh web UI and run:

__dshElden.previewAll()            // plays all overlays back to back
__dshElden.preview('contextFull')  // shows a single one
__dshElden.ids()                   // lists all ids
__dshElden.level('rare-only')      // 'all' | 'rare-only' | 'off'
__dshElden.options({ contextThreshold: 0.01, longTurnMs: 0 })  // make rare triggers easy to hit

options() and level() reset on reload; nothing is persisted.

Development

npm run build          # rebuild lib/
pkill -f 'dsh web'     # the host reads the bundle at boot
dsh web

…then reload the page — an open tab keeps the old bundle until you do.

npm test

runs the trigger tests against a hand-fed session list (no server or API key needed).

How it works

The plugin is client-only: everything it needs is already in the browser's session list. It watches the list for edges — running turning false is a finished turn, the selection landing on a blank session is the New Session click, a sharp drop in prompt size is a compaction — and shows the matching overlay in the shell.overlay slot.

The visuals follow the game per screen type: YOU DIED-style screens are dark red with no glow, the gold ones carry a faint scaled-up ghost copy of the same line behind the text (that is why the first and last letters look doubled). Both sit on a narrow dark bar instead of dimming the whole screen.

Font

The text is set in Cormorant Garamond (the closest free match to the game's Agmena Pro), embedded in the bundle as a small uppercase-only subset. It is licensed under the SIL Open Font License 1.1 — assets/OFL.txt has to stay in any redistribution.

Known limitations

  • A failed turn still shows TASK FELLED; the session list has no failure flag.
  • Thresholds and texts are not configurable through settings yet, only via __dshElden.options().