🎁 Get the FREE AI Skills Starter GuideSubscribe →
BytesAgainBytesAgain
🦀 ClawHub

Flomo Notes

by @xiaoluoboding

Save 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.

Versionv0.1.0
Downloads3,111
Stars4
TERMINAL
clawhub install flomo-notes

📖 About This Skill


name: flomo-notes description: Save 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.

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:

    1) In ~/.openclaw/openclaw.json (recommended):

    {
      skills: {
        entries: {
          "flomo-notes": {
            env: {
              FLOMO_WEBHOOK_URL: "https://flomoapp.com/iwh/XXXXXXXX"
            }
          }
        }
      }
    }
    

    2) 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 ""
    

    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.

    ⚙️ Configuration

    Provide your Flomo inbox webhook URL via environment variable:

  • FLOMO_WEBHOOK_URL (required), example:
  • https://flomoapp.com/iwh/XXXXXXXX

    You can set it either:

    1) In ~/.openclaw/openclaw.json (recommended):

    {
      skills: {
        entries: {
          "flomo-notes": {
            env: {
              FLOMO_WEBHOOK_URL: "https://flomoapp.com/iwh/XXXXXXXX"
            }
          }
        }
      }
    }
    

    2) Or in your shell/service environment:

    export FLOMO_WEBHOOK_URL="https://flomoapp.com/iwh/XXXXXXXX"