DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Marketing Toolkit — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
M

dsh-marketing-toolkit

Marketing Toolkit

DSH Marketing Toolbox: Adds a “🎯 Marketing Toolbox” module at the bottom of the sidebar (next to Settings, using the official sidebar.footer.action slot), providing one-click access to four preset marketing Agent channels: cover image generation, Moments copywriting, short video scripts, and an ope

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:1wanganshi/dsh-marketing-toolkit#525b7324ba1bb98bd9aaeb5bbdc6af318c8dd4de
READMECompatibilityVersions

Description

DSH Marketing Toolbox: Adds a “🎯 Marketing Toolbox” module at the bottom of the sidebar (next to Settings, using the official sidebar.footer.action slot), providing one-click access to four preset marketing Agent channels: cover image generation, Moments copywriting, short video scripts, and an opening golden 3-second test. Additional tools can be added incrementally to the CHANNELS array at the top of lib/client.js.

Compatibility and provenance

Marketing Toolkit is published as dsh-marketing-toolkit and currently resolves to version 0.2.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/5/2026

Versions

0.2.2stable
9/5/2026

Related plugins

Loading related plugins…

Latest
0.2.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/5/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Pet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

dsh-marketing-toolkit

DSH(DeepSeek Harness)插件:在左侧导航栏「新会话」下方增加「🎯 营销工具箱」模块,一键打开四个预设营销 Agent 通道:

工具产出
🖼️ 封面图生成公众号 / 视频号 / 小红书高点击率封面
📱 朋友圈文案痛点 / 故事 / 数据三种风格 + 评论区话术
🎬 短视频脚本分镜表(画面 + 台词 + 时长 + BGM)
⚡ 开头黄金3秒检验完播率诊断 + 3 个改写方案

点击任一工具会:复用(或创建)当前工作区的空白会话(与 New Session 同语义)→ 跳转到该会话 → 自动发送一条点名 marketing-toolkit 技能的开场提示词,由 Agent 加载对应技能通道后按规范执行。

添加新工具(扩展方式)

编辑 lib/client.js 顶部的 CHANNELS 数组,加一行即可,面板网格与启动流程完全数据驱动:

{
  id: 'my-new-tool',
  icon: '🧪',
  title: '新工具名',
  desc: '一句话说明',
  kickoff: '请先加载技能(skill)marketing-toolkit,然后…',
}

安装

dsh plugin --profile web add "D:/vibecoding/工作区1/dsh-marketing-toolkit"

然后把 "dsh-marketing-toolkit" 加入 profile package.json 的 dsh.profile.bundles 数组(dsh plugin add 只装依赖不激活),再重启 web 实例(桌面版为重启 DeepSeek Harness 应用)。

手动安装等价流程:在 profile 的 package.json 中加 "dsh-marketing-toolkit": "file:D:/vibecoding/工作区1/dsh-marketing-toolkit" 到 dependencies,加 "dsh-marketing-toolkit" 到 dsh.profile.bundles,然后在 profile 目录执行 pnpm install。

更新插件代码后

file: 依赖在安装时拷贝进 profile 的 node_modules,因此修改工作区源码后需要重新安装:

cd <DSH_HOME>/profiles/web && pnpm install

然后重启 web 实例(或刷新页面等待 HMR)。

回滚

dsh plugin --profile web remove dsh-marketing-toolkit

或从 profile 的 package.json 删除依赖与 dsh.profile.bundles 条目后重启。

结构

  • package.json — dsh.bundle.patch + dsh.client.platform = web
  • cordis.patch.yml — 将插件行(id: marketing-toolkit)插入 profile roster
  • lib/index.js — 宿主半侧(无宿主特性,仅占位 + 稳定插件名)
  • lib/client.js — 浏览器半侧:侧边栏入口 + 启动面板 + 会话交接(纯 DOM,零构建依赖)
    • bundle 格式为 window.__ModuleLoader__.load({ id, factory })(dsh-client-modules 的惰性 CJS 注册格式,无需打包器)

依赖

  • 技能 marketing-toolkit(~/.agents/skills/marketing-toolkit/SKILL.md)提供四个工具的执行规范。
  • 生图通道使用已配置的 dsh-imagegen 渠道。

运行时 API(已对照 rc.1 源码核实)

  • ctx.get("sessions") → ISessions:list.getSnapshot().current、create({workspaceId?})、open(id)、binding(id).session
  • ctx.get("conversation") → IConversation:sendSession(session, text, [], "queue")
  • ctx.get("workspaces") → IWorkspaces:list.getSnapshot().items[](workspaceId/sessionIds/updatedAt)
  • ctx.get("uiWorkspace") → UiWorkspace:connectWorkspace(workspaceId) 复用工作区空白会话(服务为可选,缺失时回退 sessions.create)