@deepseek-ai/dsh-plan-mode 0.1.6-alpha.2 → 0.1.7-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/lib/index.js +1 -2
- package/lib/types/index.d.ts +8 -0
- package/lib/types/index.js +1 -1
- package/package.json +24 -24
package/lib/index.js
CHANGED
package/lib/types/index.d.ts
CHANGED
|
@@ -24,7 +24,15 @@
|
|
|
24
24
|
import { Context, Service } from '@deepseek-ai/cordis';
|
|
25
25
|
import { z as zod } from 'zod';
|
|
26
26
|
import type { Agent } from '@deepseek-ai/dsh-agent';
|
|
27
|
+
import type { ContextFormed } from '@deepseek-ai/dsh-llm';
|
|
27
28
|
import type { PlanProjection, PlanUnitState } from './types.ts';
|
|
29
|
+
declare module '@deepseek-ai/dsh-llm' {
|
|
30
|
+
interface MessageSourceMap {
|
|
31
|
+
'plan-mode': {
|
|
32
|
+
kind: 'plan-mode';
|
|
33
|
+
} & ContextFormed;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
28
36
|
export type * from './types.ts';
|
|
29
37
|
declare module '@deepseek-ai/dsh-session/types' {
|
|
30
38
|
interface SessionEventMap {
|
package/lib/types/index.js
CHANGED
|
@@ -408,7 +408,7 @@ export class PlanModeController extends Service {
|
|
|
408
408
|
return createUserMessage({
|
|
409
409
|
content: [{ type: 'text', text }],
|
|
410
410
|
// The narration is already one sentence, so it is its own summary.
|
|
411
|
-
source: { kind: '
|
|
411
|
+
source: { kind: 'plan-mode', form: 'notice', summary: text },
|
|
412
412
|
});
|
|
413
413
|
}
|
|
414
414
|
}
|
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.
|
|
4
|
+
"version": "0.1.7-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": "
|
|
45
|
-
"@deepseek-ai/dsh-commands": "
|
|
46
|
-
"@deepseek-ai/dsh-invariants": "
|
|
47
|
-
"@deepseek-ai/dsh-llm": "
|
|
48
|
-
"@deepseek-ai/dsh-session": "
|
|
49
|
-
"@deepseek-ai/dsh-session-projection": "
|
|
50
|
-
"@deepseek-ai/dsh-system-prompt": "
|
|
51
|
-
"@deepseek-ai/dsh-
|
|
52
|
-
"@deepseek-ai/
|
|
53
|
-
"@deepseek-ai/
|
|
44
|
+
"@deepseek-ai/dsh-agent": "0.1.7-alpha.2",
|
|
45
|
+
"@deepseek-ai/dsh-commands": "0.1.7-alpha.2",
|
|
46
|
+
"@deepseek-ai/dsh-invariants": "0.1.7-alpha.2",
|
|
47
|
+
"@deepseek-ai/dsh-llm": "0.1.7-alpha.2",
|
|
48
|
+
"@deepseek-ai/dsh-session": "0.1.7-alpha.2",
|
|
49
|
+
"@deepseek-ai/dsh-session-projection": "0.1.7-alpha.2",
|
|
50
|
+
"@deepseek-ai/dsh-system-prompt": "0.1.7-alpha.2",
|
|
51
|
+
"@deepseek-ai/dsh-tools": "0.1.7-alpha.2",
|
|
52
|
+
"@deepseek-ai/dsh-user-questions": "0.1.7-alpha.2",
|
|
53
|
+
"@deepseek-ai/cordis": "~4.0.4"
|
|
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": "
|
|
62
|
+
"@deepseek-ai/dsh-brand": "0.1.7-alpha.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@deepseek-ai/dsh-
|
|
66
|
-
"@deepseek-ai/dsh-
|
|
67
|
-
"@deepseek-ai/dsh-
|
|
68
|
-
"@deepseek-ai/dsh-
|
|
69
|
-
"@deepseek-ai/dsh-
|
|
70
|
-
"@deepseek-ai/dsh-
|
|
71
|
-
"@deepseek-ai/dsh-
|
|
72
|
-
"@deepseek-ai/dsh-
|
|
73
|
-
"@deepseek-ai/dsh-
|
|
74
|
-
"@deepseek-ai/dsh-
|
|
75
|
-
"@deepseek-ai/
|
|
76
|
-
"@deepseek-ai/
|
|
65
|
+
"@deepseek-ai/dsh-commands": "0.1.7-alpha.2",
|
|
66
|
+
"@deepseek-ai/dsh-invariants": "0.1.7-alpha.2",
|
|
67
|
+
"@deepseek-ai/dsh-agent-loop": "0.1.7-alpha.2",
|
|
68
|
+
"@deepseek-ai/dsh-ptc-runtime": "0.1.7-alpha.2",
|
|
69
|
+
"@deepseek-ai/dsh-agent": "0.1.7-alpha.2",
|
|
70
|
+
"@deepseek-ai/dsh-llm": "0.1.7-alpha.2",
|
|
71
|
+
"@deepseek-ai/dsh-session-projection": "0.1.7-alpha.2",
|
|
72
|
+
"@deepseek-ai/dsh-session": "0.1.7-alpha.2",
|
|
73
|
+
"@deepseek-ai/dsh-system-prompt": "0.1.7-alpha.2",
|
|
74
|
+
"@deepseek-ai/dsh-tools": "0.1.7-alpha.2",
|
|
75
|
+
"@deepseek-ai/dsh-user-questions": "0.1.7-alpha.2",
|
|
76
|
+
"@deepseek-ai/cordis": "~4.0.4"
|
|
77
77
|
}
|
|
78
78
|
}
|