# Send Flomo Via App to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "flomo-via-app",
    "name": "Flomo Via App",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/qiantao1001/flomo-via-app",
    "canonicalUrl": "https://clawhub.ai/qiantao1001/flomo-via-app",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/flomo-via-app",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=flomo-via-app",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "references/api.md",
      "scripts/configure.sh",
      "scripts/flomo_send.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/flomo-via-app"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/flomo-via-app",
    "downloadUrl": "https://openagent3.xyz/downloads/flomo-via-app",
    "agentUrl": "https://openagent3.xyz/skills/flomo-via-app/agent",
    "manifestUrl": "https://openagent3.xyz/skills/flomo-via-app/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/flomo-via-app/agent.md"
  }
}
```
## Documentation

### Flomo via App

Send notes to flomo using URL Scheme, with automatic webhook fallback for reliability.

⚠️ 首次使用提示: 安装后请先运行 ./scripts/configure.sh 进行配置

### 1. 配置（首次使用必需）

./scripts/configure.sh

运行后会交互式询问：

是否有 flomo PRO 账户
Webhook token/URL
保存位置（默认保存到 skill 目录的 .env 文件）

配置默认保存到 .env 文件，这样更便于管理和隔离。

### 2. 发送笔记

scripts/flomo_send.sh "Your note content" "#tag1 #tag2"

Or manually via URL scheme:

open "flomo://create?content=Hello%20World&tag=daily"

### How It Works

The script uses a dual-channel strategy for maximum reliability:

Primary: URL Scheme → Opens flomo app directly (instant, local)
Fallback: Webhook API → HTTP POST to flomo servers (works without app)

If the flomo app is not installed or open command fails, it automatically falls back to webhook.

### Basic Usage

# Simple note
./scripts/flomo_send.sh "My quick thought"

# With tags
./scripts/flomo_send.sh "Meeting notes from today" "#work #meeting"

# From clipboard
./scripts/flomo_send.sh "$(pbpaste)" "#clippings"

# From stdin
echo "Note from pipe" | ./scripts/flomo_send.sh

### Webhook Configuration (Optional)

If you ran ./scripts/configure.sh during setup, webhook is already configured.

To manually configure, set environment variable:

# Option 1: Full webhook URL
export FLOMO_WEBHOOK_URL="https://flomoapp.com/iwh/xxxxxxxxxxxxxxxx"

# Option 2: Just the token
export FLOMO_WEBHOOK_TOKEN="xxxxxxxxxxxxxxxx"

# Then run script
./scripts/flomo_send.sh "Note with fallback" "#test"

### Send Text Note

./scripts/flomo_send.sh "Your note here"

### Send with Tags

Tags in format #tagname will be automatically parsed by flomo.

./scripts/flomo_send.sh "Reading notes" "#books #learning"

### Multi-line Notes

./scripts/flomo_send.sh "Line 1
Line 2
Line 3" "#journal"

### Send with Images (URL Scheme only)

Note: The flomo_send.sh script currently supports text only. To send images, use URL Scheme directly:

# Via URL Scheme directly (supports up to 9 images)
open "flomo://create?image_urls=%5B%22https://example.com/img1.jpg%22%5D&content=Photo%20notes"

Image URLs must be:

Publicly accessible URLs
URL-encoded JSON array format
Maximum 9 images per note

See references/api.md for more details on image parameters.

### URL Scheme Format

Direct URL scheme usage (macOS only):

Base URL: flomo://create
Parameters:

content (optional): The note content, URL-encoded, max 5000 chars
image_urls (optional): JSON array of image URLs, URL-encoded, max 9 images

### Examples

Text only:

open "flomo://create?content=Your%20URL-encoded%20content"

With images:

open "flomo://create?image_urls=%5B%22https://example.com/img.jpg%22%5D&content=Photo%20notes"

The image_urls parameter format:

JSON array of publicly accessible image URLs
Must be URL-encoded with encodeURIComponent

### Examples

Save a link:

./scripts/flomo_send.sh "https://example.com/article" "#readlater #tech"

Daily journal:

./scripts/flomo_send.sh "Morning reflection: feeling productive today" "#journal"

Quick idea capture:

./scripts/flomo_send.sh "App idea: AI-powered plant water reminder" "#ideas"

Remote/SSH session (uses webhook):

export FLOMO_WEBHOOK_TOKEN="your-token"
./scripts/flomo_send.sh "Note from server" "#server-log"

### Requirements

⚠️ API 和 URL Scheme 功能需要 flomo PRO 会员 才能使用。

### URL Scheme (Primary)

macOS with flomo app installed
flomo app v1.5+ (supports URL Scheme)
flomo PRO 会员

### Webhook Fallback

curl command available
FLOMO_WEBHOOK_URL or FLOMO_WEBHOOK_TOKEN environment variable set
flomo PRO 会员

### Limitations

Content: Maximum 5000 characters (before URL encoding)
Images: Maximum 9 images per note (URL Scheme only; webhook does not support images)

### Environment Variables

VariableDescriptionExampleFLOMO_WEBHOOK_URLFull webhook URLhttps://flomoapp.com/iwh/abc123FLOMO_WEBHOOK_TOKENWebhook token onlyabc123

### Persistent Configuration

Add to your ~/.bashrc, ~/.zshrc, or ~/.bash_profile:

export FLOMO_WEBHOOK_TOKEN="your-webhook-token-here"

### Troubleshooting

"Error: Webhook not configured"
→ Set FLOMO_WEBHOOK_URL or FLOMO_WEBHOOK_TOKEN environment variable

"Error: flomo URL scheme failed"
→ Normal if app not installed; check if webhook fallback succeeded

Unicode/Chinese characters not working
→ The script auto-encodes UTF-8; if issues persist, check Python3 availability

### API Reference

For detailed webhook API documentation, see references/api.md.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: qiantao1001
- Version: 1.0.8
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/flomo-via-app)
- [Send to Agent page](https://openagent3.xyz/skills/flomo-via-app/agent)
- [JSON manifest](https://openagent3.xyz/skills/flomo-via-app/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/flomo-via-app/agent.md)
- [Download page](https://openagent3.xyz/downloads/flomo-via-app)