@tencentcloud/tmeet 1.0.5 → 1.0.6

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/README.md CHANGED
@@ -184,7 +184,8 @@ tmeet [--format json|json-pretty] [--compact] [-V]
184
184
  │ ├── participants # 获取参会人列表
185
185
  │ └── waiting-room-log # 获取等候室成员列表
186
186
  └── tshoot
187
- └── log # 导出本地日志(支持按时间范围过滤,可选 --upload 上传至服务器)
187
+ ├── log # 导出本地日志(支持按时间范围过滤,可选 --upload 上传至服务器)
188
+ └── feedback # 上报问题排查反馈到服务器
188
189
  ```
189
190
 
190
191
  ---
@@ -717,6 +718,51 @@ output log saved to: ~/tmeet_ts_20260410_153000.zip
717
718
 
718
719
  ---
719
720
 
721
+ #### `tshoot feedback` — 上报问题排查反馈
722
+
723
+ 将 Agent 在使用 CLI 过程中遇到的问题或建议上报至服务器,便于后续优化工具能力。
724
+
725
+ ```bash
726
+ tmeet tshoot feedback --category <分类> --intent <原始意图> [选项]
727
+ ```
728
+
729
+ | 参数 | 类型 | 必填 | 默认值 | 说明 |
730
+ |------|------|:----:|--------|------|
731
+ | `--category` | string | ✅ | — | 反馈分类,可选值:`tool_not_found`(想做某事但找不到匹配工具)、`tool_error`(调用工具但返回错误)、`tool_inadequate`(工具存在但能力/参数不足)、`unexpected_result`(调用成功但结果未达预期)、`suggestion`(一般性建议或改进想法) |
732
+ | `--intent` | string | ✅ | — | Agent 的原始意图,最多 200 字符 |
733
+ | `--actions-tried` | string | — | — | Agent 已尝试过的动作,最多 500 字符 |
734
+ | `--result` | string | — | — | 已尝试动作的结果或阻塞点,最多 500 字符 |
735
+ | `--tool-name` | string | — | — | 使用的工具/命令名 |
736
+ | `--error-code` | string | — | — | 工具返回的错误码 |
737
+
738
+ **示例:**
739
+
740
+ ```bash
741
+ # 反馈:找不到匹配工具
742
+ tmeet tshoot feedback \
743
+ --category "tool_not_found" \
744
+ --intent "想批量导出某个时间段的所有会议纪要" \
745
+ --actions-tried "查看了 record 和 meeting 子命令" \
746
+ --result "未找到批量导出纪要的命令"
747
+
748
+ # 反馈:工具调用返回错误
749
+ tmeet tshoot feedback \
750
+ --category "tool_error" \
751
+ --intent "获取录制下载地址" \
752
+ --tool-name "record address" \
753
+ --error-code "200003" \
754
+ --result "接口返回权限不足"
755
+
756
+ # 反馈:一般性建议
757
+ tmeet tshoot feedback \
758
+ --category "suggestion" \
759
+ --intent "希望支持按主题模糊搜索会议"
760
+ ```
761
+
762
+ > 该命令需要登录后才能使用。
763
+
764
+ ---
765
+
720
766
  ## 安全与风险提示(使用前必读)
721
767
 
722
768
  ---
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tencentcloud/tmeet",
3
- "version": "v1.0.5",
3
+ "version": "v1.0.6",
4
4
  "description": "腾讯会议 CLI 工具",
5
5
  "bin": {
6
6
  "tmeet": "./scripts/tmeet.js"