@deepseek-ai/dsh-plan-mode 0.1.6-alpha.1 → 0.1.6-alpha.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/README.i18n.yaml +2 -2
- package/README.md +2 -0
- package/README.zh.md +2 -0
- package/lib/index.js +2 -1
- package/lib/types/index.js +1 -1
- package/package.json +23 -23
package/README.i18n.yaml
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
# side as of the last confirmed-consistent state. Both languages carry equal authority;
|
|
3
3
|
# after editing either side, bring the other along and re-record with:
|
|
4
4
|
# pnpm run verify-translation-pairing --write packages/plan/plan-mode/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: 642caf0c6db6470e93c7b0583d2bfe145ed99f29
|
|
6
|
+
README.zh.md: 4165d5b925083d10c76312d00293fd0b0ac84ba0
|
package/README.md
CHANGED
|
@@ -105,6 +105,8 @@ When `ctx.sessionProjections` is composed, the package registers the `plan` unit
|
|
|
105
105
|
| [`src/client.ts`](src/client.ts) | Client-namespace re-export of the types outlet |
|
|
106
106
|
| [`src/invariant.ts`](src/invariant.ts) | Invariant companion: validates the `plan/mode` payload shape |
|
|
107
107
|
|
|
108
|
+
The review intent carries the originating tool-call id, so the Web client can reopen the same submitted plan after the review closes. The complete Markdown remains in the existing native call or PTC dispatch log.
|
|
109
|
+
|
|
108
110
|
</details>
|
|
109
111
|
|
|
110
112
|
-----
|
package/README.zh.md
CHANGED
|
@@ -105,6 +105,8 @@ agent 完成计划后,会以 markdown 形式、从标题开头书写计划并
|
|
|
105
105
|
| [`src/client.ts`](src/client.ts) | types 出口的客户端命名空间再导出 |
|
|
106
106
|
| [`src/invariant.ts`](src/invariant.ts) | 不变式伴生插件:校验 `plan/mode` 载荷结构 |
|
|
107
107
|
|
|
108
|
+
审批意图携带发起工具调用的标识,让 Web 客户端在审批关闭后重新打开同一份计划。完整 Markdown 保留在已有的原生调用或 PTC dispatch 日志中。
|
|
109
|
+
|
|
108
110
|
</details>
|
|
109
111
|
|
|
110
112
|
-----
|
package/lib/index.js
CHANGED
package/lib/types/index.js
CHANGED
|
@@ -264,7 +264,7 @@ export class PlanModeController extends Service {
|
|
|
264
264
|
// Presentation only: a capable UI renders the plan as a review
|
|
265
265
|
// decision instead of a generic question, and answers with one of
|
|
266
266
|
// the labels above either way.
|
|
267
|
-
intent: { kind: 'plan-review', approve: APPROVE_LABEL },
|
|
267
|
+
intent: { kind: 'plan-review', approve: APPROVE_LABEL, callId: exec.callId },
|
|
268
268
|
}],
|
|
269
269
|
agent,
|
|
270
270
|
signal: exec.signal,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-plan-mode",
|
|
3
3
|
"description": "Logged per-agent plan mode with deployment guidance, a direct slash command, and a user-reviewed exit",
|
|
4
|
-
"version": "0.1.6-alpha.
|
|
4
|
+
"version": "0.1.6-alpha.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -41,16 +41,16 @@
|
|
|
41
41
|
],
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@deepseek-ai/dsh-agent": "^0.1.6-alpha.
|
|
45
|
-
"@deepseek-ai/dsh-commands": "^0.1.6-alpha.
|
|
46
|
-
"@deepseek-ai/dsh-invariants": "^0.1.6-alpha.
|
|
47
|
-
"@deepseek-ai/dsh-llm": "^0.1.6-alpha.
|
|
48
|
-
"@deepseek-ai/dsh-session": "^0.1.6-alpha.
|
|
49
|
-
"@deepseek-ai/dsh-session-projection": "^0.1.6-alpha.
|
|
50
|
-
"@deepseek-ai/dsh-system-prompt": "^0.1.6-alpha.
|
|
51
|
-
"@deepseek-ai/dsh-user-questions": "^0.1.6-alpha.
|
|
44
|
+
"@deepseek-ai/dsh-agent": "^0.1.6-alpha.2",
|
|
45
|
+
"@deepseek-ai/dsh-commands": "^0.1.6-alpha.2",
|
|
46
|
+
"@deepseek-ai/dsh-invariants": "^0.1.6-alpha.2",
|
|
47
|
+
"@deepseek-ai/dsh-llm": "^0.1.6-alpha.2",
|
|
48
|
+
"@deepseek-ai/dsh-session": "^0.1.6-alpha.2",
|
|
49
|
+
"@deepseek-ai/dsh-session-projection": "^0.1.6-alpha.2",
|
|
50
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.6-alpha.2",
|
|
51
|
+
"@deepseek-ai/dsh-user-questions": "^0.1.6-alpha.2",
|
|
52
52
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
53
|
-
"@deepseek-ai/dsh-tools": "^0.1.6-alpha.
|
|
53
|
+
"@deepseek-ai/dsh-tools": "^0.1.6-alpha.2"
|
|
54
54
|
},
|
|
55
55
|
"peerDependenciesMeta": {
|
|
56
56
|
"@deepseek-ai/dsh-commands": {
|
|
@@ -59,20 +59,20 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"zod": "^4.4.3",
|
|
62
|
-
"@deepseek-ai/dsh-brand": "^0.1.6-alpha.
|
|
62
|
+
"@deepseek-ai/dsh-brand": "^0.1.6-alpha.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@deepseek-ai/dsh-agent": "^0.1.6-alpha.
|
|
66
|
-
"@deepseek-ai/dsh-agent-loop": "^0.1.6-alpha.
|
|
67
|
-
"@deepseek-ai/dsh-ptc-runtime": "^0.1.6-alpha.
|
|
68
|
-
"@deepseek-ai/dsh-commands": "^0.1.6-alpha.
|
|
69
|
-
"@deepseek-ai/dsh-invariants": "^0.1.6-alpha.
|
|
70
|
-
"@deepseek-ai/dsh-session": "^0.1.6-alpha.
|
|
71
|
-
"@deepseek-ai/dsh-llm": "^0.1.6-alpha.
|
|
72
|
-
"@deepseek-ai/dsh-
|
|
73
|
-
"@deepseek-ai/dsh-
|
|
74
|
-
"@deepseek-ai/dsh-
|
|
75
|
-
"@deepseek-ai/
|
|
76
|
-
"@deepseek-ai/
|
|
65
|
+
"@deepseek-ai/dsh-agent": "^0.1.6-alpha.2",
|
|
66
|
+
"@deepseek-ai/dsh-agent-loop": "^0.1.6-alpha.2",
|
|
67
|
+
"@deepseek-ai/dsh-ptc-runtime": "^0.1.6-alpha.2",
|
|
68
|
+
"@deepseek-ai/dsh-commands": "^0.1.6-alpha.2",
|
|
69
|
+
"@deepseek-ai/dsh-invariants": "^0.1.6-alpha.2",
|
|
70
|
+
"@deepseek-ai/dsh-session": "^0.1.6-alpha.2",
|
|
71
|
+
"@deepseek-ai/dsh-llm": "^0.1.6-alpha.2",
|
|
72
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.6-alpha.2",
|
|
73
|
+
"@deepseek-ai/dsh-tools": "^0.1.6-alpha.2",
|
|
74
|
+
"@deepseek-ai/dsh-user-questions": "^0.1.6-alpha.2",
|
|
75
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
76
|
+
"@deepseek-ai/dsh-session-projection": "^0.1.6-alpha.2"
|
|
77
77
|
}
|
|
78
78
|
}
|