@rezti/dsh-rez-suite 0.1.49 → 0.1.51

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 (142) hide show
  1. package/CHANGELOG.md +13 -2
  2. package/README.md +3 -3
  3. package/README.zh.md +2 -2
  4. package/cordis.patch.yml +1 -1
  5. package/lib/client.d.ts +31 -3
  6. package/lib/client.js +343 -7
  7. package/lib/index.js +244 -15
  8. package/lib/style.css +7 -0
  9. package/package.json +12 -11
  10. package/src/boss/mount.ts +4 -3
  11. package/src/boss/register.ts +1 -1
  12. package/src/boss/seed.ts +34 -0
  13. package/src/changelog.ts +48 -0
  14. package/src/channel-board.ts +55 -0
  15. package/src/client/locales.ts +62 -6
  16. package/src/client/panel/BoardTab.tsx +136 -0
  17. package/src/client/panel/ConfigTab.tsx +2 -2
  18. package/src/client/panel/StatusTab.tsx +31 -0
  19. package/src/client/panel/panel.module.css +7 -0
  20. package/src/client/settings-card.tsx +4 -1
  21. package/src/index.ts +3 -2
  22. package/src/protocol.ts +14 -0
  23. package/src/routes.ts +7 -1
  24. package/src/tools.ts +49 -6
  25. package/src/wecom-cli.ts +125 -0
  26. package/templates/boss/ops/AGENTS.md +2 -0
  27. package/templates/shared/wecom-cli.SOURCE.md +9 -0
  28. package/templates/shared/wecom-office/SKILL.md +32 -0
  29. package/templates/shared/wecomcli-calendar/SKILL.md +303 -0
  30. package/templates/shared/wecomcli-calendar/references/calendar-agenda.md +224 -0
  31. package/templates/shared/wecomcli-calendar/references/calendar-cancel.md +108 -0
  32. package/templates/shared/wecomcli-calendar/references/calendar-create.md +238 -0
  33. package/templates/shared/wecomcli-calendar/references/calendar-freebusy.md +207 -0
  34. package/templates/shared/wecomcli-calendar/references/calendar-meeting-room.md +170 -0
  35. package/templates/shared/wecomcli-calendar/references/calendar-search.md +206 -0
  36. package/templates/shared/wecomcli-calendar/references/calendar-update.md +272 -0
  37. package/templates/shared/wecomcli-contact/SKILL.md +58 -0
  38. package/templates/shared/wecomcli-disk/SKILL.md +389 -0
  39. package/templates/shared/wecomcli-doc/SKILL.md +137 -0
  40. package/templates/shared/wecomcli-doc/references/doc-contents-append.md +20 -0
  41. package/templates/shared/wecomcli-doc/references/doc-contents-overwrite.md +27 -0
  42. package/templates/shared/wecomcli-doc/references/doc-create.md +161 -0
  43. package/templates/shared/wecomcli-doc/scripts/build_docx.py +1375 -0
  44. package/templates/shared/wecomcli-doc-manage/SKILL.md +132 -0
  45. package/templates/shared/wecomcli-doc-manage/references/doc-members-update.md +24 -0
  46. package/templates/shared/wecomcli-doc-manage/references/doc-names-update.md +20 -0
  47. package/templates/shared/wecomcli-doc-manage/references/doc-rules-update.md +22 -0
  48. package/templates/shared/wecomcli-email/SKILL.md +218 -0
  49. package/templates/shared/wecomcli-email/references/forward-mail.md +131 -0
  50. package/templates/shared/wecomcli-email/references/get-mail.md +166 -0
  51. package/templates/shared/wecomcli-email/references/reply-mail.md +138 -0
  52. package/templates/shared/wecomcli-email/references/search-mail.md +111 -0
  53. package/templates/shared/wecomcli-email/references/security.md +53 -0
  54. package/templates/shared/wecomcli-email/references/send-mail.md +186 -0
  55. package/templates/shared/wecomcli-email/references/send-schedule.md +83 -0
  56. package/templates/shared/wecomcli-media/SKILL.md +98 -0
  57. package/templates/shared/wecomcli-meeting/SKILL.md +373 -0
  58. package/templates/shared/wecomcli-meeting/references/meeting-cancel.md +113 -0
  59. package/templates/shared/wecomcli-meeting/references/meeting-create.md +167 -0
  60. package/templates/shared/wecomcli-meeting/references/meeting-list.md +226 -0
  61. package/templates/shared/wecomcli-meeting/references/meeting-original-get.md +98 -0
  62. package/templates/shared/wecomcli-meeting/references/meeting-search.md +173 -0
  63. package/templates/shared/wecomcli-meeting/references/meeting-update.md +217 -0
  64. package/templates/shared/wecomcli-message/SKILL.md +200 -0
  65. package/templates/shared/wecomcli-shared/SKILL.md +73 -0
  66. package/templates/shared/wecomcli-sheet/SKILL.md +172 -0
  67. package/templates/shared/wecomcli-sheet/references/sheet-contents-update.md +47 -0
  68. package/templates/shared/wecomcli-sheet/references/sheet-ranges-get.md +45 -0
  69. package/templates/shared/wecomcli-sheet/references/sheet-rows-append.md +45 -0
  70. package/templates/shared/wecomcli-sheet/references/sheet-subsheets-add.md +26 -0
  71. package/templates/shared/wecomcli-sheet/references/sheet-subsheets-delete.md +20 -0
  72. package/templates/shared/wecomcli-smartpage/SKILL.md +170 -0
  73. package/templates/shared/wecomcli-smartpage/references/data-driven-pages.md +50 -0
  74. package/templates/shared/wecomcli-smartpage/references/formula/arraylist.md +369 -0
  75. package/templates/shared/wecomcli-smartpage/references/formula/datetime.md +283 -0
  76. package/templates/shared/wecomcli-smartpage/references/formula/logic.md +247 -0
  77. package/templates/shared/wecomcli-smartpage/references/formula/math.md +362 -0
  78. package/templates/shared/wecomcli-smartpage/references/formula/operators.md +246 -0
  79. package/templates/shared/wecomcli-smartpage/references/formula/pageblock.md +76 -0
  80. package/templates/shared/wecomcli-smartpage/references/formula/templates.md +410 -0
  81. package/templates/shared/wecomcli-smartpage/references/formula/text.md +377 -0
  82. package/templates/shared/wecomcli-smartpage/references/formula/user.md +22 -0
  83. package/templates/shared/wecomcli-smartpage/references/formula-reference.md +192 -0
  84. package/templates/shared/wecomcli-smartpage/references/mdx-syntax.md +739 -0
  85. package/templates/shared/wecomcli-smartpage/references/smartpage-edit.md +506 -0
  86. package/templates/shared/wecomcli-smartsheet/SKILL.md +154 -0
  87. package/templates/shared/wecomcli-smartsheet/assets/templates/README.md +53 -0
  88. package/templates/shared/wecomcli-smartsheet/assets/templates/ai_efficiency.md +709 -0
  89. package/templates/shared/wecomcli-smartsheet/assets/templates/connect_to_app.md +380 -0
  90. package/templates/shared/wecomcli-smartsheet/assets/templates/financial_accounting.md +369 -0
  91. package/templates/shared/wecomcli-smartsheet/assets/templates/hr_and_administration.md +475 -0
  92. package/templates/shared/wecomcli-smartsheet/assets/templates/ledger_records.md +156 -0
  93. package/templates/shared/wecomcli-smartsheet/assets/templates/manufacturing.md +395 -0
  94. package/templates/shared/wecomcli-smartsheet/assets/templates/marketing.md +186 -0
  95. package/templates/shared/wecomcli-smartsheet/assets/templates/office_essentials.md +299 -0
  96. package/templates/shared/wecomcli-smartsheet/assets/templates/personal_efficiency.md +70 -0
  97. package/templates/shared/wecomcli-smartsheet/assets/templates/procurement_logistics.md +325 -0
  98. package/templates/shared/wecomcli-smartsheet/assets/templates/project_management.md +564 -0
  99. package/templates/shared/wecomcli-smartsheet/assets/templates/rd_process_customer.md +222 -0
  100. package/templates/shared/wecomcli-smartsheet/assets/templates/rd_process_ops.md +105 -0
  101. package/templates/shared/wecomcli-smartsheet/assets/templates/rd_process_project.md +109 -0
  102. package/templates/shared/wecomcli-smartsheet/assets/templates/rd_process_research.md +92 -0
  103. package/templates/shared/wecomcli-smartsheet/assets/templates/sales_and_operations.md +446 -0
  104. package/templates/shared/wecomcli-smartsheet/assets/templates/store_management.md +431 -0
  105. package/templates/shared/wecomcli-smartsheet/assets/templates/team_tasks.md +274 -0
  106. package/templates/shared/wecomcli-smartsheet/assets/templates/wechat_customer.md +384 -0
  107. package/templates/shared/wecomcli-smartsheet/assets/templates/work_report.md +100 -0
  108. package/templates/shared/wecomcli-smartsheet/references/common.md +143 -0
  109. package/templates/shared/wecomcli-smartsheet/references/smart-sheet-chart-types.md +95 -0
  110. package/templates/shared/wecomcli-smartsheet/references/smart-sheet-edit.md +589 -0
  111. package/templates/shared/wecomcli-smartsheet/references/smart-sheet-field-types.md +438 -0
  112. package/templates/shared/wecomcli-smartsheet/references/smart-sheet-formula.md +845 -0
  113. package/templates/shared/wecomcli-smartsheet/references/smart-sheet-read.md +391 -0
  114. package/templates/shared/wecomcli-smartsheet/references/smart-sheet-record-values.md +201 -0
  115. package/templates/shared/wecomcli-smartsheet/references/smart-sheet-view-types.md +356 -0
  116. package/templates/shared/wecomcli-smartsheet/references/smart-sheet-webhook-examples.md +176 -0
  117. package/templates/shared/wecomcli-smartsheet/references/smart-sheet-webhook.md +169 -0
  118. package/templates/shared/wecomcli-todo/SKILL.md +76 -0
  119. package/templates/shared/wecomcli-todo/references/todo-create.md +137 -0
  120. package/templates/shared/wecomcli-todo/references/todo-delete.md +63 -0
  121. package/templates/shared/wecomcli-todo/references/todo-finish.md +72 -0
  122. package/templates/shared/wecomcli-todo/references/todo-get.md +66 -0
  123. package/templates/shared/wecomcli-todo/references/todo-list.md +133 -0
  124. package/templates/shared/wecomcli-todo/references/todo-update.md +112 -0
  125. package/templates/staff/design/AGENTS.md +2 -1
  126. package/templates/staff/ecommerce/.agents/skills/ops-ecommerce/SKILL.md +6 -0
  127. package/templates/staff/ecommerce/AGENTS.md +49 -0
  128. package/templates/staff/ecommerce/BOOTSTRAP.md +23 -0
  129. package/templates/staff/ecommerce/IDENTITY.md +8 -0
  130. package/templates/staff/ecommerce/MEMORY.md +9 -0
  131. package/templates/staff/ecommerce/PRIORITIES.md +3 -0
  132. package/templates/staff/ecommerce/SOUL.md +5 -0
  133. package/templates/staff/ecommerce/USER.md +8 -0
  134. package/templates/staff/hr/.agents/skills/staff-onboard-keys/SKILL.md +3 -3
  135. package/templates/staff/publish/.agents/skills/ops-publish/SKILL.md +6 -0
  136. package/templates/staff/publish/AGENTS.md +59 -0
  137. package/templates/staff/publish/BOOTSTRAP.md +23 -0
  138. package/templates/staff/publish/IDENTITY.md +8 -0
  139. package/templates/staff/publish/MEMORY.md +9 -0
  140. package/templates/staff/publish/PRIORITIES.md +3 -0
  141. package/templates/staff/publish/SOUL.md +6 -0
  142. package/templates/staff/publish/USER.md +8 -0
package/CHANGELOG.md CHANGED
@@ -5,12 +5,23 @@
5
5
  升级:
6
6
 
7
7
  ```bash
8
- dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.49
8
+ dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.51
9
9
  ```
10
10
 
11
11
  不要用裸 `plugin update`,不要写 `latest`(新 profile 有 24 小时发布冷却,当天可能装不上)。不要装 **0.1.46**(GitHub 子依赖会被 DSH 拦住)。
12
12
 
13
- 发版顺序:`wechat@0.1.15` → `suite@0.1.49`。
13
+ 发版顺序:`wechat@0.1.16` → `suite@0.1.51`。
14
+
15
+ ## 0.1.51 — 2026-08-20
16
+
17
+ - **企微办公技能补全 references**:官方 `wecomcli-*` 整包种进房间(含 `references/` / `assets/` / `scripts/`),种子不再只拷 `SKILL.md`。办公授权继续 `wecom-cli auth init`(可扫码);**房间消息通道仍用设置页 BotID + Secret**,不改成扫码。
18
+ - CLI 请用 `@wecom/cli >=1.1.0`(`0.1.x` 命令面不同)。
19
+
20
+ ## 0.1.50 — 2026-08-20
21
+
22
+ - **运营多了「发布」和「电商」房间**:媒体连接走发布(Post editor);电商一期只阿里巴巴国际站(Amazon 等有号)。设置页「看板」看连接与 Odoo/企微权限。不建图库;排期写企微共享发布日历。
23
+ - **企微固定对话框**:同一房间连续说话复用网页左侧同一条会话。只有「重启对话」才新开。
24
+ - **企微能识别办公能力**:`rez_status` 列出官方 `wecom-cli >=1.1` 品类(通讯录/在线文档/表格/待办/日程/会议/邮件/微盘等),房间种入官方 `wecomcli-*` 技能。没有 `mcp__wechat__*` 不等于没有企微。不要用旧的「超过 10 人只能用文档」说法。设置页 BotID 只是房间消息通道。
14
25
 
15
26
  ## 0.1.49 — 2026-08-19
16
27
 
package/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  雷泽插件的**唯一安装入口**。Odoo / 企微 / HA / TAPD / GSC / 企查查(仅法务助理房间) / 天眼查(仅老板) / 工作区(老板三室 + 全员助理)都由这一包拉齐,不要再逐个 `plugin add`,**不要**再装 `@rezti/dsh-rez-boss-desk`。
4
4
 
5
- 发版顺序(必做):先发 `@rezti/dsh-rez-wechat@0.1.15` → `@rezti/dsh-rez-suite@0.1.49`。员工机安装包仍钉已发布的 suite,不要顺手改审批镜像 `SUITE_VERSION`。
5
+ 发版顺序(必做):先发 `@rezti/dsh-rez-wechat@0.1.16` → `@rezti/dsh-rez-suite@0.1.50`。员工机安装包仍钉已发布的 suite,不要顺手改审批镜像 `SUITE_VERSION`。
6
6
 
7
- 设置里选身份后,左侧自己出现对应房间(全员三助理;工程师另加实验室;运营另加设计;老板另加搞钱/产品/运营),不必手动添加工作区。实验室:大模型写 YAML、调 MCP、给下载链接。
7
+ 设置里选身份后,左侧自己出现对应房间(全员三助理;工程师另加实验室;运营另加设计、发布、电商;老板另加搞钱/产品/运营),不必手动添加工作区。实验室:大模型写 YAML、调 MCP、给下载链接。
8
8
 
9
9
  回形针走 npm 包 `@rezti/dsh-web-file-uploader@0.2.3`(不要 GitHub:DSH 会拦子依赖 git,0.1.46 因此装不上)。
10
10
 
@@ -12,7 +12,7 @@
12
12
 
13
13
  ```bash
14
14
  # 第一次 / 升级(钉死版本,避开 24h 发布冷却)
15
- dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.49
15
+ dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.50
16
16
  ```
17
17
 
18
18
  本版改了什么:见 [CHANGELOG.md](./CHANGELOG.md)。
package/README.zh.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # dsh-rez-suite
2
2
 
3
- **用户只装这一包。** 升级只记:`dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.49`(不要用裸 `update`;不要 latest;不要 0.1.46 / 0.1.47)。本版改了什么见 [CHANGELOG.md](./CHANGELOG.md)。拆分包给开发改代码;不要对同一 profile 再单独 add 子包。
3
+ **用户只装这一包。** 升级只记:`dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.50`(不要用裸 `update`;不要 latest;不要 0.1.46 / 0.1.47)。本版改了什么见 [CHANGELOG.md](./CHANGELOG.md)。拆分包给开发改代码;不要对同一 profile 再单独 add 子包。
4
4
 
5
5
  说明书 / 规格书用输入栏**回形针**上传原 PDF(官方对话只收图,不要拖文件;不要用微信发 PDF)。先入 `Marketing/Inbox` + TAPD 测试中,凯文跟 Harness 说审批了哪份后,再写入 `Marketing/Publish/…`。
6
6
 
@@ -110,7 +110,7 @@ MCP 工具按 \`mcp__<server>__<rawName>\` 注册,Preset 加载器用通配符
110
110
 
111
111
  - \`engineer\`:odoo 检索/读取、homeassistant 状态读取、tapd/gsc 查询、fs/sqlite 读取;侧栏另有实验室(对话生成 YAML → MCP 编译 → 下载链接)
112
112
  - \`sales\`:odoo CRM/销售、nextcloud 上传、wecom 发送
113
- - \`operations\`:odoo 报表/库存/采购、homeassistant 控制、tapd 读+建评论/改状态(无 delete)、gsc 查询、nextcloud Inbox 读写/移动(无 delete/manage)、wecom 群发;侧栏另有设计工作房间
113
+ - \`operations\`:odoo 报表/库存/采购、homeassistant 控制、tapd 读+建评论/改状态(无 delete)、gsc 查询、nextcloud Inbox 读写/移动(无 delete/manage)、wecom 群发;侧栏另有设计、发布、电商工作间
114
114
 
115
115
  ## Token / 审计
116
116
 
package/cordis.patch.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  # 用户只装这一包:`dsh plugin --profile web add @rezti/dsh-rez-suite`
2
- # 升级只记这一条:`dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.49`
2
+ # 升级只记这一条:`dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.50`
3
3
  # 不要再单独 add 子包,会重复注册。
4
4
  #
5
5
  # MCP rows are started by the domain plugins after rezSso resolves secrets.
package/lib/client.d.ts CHANGED
@@ -7258,12 +7258,13 @@ declare const zh: {
7258
7258
  readonly 'settings.description': "公司 MCP(Odoo / Nextcloud / HA / TAPD / GSC)和企业微信智能机器人。个人微信在「微信」页签扫码。";
7259
7259
  readonly 'panel.title': "Rez Suite";
7260
7260
  readonly 'tab.config': "配置";
7261
+ readonly 'tab.board': "看板";
7261
7262
  readonly 'tab.weixin': "微信";
7262
7263
  readonly 'tab.status': "状态";
7263
7264
  readonly 'tab.audit': "用量";
7264
7265
  readonly 'tab.changelog': "更新日志";
7265
7266
  readonly 'config.role': "角色";
7266
- readonly 'config.roleHint': "选身份后左侧自动出现工作区。人事/财务/法务助理全员可见;设计房间仅「运营」;实验室仅「工程师」;搞钱/产品/运营仅「老板」。";
7267
+ readonly 'config.roleHint': "选身份后左侧自动出现工作区。人事/财务/法务助理全员可见;设计、发布、电商房间仅「运营」;实验室仅「工程师」;搞钱/产品/运营仅「老板」。";
7267
7268
  readonly 'role.all': "全部";
7268
7269
  readonly 'role.boss': "老板";
7269
7270
  readonly 'role.engineer': "工程师";
@@ -7291,7 +7292,7 @@ declare const zh: {
7291
7292
  readonly 'config.wecom.botId': "Bot ID";
7292
7293
  readonly 'config.wecom.secret': "Secret";
7293
7294
  readonly 'config.wecom.webhook': "群机器人 Webhook";
7294
- readonly 'config.wecom.hint': "Accio 同款:一个房间绑一个智能机器人。同事在企微跟哪个 bot 说话,就进网页左侧那个房间。密钥只存本机 ~/.dsh/wecom-channels.json,不要写进 compose。BotID / Secret 在企业微信管理后台 → 智能机器人。";
7295
+ readonly 'config.wecom.hint': "Accio 同款:一个房间绑一个智能机器人。同事在企微跟哪个 bot 说话,就进网页左侧那个房间的同一条会话。密钥只存本机 ~/.dsh/wecom-channels.json,不要写进 compose。BotID / Secret 在企业微信管理后台 → 智能机器人。";
7295
7296
  readonly 'config.wecom.room': "房间";
7296
7297
  readonly 'config.wecom.add': "添加绑定";
7297
7298
  readonly 'config.wecom.remove': "删除";
@@ -7331,7 +7332,7 @@ declare const zh: {
7331
7332
  readonly 'config.testResult': "{server}: {status}";
7332
7333
  readonly 'config.testOk': "成功({tools} 个工具, {latency}ms)";
7333
7334
  readonly 'config.testFail': "失败:{error}";
7334
- readonly 'status.hint': "绿标表示本机已注册 mcp__<系统>__* 工具。远端 MCP 通了但这里仍红,说明 dsh-mcp-client 还没挂上。企查查只在法务助理房间可用;其它房间不显示或显示「房间未启用」。";
7335
+ readonly 'status.hint': "绿标表示本机已注册 mcp__<系统>__* 工具。远端 MCP 通了但这里仍红,说明 dsh-mcp-client 还没挂上。企微办公能力看下方 wecom-cli,不是 MCP 表。企查查只在法务助理房间可用;其它房间不显示或显示「房间未启用」。";
7335
7336
  readonly 'status.total': "当前角色 {role},共注册 {count} 个 MCP 工具";
7336
7337
  readonly 'status.col.server': "Server";
7337
7338
  readonly 'status.col.state': "状态";
@@ -7339,6 +7340,12 @@ declare const zh: {
7339
7340
  readonly 'status.col.registered': "已注册";
7340
7341
  readonly 'status.col.error': "错误";
7341
7342
  readonly 'status.none': "暂无状态";
7343
+ readonly 'status.wecomCli': "企业微信办公(官方 wecom-cli,不是 MCP)";
7344
+ readonly 'status.wecomCli.installed': "CLI";
7345
+ readonly 'status.wecomCli.authorized': "授权";
7346
+ readonly 'status.wecomCli.yes': "已就绪";
7347
+ readonly 'status.wecomCli.no': "未就绪";
7348
+ readonly 'status.wecomCli.modules': "品类";
7342
7349
  readonly 'audit.totalCalls': "调用次数";
7343
7350
  readonly 'audit.inputTokens': "输入 token";
7344
7351
  readonly 'audit.outputTokens': "输出 token";
@@ -7360,6 +7367,27 @@ declare const zh: {
7360
7367
  readonly 'audit.empty': "暂无记录";
7361
7368
  readonly 'changelog.current': "当前 {version}";
7362
7369
  readonly 'changelog.upgrade': "升级:";
7370
+ readonly 'board.hint': "合同 Account 拆两室:媒体走「发布」,电商走「电商」(一期只阿里巴巴国际站;Amazon 等有号)。看板要搭在本页签,不是独立后台。页签壳不算完成。密钥不在这里。";
7371
+ readonly 'board.people': "People / 权限";
7372
+ readonly 'board.peopleHint': "继续 Odoo 员工帐号(公司/记录规则)+ 企业微信一房间一 bot。不新建权限库,不改 Odoo 权限组。";
7373
+ readonly 'board.role': "当前 Harness 身份:{role}(只决定侧栏房间)";
7374
+ readonly 'board.media': "媒体连接";
7375
+ readonly 'board.mediaHint': "内容/社媒在「发布」工作间(Post editor)。不建图库。";
7376
+ readonly 'board.ecommerce': "电商平台";
7377
+ readonly 'board.ecommerceHint': "Listing 在「电商」工作间。一期只有阿里巴巴国际站。同一 SKU 可挂多条链接,已有链接仍可关联继续发。渠道商品 ID 写回 Odoo,库存从 Odoo 推到阿里。Amazon 没有号,标后续。";
7378
+ readonly 'board.rag': "RAG";
7379
+ readonly 'board.ragHint': "发布用 Dify 知识库要对齐 Nextcloud 锁死路径(Standards + Marketing/Publish)。实例已有,不要另装;知识库搭建是发布需求一部分,不要当基线跳过。Harness 不做推理。";
7380
+ readonly 'board.inbox': "Message inbox";
7381
+ readonly 'board.inboxHint': "一期只做 WhatsApp Business,会话落到 Odoo(浙江雷泽,Business 号已有)。不用官方收费模块,走社区 add-on(OCA mail_gateway_whatsapp)。禁止自写 Meta 客户端。生产安装另开窗口。";
7382
+ readonly 'board.col.source': "来源";
7383
+ readonly 'board.col.state': "状态";
7384
+ readonly 'board.col.channel': "渠道";
7385
+ readonly 'board.col.room': "房间";
7386
+ readonly 'board.col.phase': "阶段";
7387
+ readonly 'board.bound': "已绑 bot";
7388
+ readonly 'board.unbound': "未绑定";
7389
+ readonly 'board.phase1': "一期";
7390
+ readonly 'board.phaseLater': "后续";
7363
7391
  readonly 'common.close': "关闭";
7364
7392
  readonly 'common.loading': "加载中…";
7365
7393
  readonly 'common.error': "出错:{error}";