Install
openclaw skills install flomo-notesSave notes to Flomo via the Flomo inbox webhook. Use when the user says "save to flomo", "记录到 flomo", "flomo note", or asks to store a note in flomo.
openclaw skills install flomo-notesSave notes to Flomo using a single webhook POST.
Provide your Flomo inbox webhook URL via environment variable:
FLOMO_WEBHOOK_URL (required), example:
https://flomoapp.com/iwh/XXXXXXXXYou can set it either:
~/.openclaw/openclaw.json (recommended):{
skills: {
entries: {
"flomo-notes": {
env: {
FLOMO_WEBHOOK_URL: "https://flomoapp.com/iwh/XXXXXXXX"
}
}
}
}
}
export FLOMO_WEBHOOK_URL="https://flomoapp.com/iwh/XXXXXXXX"
When triggered, run:
bash scripts/save_to_flomo.sh "<note text>"
save to flomo: buy milk, eggs记录到 flomo:下周美股大事件...FLOMO_WEBHOOK_URL="https://flomoapp.com/iwh/XXXXXXXX" \
bash scripts/save_to_flomo.sh "hello from openclaw"
Treat the webhook URL like a secret: anyone with it can post into your Flomo inbox.