chaimi-keep-mcp 3.1.37 → 3.1.38

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 (3) hide show
  1. package/README.md +6 -0
  2. package/SKILL.md +3 -11
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -141,6 +141,12 @@ AI 会自动调用 `save_income` 工具记录收入。
141
141
 
142
142
  ## 更新日志
143
143
 
144
+ ### v3.1.38 (2026-04-16)
145
+ - **优化** SKILL.md 时间戳说明:使用占位符避免 AI 抄写
146
+ - 将示例时间戳改为占位符格式 `[毫秒时间戳]`
147
+ - 明确禁止使用示例中的具体数字
148
+ - 强制 AI 根据实际时间重新计算
149
+
144
150
  ### v3.1.37 (2026-04-16)
145
151
  - **重构** 授权流程:实现方案三(混合模式),优化用户体验
146
152
  - 优先尝试刷新 Token,减少不必要的授权提示
package/SKILL.md CHANGED
@@ -179,11 +179,7 @@ Agent 根据当前环境,向用户说明开启新会话的具体操作方式
179
179
 
180
180
  Agent **直接使用当前时间**作为消费时间,无需进行时间语义解析。
181
181
 
182
- **最终传入的 `date` 参数格式:**毫秒级时间戳(13位数字)
183
-
184
- ⚠️ **重要:**
185
- 1. 必须根据实际年月日时分秒,计算时间戳
186
- 2. 示例:`2024-04-16 13:08:43` → `1713244123321`(北京时间),不允许使用示例中的数字,必须重新计算
182
+ **最终传入的 `date` 参数格式:**毫秒级时间戳(13位数字)⚠️ **重要:**必须根据实际年月日时分秒计算时间戳,示例格式:`YYYY-MM-DD HH:mm:ss` → `[毫秒时间戳]`(北京时间),禁止使用示例中的具体数字,必须根据当前实际时间重新计算
187
183
 
188
184
  **必填字段:** `name`、`amount`、`category`、`date`
189
185
 
@@ -200,11 +196,7 @@ Agent **直接使用当前时间**作为消费时间,无需进行时间语义
200
196
 
201
197
  Agent **直接使用当前时间**作为收入时间,无需进行时间语义解析。
202
198
 
203
- **最终传入的 `date` 参数格式:**毫秒级时间戳(13位数字)
204
-
205
- ⚠️ **重要:**
206
- 1. 必须根据实际年月日时分秒,计算时间戳
207
- 2. 示例:`2024-04-16 13:08:43` → `1713244123321`(北京时间),不允许使用示例中的数字,必须重新计算
199
+ **最终传入的 `date` 参数格式:**毫秒级时间戳(13位数字)⚠️ **重要:**必须根据实际年月日时分秒计算时间戳,示例格式:`YYYY-MM-DD HH:mm:ss` → `[毫秒时间戳]`(北京时间),禁止使用示例中的具体数字,必须根据当前实际时间重新计算
208
200
 
209
201
  **必填字段:** `name`、`amount`、`category`、`date`
210
202
 
@@ -220,7 +212,7 @@ Agent **直接使用当前时间**作为收入时间,无需进行时间语义
220
212
 
221
213
  **必填字段:**
222
214
  - `store`:商家名称
223
- - `date`:毫秒时间戳(如 `1713209160000`),小票上的真实消费时间
215
+ - `date`:毫秒时间戳(13位数字,格式:`[毫秒时间戳]`),小票上的真实消费时间,禁止使用示例中的具体数字,必须根据小票上的实际时间重新计算
224
216
  - `totalAmount`:商品原价总和
225
217
  - `actualAmount`:实付金额(优惠后)
226
218
  - `originalAmount`:原价(优惠前)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chaimi-keep-mcp",
3
- "version": "3.1.37",
3
+ "version": "3.1.38",
4
4
  "description": "柴米记账 MCP Server - 支持 Claude、Cursor、OpenClaw、WorkBuddy 等 AI 工具直接记账",
5
5
  "main": "server.js",
6
6
  "bin": {