@goodandready/dsh-agent-orchestrator 0.1.8 → 0.1.9

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.
Files changed (2) hide show
  1. package/lib/client.js +11 -17
  2. package/package.json +1 -1
package/lib/client.js CHANGED
@@ -1291,7 +1291,8 @@ window.__ModuleLoader__.load({
1291
1291
 
1292
1292
  // Issue #139: settings.plugin.item does not render in DSH core 0.1.6-alpha.2+.
1293
1293
  // Primary seat is plugins.row.config (the plugin's own row on the Plugins page);
1294
- // settings.plugins.tab, plugins.item and settings.section stay as fallbacks.
1294
+ // settings.plugins.tab and plugins.item carry the settings; the root
1295
+ // settings.section is deliberately not registered any more.
1295
1296
 
1296
1297
  // 0. Row seat on the Plugins page — the seat the current core renders
1297
1298
  registerSlotSafe(
@@ -1313,40 +1314,33 @@ window.__ModuleLoader__.load({
1313
1314
  name: 'settings.plugins.tab',
1314
1315
  id: 'dsh-agent-orchestrator',
1315
1316
  order: 25,
1316
- label: () => { try { return ctx.t(`${NS}.settings.title`) || 'Agent Orchestrator' } catch (e) { return 'Agent Orchestrator' } },
1317
+ label: () => 'Agent Orchestrator',
1317
1318
  locale: NS,
1318
1319
  inject: () => ({ ctx }),
1319
1320
  },
1320
1321
  (props) => h(ErrorBoundary, null, h(OrchestratorSettingsCard, { ...props, ctx: props.ctx || ctx }))
1321
1322
  )
1322
1323
 
1323
- // 2. Plugin item on Plugins page
1324
+ // 2. Plugin item on Plugins page: the seat the current core renders as the
1325
+ // plugin's own page with its configuration. The label stays a static string —
1326
+ // it is resolved while the page renders, and a locale lookup there would take
1327
+ // the whole client batch down with it.
1324
1328
  registerSlotSafe(
1325
1329
  'plugins.item',
1326
1330
  {
1327
1331
  name: 'plugins.item',
1328
1332
  id: '@goodandready/dsh-agent-orchestrator',
1329
1333
  order: 25,
1330
- label: () => { try { return ctx.t(`${NS}.settings.title`) || 'Agent Orchestrator' } catch (e) { return 'Agent Orchestrator' } },
1334
+ label: () => 'Agent Orchestrator',
1331
1335
  locale: NS,
1332
1336
  inject: () => ({ ctx }),
1333
1337
  },
1334
1338
  (props) => h(ErrorBoundary, null, h(OrchestratorSettingsCard, { ...props, ctx: props.ctx || ctx }))
1335
1339
  )
1336
1340
 
1337
- // 3. Standalone settings.section fallback
1338
- registerSlotSafe(
1339
- 'settings.section',
1340
- {
1341
- name: 'settings.section',
1342
- id: 'dsh-agent-orchestrator',
1343
- order: 95,
1344
- label: () => { try { return ctx.t(`${NS}.settings.title`) || 'Agent Orchestrator' } catch (e) { return 'Agent Orchestrator' } },
1345
- locale: NS,
1346
- inject: () => ({ ctx }),
1347
- },
1348
- (props) => h(ErrorBoundary, null, h(OrchestratorSettingsCard, { ...props, ctx: props.ctx || ctx }))
1349
- )
1341
+ // 3. Standalone settings.section fallback — intentionally not registered any
1342
+ // more: the owner does not want our plugins in the root Settings list, and the
1343
+ // plugin-list seat above is the surface the current core renders.
1350
1344
 
1351
1345
  // 3. Dock Widget: conversation.input.dock (above chat input box, like dsh-goal)
1352
1346
  registerSlotSafe(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodandready/dsh-agent-orchestrator",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Multi-agent task decomposition, DAG workflow orchestration, and prompt caching optimizer for DeepSeek Harness.",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",