chaimi-keep-mcp 3.1.40-beta.1 → 3.1.40-beta.2
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/SKILL.md +38 -11
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -84,15 +84,9 @@ Agent 必须输出:
|
|
|
84
84
|
为数据安全起见,我已暂停记账操作。
|
|
85
85
|
|
|
86
86
|
请开启新会话后重新触发记账。
|
|
87
|
-
```
|
|
88
87
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
- **Claude Desktop**: 点击 `+ New Chat`
|
|
92
|
-
- **OpenClaw**: 输入 `/new`
|
|
93
|
-
- **WorkBuddy**: 输入 `/clear`
|
|
94
|
-
- **Trae**: 按 `Cmd/Ctrl + N` 或点击 `+` 按钮
|
|
95
|
-
- **其他**: 输入 `/new` 或菜单"新建会话"
|
|
88
|
+
(操作方式见上方「遇到问题时-方案1」)
|
|
89
|
+
```
|
|
96
90
|
|
|
97
91
|
---
|
|
98
92
|
|
|
@@ -157,14 +151,45 @@ Agent 根据当前环境,向用户说明开启新会话的具体操作方式
|
|
|
157
151
|
- **save_income** - 文字记账(收入)
|
|
158
152
|
- **save_receipt** - 小票记账(需先调用 get_parse_prompt)
|
|
159
153
|
|
|
154
|
+
### 智能查询工具(新功能)
|
|
155
|
+
- **get_insights** - 【推荐使用】获取消费洞察(零AI成本!)
|
|
156
|
+
- 返回消费趋势、模式、优化建议
|
|
157
|
+
- 让 Agent 结合用户的大模型分析
|
|
158
|
+
- **export_data** - 【深度分析用】导出完整消费数据
|
|
159
|
+
- 用于 Agent 深度分析
|
|
160
|
+
- **get_statistics** - 获取消费统计(支持周/月周期!)
|
|
161
|
+
- 新增 `period` 参数:支持 `this_week`、`last_week`、`this_month`、`last_month`
|
|
162
|
+
|
|
160
163
|
### 辅助工具
|
|
161
164
|
- **get_skill** - 【记账前必须调用】获取 Skill 文档
|
|
162
165
|
- **get_parse_prompt** - 获取小票解析模板
|
|
163
|
-
- **get_expenses** -
|
|
166
|
+
- **get_expenses** - 查询支出记录(支持周/月周期!)
|
|
167
|
+
- 新增 `period` 参数:支持 `this_week`、`last_week`、`this_month`、`last_month`
|
|
164
168
|
- **get_receipt_list** - 查询小票列表
|
|
165
|
-
- **get_statistics** - 获取统计信息
|
|
166
169
|
- **submit_feedback** - 提交反馈
|
|
167
170
|
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
## 📊 场景说明(智能分析)
|
|
174
|
+
|
|
175
|
+
### 场景 1:用户问「帮我看看这周花了多少钱」
|
|
176
|
+
**推荐工具:`get_statistics` 搭配 `period: this_week`**
|
|
177
|
+
参数示例:
|
|
178
|
+
```
|
|
179
|
+
get_statistics period="this_week"
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
### 场景 2:用户问「分析一下消费习惯」
|
|
183
|
+
**推荐工具:`get_insights` + `export_data`**
|
|
184
|
+
1. 先用 `get_insights` 获取洞察
|
|
185
|
+
2. 再用 `export_data` 获取完整数据
|
|
186
|
+
3. 用用户的大模型进行深度分析
|
|
187
|
+
|
|
188
|
+
### 场景 3:用户问「最近的消费记录」
|
|
189
|
+
**推荐工具:`get_expenses`**
|
|
190
|
+
- 也可以搭配 `period: this_week` 使用
|
|
191
|
+
|
|
192
|
+
|
|
168
193
|
---
|
|
169
194
|
|
|
170
195
|
## 工具详细说明
|
|
@@ -254,8 +279,10 @@ Agent **直接使用当前时间**作为收入时间,无需进行时间语义
|
|
|
254
279
|
|
|
255
280
|
[自定义其他内容]
|
|
256
281
|
|
|
257
|
-
MCP Server: v【版本号】
|
|
258
282
|
【友好结束语】
|
|
283
|
+
------------
|
|
284
|
+
chaimi-keep-mcp: v【版本号】
|
|
285
|
+
|
|
259
286
|
```
|
|
260
287
|
|
|
261
288
|
**友好结束语参考:**
|