dsh-simplify: A DSH Plugin for Reviewing and Simplifying Code Within the Scope of Changes

dsh-simplify is an MIT-licensed plugin for DeepSeek Harness, maintained by GongYuanCaiJi, designed to address the need to clean up only the modified portions of code after changes, rather than rewriting unrelated files. Ported from pi-simplify, the plugin parses the git diff to precisely identify changed files and line number ranges, restricting the Agent to performing simplification, clarity, and maintainability optimizations only within the changed lines. Its core features include strictly limiting the editing scope to the changed lines, supporting four review modes—uncommitted changes, staged changes, comparison against a specified ref, and specified files—and running existing tests before the review concludes to verify that modifications are correct. It also automatically adheres to the project's CLAUDE.md or AGENTS.md conventions. Installation requires Node.js 20.

Read More
dsh-copilot-sdk: Hooking Your GitHub Copilot Subscription into the DeepSeek Harness

dsh-copilot-sdk is a DSH plugin developed by GongYuanCaiJi, ported from @github/copilot-sdk (v1.0.11) under the MIT license. Its core function is to connect an existing GitHub Copilot subscription to DSH by registering it as a copilot provider, without requiring an additional Copilot CLI installation. Users can access models such as gpt-5, claude-sonnet-4.5, and deepseek-r1 through the model selector, with support for streaming output in both chat and reasoning modes, but tool execution is prohibited. Authentication supports GitHub login, Token, or BYOK. The plugin provides /copilot status, /copilot models

Read More
dsh-ecc: An ECC Skill Porting Plugin for DeepSeek Harness

dsh-ecc is a DeepSeek Harness (DSH) plugin maintained by gongyijie85, designed to solve the configuration challenges of integrating external skill libraries into DSH. The plugin ports the ECC system skills—which boast 227k stars—to the DSH architecture. By registering a skill provider with the `ctx.skills` registry, it enables skill files to be distributed along with the package. Users can load skills directly through the `skill` tool without individual configuration. The project is released under the MIT license, currently at version 0.5.0, and features zero runtime dependencies with native YAML frontmatter parsing. A total of 274 skills (out of 286) have been ported, covering engineering methodologies, front-end and back-end frameworks, operations automation, and vertical domains such as healthcare and finance. Installation

Read More
dsh-plugin-wechat: Integrating DeepSeek Harness into Personal WeChat

`dsh-plugin-wechat` is a MIT-licensed plugin designed to turn DeepSeek Harness (DSH) into a personal WeChat bot. It connects through Tencent's official ClawBot channel and supports WeChat QR code login, allowing users to trigger DSH's AI directly via WeChat text messages and receive replies with tools and memory enabled. It also supports web searches via the `web_search` tool (which can be disabled through environment variables). Currently, the plugin only supports text messages and does not support images, voice messages, or other media types. It is recommended for passive replies only; mass messaging and marketing use are strictly prohibited. Installation is simple: run `npx -y dsh-plugin-wechat`, scan the QR code, and configure your DeepSeek API Key in the local web interface to get started.

Read More
dsh-memory-gate: Adjudicate Before Injecting Memories in DeepSeek Harness

dsh-memory-gate is a community memory plugin for the DeepSeek Harness, designed to address the problem of low-confidence or outdated information in long-term memory being directly injected into context. The plugin performs CBDC (Claim → Belief → Decision → Consumption) gating before memories enter the context, outputting interpretable use, verify, or ignore decisions, thereby achieving the principle that "retrieved does not mean injected." Core features include pre-injection adjudication, post-usage feedback, and near-duplicate handling. Through helped, harmful, and stale feedback, memory confidence scores are dynamically adjusted, and highly overlapping memories are automatically marked as superseded. The plugin supports three scopes—session, workspace, and global—and uses S

Read More
fyy99/dsh-livis-connector: Connect Livis in the DSH Settings Page

`fyy99/dsh-livis-connector` is an independent community plugin licensed under the MIT License, designed to integrate Livis into DeepSeek Harness (DSH). The plugin addresses the fragmentation of authorization, binding, connection status, and task idempotency by unifying Livis account authorization, Agent ID binding, and connection management within the DSH settings page. Core features include reliable message callback, support for cancellation and reconnection after disconnection, whitelist-based document upload (restricted to the configured directory), and Refresh Tokens stored only in the DSH Host, with no dependency on OpenClaw at runtime. Environment requirements: Node.js ^22.19.0 or above, and DSH 0.1.0-rc.6. Installation requires `dsh plugin

Read More
Managing Local Plugins Within the DeepSeek Harness Web GUI: dsh-plugin-manager

dsh-plugin-manager is a Web GUI plugin for DeepSeek Harness (DSH), developed by fuyao606, designed to visualize plugin management operations that originally required modifying configuration files and restarting services via the command line. It allows users to list, enable, disable, install, and uninstall plugins for the `web` profile directly within DSH's settings panel. By reading the `package.json` and `node_modules` states, the plugin enables differentiated management of user plugins versus built-in modules. Enabling or disabling operations are implemented by toggling the mounting state of `dsh.profile.bundles`; disabling merely stops loading without deleting files, while installing and uninstalling are performed by executing `pnpm add` or

Read More
dsh-peak-indicator: Display DeepSeek Peak/Off-Peak Pricing and Compress Long Sessions in DSH Web

dsh-peak-indicator is a client-side plugin for DSH Web, designed to optimize the long-session experience with DeepSeek. Its core features include: displaying a real-time badge in the session header indicating the current peak/off-peak period along with the actual cost of the current session and turn, with support for countdown display and unit price details; and automatically enabling the built-in compaction-basic feature, which folds earlier conversations into a summary when the context reaches a threshold (100,000 tokens by default) while retaining recent content, thereby reducing input costs for subsequent requests. The plugin is compatible with DeepSeek and other models that support compaction, requiring Node.js >=22.13.0 and DSH >=0.1.0-rc.7. Users can install it via a specific command and adjust the compaction threshold and peak/off-peak parameters in the settings. Note that the price table needs to be

Read More
dsh-sight: Plug-and-Play Visual Capabilities for Text-Only DSH Models

dsh-sight is an MIT-licensed plugin designed for DSH (DeepSeek Harness) text-only models, aiming to endow them with image understanding capabilities through a built-in VLM backend. By wrapping the prompt admission process, the plugin automatically saves pasted images as local-path prompts and allows the model to invoke the `vision` tool. This tool supports passing in up to 10 local paths or URLs at a time, with the backend VLM generating individually annotated text descriptions. The plugin offers free presets such as `opencode-zen` and `gemini-flash`, and also supports connecting to any OpenAI-compatible endpoint. Users can configure it via the web settings page or environment variables (which take precedence over the configuration file), and it supports

Read More
dsh-download-progress: Centralized View of Download and Transfer Progress in DSH Web

dsh-download-progress is an open-source plugin for the DSH web client, designed to solve the problem of scattered and hard-to-monitor download progress. Through a draggable panel in the bottom-right corner, it provides unified visualization of URL downloads, Shell command transfers, SSH transfers, and workspace file growth, displaying real-time byte counts, speeds, percentages, and estimated time remaining. Its core features include providing a `download_url` tool, automatically parsing Shell commands such as `curl`/`wget` to track progress, monitoring SSH transfers, and scanning the workspace every 1.5 seconds to capture "black-box" downloads. The plugin can be installed via the marketplace, CLI, or manual mounting, and requires Node.js 20 or above. Although the project was developed with AI assistance and verified on real devices, attention should still be paid to its permission dependencies and its limitations with downloads that lack C

Read More
dsh-voice-input: A Voice Input Plugin for DeepSeek Harness Web UI

forrestahha/dsh-voice-input is a speech-to-text plugin for the DeepSeek Harness Web UI, released under the MIT license. It adds a microphone entry in front of the composer's send button and uses the browser's Web Speech API to stream recognition results into the current draft, without automatically sending the message—users confirm and send manually. The plugin supports both the standard and WebKit-prefixed SpeechRecognition interfaces, defaults to Chinese as the fallback language, and optimizes whitespace handling for both CJK and Latin text. Installation requires no additional API keys or backend services; the plugin can be added to a Web profile via the `dsh plugin` command. It is primarily intended for use with Chromium and other browsers that support

Read More
dsh-memory-vault: A Cross-Session Memory Vault for DeepSeek Harness

dsh-memory-vault is a cross-session memory plugin developed for DeepSeek Harness (DSH), designed to solve the problem that information such as project preferences, deployment constraints, and test commands is confined to a single conversation context and cannot be persistently reused. The plugin provides three core model tools — `memory_remember`, `memory_recall`, and `memory_forget` — and persists memory data in the DSH storage domain. Its main features include: automatically injecting recent memory entries at each system prompt assembly to maintain contextual continuity; scoring and ranking recall results based on tag and content matching; and providing a browser-based management entry through the Settings page, allowing users to intuitively browse, add, and delete memories. The plugin is simple to install, requiring only

Read More
dsh-llm-agy: An AGY Agent Enhancement Engine for DeepSeek Harness

flg1217/dsh-llm-agy is an MIT-licensed plugin for DSH designed to extend DSH's capabilities by integrating AGY (Antigravity CLI), enabling seamless upgrades without modifying the dsh source code. The plugin requires Node.js ≥ 20 and dsh >= 0.1.0-rc.6, with the AGY CLI pre-installed. Its core features include: 1. Independent reasoning sub-agents, allowing specific tasks (such as frontend/UI) to be delegated to AGY by setting `agentOptions.provider: 'agy'`, with a `list_agy_models` tool for querying available models; 2. Deep web search, after configuring `searchProvider: agy`, `web

Read More
dsh-vault: A Data Backup and Recovery Plugin for DeepSeek Harness

dsh-vault is a community backup plugin for DeepSeek Harness (DSH) that backs up critical data—including chat history, workspace data, settings, and credentials—to a separate directory outside `~/.dsh`. The plugin provides three core capabilities: one-click backup, detection at startup of data that appears to have been wiped with an accompanying alert, and data restoration supporting either full recovery or scoped recovery (chat history only, workspace settings only). The default backup contents include sessions, storage, configuration files, credentials, and the anonymous user ID, as well as the usage plugin's data if it is installed. Users can check status, back up immediately, list backups, restore, and delete via the Backup Manager on the web settings page or the `backup_vault` tool, and can also generate an offline recovery script. Installation requires the new package name `@feiyang

Read More
DeepSeek Harness Plugin: dsh-plugin-usage-meter (API Usage/Cost/Balance Dashboard)

`dsh-plugin-usage-meter` is a community plugin designed specifically for the DeepSeek Harness (dsh) web interface, aiming to solve the problems of cost accounting and budget monitoring after API usage. The plugin is approximately 0.6MB in size, requires no Electron or separate process, and is mounted through the official profile mechanism—without modifying source code and can be easily uninstalled. Core features include displaying real-time token usage below the input box, cost estimation based on official listed prices, and account balance queries (API Key configuration required). It provides bar charts showing model cost distribution for the current day and the past 7 days, supports peak/off-peak pricing, and offers dual-currency display in CNY/USD. Users can connect to the official billing from `platform.deepseek.com` to verify actual charges, and historical costs automatically...

Read More
dsh-memory-eternal: A Local Memory Plugin for the DeepSeek Harness

dsh-memory-eternal is a local memory plugin for the DeepSeek Harness, designed to address the persistence of session conclusions and on-demand recall of historical context. Maintained by EternalNight996 and released under the MIT license, the plugin consolidates conversations into a local Markdown Vault, supports Git-based management, and allows multiple Agents to share a common memory repository. Its core features include automatic knowledge card persistence, a memory_recall tool for on-demand retrieval, a built-in graphical knowledge base and knowledge graph, as well as a review center and recycle bin mechanism. The plugin supports integration with DSH, Claude Code, Codex CLI, and Cursor, and offers a standalone browser interface along with self-managed service options. Installation requires Node >= 22,

Read More
DeepSeek Harness Antigravity OAuth Plugin: Integrating the Google Antigravity Gemini Provider in DSH Web

`eridani075/deepseek-harness-antigravity-oauth` is an MIT-licensed plugin for DeepSeek Harness (DSH) Web. It logs into Google Antigravity via Google OAuth and integrates the Gemini models within the account (such as `antigravity-gemini-3.7-flash`, etc.) into DSH as a native LLM Provider. The plugin supports text generation, thinking process, tool calling, streaming responses, and automatic token refresh, but does not support image/PDF input or multi-account rotation. Users need to download the tar package from GitHub Releases and run `

Read More
dsh-kanban: A Task Kanban Plugin for DeepSeek Harness Web UI

dsh-kanban is a task board plugin designed specifically for the DeepSeek Harness (DSH) Web UI, aiming to enhance the task management experience through a sidebar without replacing the host application. The plugin organizes Harness sessions into a five-column view: Inbox, Ready, Running, Blocked, and Done. Among these, the Running, Blocked, and Done states are automatically derived from live sessions, while idle sessions can be manually categorized into Inbox or Ready, with manual placements saved in the browser's local storage. Core features include viewing session status via the `/kanban` entry point, organizing pending tasks, and creating new tasks directly from the board using the Harness runtime, ensuring seamless integration with the host

Read More
dsh-pulse: A Cross-Session Usage and Cost Dashboard for DSH

dsh-pulse is a Web UI plugin for DSH, designed to address usage monitoring and cost management challenges in multi-workspace, multi-model scenarios. The plugin provides a unified dashboard with core features including: cross-session token usage trend analysis (supporting hourly to yearly views and heatmaps), usage breakdown and ranking by project and model dimensions, cost estimation based on per-model rates (with peak/off-peak time-of-use pricing and exchange rate configuration), as well as DeepSeek official balance queries and reconciliation. Additionally, it supports session-level detail attribution, adaptive theming, and CSV data export. The plugin runs within the DSH UI plane, consuming no additional tokens and storing no secrets, and requires Node.js >= 22.15. It can be installed via the `dsh plugin` command.

Read More
Minecraft Pixel Skin: A Minecraft Launcher-Style Skin Plugin for DeepSeek Harness WebUI

Minecraft Pixel Skin is a community skin plugin designed specifically for the DeepSeek Harness (DSH) WebUI, aiming to restyle the interface into the pixel style of the Minecraft Launcher without modifying the main workflow. The plugin leverages visual elements such as grass-block green and dirt brown, offering crisp blocky borders, pixelated backgrounds and buttons, and is fully compatible with both dark and light modes. Its core implementation achieves visual customization by injecting modules such as `dsh-client-runtime`. For installation, users need to run the `dsh plugin --profile web add` command in the DSH root directory, pointing to the GitHub repository address, and then refresh the page for the changes to take effect. The plugin requires `@deepseek-ai/cor

Read More
dsh-model-modes: Inference Modes and Provider-Native Fast Mode for DeepSeek Harness Web Composer

dsh-model-modes is an MIT-licensed plugin (v0.1.3) maintained by DTSFO, designed specifically for the DeepSeek Harness web composer. Its core goal is to add an explicit `Fast ON/OFF` toggle while preserving the reasoning configuration in DSH's official model selector. The plugin addresses the inconsistency of Fast/Priority request parameters across different providers, and strictly ensures that enabling Fast mode does not silently switch models, downgrade reasoning levels, or change providers. It injects provider-native fast parameters at the final `llm-pi-ai` boundary via `AsyncLocalStorage`, supporting `Max + Fast` and `Ul

Read More
dsh-watch: Adding Background Stream Listening for the DeepSeek Harness Agent

dshworks/dsh-watch is a background stream-watching plugin for DeepSeek Harness, designed to solve the problem of Agents needing to continuously monitor command output or new lines in log files. It supports two stream sources—`command` and `file`—and wakes the Agent through filtered, batched, and byte-limited in-session notifications, preventing data overload. Each watch task is managed as a first-class background job, supporting standard job listing, output viewing, and termination operations. The plugin features optional JavaScript regex filtering, a Wake Budget/Token Bucket mechanism, and event budget limits, and supports unattended daemon hosting for mounting long-running sessions. The plugin is released under the MIT license and requires Node.js.

Read More
dshmarketplace-plugin: Browse and Install Plugins Within DSH

dshmarketplace-plugin is a DSH plugin maintained by DshMarketPlace, licensed under the MIT License. It is designed to allow users to search for plugins, view their descriptions, and install them—all within the DSH session without leaving it. The plugin supports both English and Chinese and follows DSH's language settings for display. Its core features include the `/store` command and a settings page entry for performing in-session marketplace operations, as well as the `dshmarketplace_search` and `dshmarketplace_install` tools, which enable Agents to automatically search for and install plugins during conversations. To ensure security, plugins must pass installation tests before being listed, installation commands are rigorously validated to reject illegal input, and the browser side is isolated from the Shell. Regarding privacy

Read More
dsh-research: A Research Plugin Marketplace in DSH Settings

dsh-research is an independent research plugin marketplace designed to address the fragmentation of tools for literature search, reference management, and writing review. The plugin adds a "Research plugins" page to the DSH settings sidebar, showcasing curated research tools, and uses a single shared market.json to ensure consistency between the settings panel and the browser directory (dsh-research.com/plugins), preventing data drift. Users can install plugins directly to the currently running profile via the Install button on the page, without needing to manually enter commands. To ensure security and stability, installation behavior is strictly constrained: only packages on the whitelist may be installed, cross-origin triggering is restricted, concurrent writes are prevented to avoid conflicts, and installation targets strictly follow the profile parameters specified at host startup. Users

Read More
dsh-niao-quick-open: A DeepSeek Harness Interface Enhancement Plugin

`dsh-niao-quick-open` is a plugin designed for the DeepSeek Harness (DSH) web interface, aiming to reduce the cost of switching between systems, file managers, editors, and sessions by centralizing frequently used operations. Its core features include one-click workspace opening (copying paths, revealing in the file manager, and opening in commonly used editors), as well as automatic scanning and listing of available editors on the host side. For session management, it provides a user message navigation bar that allows quick location of questions in long conversations, supporting hover-to-view summaries and click-to-jump; it also supports session todo markers and an enhanced three-row layout for the single-column view, optimizing interface information density. In addition, the plugin allows performing a "hard restart" directly within the page—after a double confirmation, it restarts the DSH service and automatically refreshes the page. Configuration options are centralized in the settings panel and take effect immediately or prompt for a restart, with data

Read More