用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CraftOS-dev/CraftBot --skill feishu-memory-recall命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Create Living UI applications (PocketBase backend, React kit frontend). Scaffolds, develops, validates, and launches local web apps with persistent state and realtime UI.
Install Living UI apps from the marketplace or import Living UI projects from a ZIP, a local folder, or a git URL. Registers, launches, and verifies imported projects.
Modify an existing Living UI application (PocketBase + React kit) — add features, change design, fix bugs — then re-validate and relaunch it.
基于 SOC 职业分类
正在显示 SKILL.md
| name | feishu-memory-recall |
| version | 2.0.0 |
| description | Cross-group memory, search, and event sharing for OpenClaw Feishu agents |
| tags | ["feishu","memory","cross-session","search","digest"] |
Cross-group awareness for OpenClaw. Search messages, generate digests, and share events across all Feishu groups and DMs.
| Command | Description |
|---|---|
recall --user <id> [--hours 24] | Find messages from a user across all groups |
search --keyword <text> [--hours 24] | Search messages by keyword across all groups |
digest [--hours 6] | Activity summary of all tracked groups |
log-event -s <source> -e <text> | Write event to RECENT_EVENTS.md + daily log |
sync-groups | Auto-discover groups from gateway sessions |
add-group -i <id> -n <name> | Manually track a group |
list-groups | Show tracked groups |
# Search for "GIF error" across all groups
node skills/feishu-memory-recall/index.js search -k "GIF" --hours 12
# What happened in all groups in the last 6 hours?
node skills/feishu-memory-recall/index.js digest --hours 6
# Log a cross-session event
node skills/feishu-memory-recall/index.js log-event -s "dev-group" -e "Fixed GIF crash in gateway"
# Auto-discover all Feishu groups from gateway sessions
node skills/feishu-memory-recall/index.js sync-groups
# Find what a specific user said recently
node skills/feishu-memory-recall/index.js recall -u ou_cdc63fe05e88c580aedead04d851fc04 --hours 48
~/.openclaw/agents/main/sessions/sessions.json to auto-discover all Feishu groups the agent is connected to.RECENT_EVENTS.md (rolling 24h cross-session feed) and memory/YYYY-MM-DD.md (permanent daily log).Requires Feishu credentials in .env:
FEISHU_APP_ID=cli_xxxxx
FEISHU_APP_SECRET=xxxxx
Group list is stored in memory/active_groups.json and can be auto-populated via sync-groups.