x
Flomo Notes
Scanned@xiaoluoboding
npx machina-cli add skill @xiaoluoboding/flomo-notes --openclawFiles (1)
SKILL.md
1.2 KB
flomo-notes
Save notes to Flomo using a single webhook POST.
Setup
Provide your Flomo inbox webhook URL via environment variable:
FLOMO_WEBHOOK_URL(required), example:https://flomoapp.com/iwh/XXXXXXXX
You can set it either:
- In
~/.openclaw/openclaw.json(recommended):
{
skills: {
entries: {
"flomo-notes": {
env: {
FLOMO_WEBHOOK_URL: "https://flomoapp.com/iwh/XXXXXXXX"
}
}
}
}
}
- Or in your shell/service environment:
export FLOMO_WEBHOOK_URL="https://flomoapp.com/iwh/XXXXXXXX"
How the skill works
When triggered, run:
bash scripts/save_to_flomo.sh "<note text>"
Example prompts (to trigger)
save to flomo: buy milk, eggs记录到 flomo:下周美股大事件...
Script manual test
FLOMO_WEBHOOK_URL="https://flomoapp.com/iwh/XXXXXXXX" \
bash scripts/save_to_flomo.sh "hello from openclaw"
Security
Treat the webhook URL like a secret: anyone with it can post into your Flomo inbox.
Overview
Flomo-notes saves user-provided text to Flomo using the Flomo inbox webhook. It uses the FLOMO_WEBHOOK_URL to post notes via a dedicated script, enabling fast capture of ideas, tasks, and reminders for later reference.
How This Skill Works
When triggered, the skill runs bash scripts/save_to_flomo.sh "<note text>" which sends an HTTP POST to the webhook URL configured in FLOMO_WEBHOOK_URL. The webhook URL must be kept secret, as it grants posting access to your Flomo inbox.
When to Use It
- You want to save a quick note from a chat conversation to Flomo.
- You mention 'save to flomo', '记录到 flomo', or 'flomo note' to store a note.
- You need to log a to-do item or grocery list for later reference in Flomo.
- You want to back up important ideas or meeting highlights to Flomo.
- You want a long-term, searchable log of notes in Flomo.
Quick Start
- Step 1: Set FLOMO_WEBHOOK_URL in your environment or config (FLOMO_WEBHOOK_URL=...).
- Step 2: Trigger the skill with a note, e.g., 'save to flomo: buy milk' (bash scripts/save_to_flomo.sh "<note text>").
- Step 3: Verify the note appears in your Flomo inbox and adjust if delivery failed.
Best Practices
- Keep notes concise to avoid noisy entries in Flomo.
- Set FLOMO_WEBHOOK_URL securely and treat it as a secret.
- Test with a small, non-sensitive note before relying on it in production.
- Avoid sending sensitive data through the webhook; redact if necessary.
- Verify delivery by checking the Flomo inbox and retry on failures.
Example Use Cases
- save to flomo: buy milk, eggs
- 记录到 flomo:下周美股大事件...
- flomo note: brainstorm ideas for the new feature
- save to flomo: meeting notes 2024-06-01
- flomo note: ideas for a blog post on AI tooling
Frequently Asked Questions
Add this skill to your agents