@deepseek-ai/dsh-sdk-minimal 0.1.2-alpha.2 → 0.1.2-alpha.3

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 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/bundle/sdk-minimal/README.md
5
- README.md: cf9333cd4304f24344b79d54b4149dadf246c325
6
- README.zh.md: eeda31bff9e34fd20dae0e43c5678c0e398e0649
5
+ README.md: f1db30ccf0e3bc0e09801eff225d72c20c3184bc
6
+ README.zh.md: 0163a6ffd71bff9811ec4a556bd2240d5c389312
package/README.md CHANGED
@@ -46,7 +46,7 @@ The profile mounts exactly one persistent shell stack: Bash on Linux and macOS,
46
46
  <details>
47
47
  <summary>Implementation internals — click to expand</summary>
48
48
 
49
- The bundle's single insert is the complete application tree: SDK stdio startup and JSON-RPC serving, one environment-configured DeepSeek adapter, the executor-less agent spine, local subprocess and unrestricted filesystem providers, a platform-selected persistent shell PTY, the string-replace editor, and uncompressed JSONL persistence under `$DSH_HOME/sessions`. It does not inherit another bundle, so every extra row is an explicit profile change.
49
+ The bundle's single insert is the complete application tree: SDK stdio startup and JSON-RPC serving, one environment-configured DeepSeek adapter, the explicit agent core, local subprocess and unrestricted filesystem providers, a platform-selected persistent shell PTY, the string-replace editor, and uncompressed JSONL persistence under `$DSH_HOME/sessions`. It does not inherit another bundle, so every extra row is an explicit profile change.
50
50
 
51
51
  ### Source map
52
52
 
package/README.zh.md CHANGED
@@ -46,7 +46,7 @@ dsh --profile sdk-minimal
46
46
  <details>
47
47
  <summary>实现细节——点击展开</summary>
48
48
 
49
- 该 bundle 的单个 insert 就是完整应用配置树:SDK stdio 启动与 JSON-RPC 服务、一个由环境配置的 DeepSeek 适配器、无执行器 agent 主干、本地子进程与不受限文件系统提供方、按平台选择的持久 shell PTY、字符串替换编辑器,以及位于 `$DSH_HOME/sessions` 的未压缩 JSONL 持久化。它不继承其他 bundle,因此每个额外配置项都是显式 profile 变更。
49
+ 该 bundle 的单个 insert 就是完整应用配置树:SDK stdio 启动与 JSON-RPC 服务、一个由环境配置的 DeepSeek 适配器、显式 agent 核心、本地子进程与不受限文件系统提供方、按平台选择的持久 shell PTY、字符串替换编辑器,以及位于 `$DSH_HOME/sessions` 的未压缩 JSONL 持久化。它不继承其他 bundle,因此每个额外配置项都是显式 profile 变更。
50
50
 
51
51
  ### 源码地图
52
52
 
package/cordis.patch.yml CHANGED
@@ -70,17 +70,62 @@
70
70
  config:
71
71
  cwd: !!js process.cwd()
72
72
 
73
- - id: agent-spine
74
- name: '@deepseek-ai/dsh-agent-spine-demo'
73
+ # Keep the minimal agent kernel explicit: unlike dsh-base, this profile
74
+ # owns each service row and omits every optional producer it does not use.
75
+ - id: timer
76
+ name: '@deepseek-ai/cordis-plugin-timer'
77
+
78
+ - id: llm
79
+ name: '@deepseek-ai/dsh-llm'
80
+
81
+ - id: session
82
+ name: '@deepseek-ai/dsh-session'
83
+
84
+ - id: session-title
85
+ name: '@deepseek-ai/dsh-session-title'
86
+ config:
87
+ fallbackMaxWords: 5
88
+ fallbackMaxBytes: 40
89
+ maxTitleBytes: 80
90
+
91
+ - id: system-prompt
92
+ name: '@deepseek-ai/dsh-system-prompt'
75
93
  config:
76
94
  includeHarnessIdentity: false
77
95
  includeRuntimeContext: false
78
96
  persona: !!js process.env.DSH_SYSTEM_PROMPT ?? 'You are a helpful software engineer assistant.'
79
- workspaceContext: false
80
- skills:
81
- enabled: false
82
- toolBash: false
83
- toolJobs: false
97
+
98
+ - id: tools
99
+ name: '@deepseek-ai/dsh-tools'
100
+
101
+ - id: agent
102
+ name: '@deepseek-ai/dsh-agent'
103
+
104
+ - id: llm-retry
105
+ name: '@deepseek-ai/dsh-llm-retry'
106
+
107
+ - id: jobs
108
+ name: '@deepseek-ai/dsh-jobs-local'
109
+
110
+ - id: invariants
111
+ name: '@deepseek-ai/dsh-invariants'
112
+
113
+ - id: session-invariant
114
+ name: '@deepseek-ai/dsh-session/invariant'
115
+
116
+ - id: agent-invariant
117
+ name: '@deepseek-ai/dsh-agent/invariant'
118
+
119
+ - id: scope-invariant
120
+ name: '@deepseek-ai/dsh-scope/invariant'
121
+
122
+ - id: agent-loop-invariant
123
+ name: '@deepseek-ai/dsh-agent-loop/invariant'
124
+
125
+ - id: agent-loop
126
+ name: '@deepseek-ai/dsh-agent-loop'
127
+ config:
128
+ agents: []
84
129
 
85
130
  - id: persistent-bash
86
131
  name: '@deepseek-ai/dsh-tool-bash-persistent'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-sdk-minimal",
3
3
  "description": "The standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, editor, and JSONL sessions",
4
- "version": "0.1.2-alpha.2",
4
+ "version": "0.1.2-alpha.3",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -39,31 +39,42 @@
39
39
  }
40
40
  },
41
41
  "dependencies": {
42
- "@deepseek-ai/dsh-agent-spine-demo": "^0.1.2-alpha.2",
43
- "@deepseek-ai/dsh-deepseek-llm-api-extensions": "^0.1.2-alpha.2",
44
- "@deepseek-ai/dsh-fs-local": "^0.1.2-alpha.2",
45
- "@deepseek-ai/dsh-llm-deepseek": "^0.1.2-alpha.2",
46
- "@deepseek-ai/dsh-plugin-package-inventory-deepseek": "^0.1.2-alpha.2",
47
- "@deepseek-ai/dsh-sandbox-local": "^0.1.2-alpha.2",
48
- "@deepseek-ai/dsh-sandbox-policy": "^0.1.2-alpha.2",
49
- "@deepseek-ai/dsh-sdk-app": "^0.1.2-alpha.2",
50
- "@deepseek-ai/dsh-sdk-jsonrpc-server": "^0.1.2-alpha.2",
51
- "@deepseek-ai/dsh-session-log-deepseek": "^0.1.2-alpha.2",
52
- "@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.2-alpha.2",
53
- "@deepseek-ai/dsh-session-projection": "^0.1.2-alpha.2",
54
- "@deepseek-ai/dsh-subprocess-local": "^0.1.2-alpha.2",
55
- "@deepseek-ai/dsh-terminal": "^0.1.2-alpha.2",
56
- "@deepseek-ai/dsh-terminal-bash": "^0.1.2-alpha.2",
57
- "@deepseek-ai/dsh-tool-bash-persistent": "^0.1.2-alpha.2",
58
- "@deepseek-ai/dsh-tool-pwsh-persistent": "^0.1.2-alpha.2",
59
- "@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.2-alpha.2"
42
+ "@deepseek-ai/dsh-agent": "^0.1.2-alpha.3",
43
+ "@deepseek-ai/dsh-agent-loop": "^0.1.2-alpha.3",
44
+ "@deepseek-ai/cordis-plugin-timer": "^1.1.4",
45
+ "@deepseek-ai/dsh-deepseek-llm-api-extensions": "^0.1.2-alpha.3",
46
+ "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.3",
47
+ "@deepseek-ai/dsh-fs-local": "^0.1.2-alpha.3",
48
+ "@deepseek-ai/dsh-jobs-local": "^0.1.2-alpha.3",
49
+ "@deepseek-ai/dsh-llm": "^0.1.2-alpha.3",
50
+ "@deepseek-ai/dsh-llm-deepseek": "^0.1.2-alpha.3",
51
+ "@deepseek-ai/dsh-llm-retry": "^0.1.2-alpha.3",
52
+ "@deepseek-ai/dsh-sandbox-local": "^0.1.2-alpha.3",
53
+ "@deepseek-ai/dsh-plugin-package-inventory-deepseek": "^0.1.2-alpha.3",
54
+ "@deepseek-ai/dsh-sandbox-policy": "^0.1.2-alpha.3",
55
+ "@deepseek-ai/dsh-scope": "^0.1.2-alpha.3",
56
+ "@deepseek-ai/dsh-sdk-app": "^0.1.2-alpha.3",
57
+ "@deepseek-ai/dsh-sdk-jsonrpc-server": "^0.1.2-alpha.3",
58
+ "@deepseek-ai/dsh-session": "^0.1.2-alpha.3",
59
+ "@deepseek-ai/dsh-session-log-deepseek": "^0.1.2-alpha.3",
60
+ "@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.2-alpha.3",
61
+ "@deepseek-ai/dsh-session-projection": "^0.1.2-alpha.3",
62
+ "@deepseek-ai/dsh-session-title": "^0.1.2-alpha.3",
63
+ "@deepseek-ai/dsh-subprocess-local": "^0.1.2-alpha.3",
64
+ "@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.3",
65
+ "@deepseek-ai/dsh-terminal-bash": "^0.1.2-alpha.3",
66
+ "@deepseek-ai/dsh-terminal": "^0.1.2-alpha.3",
67
+ "@deepseek-ai/dsh-tool-bash-persistent": "^0.1.2-alpha.3",
68
+ "@deepseek-ai/dsh-tool-pwsh-persistent": "^0.1.2-alpha.3",
69
+ "@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.2-alpha.3",
70
+ "@deepseek-ai/dsh-tools": "^0.1.2-alpha.3"
60
71
  },
61
72
  "peerDependencies": {
62
- "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2",
63
- "@deepseek-ai/cordis": "^4.0.2"
73
+ "@deepseek-ai/cordis": "^4.0.2",
74
+ "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.3"
64
75
  },
65
76
  "devDependencies": {
66
- "@deepseek-ai/cordis": "^4.0.2",
67
- "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2"
77
+ "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.3",
78
+ "@deepseek-ai/cordis": "^4.0.2"
68
79
  }
69
80
  }