@yoooclaw/phone-notifications 1.11.7 → 1.11.9
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 +9 -0
- package/dist/index.cjs +634 -184
- package/dist/index.cjs.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/notification-monitor/SKILL.md +3 -2
- package/skills/{notification-search → notification-query}/SKILL.md +46 -17
- package/skills/notification-query/references/statistics.md +156 -0
- package/skills/notification-to-memory/SKILL.md +7 -5
- package/skills/notification-to-memory/references/step-0-preflight.md +27 -8
- package/skills/notification-to-memory/references/step-1-scan-pending.md +22 -3
- package/skills/notification-to-memory/references/step-2-process-dates.md +18 -12
- package/skills/notification-to-memory/references/step-3-check-cron-status.md +3 -1
- package/skills/notification-to-memory/references/step-4-final-reporting.md +8 -7
- package/skills/notification-to-memory/references/write-memory-lancedb-plugin.md +2 -2
- package/skills/recording-entity-extraction/SKILL.md +5 -3
- package/skills/recording-interview/SKILL.md +34 -18
- package/skills/recording-meeting-minutes/SKILL.md +34 -18
- package/skills/recording-mindmap/SKILL.md +32 -18
- package/skills/recording-query/SKILL.md +162 -0
- package/skills/recording-translation/SKILL.md +5 -3
- package/skills/notification-analytics/SKILL.md +0 -204
package/README.md
CHANGED
|
@@ -169,6 +169,12 @@ bash install.sh --tgz-url ./yoooclaw-phone-notifications-1.2.3.tgz
|
|
|
169
169
|
|
|
170
170
|
以下命令适用于带全局 `openclaw` CLI 的标准 OpenClaw 宿主:
|
|
171
171
|
|
|
172
|
+
```bash
|
|
173
|
+
ls ~/.openclaw/extensions/phone-notifications
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
> `~/.openclaw/plugins` 主要是运行时数据目录或旧插件目录;这里没有 `phone-notifications` 不代表安装缺失。安装脚本的目标目录是 `~/.openclaw/extensions/phone-notifications`。
|
|
177
|
+
|
|
172
178
|
```bash
|
|
173
179
|
openclaw ntf --help
|
|
174
180
|
```
|
|
@@ -435,6 +441,9 @@ openclaw ntf search --sender "张三" --from 2026-03-01T00:00:00+08:00
|
|
|
435
441
|
|
|
436
442
|
# 仅看飞书群聊消息
|
|
437
443
|
openclaw ntf search --app Feishu --conversation-type group
|
|
444
|
+
|
|
445
|
+
# 生成轻量通知摘要输入,适合 Agent 总结大量通知
|
|
446
|
+
openclaw ntf summary --limit 700
|
|
438
447
|
```
|
|
439
448
|
|
|
440
449
|
### 通知统计
|