DeepSeek Harness plugin

pptkit-presentation

DeepSeek Harness plugin bundle that registers the pptkit-presentation Agent Skill (PPTKit deck authoring, preview, and PPTX export) with DSH's skill catalog.

Jump to install

Source facts

Repository
openHacking/pptkit-presentation
Latest update
Aug 21, 2026
Category
Workflow & Automation
GitHub stars
1
Format
plugin
Package path
packages/dsh-plugin-pptkit-presentation
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
packages/dsh-plugin-pptkit-presentation/package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and 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 review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/openHacking/pptkit-presentation/tree/HEAD/packages/dsh-plugin-pptkit-presentation
Plugin: pptkit-presentation
Author: openHacking

Check the source files

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

File explorer2 files
README.mdSource · read only

dsh-plugin-pptkit-presentation

DeepSeek Harness plugin bundle for [PPTKit Presentation](../../README.md). When installed into a DSH profile, this package registers the pptkit-presentation Agent Skill with DSH's ctx.skills registry, so a DeepSeek Harness session can author, generate, and export editable PowerPoint decks using the skill's Node workflow.

Install

The commands below need the dsh CLI, which ships in the npm package @deepseek-ai/dsh. If command -v dsh prints nothing, install it once or run every command via npx:

npm install -g @deepseek-ai/dsh
# or: npx -y @deepseek-ai/dsh plugin --profile web add ...

dsh plugin forwards to pnpm in the profile directory ($DSH_HOME/profiles/<name>, $DSH_HOME defaults to ~/.dsh); make sure pnpm is on PATH. Restart DSH after adding the bundle — a running process does not hot-reload profile bundles.

Run the plugin build first (it mirrors the repository's source-of-truth skill into this package):

pnpm --filter dsh-plugin-pptkit-presentation build

Then install the bundle into a DSH profile (web for the browser UI, headless for unattended runs):

# from this repository
dsh plugin --profile web add "file:$PWD/packages/dsh-plugin-pptkit-presentation"

# from GitHub (pnpm subdirectory spec; the prepare build must be allowed — add
# the key pnpm prints to the profile's pnpm-workspace.yaml allowBuilds, then
# re-run)
dsh plugin --profile web add "openHacking/pptkit-presentation#path:/packages/dsh-plugin-pptkit-presentation"

# from npm after publishing
dsh plugin --profile web add dsh-plugin-pptkit-presentation

The bundle patch row appears in the profile's dsh.profile.bundles and the pptkit-presentation skill appears in the model-facing skill catalog.

Zero-plugin fallback

If you prefer not to install a bundle, DSH's native filesystem skill provider discovers skills under $DSH_HOME/skills (default ~/.dsh/skills). Copy the skill there:

node scripts/install-dsh.mjs

See [docs/guides/dsh-harness.md](../../docs/guides/dsh-harness.md) for details.

Config

FieldMeaning
skillDirAbsolute path to a pptkit-presentation skill directory override. Defaults to PPTKIT_SKILL_DIR, then the skill bundled with this package.

How it works

cordis.patch.yml inserts one row naming this package. The plugin's apply() registers a skill provider (provider name pptkit-bundle, rank 250) that serves the bundled skill directory with a directory resourceBase, so <SKILL_DIR>/scripts/init-project.mjs and assets/previews/* resolve the same way they do for a locally installed Agent Skill.

Development

  • The skill/ directory is a generated mirror of

skills/pptkit-presentation; regenerate with pnpm --filter dsh-plugin-pptkit-presentation build. Never edit it directly — scripts/check-plugin.mjs (root pnpm lint) fails when it drifts from the source.

  • pnpm --filter dsh-plugin-pptkit-presentation test builds and runs the

provider tests.

  • The plugin has no runtime dependency on DSH packages: it talks to

ctx.skills structurally and imports only @deepseek-ai/schemastery for its config schema.