dsh plugins中文
← Back to popular plugin directory

AI PPT generation assistant

EZ118/dsh-ppt-composer · skills

DeepSeek Harness’s AI PPT generation assistant Cordis plug-in. Once loaded, chat directly to generate a slideshow.

★ 0GitHub stars
0Forks
2026-08-16Last updated
JavaScriptLanguage
MITLicense

Project overview

本仓库以 动态 Cordis 插件 形式分发:src/host.js 与 src/client.js 就是 cordisdefine 所需的 code.host / code.client 原文(已验证可运行),单一事实来源。 方式一:动态加载(推荐,开箱即用)

把 definePayload() 的返回传给 cordisdefine({ plugin: { kind: 'new', idPrefix: 'pptco' }, …, code }), 随后 cordisrun 激活并批准运行。激活后当前会话即可使用全部 ppt 工具与预览面板。 方式二:静态挂载(需少量适配)

DSH 部署通过 profile 的 cordis.patch.yml 挂载插件。src/host.js / src/client.js 目前使用动态运行器的全局 harness(defineTool / registerTool / handle)与 host.call 桥。静态挂载时需将: harness.defineTool / harness.registerTool → ctx.tools.register(toolDefinition); harness.handle('ppt/state'|'ppt/export') → 通过会话/客户端 RPC 服务暴露; Client 的 host.call('ppt/…') → 替换为对应静态 RPC 通道。

Install command

dsh plugin --profile web add github:EZ118/dsh-ppt-composer
View GitHub repository ↗Back to popular plugin directory