@deepseek-ai/dsh-plan-mode 0.0.1-rc.1 → 0.0.1-rc.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 +1 -1
- package/README.md +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:
|
|
5
|
+
README.md: b4e890f6b11998879119657ee73eb24826c101e1
|
|
6
6
|
README.zh.md: e89b75df184d2283452ab069a2d559650f15bfef
|
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Logged, per-agent plan collaboration state with deployment-owned guidance, direc
|
|
|
10
10
|
|
|
11
11
|
`ctx.planMode.set(agent, active)` appends the standalone `plan/mode` event immediately when the agent is idle, because no in-turn pre-step runs before the next prompt. While the agent is running, it holds a pending selection for the next accepted in-turn pre-step. It returns which happened (`committed`/`queued`), a `cancelled` reversal, or a `noop`. `get(agent)` returns `{ active, pending? }`, separating the logged state used to assemble the current step from a user's mid-turn selection. Initial and continuation pre-steps both apply pending selections; a same-step request-recovery retry reuses its frozen assembly and leaves the selection pending for the next pre-step. A changed user selection contributes one plugin-sourced `user/message` notice when the last logged request header described the other state (both commit paths).
|
|
12
12
|
|
|
13
|
-
## Model and human
|
|
13
|
+
## Model and human interactions
|
|
14
14
|
|
|
15
15
|
While active, `plan:policy` renders the configured `section`. The plugin always registers `exit_plan_mode`, keeping tool schemas stable across the transition; its execute path accepts only active plan mode and leaves it only after an exact user approval through `ctx.userInteraction`.
|
|
16
16
|
|
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.0.1-rc.
|
|
4
|
+
"version": "0.0.1-rc.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "restricted"
|
|
7
7
|
},
|
|
@@ -41,16 +41,16 @@
|
|
|
41
41
|
],
|
|
42
42
|
"license": "BSD-3-Clause",
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@deepseek-ai/dsh-commands": "^0.0.1-rc.
|
|
45
|
-
"@deepseek-ai/dsh-
|
|
46
|
-
"@deepseek-ai/dsh-llm": "^0.0.1-rc.
|
|
47
|
-
"@deepseek-ai/dsh-
|
|
48
|
-
"@deepseek-ai/dsh-session
|
|
49
|
-
"@deepseek-ai/dsh-
|
|
50
|
-
"@deepseek-ai/dsh-
|
|
51
|
-
"@deepseek-ai/dsh-
|
|
52
|
-
"@deepseek-ai/
|
|
53
|
-
"@deepseek-ai/
|
|
44
|
+
"@deepseek-ai/dsh-commands": "^0.0.1-rc.2",
|
|
45
|
+
"@deepseek-ai/dsh-agent": "^0.0.1-rc.2",
|
|
46
|
+
"@deepseek-ai/dsh-llm": "^0.0.1-rc.2",
|
|
47
|
+
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.2",
|
|
48
|
+
"@deepseek-ai/dsh-session": "^0.0.1-rc.2",
|
|
49
|
+
"@deepseek-ai/dsh-session-projection": "^0.0.1-rc.2",
|
|
50
|
+
"@deepseek-ai/dsh-system-prompt": "^0.0.1-rc.2",
|
|
51
|
+
"@deepseek-ai/dsh-tools": "^0.0.1-rc.2",
|
|
52
|
+
"@deepseek-ai/cordis": "^4.0.1-rc.1",
|
|
53
|
+
"@deepseek-ai/dsh-user-interaction": "^0.0.1-rc.2"
|
|
54
54
|
},
|
|
55
55
|
"peerDependenciesMeta": {
|
|
56
56
|
"@deepseek-ai/dsh-commands": {
|
|
@@ -61,17 +61,17 @@
|
|
|
61
61
|
"zod": "^4.4.3"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@deepseek-ai/dsh-agent": "^0.0.1-rc.
|
|
65
|
-
"@deepseek-ai/dsh-agent-loop": "^0.0.1-rc.
|
|
66
|
-
"@deepseek-ai/dsh-code-runtime": "^0.0.1-rc.
|
|
67
|
-
"@deepseek-ai/dsh-commands": "^0.0.1-rc.
|
|
68
|
-
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.
|
|
69
|
-
"@deepseek-ai/dsh-llm": "^0.0.1-rc.
|
|
70
|
-
"@deepseek-ai/dsh-session": "^0.0.1-rc.
|
|
71
|
-
"@deepseek-ai/dsh-session-projection": "^0.0.1-rc.
|
|
72
|
-
"@deepseek-ai/dsh-system-prompt": "^0.0.1-rc.
|
|
73
|
-
"@deepseek-ai/dsh-tools": "^0.0.1-rc.
|
|
74
|
-
"@deepseek-ai/
|
|
75
|
-
"@deepseek-ai/
|
|
64
|
+
"@deepseek-ai/dsh-agent": "^0.0.1-rc.2",
|
|
65
|
+
"@deepseek-ai/dsh-agent-loop": "^0.0.1-rc.2",
|
|
66
|
+
"@deepseek-ai/dsh-code-runtime": "^0.0.1-rc.2",
|
|
67
|
+
"@deepseek-ai/dsh-commands": "^0.0.1-rc.2",
|
|
68
|
+
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.2",
|
|
69
|
+
"@deepseek-ai/dsh-llm": "^0.0.1-rc.2",
|
|
70
|
+
"@deepseek-ai/dsh-session": "^0.0.1-rc.2",
|
|
71
|
+
"@deepseek-ai/dsh-session-projection": "^0.0.1-rc.2",
|
|
72
|
+
"@deepseek-ai/dsh-system-prompt": "^0.0.1-rc.2",
|
|
73
|
+
"@deepseek-ai/dsh-tools": "^0.0.1-rc.2",
|
|
74
|
+
"@deepseek-ai/dsh-user-interaction": "^0.0.1-rc.2",
|
|
75
|
+
"@deepseek-ai/cordis": "^4.0.1-rc.1"
|
|
76
76
|
}
|
|
77
77
|
}
|