@aipanel/provider-deepseek 1.2.26 → 1.2.28

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.
@@ -116,7 +116,6 @@ function startDeepSeekWeb(options) {
116
116
  cwd,
117
117
  reject: false,
118
118
  cleanup: true,
119
- shell: true,
120
119
  env: {
121
120
  ...process.env,
122
121
  ...home ? { DSH_HOME: home } : {},
package/es/dsh-install.js CHANGED
@@ -47,7 +47,6 @@ async function ensureDshPackage(profileDir, packageName, target, home, expectedV
47
47
  log.debug(`installing ${target} into dsh profile via dsh plugin add`);
48
48
  await execa("dsh", ["plugin", "--profile", "web", "add", target], {
49
49
  reject: true,
50
- shell: true,
51
50
  env: {
52
51
  ...process.env,
53
52
  ...home ? { DSH_HOME: home } : {}
package/es/types.d.ts CHANGED
@@ -24,7 +24,8 @@ export type DeepSeekProviderOptions = {
24
24
  busyEnter?: DeepSeekBusyEnter;
25
25
  /**
26
26
  * 编辑后自动诊断(对应 opencode providerOptions.enableLsp 的质量门禁语义):
27
- * write/edit/apply_patch 执行后自动补跑 ESLint + vue-tsc 并把结果并入工具输出。
27
+ * write/edit/apply_patch 执行后自动补跑 ESLint + vue-tsc:登记到 step 边界统一诊断,按文件内容
28
+ * 去重后以 plugin 上下文消息插入下一步(原生编辑与 PTC 子调度同一路径)。
28
29
  * 与 opencode 一致默认开启;需与 enableDiagnostics 配合(总开关关闭时整体不注入)。
29
30
  */
30
31
  autoDiagnose?: boolean;
@@ -138,7 +138,6 @@ function startDeepSeekWeb(options) {
138
138
  cwd,
139
139
  reject: false,
140
140
  cleanup: true,
141
- shell: true,
142
141
  env: {
143
142
  ...process.env,
144
143
  ...home ? { DSH_HOME: home } : {},
@@ -86,7 +86,6 @@ async function ensureDshPackage(profileDir, packageName, target, home, expectedV
86
86
  log.debug(`installing ${target} into dsh profile via dsh plugin add`);
87
87
  await (0, import_execa.execa)("dsh", ["plugin", "--profile", "web", "add", target], {
88
88
  reject: true,
89
- shell: true,
90
89
  env: {
91
90
  ...process.env,
92
91
  ...home ? { DSH_HOME: home } : {}
package/lib/types.d.ts CHANGED
@@ -24,7 +24,8 @@ export type DeepSeekProviderOptions = {
24
24
  busyEnter?: DeepSeekBusyEnter;
25
25
  /**
26
26
  * 编辑后自动诊断(对应 opencode providerOptions.enableLsp 的质量门禁语义):
27
- * write/edit/apply_patch 执行后自动补跑 ESLint + vue-tsc 并把结果并入工具输出。
27
+ * write/edit/apply_patch 执行后自动补跑 ESLint + vue-tsc:登记到 step 边界统一诊断,按文件内容
28
+ * 去重后以 plugin 上下文消息插入下一步(原生编辑与 PTC 子调度同一路径)。
28
29
  * 与 opencode 一致默认开启;需与 enableDiagnostics 配合(总开关关闭时整体不注入)。
29
30
  */
30
31
  autoDiagnose?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aipanel/provider-deepseek",
3
- "version": "1.2.26",
3
+ "version": "1.2.28",
4
4
  "type": "module",
5
5
  "main": "lib/index.cjs",
6
6
  "module": "es/index.js",
@@ -21,7 +21,7 @@
21
21
  "registry": "https://registry.npmjs.org/"
22
22
  },
23
23
  "dependencies": {
24
- "@aipanel/core": "1.2.26",
24
+ "@aipanel/core": "1.2.28",
25
25
  "execa": "^9.6.1"
26
26
  },
27
27
  "devDependencies": {