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.

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

@jame100101/dsh-tui

Tui

Out-of-tree DeepSeek Harness TUI bundle (plugin mode)

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

npx -y @deepseek-ai/dsh plugin --profile web add @jame100101/dsh-tui@0.2.1
READMECompatibilityVersions

Compatibility and provenance

Tui is published as @jame100101/dsh-tui and currently resolves to version 0.2.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.2.1stable
9/13/2026
0.2.0stable
9/6/2026
Show 2 more versionsCollapse versions
0.2.0-rc.2prerelease
9/5/2026
0.2.0-rc.1prerelease
9/4/2026

Related plugins

Loading related plugins…

Latest
0.2.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
1 MB
Files
202
Surface
any
License
MIT
Source
npm
GitHub
★ 25
Weekly downloads
223
Security scan
✓ v0.2.1 scan passed
Last push
9/13/2026
View source ↗Project homepage ↗
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.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote 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.

README

@jame100101/dsh-tui

English | 中文

@jame100101/dsh-tui adds the React and Ink terminal interface to an official DeepSeek Harness profile. The optional dsh-tui command is a thin argument translator for dsh --profile tui; session, agent, tool, and persistence services come from the official Harness installation.

Version lines

  • 0.1.x is the legacy standalone package. The published 0.1.0 tarball contains a bundled Harness runtime.
  • 0.2.x is the out-of-tree plugin line. 0.2.1 requires and is tested with @deepseek-ai/dsh@0.1.5-rc.1.

Install the 0.2.1 stable plugin

Install the compatible official Harness, add the published plugin to a fresh or existing tui profile, and launch that profile:

npm install -g @deepseek-ai/dsh@0.1.5-rc.1
dsh plugin --profile tui add @jame100101/dsh-tui@0.2.1
dsh --profile tui

The first plugin installation creates the custom profile with these ordered bundles:

@deepseek-ai/dsh-base
@jame100101/dsh-tui

The plugin package carries the patched Ink build used by the fullscreen renderer. Harness packages resolve from the official dsh installation, and the TUI and Ink resolve one React runtime.

The plugin manager installs dsh-tui in the profile-local node_modules/.bin directory and does not add it to the shell PATH. The canonical launch command is dsh --profile tui.

Thin launcher

The packaged dsh-tui bin forwards the existing command grammar to compatible official Harness 0.1.5-rc.1. It resolves npm global and local dsh entries on PATH, including POSIX symlinks and Windows command shims, or accepts the official JavaScript entry through DSH_BIN. It does not install, upgrade, or modify Harness or the profile. This advanced launcher is available only when an environment deliberately exposes the package bin; installing the plugin globally for that purpose is not recommended because npm installs another Harness and Cordis dependency tree.

dsh-tui                          interactive TUI, new session
dsh-tui "fix the failing test"   interactive TUI, submits the task on boot
dsh-tui -c                       resume the most recently used session from this directory
dsh-tui -r                       interactive session picker
dsh-tui -r <session>             resume by id, id prefix, or title
dsh-tui -c --fork-session        fork the resumed session, then switch to it
dsh-tui -p "run the tests"       one-shot: print the assistant result and exit
dsh-tui -c -p "keep going"       resume, then run one task non-interactively

Exit codes are 0 for success or the official Harness supervisor-stop result from SIGTERM, 1 for an execution failure, 2 for a usage error, and 130 for SIGINT. SIGTERM remains 0 because official Harness treats it as an ordinary supervised shutdown on every application surface. --print writes the assistant result to stdout and diagnostics to stderr.

If no compatible official Harness is present, the launcher names the required package version. Before boot, it resolves the Harness home through the compatible official installation and reports dsh plugin --profile tui add @jame100101/dsh-tui when the tui profile does not contain the plugin. After an interactive child exits, it resets mouse tracking, bracketed paste, cursor visibility, the alternate screen, and SGR state.

Verification

The clean-room verifier installs official Harness outside this repository, creates an isolated DSH_HOME, installs the packed plugin, checks package identity and patched Ink resolution, and boots direct dsh plus launcher paths using explicit DSH_BIN and npm's PATH entry under a PTY:

node apps/tui-cli/scripts/verify-official-plugin.mjs ./jame100101-dsh-tui-0.2.1.tgz

It leaves the temporary install and DSH_HOME in place and prints both paths for inspection.

Build from source

Development builds may assemble and pack the plugin from a repository checkout:

npm run dsh-tui:pack-plugin