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.

Deepseek Harness Chat Ui — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
D

deepseek-harness-chat-ui

Deepseek Harness Chat Ui

Social-network-style AI agent UI with personified Skills, direct messages, group chats and automations for DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add github:lileilei2023/deepseek-harness-chat-ui#3b2a06c04ee4097d86f5c6ff30eb9252c2e2b265
READMECompatibilityVersions
Personified Skills social collaboration demo

Compatibility and provenance

Deepseek Harness Chat Ui is published as deepseek-harness-chat-ui and currently resolves to version 0.1.0-alpha.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/4/2026

Versions

0.1.0-alpha.1prerelease
9/4/2026

Related plugins

Loading related plugins…

Latest
0.1.0-alpha.1
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
9/15/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.

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

DeepSeek Harness Chat UI

A social-network-style AI collaboration interface for DeepSeek Harness — Skills become recognizable digital members that users can discover, message directly, personalize, and bring into persistent group chats.

中文说明 · Features · Install · Development

DeepSeek Harness Chat UI main screen

Why this project

DeepSeek Harness provides a powerful agent runtime, but its default interface is organized around sessions and workspaces. This plugin turns Skills into a social collaboration network with contacts, direct conversations, persistent groups, and visible member identities:

  • Persistent rooms restore the previous conversation instead of silently creating a new session.
  • Normal chat works without selecting a Skill.
  • Personified Skills appear as recognizable contacts with deterministic names, circular animal avatars, profiles, and original capability metadata.
  • Group chats let users search Skills, pull them into a group, choose a coordinator, and define a reusable group system prompt.
  • Automation entry points connect scheduled tasks to rooms and conversation history.
  • Project and terminal sidecars keep files and command-line work beside the active conversation.
  • Skin support allows declarative visual themes without touching Room or automation data.

Screenshots

Create a group with personified Skills

Search installed Skills, add or remove them like group members, choose a circular group avatar, and define the group's role as its system prompt.

Create a DeepSeek Harness multi-agent group

Theme center

DeepSeek Harness Chat UI theme center

Features

AreaCapability
Social chatNormal chat, Skill contacts, direct conversations, group chats, collapsible session history
GroupsSearchable members, coordinator selection, group system prompt, project binding
PersonificationCircular animal avatars, deterministic friendly names, profiles and original Skill metadata
SkillsInstalled Skill directory, skills.sh search, install and install-then-add flows
WorkspaceProject browser, file preview, terminal and sidecar task entry points
AutomationRoom-bound definitions, run-now flow and persisted run history
AppearanceMint and Teamily-inspired skins using the DSH Web Skin Manifest v2 contract

Requirements

  • DeepSeek Harness 0.1.2-alpha.5
  • Node.js 22.19+ or 24+
  • pnpm available on PATH because dsh plugin delegates package installation to pnpm

Install from GitHub

The repository contains both the original TypeScript/React/CSS source and committed browser/host build artifacts. Harness users can install it directly from GitHub without downloading a release archive:

dsh plugin --profile web add github:lileilei2023/deepseek-harness-chat-ui
dsh --profile web

Remove it with:

dsh plugin --profile web remove deepseek-harness-chat-ui

Install from a cloned repository

git clone https://github.com/lileilei2023/deepseek-harness-chat-ui.git
cd deepseek-harness-chat-ui
npm install
./install-ds-chat.sh

Windows users can run install-ds-chat.cmd; macOS users can double-click install-ds-chat.command.

Source code

The complete editable implementation is committed under source/:

source/
├── client-ui-skill-chat/       # React UI, Room state, personas, skins and sidecars
├── workbuddy-skill-catalog/    # Host service, persistence, Skill install and automation APIs
└── skill-chat-web-profile/     # Original Harness profile bundle

dist/ contains the reviewed build consumed by users installing directly from GitHub. It is committed intentionally so installation does not execute a remote prepare script.

Development

DeepSeek Harness is still pre-release and its Web client bundler lives inside the Harness repository. Use a dedicated matching Harness checkout or worktree when rebuilding:

git clone https://github.com/deepseek-ai/deepseek-harness.git
cd deepseek-harness
git checkout v0.1.2-alpha.5
pnpm install

cd ../deepseek-harness-chat-ui
npm install
DSH_SOURCE=../deepseek-harness npm run build
npm run check

npm run build copies the editable source into the matching Harness checkout, runs the official Host and Web Client build pipeline, and refreshes dist/. Do not point it at a checkout containing uncommitted work.

Compatibility

The first release intentionally targets DeepSeek Harness 0.1.2-alpha.5. Harness APIs are evolving quickly, so future Harness versions may require a matching plugin release. Model providers, API keys, permissions, and session logs remain managed by Harness; this repository does not include credentials.

License

MIT. The extracted code retains attribution to the original DeepSeek Harness project.