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
← Plugins

@nexlineai/dsh-tui

Tui

A full-screen interactive terminal UI for the DeepSeek Harness agent runtime — live streaming, reasoning blocks, tool cards, sessions, permissions, plan mode, and a full slash-command suite. The web UI, reimagined for the terminal.

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

npx -y @deepseek-ai/dsh plugin --profile web add @nexlineai/dsh-tui@0.1.2
READMECompatibilityVersions

Compatibility and provenance

Tui is published as @nexlineai/dsh-tui and currently resolves to version 0.1.2. 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.1.2
stable
9/15/2026
0.1.1stable
8/21/2026
0.1.0stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.1.2
DSH
*
HMR
Process restart
Tree shaking
Declares sideEffects: false
Unpacked size
69.8 kB
Files
10
Surface
any
License
MIT
Source
npm
GitHub
★ 1
Weekly downloads
155
Security scan
✓ v0.1.2 scan passed
Last push
9/15/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

README

dsh-tui

A full-screen interactive terminal UI for the DeepSeek Harness agent runtime — the web UI, reimagined for the terminal.

dsh-tui runs the official DeepSeek Harness agent (tools, file editing, shell, subagents, sessions, permissions, plan mode) behind a Claude Code / opencode-style interface — live token streaming, reasoning blocks, boxed tool cards, prompt history, and a full slash-command suite. No browser, no Electron, just your terminal.

It is not a model wrapper or a plain chat REPL — it drives the real agent runtime.


Features

  • Live streaming — answers render token-by-token as the model generates.
  • Reasoning display — thinking blocks stream dim/italic, with per-turn effort control (/model <id> high).
  • Tool cards — box-drawn ⏱ bash blocks with lifecycle markers (● running → ✓ done / ✖ error) and arg/result previews.
  • Full agent toolkit — the agent can read/edit files, run commands, delegate subagents, and execute plans.
  • Session management — list and resume any persisted session (/resume).
  • Permission modes — read-only / workspace-write / danger-full-access, switchable live (/permissions).
  • Plan mode — toggle plan-first behavior (/plan).
  • Compaction — shrink the conversation on demand (/compact).
  • Trajectory — a filtered event timeline of the whole session (/trajectory).
  • Diagnostics — environment + model-catalog health check (/doctor).
  • Scrollback — mouse wheel / PgUp / PgDn, with ↑ N indicator.
  • Markdown rendering — fenced code blocks, inline code, bold, headings, lists.
  • Cross-platform — macOS and Linux terminals (iTerm2, Terminal.app, kitty, alacritty, xterm, …).

Install

dsh-tui is a DeepSeek Harness plugin. You need the official dsh installed first:

# 1. Install the official DeepSeek Harness (once)
npx @deepseek-ai/dsh web --help   # or: npm i -g @deepseek-ai/dsh

# 2. Create a `tui` profile and add this plugin
dsh plugin --profile tui add @nexlineai/dsh-tui

# 3. Run it
dsh --profile tui

The profile initializes on first use; dsh-tui composes over the same @deepseek-ai/dsh-base core as the web UI.

Model key

export DEEPSEEK_API_KEY=sk-...

The TUI uses the same credential sources as the harness (DEEPSEEK_API_KEY / settings.yaml).


Demo

A representative session transcript — streaming answer, reasoning block, tool card, trajectory, doctor, model picker — is in demo/session.md.


Commands

CommandDescription
/helplist commands
/modellist models + reasoning efforts; ● active marks current
/model <id> [effort]switch live, e.g. /model deepseek-v4-pro high
/resumelist persisted sessions (id, title, date)
/resume <n>continue that session with full history
/permissionslist permission presets
/permissions <name>switch (read-only / workspace-write / danger-full-access)
/plantoggle plan mode
/compactcompact the conversation now
/trajectoryshow the session event timeline
/settingsone-screen summary of model/permission/plan/stream state
/doctorenvironment + model catalog health check
/versiondsh-tui + runtime versions
/statussession, cwd, event and turn counts
/reasoning on|offshow/hide the thinking display
/stream on|offtoggle live token streaming
/clearclear the conversation area
/exit (or q, quit, :q, Ctrl+D)leave

Keybindings

KeyAction
Entersubmit
↑ / ↓prompt history
← / →move cursor
Home / End (Ctrl+A / Ctrl+E)line start / end
Backspace / Deletedelete
Ctrl+U / Ctrl+Kkill to start / end
Ctrl+Wdelete previous word
Escclear the input line
Tabcomplete a slash command
Ctrl+Cclear (empty → exit)
Ctrl+Dexit
PgUp / PgDn / mouse wheelscroll the conversation

Layout

┌ DeepSeek Harness TUI            deepseek-official/deepseek-v4-pro · session a1b2c3d4 ┐
│ ─────────────────────────────────────────────────────────────── 15:35:34 · 2s · 12→45 tok │
│ ❯ list the files                                                                     │
│ ✻ thinking                                                                            │
│   · a simple listing; I'll use bash ls                                                 │
│ This is the repository root — a plugin-based agent harness with pnpm workspaces...    │
│ ┌─ ⏱ bash ──────────────────────────────────────────────────────────────────────────┐ │
│ │ $ ls -la                                                                           │ │
│ └─ ✓ done ───────────────────────────────────────────────────────────────────────────┘ │
│ ❯ your input                                                                          │
│ ~/project · stream on · 1 turns · 500→120 tok                              ↑ /help  │
└───────────────────────────────────────────────────────────────────────────────────────┘

How it differs from the web UI

Same agent, same permissions, same sessions — but everything happens in your terminal. dsh-tui is aimed at people who live in a terminal, want a keyboard-first flow, or run the harness over SSH / inside a multiplexer like herdr or tmux.

Why a separate CLI?

The official dsh ships a web UI and a one-shot headless mode — no interactive terminal agent. dsh-tui fills that gap as an installable plugin, without forking the runtime.


Contributing

Bug reports, terminal-compatibility notes, and PRs are welcome — see CONTRIBUTING.md. For rendering issues, please include your terminal, $TERM, and the output of /version and /doctor.

License

MIT — see LICENSE. Not affiliated with DeepSeek AI; the runtime it drives is MIT-licensed upstream.

Related plugins

More verified plugins in developer-tools.

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)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol