@sparkelf/dsh-plugin-subagent-settings 0.1.0-rc.11 → 0.1.0-rc.13

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 CHANGED
@@ -1,4 +1,3 @@
1
- import { settingsNamespace } from "@deepseek-ai/dsh-settings";
2
1
  import z from "@deepseek-ai/schemastery";
3
2
  import { defineTool } from "@deepseek-ai/dsh-tools";
4
3
  import { assertSubagentMaxDepth, settleRun } from "@deepseek-ai/dsh-subagent";
@@ -185,7 +184,7 @@ function validateSettings(value, provider) {
185
184
  }
186
185
  function apply(ctx, config) {
187
186
  const configuredSettings = settingsFromConfig(config);
188
- const namespace = config.settingsNamespace === void 0 ? void 0 : settingsNamespace(config.settingsNamespace);
187
+ const namespace = config.settingsNamespace;
189
188
  const settingsSource = () => {
190
189
  if (namespace === void 0) return configuredSettings;
191
190
  const settings = ctx.get("settings");
package/lib/startup.js CHANGED
@@ -1,5 +1,4 @@
1
1
  import { SUBAGENT_SETTINGS_SCHEMA, settingsFromConfig, validateSettings } from "./index.js";
2
- import { settingsNamespace } from "@deepseek-ai/dsh-settings";
3
2
  import z from "@deepseek-ai/schemastery";
4
3
  //#region lib/types/startup.js
5
4
  const name = "tool-subagent-settings";
@@ -13,7 +12,7 @@ const Config = z.intersect([z.object({
13
12
  * @param config - namespace, provider, and composition defaults.
14
13
  */
15
14
  function apply(ctx, config) {
16
- const namespace = settingsNamespace(config.settingsNamespace);
15
+ const namespace = config.settingsNamespace;
17
16
  const base = settingsFromConfig(config);
18
17
  ctx.inject(["settings"], (sctx) => {
19
18
  sctx.settings.register(namespace, SUBAGENT_SETTINGS_SCHEMA, {
package/package.json CHANGED
@@ -4,22 +4,23 @@
4
4
  },
5
5
  "description": "Settings-backed continuous and one-shot subagent delegation with one Web Settings section",
6
6
  "devDependencies": {
7
- "@deepseek-ai/cordis": "^4.0.1",
8
- "@deepseek-ai/dsh-agent": "^0.1.2-alpha.1",
9
- "@deepseek-ai/dsh-client-locale": "^0.1.2-alpha.1",
10
- "@deepseek-ai/dsh-client-store": "^0.1.2-alpha.1",
11
- "@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-alpha.1",
12
- "@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.1",
13
- "@deepseek-ai/dsh-client-ui-settings": "^0.1.2-alpha.1",
14
- "@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.1",
15
- "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.1",
16
- "@deepseek-ai/dsh-jobs": "^0.1.2-alpha.1",
17
- "@deepseek-ai/dsh-llm": "^0.1.2-alpha.1",
18
- "@deepseek-ai/dsh-session": "^0.1.2-alpha.1",
19
- "@deepseek-ai/dsh-settings": "^0.1.2-alpha.1",
20
- "@deepseek-ai/dsh-subagent": "^0.1.2-alpha.1",
21
- "@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.1",
22
- "@deepseek-ai/dsh-tools": "^0.1.2-alpha.1",
7
+ "@deepseek-ai/cordis": "^4.0.2",
8
+ "@deepseek-ai/dsh-agent": "^0.1.2-alpha.2",
9
+ "@deepseek-ai/dsh-client-locale": "^0.1.2-alpha.2",
10
+ "@deepseek-ai/dsh-client-store": "^0.1.2-alpha.2",
11
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-alpha.2",
12
+ "@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.2",
13
+ "@deepseek-ai/dsh-client-ui-settings": "^0.1.2-alpha.2",
14
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.2",
15
+ "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2",
16
+ "@deepseek-ai/dsh-jobs": "^0.1.2-alpha.2",
17
+ "@deepseek-ai/dsh-llm": "^0.1.2-alpha.2",
18
+ "@deepseek-ai/dsh-session": "^0.1.2-alpha.2",
19
+ "@deepseek-ai/dsh-settings": "^0.1.2-alpha.2",
20
+ "@deepseek-ai/dsh-subagent": "^0.1.2-alpha.2",
21
+ "@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.2",
22
+ "@deepseek-ai/dsh-tools": "^0.1.2-alpha.2",
23
+ "@deepseek-ai/dsh-util-values": "^0.1.2-alpha.2",
23
24
  "@types/react": "~18.3.1",
24
25
  "react": "^18.2.0"
25
26
  },
@@ -64,17 +65,17 @@
64
65
  "name": "@sparkelf/dsh-plugin-subagent-settings",
65
66
  "peerDependencies": {
66
67
  "@deepseek-ai/cordis": ">=4.0.1",
67
- "@deepseek-ai/dsh-agent": ">=0.1.2-alpha.1",
68
- "@deepseek-ai/dsh-client-locale": ">=0.1.2-alpha.1",
69
- "@deepseek-ai/dsh-client-ui-renderer": ">=0.1.2-alpha.1",
70
- "@deepseek-ai/dsh-client-ui-settings": ">=0.1.2-alpha.1",
71
- "@deepseek-ai/dsh-invariants": ">=0.1.2-alpha.1",
72
- "@deepseek-ai/dsh-jobs": ">=0.1.2-alpha.1",
73
- "@deepseek-ai/dsh-llm": ">=0.1.2-alpha.1",
74
- "@deepseek-ai/dsh-settings": ">=0.1.2-alpha.1",
75
- "@deepseek-ai/dsh-subagent": ">=0.1.2-alpha.1",
76
- "@deepseek-ai/dsh-system-prompt": ">=0.1.2-alpha.1",
77
- "@deepseek-ai/dsh-tools": ">=0.1.2-alpha.1"
68
+ "@deepseek-ai/dsh-agent": ">=0.1.2-alpha.2",
69
+ "@deepseek-ai/dsh-client-locale": ">=0.1.2-alpha.2",
70
+ "@deepseek-ai/dsh-client-ui-renderer": ">=0.1.2-alpha.2",
71
+ "@deepseek-ai/dsh-client-ui-settings": ">=0.1.2-alpha.2",
72
+ "@deepseek-ai/dsh-invariants": ">=0.1.2-alpha.2",
73
+ "@deepseek-ai/dsh-jobs": ">=0.1.2-alpha.2",
74
+ "@deepseek-ai/dsh-llm": ">=0.1.2-alpha.2",
75
+ "@deepseek-ai/dsh-settings": ">=0.1.2-alpha.2",
76
+ "@deepseek-ai/dsh-subagent": ">=0.1.2-alpha.2",
77
+ "@deepseek-ai/dsh-system-prompt": ">=0.1.2-alpha.2",
78
+ "@deepseek-ai/dsh-tools": ">=0.1.2-alpha.2"
78
79
  },
79
80
  "publishConfig": {
80
81
  "access": "public"
@@ -90,5 +91,5 @@
90
91
  },
91
92
  "type": "module",
92
93
  "types": "lib/types/index.d.ts",
93
- "version": "0.1.0-rc.11"
94
+ "version": "0.1.0-rc.13"
94
95
  }