dsh-ppt 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/README.en.md +1 -1
- package/README.md +1 -1
- package/package.json +70 -70
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.2(2026-09-11)
|
|
4
|
+
|
|
5
|
+
- 适配并验证官方 Harness 0.1.5-rc.1:整套同载、工具/技能契约与 Web 鉴权检查通过。
|
|
6
|
+
- Node 要求与宿主统一为 `^22.19.0 || >=24.0.0`;更新中英文兼容性说明。
|
|
7
|
+
|
|
3
8
|
## 0.4.0
|
|
4
9
|
|
|
5
10
|
- **动效(motion,默认开)**:HTML 放映页间淡入 + 要点按序逐条入场(打印自动兜底为静态);PPTX 每页原生淡入转场,`bullets` 页按段落构建、放映时点击一次出现一条要点(PowerPoint「出现,按段落」标准时序)。
|
package/README.en.md
CHANGED
|
@@ -30,7 +30,7 @@ Example:
|
|
|
30
30
|
|
|
31
31
|
## Compatibility
|
|
32
32
|
|
|
33
|
-
Verified
|
|
33
|
+
Verified with official `@deepseek-ai/dsh@0.1.5-rc.1` and Node `24.16.0` on 2026-09-11: all 18 components load alongside Modlens, with passing tool-schema, skill-registration and offline read-only invocation checks. Uses the `cordis.patch.yml` + `dsh.bundle.patch` bundle model. Node requirements match this Harness release: 22.19 or later within 22.x, or 24 or later. Live external-service workflows require separate configuration and validation.
|
|
34
34
|
|
|
35
35
|
## Installation
|
|
36
36
|
|
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ DSH(DeepSeek Harness)演示文稿技能 + 工具插件:把一句话、一
|
|
|
32
32
|
|
|
33
33
|
## 兼容性
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
已在官方 `@deepseek-ai/dsh@0.1.5-rc.1`、Node `24.16.0` 上验证(2026-09-11):18 个组件与 Modlens 同载,工具 schema、技能注册及离线只读调用检查通过。采用 `cordis.patch.yml` + `dsh.bundle.patch` 组合包模型。Node 要求与该版本 Harness 一致:22.19 及以上的 22.x,或 24 及以上。外部服务的实际业务操作需按各组件配置单独验证。
|
|
36
36
|
|
|
37
37
|
## 安装
|
|
38
38
|
|
package/package.json
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dsh-ppt",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "DSH 演示文稿技能 + 工具插件:一句话或一篇 Markdown 文档 → 完整演示文稿(独立 HTML 网页放映 + 可编辑 PPTX 导出),内置 5 套视觉主题与页间转场/要点入场动画(motion 可关),可配置默认主题/语言,中英双语,SKILL.md 薄路由 + references 按需装载,跨 harness。",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "lib/index.js",
|
|
7
|
-
"types": "lib/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./lib/index.d.ts",
|
|
11
|
-
"default": "./lib/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./skills/*": "./skills/*",
|
|
14
|
-
"./deck-core": "./skills/dsh-ppt/scripts/deck-core.mjs",
|
|
15
|
-
"./build-deck": "./skills/dsh-ppt/scripts/build-deck.mjs",
|
|
16
|
-
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
17
|
-
"./package.json": "./package.json"
|
|
18
|
-
},
|
|
19
|
-
"files": [
|
|
20
|
-
"lib",
|
|
21
|
-
"skills",
|
|
22
|
-
"cordis.patch.yml",
|
|
23
|
-
"README.md",
|
|
24
|
-
"README.en.md",
|
|
25
|
-
"CHANGELOG.md",
|
|
26
|
-
"LICENSE"
|
|
27
|
-
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "tsc -p tsconfig.json",
|
|
30
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
31
|
-
"test": "pnpm run build && node --test \"test/*.test.mjs\"",
|
|
32
|
-
"test:core": "node --test \"test/*.test.mjs\"",
|
|
33
|
-
"smoke:cli": "node skills/dsh-ppt/scripts/build-deck.mjs --title \"DSH PPT Smoke\" --content @smoke/sample-deck.md --theme data --lang zh --out .smoke-deck"
|
|
34
|
-
},
|
|
35
|
-
"dsh": {
|
|
36
|
-
"bundle": {
|
|
37
|
-
"patch": "./cordis.patch.yml"
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"keywords": [
|
|
41
|
-
"dsh",
|
|
42
|
-
"deepseek-harness",
|
|
43
|
-
"dsh-plugin",
|
|
44
|
-
"plugin",
|
|
45
|
-
"skills",
|
|
46
|
-
"ppt",
|
|
47
|
-
"pptx",
|
|
48
|
-
"presentation",
|
|
49
|
-
"slides",
|
|
50
|
-
"html"
|
|
51
|
-
],
|
|
52
|
-
"license": "MIT",
|
|
53
|
-
"engines": {
|
|
54
|
-
"node": ">=
|
|
55
|
-
},
|
|
56
|
-
"devDependencies": {
|
|
57
|
-
"@types/node": "^24.0.0",
|
|
58
|
-
"typescript": "^5.6.0"
|
|
59
|
-
},
|
|
60
|
-
"repository": {
|
|
61
|
-
"type": "git",
|
|
62
|
-
"url": "git+https://github.com/STARDUSTLC666/dsh-ppt.git"
|
|
63
|
-
},
|
|
64
|
-
"bugs": {
|
|
65
|
-
"url": "https://github.com/STARDUSTLC666/dsh-ppt/issues"
|
|
66
|
-
},
|
|
67
|
-
"homepage": "https://github.com/STARDUSTLC666/dsh-ppt#readme",
|
|
68
|
-
"author": "stardustlc",
|
|
69
|
-
"packageManager": "pnpm@11.7.0"
|
|
70
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-ppt",
|
|
3
|
+
"version": "0.4.2",
|
|
4
|
+
"description": "DSH 演示文稿技能 + 工具插件:一句话或一篇 Markdown 文档 → 完整演示文稿(独立 HTML 网页放映 + 可编辑 PPTX 导出),内置 5 套视觉主题与页间转场/要点入场动画(motion 可关),可配置默认主题/语言,中英双语,SKILL.md 薄路由 + references 按需装载,跨 harness。",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"types": "lib/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./lib/index.d.ts",
|
|
11
|
+
"default": "./lib/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./skills/*": "./skills/*",
|
|
14
|
+
"./deck-core": "./skills/dsh-ppt/scripts/deck-core.mjs",
|
|
15
|
+
"./build-deck": "./skills/dsh-ppt/scripts/build-deck.mjs",
|
|
16
|
+
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
17
|
+
"./package.json": "./package.json"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"lib",
|
|
21
|
+
"skills",
|
|
22
|
+
"cordis.patch.yml",
|
|
23
|
+
"README.md",
|
|
24
|
+
"README.en.md",
|
|
25
|
+
"CHANGELOG.md",
|
|
26
|
+
"LICENSE"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc -p tsconfig.json",
|
|
30
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
31
|
+
"test": "pnpm run build && node --test \"test/*.test.mjs\"",
|
|
32
|
+
"test:core": "node --test \"test/*.test.mjs\"",
|
|
33
|
+
"smoke:cli": "node skills/dsh-ppt/scripts/build-deck.mjs --title \"DSH PPT Smoke\" --content @smoke/sample-deck.md --theme data --lang zh --out .smoke-deck"
|
|
34
|
+
},
|
|
35
|
+
"dsh": {
|
|
36
|
+
"bundle": {
|
|
37
|
+
"patch": "./cordis.patch.yml"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"dsh",
|
|
42
|
+
"deepseek-harness",
|
|
43
|
+
"dsh-plugin",
|
|
44
|
+
"plugin",
|
|
45
|
+
"skills",
|
|
46
|
+
"ppt",
|
|
47
|
+
"pptx",
|
|
48
|
+
"presentation",
|
|
49
|
+
"slides",
|
|
50
|
+
"html"
|
|
51
|
+
],
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": "^22.19.0 || >=24.0.0"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@types/node": "^24.0.0",
|
|
58
|
+
"typescript": "^5.6.0"
|
|
59
|
+
},
|
|
60
|
+
"repository": {
|
|
61
|
+
"type": "git",
|
|
62
|
+
"url": "git+https://github.com/STARDUSTLC666/dsh-ppt.git"
|
|
63
|
+
},
|
|
64
|
+
"bugs": {
|
|
65
|
+
"url": "https://github.com/STARDUSTLC666/dsh-ppt/issues"
|
|
66
|
+
},
|
|
67
|
+
"homepage": "https://github.com/STARDUSTLC666/dsh-ppt#readme",
|
|
68
|
+
"author": "stardustlc",
|
|
69
|
+
"packageManager": "pnpm@11.7.0"
|
|
70
|
+
}
|