DeepSeek Harness plugin

dsh-inspiration-deck-workshop

Registers the Inspiration Deck Workshop skill for DSH: local static HTML presentation decks (6 deck templates, 25+ layouts, 23 themes & motion showroom) with a validate + PNG/PDF export CLI and smoke tests, zero runtime dependencies.

Jump to install

Source facts

Repository
zjsthmjialin/inspiration-deck-workshop
Latest update
Aug 16, 2026
Category
Docs & Rendering
GitHub stars
1

Install

Start with a prompt that asks an agent to read the source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to read the page and repository first.

Do not install anything yet. Read this DeepSeek Harness plugin and explain what it does, which files, networks, or credentials it can access, and how to install and remove it.

Plugin page: https://deepseekplugins.org/plugins/zjsthmjialin/inspiration-deck-workshop~23dsh-inspiration-deck-workshop
GitHub: https://github.com/zjsthmjialin/inspiration-deck-workshop/tree/master/dsh-inspiration-deck-workshop
Plugin: inspiration-deck-workshop#dsh-inspiration-deck-workshop
Author: zjsthmjialin
Install command: dsh plugin --profile web add dsh-inspiration-deck-workshop

Do not run the install command until I confirm.

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer2 files
README.mdSource · read only

dsh-inspiration-deck-workshop

「灵感演示工坊 / Inspiration Deck Workshop」的 DeepSeek Harness (DSH) 插件化分发包

安装后自动向 DSH 技能系统注册 inspiration-deck-workshop 技能:本地静态 HTML 演示文稿工作台——6 套 deck 模板、25+ 布局、主题/动效展示馆,带 validate 校验与 PNG/PDF 导出 CLI(纯 Node 内置模块,零 npm 依赖)。

安装

dsh plugin --profile web add dsh-inspiration-deck-workshop

重启 DSH Web(dsh --profile web)后,技能出现在技能目录中,任意会话可直接让 agent 按技能工作流生成 HTML 演示文稿。

> 需要 PNG/PDF 导出时,本机需有 Chrome/Chromium(DSH 的 Playwright 缓存即可)。

用法(agent 侧)

加载技能后按 SKILL.md 工作流:

node "<技能资源目录>/tools/cli.mjs" list decks
node "<技能资源目录>/tools/cli.mjs" new <deck-name> --template <deck-id> --theme <theme-id>
node "<技能资源目录>/tools/cli.mjs" validate <deck-path> --write-manifest
node "<技能资源目录>/tools/cli.mjs" export <deck-path> --format pdf --out <out.pdf>

> 说明:cli.mjs 的所有路径都锚定在技能目录内,生成的 deck 默认写到技能目录;需要放到会话工作区时用文件工具移动即可。

本地开发 / 安装未发布版本

# 从本包目录直接装(链接模式)
dsh plugin --profile web add ./dsh-inspiration-deck-workshop

# 或打 tarball 后安装
pnpm pack
dsh plugin --profile web add ./dsh-inspiration-deck-workshop-0.1.0.tgz

发布(作者执行)

# 1. 确认包名未被占用
npm view dsh-inspiration-deck-workshop

# 2. 登录 npm(首次)
npm login

# 3. 构建产物并发布(files 已限定 index.js / cordis.patch.yml / skills/)
pnpm pack --dry-run   # 先看 tarball 内容
npm publish

# 4. 验收:全新 profile 安装
dsh plugin --profile web add dsh-inspiration-deck-workshop

> 发布前请确认 license 与版权声明符合你的分发计划(当前 package.json 声明 MIT)。