feishu-memory-recall/SKILL.md
Cross-group memory, search, and event sharing for OpenClaw Feishu agents
npx skillsauth add autogame-17/feishu-skills feishu-memory-recallInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
documentation
--- name: feishu-wiki description: Feishu knowledge base operations. Actions: spaces, nodes, get, create, move, rename tags: [feishu, lark, wiki, knowledge, spaces, nodes, move] --- # Feishu Wiki Management Manage Feishu (Lark) Knowledge Base structure. Create spaces, list nodes, move pages, and manage hierarchy. ## Prerequisites - Requires `feishu-common` for authentication. - Must be configured with `FEISHU_APP_ID` and `FEISHU_APP_SECRET`. ## Actions - `spaces`: List knowledge spaces. -
tools
# Feishu Whiteboard Skill Allows creating and manipulating Feishu Whiteboards programmatically. ## Configuration Requires `FEISHU_APP_ID` and `FEISHU_APP_SECRET` in environment or `config.json`. Scopes required: `board:whiteboard:node:create` **Whiteboard scripts** (draw_*.js, relocate.js, debug_*.js, create_dashboard_real.js): - `FEISHU_WHITEBOARD_ID` — target whiteboard ID (or use `--board-id=ID` CLI arg) **Wiki board creation** (create_wiki_board.js): - `FEISHU_WIKI_SPACE_ID` — wiki space
content-media
Sends voice messages (audio) to Feishu chats using Duby TTS.
development
# Feishu Video Conference Skill Manage Feishu Video Conferences (VC). ## Usage ### Reserve a Meeting Create a meeting reservation. ```bash node skills/feishu-vc/reserve.js --subject "Meeting Title" --time "2026-02-04T10:00:00+08:00" ``` ## API Reference - Reserve: `POST /open-apis/vc/v1/reserve` - Permissions required: `vc:meeting:request` (Update meeting reservation info) ## Setup Requires `FEISHU_APP_ID` and `FEISHU_APP_SECRET`.