dsh-bots 0.2.20 → 0.2.21

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 -1
  2. package/package.json +1 -1
package/lib/client.js CHANGED
@@ -792,7 +792,9 @@
792
792
  info: undefined,
793
793
  error: null,
794
794
  chatAgentId: null,
795
- open: { workspaces: true, bots: true },
795
+ // First paint: only 「工作区」 is expanded — Bots folds until asked,
796
+ // matching the one-column-of-attention rule the accordion enforces.
797
+ open: { workspaces: true, bots: false },
796
798
  /** Host-computed unread counts per agent id (plugin-owned model). */
797
799
  unreadCounts: {},
798
800
  /** Create dialog: 'bot' | 'group' | null — rendered as a system-style
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-bots",
3
- "version": "0.2.20",
3
+ "version": "0.2.21",
4
4
  "description": "Multi-bot workbench for DeepSeek Harness: bridges the sdk-bots orchestration gateway (group chats, single bots) into the dsh web shell with official-styled UI.",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",