@yoooclaw/cli 0.1.4 → 0.1.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 +242 -65
- package/dist/bin.cjs +90 -13
- package/dist/bin.cjs.map +4 -4
- package/dist/index.cjs +90 -13
- package/dist/index.cjs.map +4 -4
- package/package.json +1 -1
- package/skills/yoooclaw-notification-query/SKILL.md +3 -2
package/package.json
CHANGED
|
@@ -41,12 +41,13 @@ yoooclaw notification search \
|
|
|
41
41
|
# 聚合摘要(topApps / topSenders / 最近样例),适合"帮我总结"
|
|
42
42
|
yoooclaw notification summary --top 10 --sample 30 --format json
|
|
43
43
|
|
|
44
|
-
# 维度统计(date|app|sender|hour|all)
|
|
44
|
+
# 维度统计(date|app|sender|hour|client|all)
|
|
45
45
|
yoooclaw notification stats --from 2026-05-14 --to 2026-05-21 --dim all --format json
|
|
46
|
+
yoooclaw notification stats --from 2026-05-21T00:00:00+08:00 --to 2026-05-21T23:59:59+08:00 --sender 张三 --dim sender --format json
|
|
46
47
|
```
|
|
47
48
|
|
|
48
49
|
- `--app` 支持中英文别名:`微信/wechat`、`飞书/feishu/lark`、`钉钉/dingtalk`、`企业微信/wecom` 等。
|
|
49
|
-
- `--from/--to` 用 ISO 8601 含时区(`2026-05-01T09:00:00+08:00`)。`stats` 的 `--from/--to`
|
|
50
|
+
- `search` / `summary` 的 `--from/--to` 用 ISO 8601 含时区(`2026-05-01T09:00:00+08:00`)。`stats` 的 `--from/--to` 支持 `YYYY-MM-DD` 或 ISO 8601。
|
|
50
51
|
|
|
51
52
|
## 流式处理 ndjson 的样板
|
|
52
53
|
|