DSH-Finance: A Financial and Accounting Workflow Plugin for DeepSeek Harness

The DSH plugin `zhang787jun/dsh-finance` is an independent community adaptation project, developed based on the Anthropic Finance plugin, aimed at assisting with the preparation and validation of financial and accounting workflows within the DeepSeek Harness environment. This plugin strictly adheres to authorization boundaries, generating only inspectable work products (such as draft journal entries, reconciliation reports, and audit working papers) without executing high-privilege operations like posting entries, locking periods, approvals, or investment decisions. Its core includes eight financial skills (covering journal entry preparation, general ledger/bank reconciliation, financial statement generation, variance analysis, closing management, and SOX audit support) and five deterministic tools (such as debit-credit balance validation, reconciliation snapshots, and variance bridging). The license adopts a dual MIT and Apache-2.0 licensing scheme. Users can access it via commands.

Read More
dsh-personalize: DSH Web Native Personalization Plugin

dsh-personalize is a DSH web plugin maintained by Zephyr-vibe, designed to address the issue of repeatedly configuring personalized settings across multiple sessions. The plugin is licensed under the MIT License, requires Node >= 20, and runs through the official public service without modifying the DSH core. Its core features include: 1. Custom instructions that inject users' long-term preferences into system prompts; 2. Local long-term memory, supporting manual addition or automatic collection by agents through tools like memory_create, with data persistently stored locally in the {DSH_HOME}/personalize/ directory, with a default limit of 50 entries; 3. Reply tone presets, offering various style options such as gentle and efficient. The plugin provides a bilingual interface in Chinese and English, and integrates automatically into the "Settings" menu after installation. Users can access it via commands or

Read More
dsh-image-subagent: Enabling Pure Text Main Models to Accept Image Attachments

`dsh-image-subagent` is a tool in the DSH plugin ecosystem designed to address the issue of handling image attachments in pure-text main models (v0.2.0, MIT License). This plugin bypasses the image access control gate by removing the `inputModalities` declaration from the pure-text route and projects images as explicit text placeholders carrying complete `attachmentId` and object paths. Instead of directly reading images, the main model delegates to a vision-capable subagent (e.g., `subagent_observer`), which uses the `read_image` tool to access attachments and return descriptions, thereby enabling image-text interaction under pure-text routing. The plugin requires Node >=20 and `@deepseek-ai/dsh >=0.1.1-rc.2` (opti

Read More
dsh-telegram-bot: Remote View and Control DeepSeek Harness via Telegram Private Chat

`dsh-telegram-bot` is a DSH plugin maintained by yuko0331, designed to provide a restricted remote entry point through Telegram private chats, allowing users to view DSH workspaces, create sessions, monitor task status, and cancel current tasks from mobile devices. The plugin only supports private chat text interactions with designated Telegram users and does not support group chats, voice, files, or button operations, nor can it replace final approval for sensitive tool operations. Installation requires adding the GitHub repository through the DSH Web profile, and during configuration, the Bot Token and administrator numeric User ID must be filled in the DSH settings. The Token is stored only in the credential system to ensure security. Typical usage includes using `/workspaces`, `/new`, `/se`

Read More
dsh-smarthome: Integrating Home Assistant with DeepSeek Harness

dsh-smarthome is a Home Assistant control plugin designed for DeepSeek Harness agents, maintained by YLifeOnlyOnce and released under the MIT license. Its core positioning is to enable AI agents to connect to Home Assistant, facilitating device status retrieval, historical data queries, and service calls, while placing write operations behind human approval to ensure operational safety. The plugin's features encompass connection health checks, entity/area/device list queries, real-time status retrieval, weather data reading, historical timeline queries, and real-time event monitoring. In terms of control, it supports scene activation, notification sending (marked as requiring no approval threshold), as well as service calls and template rendering (both requiring human approval). Additionally, it provides area-level and device-level targeted control, along with a Web UI dashboard for visualization.

Read More
dsh-mpkg-wallpaper: Adding Wallpaper Engine mpkg Backgrounds to dsh Web

`dsh-mpkg-wallpaper` is a DSH Web wallpaper engine plugin developed by XHR666, used to extend the background functionality of the DeepSeek Harness Web interface. This plugin supports parsing Wallpaper Engine's `.mpkg` files within the browser, automatically discovers Steam Workshop directories, and is compatible with video, web page, and image wallpapers. Core features include automatic switching of time-based wallpapers, unified blur and glass appearance theme control, local wallpaper library management, and scheduled rotation. The plugin provides playback controls for video/web page wallpapers and multiple power-saving strategies (such as pausing when unfocused or on battery power), and supports streaming playback of large files exceeding 600MB. Settings can be imported and exported via JSON files for backup and recovery, and it features version checking and one-click update functionality.

Read More
dsh-auth-gateway: Providing Authentication Gateway and Login Auditing for dsh Web

dsh-auth-gateway is an MIT-licensed Cordis gateway plugin maintained by xbzbing, designed to provide secure access control for DeepSeek Harness (dsh web). This plugin intercepts unauthenticated HTTP and WebSocket requests at the gateway layer, with core features including password authentication, TOTP two-factor authentication, session management, and comprehensive auditing. It manages sessions through in-memory tokens and HttpOnly Cookies, and implements password failure lockout, global and OTP-independent rate limiting to prevent brute-force attacks. Audit logs record login, logout, and password change events, persisted for 90 days without storing credentials. Installation requires Node >= 20, added via the `dsh plugin` command, and generates a one-time initial password on first startup.

Read More
DSH-Balance-Float: A Floating Window Plugin for DSH Web Balance and One-Click Exit

`dsh-balance-float` is a web plugin for DSH, designed to embody the philosophy of "everything is a plugin," enabling users to manage their DeepSeek account without leaving the page. The plugin provides a floating window in the upper-right corner of the DSH web interface, displaying real-time account balance, top-up, and grant details, with support for automatic refresh every 60 seconds or manual refresh. Users can trigger a graceful exit via an interface button, closing the local DSH service and the `127.0.0.1:3080` webpage after confirmation. Prerequisites include installing DeepSeek Harness CLI, Node.js 18+, and configuring an API Key. The installation command is `dsh plugin --profile web add dsh-balance-float`, and the installation

Read More
dsh-feishu-bridge: A Community Plugin for Integrating dsh with Feishu/Lark

dsh-feishu-bridge is a community-maintained standalone plugin designed to bridge Feishu/Lark messages to the DeepSeek Harness (dsh). It allows users to trigger dsh agent tasks and receive responses directly within Feishu chats. Core features include a fail-closed allowlist mechanism enabled by default, as well as a one-time /pair pairing flow restricted to private chats (valid for 900 seconds or until 5 failed attempts). The plugin supports both WebSocket and Webhook transport methods, with the latter requiring additional configuration of a verification token and encryption key. Additionally, it offers per-chat verbosity settings, sticky sessions, one-time card nonces, and Allow/Deny approval functionality for remote Bash commands. As a dsh plugin.

Read More
dsh-git-worktree: Letting Agents Preview First in an Independent Git Worktree, Then Confirm and Save

`dsh-git-worktree` is a community experimental plugin for DeepSeek Harness, designed to address the chaos and contention issues caused by agents directly modifying local code repositories. The plugin adopts a "construction and delivery separation" model, allowing agents to execute tasks and tests in isolated Git Worktrees, thereby avoiding contamination of the local checkout. The core workflow includes: agents modify code in isolated environments; users can view safe, revertible local effects through "Local Preview"; once confirmed, the Host saves only the incremental changes from the current task and creates a single commit, ensuring a clean delivery without unrelated modifications. The plugin supports parallel work across multiple Worktrees, but a local project accepts only one PR at a time.

Read More
DSHX: MCP/Skill/Memory Management Plugin for DeepSeek Harness

dshx is a community management tool for DeepSeek Harness (dsh), designed to streamline the integration and maintenance of MCP servers, skills, and global memory. Its core advantage lies in performing connection self-checks before writing, rejecting malformed configurations, supporting migration of existing configurations from Claude Code and Codex, and allowing API keys to be referenced via environment variables for enhanced security. The tool can be used both as a command-line utility and as a dsh plugin, offering the `/mcp` command and visual card operations in the web interface. Its features cover CRUD operations and testing for MCP servers, installation or updates of skills from GitHub or local sources, and migration of global memory. Installation requires Node.js >=22.19, via npm global install or `dsh pl

Read More
dsh-llm-newapi: Adding NewAPI Provider to DeepSeek Harness

dsh-llm-newapi is an LLM Provider plugin based on the MIT license, designed to add a NewAPI provider to DeepSeek Harness (dsh), enabling integration with OpenAI-compatible gateways without any code modifications. The plugin implements the `LlmAdapter` interface, utilizes the `POST /chat/completions` and `GET /models` endpoints to provide model services, and automatically filters out models that only support chat functionality. Users can install the plugin via npm or GitHub, and need to add the package name to the `bundles` array in the dsh web configuration, then restart the service. The API Key is not read from environment variables and must be configured through the settings page of dsh web.

Read More
dsh-ui-font: Customizing Fonts and Font Sizes for the DSH Web Interface

dsh-ui-font is a community plugin designed specifically for the DeepSeek Harness (DSH) web interface, aimed at resolving font style and font size adjustment issues. The plugin supports independent selection of regular text and code fonts from system-installed fonts, and provides a global font size adjustment slider ranging from -3 to +20 pixels. Its core feature includes a "crosshair selection" mode, which allows users to precisely locate and individually adjust font sizes in specific areas via mouse interaction, along with a fine-tuning list per interface plugin region. The plugin supports three customizable shortcut slots (UI capture, zoom in, zoom out) for quick operations. Setting data is persisted to the DSH server-side settings.yaml, and it is compatible with a localStorage fallback mechanism for offline or older version scenarios. Technically, it is developed based on React and does not bundle fonts.

Read More
vlln/dsh-loop: Adding timed loop capability to DSH

`vlln/dsh-loop` is a plugin used for scheduled loop execution in the DSH environment, designed to address scenarios such as periodically checking status and following up on unfinished tasks. The plugin provides services through the `/loop` command, the `loop` tool, and an active status bar at the top of the chat page, supporting the concurrent running of multiple loops within a single session. Its core functionality allows the model side to perform operations such as starting, stopping, viewing status, and listing loops via the `loop` tool, with the ability to dynamically adjust parameters based on the status of each round; on the user side, the `/loop` command enables flexible management of loop creation, listing, and termination. In terms of deployment, the plugin requires Node.js >=22.19.0 and DSH >=0.1.0-rc.5, and can be installed to the `web` profile via Git or NPM sources. After installation

Read More
@visol-456/dsh-llm-fallback: Provider Fallback Chain Plugin for DSH

`@visol-456/dsh-llm-fallback` is a community plugin for DeepSeek Harness, designed to address the issue where single-provider deployments fail directly when requests encounter rate limiting, timeouts, or exceptions. This plugin allows automatic failover to a backup `(provider, model)` target for retrying the same request based on configured priority when the primary provider fails. Core features include maintaining a backup list, triggering failover based on failure codes, a circuit breaker mechanism, and configuration management through a Web UI. Configuration supports hot updates without requiring a service restart, and persistent session events are logged for auditing purposes. Installation can be done via `dsh plugin add` or npm, with mounting and configuration of `fallba` required in `cordis.yml`.

Read More
dsh-plugin-market: Adding a Plugin Market Entry to the dsh Web UI

dsh-plugin-market is a DeepSeek Harness (DSH) bundle plugin maintained by TheYoungChen, designed to solve the tedious problem of manually finding and installing third-party plugins in the Web UI. This plugin is not an official app store, but rather provides a "Plugin Market" entry integrated into the Web UI sidebar and settings page. Its core features include: fast browsing of plugins, keyword searching, and sorting by stars through a static index generated by GitHub Action (distributed via CDN and updated every 2 hours), with automatic fallback to API search when the index is unavailable. The plugin supports one-click installation, executing `pnpm add github:<owner/repo>` and automatically coordinating dependencies. The installation process

Read More
DSH Plugin Manager: DSH Settings Plugin Manager

dsh-plugin-manager is an MIT-licensed plugin management bundle for the DSH ecosystem, designed to provide a centralized plugin management interface for both Desktop and native Web profiles. Through the `Settings → Plugins` panel, it integrates features such as categorized plugin browsing, GitHub marketplace search, installation, updates, uninstallation, and restart prompts, addressing the previously fragmented operations across command lines, repository pages, and marketplaces. The tool supports duplicate installation detection, prioritizes npm for installation with a fallback to GitHub source when unpublished, and includes semver version checking for source-based plugins along with a pnpm build approval mechanism. It requires Node.js version 20 or higher and can be directly accessed after installation.

Read More
dsh-virtual-product-team: Driving DSH's Product Pipeline Through Dialogue

`songoao25/dsh-virtual-product-team` is a conversational mode preset for DeepSeek Harness (DSH), designed to automate the full product lifecycle management through a multi-agent workflow. The tool decomposes tasks into 12 stages across 8 phases, including idea validation, requirement definition, technical design, development QA, release, marketing, and iteration. Its core mechanism employs "stage gating," where progress is reported to the user at the end of each phase, and advancement to the next stage occurs only after user approval. Users are only responsible for decision-making and approval, requiring neither technical expertise nor coding skills. For installation, it supports a full installation via `./install.sh` or installing only the skill pack under a specified profile. When in use, users need to start a new conversation and enable Product in the mode selector.

Read More
DSH Plugin dsh-liquid-glass-balance-card: View DeepSeek Balance and Usage in Web Interface

The dsh-liquid-glass-balance-card is a community plugin developed specifically for the DeepSeek Harness (DSH) web interface, designed to address the issue of scattered information regarding API balance, cumulative consumption, and token usage. By default, this plugin displays a draggable liquid glass card in the upper-right corner of the page, centrally presenting total balance, available status, cumulative consumption, and token usage, while also supporting multi-time-dimension statistics such as today, the last 7 days, and the last 30 days. In terms of functionality, it provides dual-layer statistics combining local session log aggregation and DeepSeek platform online totals, and visually presents consumption trends through bar charts. The plugin supports highly customizable features, allowing users to adjust liquid glass parameters in real time, including transparency, blur, highlight, as well as 3D effects. In terms of security, the API Key and platform userToken

Read More
DeepSeek-harness-wecom: Integrating WeCom AI Bot Text, Image, and File Channels into DeepSeek Harness

The official DeepSeek Harness (DSH) plugin `sliverp/DeepSeek-harness-wecom` (v0.1.5) resolves the session channel breakpoint between the Web and the WeCom AI Bot. This standalone community plugin establishes a long connection via the official SDK, integrating text, image, and file messages from WeCom Work into the same Harness session, with support for persistent session reuse, tool approvals, file path restrictions, and access control. Core features include: support for single-chat/group-chat text and mixed-media input, automatic decryption and processing of encrypted files, and channel-specific tools such as `wecom_send_file`; support for commands like `/approve` and `/reset` for approvals and session rotation; and access policies of open, whitelist, or disabled modes.

Read More
dsh-auto: Adding Auto Approve Permission Presets for Model Review in DSH Web UI

dsh-auto is an MIT-licensed plugin for the DSH Web UI, designed to optimize the approval process. It introduces a constrained sub-Reviewer Agent to perform automated review before human confirmation, reducing manual intervention for repetitive or low-risk operations. The plugin supports only the Web UI. Its core mechanism is that when a session selects `Auto Approve`, a Reviewer running in a read-only sandbox is launched. The Reviewer is restricted to a whitelist of tools (such as read, grep), is prohibited from spawning further sub-agents, and has a step limit, enabling bounded read-only investigation and producing structured results. The host process makes the final decision based on these results: it rejects all critical risks, also rejects high risks that do not meet authorization conditions, and defaults to shutdown in case of failure. Installation requires adding the plugin via a command and restarting, with optional custom configuration.

Read More
dsh-web-search-free: DSH Free Web Search Provider and MCP Server

`dsh-web-search-free` is an MIT-licensed DSH plugin designed to replace the pay-per-use official search service in DSH, providing anonymous, key-free web searches at no cost. This plugin is based on the Parallel or Exa free backends, requiring no balance consumption or API Keys. Its core features include: a toggle switch in DSH settings to alternate between official and free search, which automatically maintains the Profile patch file once enabled; and a built-in standalone MCP Server with zero dependencies, supporting stdio and HTTP/SSE transport methods, allowing the `web_search` tool to be integrated into other MCP clients such as Claude Code and Codex. During installation, the plugin must be added via the official DSH command, and within the

Read More
dsh-notify-windows: Adding Windows Desktop Notifications to DSH

dsh-notify-windows is a DeepSeek Harness (DSH) plugin maintained by SeverusZh, designed specifically for Windows 10/11. It aims to address the issue where users cannot promptly learn about the status of DSH tasks when they are away from the screen, enabling unobtrusive monitoring by sending Windows system desktop notifications at key milestones. Core features include: listening for session `turn/end` events to alert users when tasks complete, encounter errors, or exceed output limits; listening for `approval/asked` events to alert users when manual approval is required (automatically skipped under the `never` policy); and recognizing Agent questions (e.g., `ask_user_question`) to prompt users for responses. The plugin ignores sub-agent sessions by default, with configuration options available to enable them.

Read More
dsh-session-link: Codex-Style Session Deep Linking Plugin for DeepSeek Harness

dsh-session-link is an MIT-licensed plugin for DeepSeek Harness (DSH), designed to address the difficulty of referencing context across sessions in web workflows. Through its session deep-linking feature, the plugin allows users to copy a `dsh://session/<session-ID>` link from a session header and paste it into another conversation, whereupon the source session content is injected as controlled, read-only snapshot background context. On Windows, it supports registering a protocol handler, enabling direct opening of the Web GUI and locating the corresponding session upon clicking the link. The plugin features robust error handling, preserving original text and logging issues for malformed links, self-references, or permission anomalies, with default limits of 3 references per message and 64 KiB per source, propagating only text while excluding non-text blocks such as images. Installation requires executing

Read More
dsh-devices: A Multi-Device Networking Plugin for dsh

dsh-devices is a multi-device collaboration plugin for DSH agent development, designed to address the pain points of cross-device access and file transfer. It supports discovering and pairing devices within the same local network via mDNS, utilizing SSH to achieve cross-network direct command execution, remote workspace management, and file upload/download, as well as providing an invitation code feature for one-click fleet joining. After installation, the plugin registers fleet_* tools in the session for the Agent to invoke. This plugin is licensed under the MIT License, with a current version of 0.1.2, requiring Node.js 22.18 or above. Use cases include same-network device collaboration, cross-network host management, and new device onboarding. It should be noted that mDNS is limited to the same subnet and is in beta status, cross-network functionality depends on SSH reachability, and devices behind NAT isolation are not yet supported for interconnection. Different operating systems have specific configuration requirements:

Read More