@goodandready/dsh-agent-orchestrator 0.1.7 → 0.1.8

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 +3 -3
  2. package/package.json +1 -1
package/lib/client.js CHANGED
@@ -1313,7 +1313,7 @@ window.__ModuleLoader__.load({
1313
1313
  name: 'settings.plugins.tab',
1314
1314
  id: 'dsh-agent-orchestrator',
1315
1315
  order: 25,
1316
- label: () => (typeof ctx.t === 'function' ? ctx.t(`${NS}.settings.title`) : 'Agent Orchestrator') || 'Agent Orchestrator',
1316
+ label: () => { try { return ctx.t(`${NS}.settings.title`) || 'Agent Orchestrator' } catch (e) { return 'Agent Orchestrator' } },
1317
1317
  locale: NS,
1318
1318
  inject: () => ({ ctx }),
1319
1319
  },
@@ -1327,7 +1327,7 @@ window.__ModuleLoader__.load({
1327
1327
  name: 'plugins.item',
1328
1328
  id: '@goodandready/dsh-agent-orchestrator',
1329
1329
  order: 25,
1330
- label: () => (typeof ctx.t === 'function' ? ctx.t(`${NS}.settings.title`) : 'Agent Orchestrator') || 'Agent Orchestrator',
1330
+ label: () => { try { return ctx.t(`${NS}.settings.title`) || 'Agent Orchestrator' } catch (e) { return 'Agent Orchestrator' } },
1331
1331
  locale: NS,
1332
1332
  inject: () => ({ ctx }),
1333
1333
  },
@@ -1341,7 +1341,7 @@ window.__ModuleLoader__.load({
1341
1341
  name: 'settings.section',
1342
1342
  id: 'dsh-agent-orchestrator',
1343
1343
  order: 95,
1344
- label: () => (typeof ctx.t === 'function' ? ctx.t(`${NS}.settings.title`) : 'Agent Orchestrator') || 'Agent Orchestrator',
1344
+ label: () => { try { return ctx.t(`${NS}.settings.title`) || 'Agent Orchestrator' } catch (e) { return 'Agent Orchestrator' } },
1345
1345
  locale: NS,
1346
1346
  inject: () => ({ ctx }),
1347
1347
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodandready/dsh-agent-orchestrator",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
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",