DeepSeek Harness 插件

dsh-skill-remote

Remote skills.sh and GitHub skill provider and installer for DeepSeek Harness.(英文原文)

跳到安装方式

来源信息

GitHub 仓库
CSY656/dsh-skill-remote
最近更新
2026年8月14日
分类
插件市场与管理
GitHub stars
1
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/CSY656/dsh-skill-remote
插件名:dsh-skill-remote
作者:CSY656

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

dsh-skill-remote

Remote skill source for DeepSeek Harness: discover and install skills from skills.sh and public GitHub repositories, directly from your agent.

  • A remote skill provider (ctx.skills): candidates discovered from skills.sh / github.com URLs appear in the session skill catalog beside local skills; bodies load on demand.
  • An install_skill tool for the model: downloads a skill bundle atomically into $DSH_HOME/skills/<name>/, where the built-in filesystem provider takes it over — no restart needed.

Zero configuration: with no remotes configured and no installs, the plugin performs no network I/O.

Install

Requires the DeepSeek Harness next line (dsh ≥ 0.1.0-rc.6, which ships dsh-skill 0.1.0-rc.6). From GitHub (sources; pnpm builds via prepare):

dsh plugin --profile default add github:you/dsh-skill-remote

pnpm ≥ 10 asks you to allow the build — add the printed package key to the profile's pnpm-workspace.yaml:

allowBuilds:
  dsh-skill-remote: true

Then re-run the add. (Treat the allowance as permission to run this package's build on your machine; pin a commit if you prefer: github:you/dsh-skill-remote#<sha>.)

From npm (prebuilt, no build permission needed):

dsh plugin --profile default add dsh-skill-remote

Usage

Say to the agent:

> Install the skill at https://github.com/anthropics/skills/tree/main/skills/docx

The model calls install_skill, and the skill becomes available through the skill tool immediately. You can also pre-register read-only remote sources:

# profile cordis.patch.yml
- update:
    - id: skill-remote
      config:
        remotes:
          - https://github.com/anthropics/skills/tree/main/skills/docx

Supported URL shapes: https://www.skills.sh/<owner>/<repo>/<skill>, https://github.com/<owner>/<repo>/tree/<ref>/<subpath>, https://raw.githubusercontent.com/<owner>/<repo>/<ref>/<subpath>/<file>.

Safety limits (hard-coded)

LimitValue
Single file1 MiB
Whole bundle8 MiB
File count64
Recursion depth4
Request timeout30 s
Path escape (.., /, \ in entry names)rejected
Symlinks / submodulesskipped

Installs are atomic: the bundle downloads into a sibling staging directory and is renamed into place only after it validates (SKILL.md present); any failure removes the staging directory. Public repositories only — no token is read, stored, or sent.

Configuration

interface Config {
  providerName?: string   // default 'remote'
  remotes?: string[]      // URLs pre-registered at startup
  installRoot?: string    // default $DSH_HOME/skills
}

Known limitations

  • Public repositories only — no OAuth/private repos; unauthenticated GitHub API rate limits (60 req/h per IP) apply.
  • Direct-children discovery only — like the built-in filesystem provider, remote sources are not scanned recursively.
  • No version pinning — every load fetches the current ref tip; installation is the only persistence.

Contributing to the ecosystem

  • The repository is tagged with the dsh-plugin topic — browse other plugins and add yours.
  • Found a bug or want a feature? Open an issue or PR; tests run with pnpm install && pnpm test.
  • The behavior ported here comes from CsyCode chapter 11's remote skill installer.

License

MIT