HubaKing/dsh-community-plugins
DeepSeek Harness (dsh) plugin: registers a global skill that teaches agents how to discover, evaluate and install community plugins from the GitHub dsh-plugin topic, dshmarket and npm.
이것은 DeepSeek Harness(DSH) 플러그인입니다. 이 사이트는 GitHub README, 설치 정보, 유지보수 상태, 공개 보안 시그널을 모아 보여줍니다.
업스트림에서 중국어 README를 제공하지 않아 저장소 원본 내용을 표시합니다.
dsh-community-plugins
A DeepSeek Harness (dsh) plugin that registers a global skill for discovering, evaluating and installing community plugins — from the GitHub
dsh-plugintopic, the dshmarket GUI, and npm.
Looking for a DeepSeek Harness plugin to install? This bundle adds the dsh-community-plugins skill to every agent session: agents learn which marketplace tools are already installed (market_search, dshmarket), how to search the dsh-plugin ecosystem, how to vet a plugin before installing it, and how to install via dsh plugin (npm, GitHub, tarball, or link: development mode).
Why this plugin
DeepSeek Harness plugins provide capabilities through two complementary mechanisms: Tools and Skills.
Tool (e.g. market_search) | Skill (registered by this plugin) | |
|---|---|---|
| Nature | Capability channel: callable functions | Context knowledge: when, why, and how to call |
| Installed by | dsh-plugin-marketplace etc. | This plugin |
| Effect alone | Tool exists, but the agent does not recognize it | No marketplace interface to call |
Installing a marketplace tool alone is not enough. An LLM agent's behavior is driven by context knowledge:
web_searchhas an intuitive description and is any model's default generic approach;market_searchis a DSH-specific tool. Without this skill, the agent does not know it exists, does not associate it with installing plugins, and does not understand the local profile layout, the bundle mechanism, the vetting workflow, or the restart requirement.
Without this plugin, agents fall back to generic web search. With it, every new session's agent automatically knows which marketplaces and tools are installed, which structured channels to query first, how to vet sources, how to install through the official mechanism, and how to verify the result. In practice, on the same environment, agents relied on web search before the skill was active, and invoked market_search directly with accurate install commands on their first response afterwards.
Features
- Registers a global skill:
dsh-community-pluginsappears in every session's<available_skills>catalog - Teaches the agent to identify locally installed plugins (dshmarket, dsh-plugin-marketplace, etc.)
- Provides community plugin discovery channels: GitHub
dsh-plugintopic, npm, dshmarket registry snapshot - Documents the official install methods:
dsh plugincommand, GitHub direct install, tarball,link:development mode - States the constraints: do not modify official shipped presets, restart required after install, build-authorization boundaries
Install
Prerequisite: dsh CLI (or invoke apps/cli/lib/bin.js from the dsh install root). Choose one of the following:
# GitHub direct install (pure JS, zero dependencies, no build authorization)
dsh plugin --profile web add github:HubaKing/dsh-community-plugins
# Gitee mirror (faster in mainland China)
dsh plugin --profile web add https://gitee.com/HubaKing/dsh-community-plugins.git
# tarball (works offline)
curl -LO https://github.com/HubaKing/dsh-community-plugins/releases/download/v0.1.2/dsh-community-plugins-0.1.2.tgz
dsh plugin --profile web add ./dsh-community-plugins-0.1.2.tgz
# source + link (development mode, edits take effect immediately)
git clone https://github.com/HubaKing/dsh-community-plugins.git "${DSH_HOME:-~/.dsh}/plugins/dsh-community-plugins"
dsh plugin --profile web add link:${DSH_HOME:-~/.dsh}/plugins/dsh-community-plugins
Restart dsh after installing (bundle layers are composed at startup). Installation succeeds when dsh-community-plugins appears in <available_skills> of a new session.
When
dshis not on PATH, usenode <dsh install root>/apps/cli/lib/bin.js plugin --profile web add <spec>.
How it works
| File | Responsibility |
|---|---|
index.js | Plugin entry: registers the skills/ directory into the global ctx.skills registry |
cordis.patch.yml | Bundle patch layer: the - insert: row mounts the plugin at profile startup |
skills/dsh-community-plugins/SKILL.md | The skill body the agent reads |
package.json | Declares the dsh.bundle.patch manifest |
Key points:
- Pure JavaScript, zero dependencies: GitHub direct install needs no
preparescript orallowBuildsauthorization (the build gate for TypeScript plugins, per the official docs) - Hot update:
index.jsre-reads from disk on every discovery; editingSKILL.mdrequires no restart or reinstall - Official plugin shape: function form
export const name+export function apply(ctx)+dsh.bundlemanifest
Modifying the skill content
Edit skills/dsh-community-plugins/SKILL.md; changes take effect on save, then git push to share with other users.
Layout
dsh-community-plugins/
├── index.js # Plugin entry (skill registration)
├── cordis.patch.yml # Bundle patch layer
├── package.json # dsh.bundle manifest
├── README.md # English
├── docs/
│ └── lang/
│ └── README_zh.md # 中文
└── skills/
└── dsh-community-plugins/
└── SKILL.md # The guide read by agents
Related docs
- DeepSeek Harness official repository
- Official docs (English)
- Official docs (简体中文)
- Quickstart (Web UI)
- First plugin — plugin shape,
apply/inject, lifecycle - Packaging and installing plugins — bundle manifest, profile install, build authorization
- Plugin configuration — Config/Schema conventions
- Plugins and lifecycle — Fiber state machine and automatic cleanup
- Event system — event modes and naming conventions
- Run from source (root README) — build and launch from source
- Source execution (CLI reference) — build and launcher behavior
- GitHub
dsh-plugintopic — community plugin aggregation
License
MIT
보안 및 설치 증거
이 점수는 공개 저장소 메타데이터와 이 사이트에 등록된 설치 증거에만 기반하며, 코드 보안 감사와 다릅니다.
공개 플러그인 카탈로그에서 왔으며, 공개 GitHub 저장소로 연결됩니다.
저장소가 MIT 라이선스를 선언했습니다.
최근 180일 내 코드 업데이트가 있습니다.
재현 가능한 정확한 설치 메타데이터가 아직 등록되지 않았습니다. 저장소 설명에 따라 직접 확인하세요.
검사한 패키지 메타데이터에 설치 라이프사이클 스크립트가 선언되지 않았습니다.