跪拜 Guibai
← All articles
Frontend · Backend · JavaScript

DeepSeek Harness Gets a 595-Plugin App Store and an AI Shopping Guide

By 万少 ·
Read original on juejin.cn ↗ Google Translate ↗ Alt translation

Agent frameworks live or die on extensibility, and a discoverable plugin ecosystem with one-command installs lowers the barrier from "read the source and fork it" to "type a sentence and refresh." The curated list also gives developers a starting point for vetting community code, though it stops short of a real security audit.

Summary

The DeepSeek Harness agent framework now has a plugin ecosystem accessible through two community-built tools. dsh-market adds a visual app-store tab directly into the settings panel, cataloging 595 community plugins across categories like UI themes, memory, tools, skill packs, and workflow automation. Each plugin card shows stars, author, and a one-click install button; most take effect on page refresh.

dsh-find-plugin works inside the chat interface itself. Describe what you need in plain language, and the agent searches the same plugin directory, returning matching results with ready-to-paste installation commands. Both tools draw from a single curated plugin list, so anything discoverable is installable.

The marketplace enforces a basic safety gate: only plugins from the community-curated list can be installed. Third-party code still runs with the user's permissions, so the post warns to check source code and test unfamiliar plugins in keyless environments.

Takeaways
dsh-market installs with `dsh plugin --profile web add dshmarket` and adds a Plugin Marketplace tab to the settings panel.
The marketplace lists 595 community plugins across eight categories including UI, themes, models, memory, tools, skills, and workflows.
Plugins install with one click, show real-time progress, and typically take effect on page refresh without a restart.
dsh-find-plugin installs with `dsh plugin --profile web add dsh-find-plugin` and lets users describe a need in chat to get matching plugins with install commands.
Both tools query the same curated plugin directory, so search results from either path lead to installable plugins.
The marketplace only permits installation of plugins from the community-curated list, blocking unlisted sources.
Third-party plugins run with the user's full permissions; the post recommends checking source code and testing in keyless environments before trusting a plugin.
Conclusions

A plugin marketplace inside an agent framework shifts the extension model from developer-side integration to end-user browsing, which could accelerate adoption among non-programmers who configure agents through a GUI.

The curated-list gate is a pragmatic middle ground: it prevents drive-by installs from arbitrary URLs but explicitly does not constitute a security audit, leaving the burden of code review on the user.

Pairing a visual marketplace with a conversational search agent creates two discovery paths for the same data, which suits both exploratory browsing and goal-directed lookup without fragmenting the plugin catalog.

Concepts & terms
DeepSeek Harness (dsh)
An open-source agent framework where models, tools, sandboxes, session storage, and agent loops are all implemented as plugins, making the entire system extensible through a unified plugin interface.
dsh-market
A community-built visual plugin marketplace that embeds directly into dsh's settings panel, listing curated plugins with one-click install and real-time progress.
dsh-find-plugin
A conversational plugin search agent that accepts natural-language requests inside a dsh chat session and returns matching plugins with copy-paste installation commands.
Source: juejin.cn ↗ Google Translate ↗ Backup ↗