DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Plugin — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

@riffkit/dsh-plugin

Plugin

改编热门短视频——提供一个来源(TikTok 链接、上传的视频或已分析的模板),后端会提炼其情绪公式,生成你自己的 AI 视频(可直接发布的短视频或 UGC 风格广告创意),并可选择添加数字角色、产品植入和语言。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add @riffkit/dsh-plugin@1.8.3
README兼容性版本

兼容性与来源证明

Plugin 以 @riffkit/dsh-plugin 发布,当前版本为 1.8.3。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
npm
Registry 更新时间
2026/9/25

版本

1.8.3stable
2026/9/25
1.8.0stable
2026/9/22
1.7.2stable
2026/9/20
查看其余 5 个版本收起版本
1.7.0stable
2026/9/19
1.5.4stable
2026/9/15
1.5.2stable
2026/9/14
1.5.1stable
2026/9/13
1.4.0stable
2026/8/25
最新版
1.8.3
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
142.8 kB
文件数
6
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 1
周下载
0
最近提交
2026/9/25
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

README

Riffkit for DSH

The Riffkit agent skill, packaged as an installable DSH bundle.

dsh plugin add @riffkit/dsh-plugin

Riff a winning short video into your own: Riffkit studies why a video worked — the hook, the pacing, the emotional beats — and rebuilds that formula as new footage with your product, your character and your language. The source clip is never re-uploaded; what carries over is the structure, not a single frame.

What this package is

A packaging layer, nothing more. It ships one thing — the skill — and registers its own directory as an additional skill root through cordis.patch.yml:

- insert:
    - id: riffkit-skill-root
      name: '@deepseek-ai/dsh-skill-filesystem'
      config:
        providerName: riffkit-bundle
        includeDefaultRoots: false
        customSkillDirs: [ … the skills/ dir inside this package … ]

It inserts its own provider row rather than editing the base one, because a patch replaces a targeted row's whole config instead of merging into it — overriding would wipe whatever you had configured there. With includeDefaultRoots: false this provider sees exactly one root: its own. It cannot shadow your skills, and yours cannot shadow it.

Not using DSH?

Then you do not need this package. The skill is a single Markdown file and every harness that reads a skills root can load it directly:

mkdir -p ~/.agents/skills/riffkit
curl -sSL https://riffkit.ai/SKILL.md -o ~/.agents/skills/riffkit/SKILL.md

That path — ~/.agents/skills — is the shared root several harnesses scan, so one copy registers Riffkit in all of them. See riffkit/skill for the skill itself, examples, and the install lines for Claude Code, Cursor and Codex.

How this stays current

Nothing here is written by hand. A daily workflow pulls SKILL.md, HEARTBEAT.md and SKILL.json from riffkit.ai — the single source of truth, served from the app on deploy — derives package.json and cordis.patch.yml from them (scripts/generate.mjs), proves the result is still discoverable by DSH's own provider (scripts/smoke.mjs), and publishes any version the registry does not have yet.

The skill also carries its own 24-hour version heartbeat, so an installed copy re-syncs itself between package updates.

MIT.