ワンクリックで
feishu-memory-recall
Cross-group memory, search, and event sharing for OpenClaw Feishu agents
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Cross-group memory, search, and event sharing for OpenClaw Feishu agents
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Shared Feishu (Lark) authentication and API request helper providing tenant token acquisition with caching, automatic retry with timeout handling, and authenticated request wrappers with token refresh.
Send multiple Feishu (Lark) messages in a single tool call with configurable delay, supporting plain text arrays and mixed content types (text and rich post).
Manage Feishu (Lark) calendars including listing, searching, syncing events, creating calendar entries from task requests, and setting up shared project calendars.
Send rich interactive cards to Feishu (Lark) users or groups with Markdown support, colored headers, action buttons, embedded images, and AI persona styling.
Unified CLI for Feishu (Lark) messaging operations including fetching messages by ID, sending audio voice bubbles, creating group chats, listing pinned messages, and adding emoji reactions.
Feishu native emoji mapping -- emoji_type codes, Chinese names, and Unicode conversion table for card markdown.
| 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 $TARGET_USER_ID --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.