Skills feishu-group-thread-reply

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/arianxx/feishu-group-thread-reply" ~/.claude/skills/openclaw-skills-feishu-group-thread-reply && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/arianxx/feishu-group-thread-reply" ~/.openclaw/skills/openclaw-skills-feishu-group-thread-reply && rm -rf "$T"
manifest: skills/arianxx/feishu-group-thread-reply/SKILL.md
source content

Feishu Group Thread Reply

Patch openclaw-lark to reply in threads for all group chat messages.

Quick Apply

# 1. Patch plugin
bash scripts/patch-lark-thread.sh

# 2. Patch live-card (if installed)
python3 scripts/patch-live-card.py

# 3. Restart gateway
openclaw gateway restart

Check Status

bash scripts/patch-lark-thread.sh --check-only
python3 scripts/patch-live-card.py --check-only

Heartbeat Auto-Check

Add to

HEARTBEAT.md
to auto-detect and re-apply after plugin updates:

### openclaw-lark thread patch
Run: `bash <skill-dir>/scripts/patch-lark-thread.sh --check-only`
If exit code 1, re-apply: `bash <skill-dir>/scripts/patch-lark-thread.sh` then restart gateway.

### feishu-live-card watcher
Check running: `ps aux | grep watcher.py | grep -v grep`
If not running: `cd ~/.openclaw/skills/feishu-live-card && python3 watcher.py start &`

How It Works

The plugin hardcodes

replyInThread: dc.isThread
which is only true when the incoming message is already in a thread. The patch changes this to
dc.isGroup || dc.isThread
so all group replies use threads.

For detailed explanation, see

references/how-it-works.md
.

After Plugin Updates

The openclaw-lark plugin is npm-installed. Updates overwrite patched files. Re-run:

bash scripts/patch-lark-thread.sh
openclaw gateway restart