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.

Pptfast — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

@liustack/pptfast

Pptfast

Stable, editable PPTX generation for AI agents — semantic IR in, native DrawingML out

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

npx -y @deepseek-ai/dsh plugin --profile web add @liustack/pptfast@0.20.0
READMECompatibilityVersions

Compatibility and provenance

Pptfast is published as @liustack/pptfast and currently resolves to version 0.20.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

0.20.0stable
8/17/2026
0.19.2stable
8/14/2026
0.19.1stable
8/14/2026
Show 3 more versionsCollapse versions
0.19.0stable
8/14/2026
0.18.0stable
8/14/2026
0.17.0stable
8/14/2026

Related plugins

Loading related plugins…

Latest
0.20.0
DSH
*
HMR
Process restart
Tree shaking
Declares sideEffects: false
Unpacked size
5.8 MB
Files
31
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
43
View source ↗Project homepage ↗
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 productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseWeb All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebAutomation@michengai/dsh-automationExecute coding tasks on a schedule in an independent DSH Session, with dual-entry management via a Web settings page and Agent.

README

pptfast — make your deck in minutes, not hours

pptfast

Make your deck in minutes, not hours.

🥇 The FIRST deck-generation plugin for DeepSeek Harness (dsh) 🥇

简体中文 · Install (hand it to your AI) · Commands · IR · Themes · Agent skill · ModLens (vision)

Talk to us

Issues are welcome any time. Open one, or follow @liustack on X. Share what you made with pptfast, which harness you use, and what the next release should solve. New releases land there first.

Highlights

⚡ Tell your AI what to cover, get the deck. You bring the content, the engine handles layout, color, type size, and spacing. The same content renders the same deck every time, so there is nothing to redo and no luck involved.

✏️ A real deck, not a picture of one. Every heading, bullet, and chart bar opens in PowerPoint for you to retype and restyle. Chart and table figures are the exception: to change the numbers, have your AI rebuild that page. 17 ready-made styles, and you can pull the colors and fonts out of a deck your company already uses.

🔌 Installs into the agent you already use. One command puts pptfast into DeepSeek Harness, Claude Code, or any agent that reads a skill folder (Codex and friends), and it knows how to build a deck the moment it lands.

🔁 Revisions without describing everything again. One command opens a preview page in your browser: page through it, write your notes right on the slides, and your AI picks them up and fixes them. The page refreshes itself as each revision lands.

🔒 No account, no API key, no network. Install it and it works. Node 22.19+ or Bun is all you need on the machine.

Install

Step 1, hand it to your AI. Send it this line:

Install the pptfast deck skill following https://raw.githubusercontent.com/liustack/pptfast/main/INSTALL.md, then run the health check and tell me the result.

There is no step 2. Your AI puts the skill folder where your harness reads it, and the skill brings its own version-pinned launcher, so there is no CLI to install by hand. pptfast renders entirely locally: no API key, no account, nothing to configure. The only prerequisite is Node 22.19+ (or Bun).

On DeepSeek Harness, it is one command instead. pptfast is a native DSH plugin there, not a skill folder:

npx -y @deepseek-ai/dsh plugin --profile web add @liustack/pptfast@0.20.0

Name the version. Without it, the install quietly lands on an older release and you miss the newest features. npm view @liustack/pptfast version prints the current one. The plugin card shows up as "pptfast", registers the deck-generation skill, and carries the CLI inside its own package. Uninstalling removes the skill with no residue.

Quick start

An IR is one JSON file describing the whole deck. Write a minimal one, then run the validate → render → preview loop:

cat > deck.json <<'EOF'
{
  "filename": "hello.pptx",
  "theme": { "id": "consulting" },
  "slides": [
    { "type": "cover", "heading": "Hello pptfast", "subheading": "A first deck in ten minutes" },
    { "type": "content", "heading": "Why it works", "components": [
      { "type": "bullets", "items": ["Semantic IR in", "Native DrawingML out", "Every shape stays editable"] } ] },
    { "type": "ending", "heading": "Thanks" }
  ]
}
EOF
pptfast validate deck.json                              # → OK — 3 slides, theme "consulting"
pptfast render deck.json -o out/hello.pptx              # → wrote out/hello.pptx (3 slides, ~24 KB)
pptfast render deck.json -o out/tech.pptx --theme tech  # same deck, different theme
pptfast preview deck.json -o out/svgs                   # SVG per slide, for a visual self-check

One shape rule: cover/chapter/ending slides are heading + subheading only, components live on content slides. validate says exactly this if you mix them up.

No install at all also works: npx -y @liustack/pptfast validate deck.json. In a source checkout, node dist/cli.js replaces pptfast, and examples/ has ready-made IR files to try.

The commands you will reach for most:

CommandDoes
validate <target>Check the IR, with page numbers on every error
render <target> -o <out.pptx> [--theme <id>]Render a .pptx
preview <target> -o <dir> [--html]One SVG per slide, plus a self-contained review page
serve <target>Live preview that reloads on every change, with reviewer annotations
audit <target>Geometry review: overflow, out-of-bounds, low contrast, overlap
themesList the 17 built-in themes
doctorCheck the install: runtime, skill copies, optional capabilities, self-test render

Full reference: docs/cli.md.

Documentation

DocRead it when
Install guideHanding installation to an agent or checking prerequisites
Agent skillLearning the workflow pptfast teaches an agent
CLI manualLooking up commands, flags, audits, previews, and health checks
IR referenceWriting a deck, slide, component, or narrative in JSON
ThemesPicking a built-in theme or extracting your own brand
Core conceptsUnderstanding themes, layouts, components, narratives, and capacity
ArchitectureWorking on the render chain or adding a theme, layout, or component
Deck projectsBuilding a multi-file deck with locked specs, assets, and live review
Layout selection and seedExplaining why a layout was picked or keeping revisions stable
Contrast systemDebugging text color, painted backgrounds, or contrast findings

Credits

Icon primitives are extracted from lucide (ISC License). pptfast itself was extracted from a production AI-deck-generation system and CJK-typography-tuned (full-width punctuation width, Chinese line breaking, a Chinese-first font stack, explicit east-asian font-slot declarations) from day one.

License

MIT

Testing
Running the right gate, inspecting snapshots, or changing exported XML
Internal APIUnderstanding why the JavaScript internals carry no semver promise
Release guidePreparing and publishing an npm release
CHANGELOGFinding what changed in a version