# Send Flowise 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-flowise-skill",
    "name": "Flowise",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tianmu/openclaw-flowise-skill",
    "canonicalUrl": "https://clawhub.ai/tianmu/openclaw-flowise-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-flowise-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-flowise-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/flowise.py"
    ],
    "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/openclaw-flowise-skill"
    },
    "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/openclaw-flowise-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-flowise-skill",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-flowise-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-flowise-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-flowise-skill/agent.md"
  }
}
```
## Documentation

### Flowise Skill

Interact with Flowise AI platform via REST API.

### Configuration

Store Flowise settings in TOOLS.md:

### Flowise
- Server: http://localhost:3000
- API Key: your-api-key-here
- Default Flow ID: your-default-flow-id (optional)
- Default Timeout: 300

#### Flows
| Flow ID | 名称 | 用途 | 参数 |
|---------|------|------|------|
| abc123 | 客服助手 | 处理客户咨询、售后问题 | - |
| def456 | 代码助手 | 代码生成、调试、技术问答 |  form格式: \`script\`=要执行的脚本, \`device\`=设备(可选) |
| ghi789 | 文档助手 | 文档总结、RAG知识库查询 | - |

### Flow Selection

When calling Flowise, match the user's request to the appropriate flow:

Check TOOLS.md for the Flows table
Select the flow whose "用途" best matches the task
If no specific match, use the Default Flow ID
If user explicitly names a flow, use that one

### Send a message (Prediction)

curl -X POST "${FLOWISE_URL}/api/v1/prediction/${FLOW_ID}" \\
  -H "Authorization: Bearer ${API_KEY}" \\
  -H "Content-Type: application/json" \\
  -d '{"question": "Hello, how are you?"}'

### Send with streaming

curl -X POST "${FLOWISE_URL}/api/v1/prediction/${FLOW_ID}" \\
  -H "Authorization: Bearer ${API_KEY}" \\
  -H "Content-Type: application/json" \\
  -d '{"question": "Tell me a story", "streaming": true}'

### Send with session/conversation memory

curl -X POST "${FLOWISE_URL}/api/v1/prediction/${FLOW_ID}" \\
  -H "Authorization: Bearer ${API_KEY}" \\
  -H "Content-Type: application/json" \\
  -d '{"question": "What did I ask before?", "sessionId": "user-123"}'

### List all chatflows

curl -X GET "${FLOWISE_URL}/api/v1/chatflows" \\
  -H "Authorization: Bearer ${API_KEY}"

### Get chatflow details

curl -X GET "${FLOWISE_URL}/api/v1/chatflows/${FLOW_ID}" \\
  -H "Authorization: Bearer ${API_KEY}"

### Common Parameters for Prediction

ParameterTypeDescriptionquestionstringThe message to sendstreamingbooleanEnable streaming response (default: false)sessionIdstringSession ID for conversation memoryoverrideConfigobjectOverride flow configuration (temperature, maxTokens, etc.)historyarrayProvide conversation history manuallyuploadsarrayFile uploads (images, documents)

### Flow-specific Variables

Some flows accept custom variables. Pass them in the request:

{
  "question": "查询订单状态",
  "overrideConfig": {
    "vars": {
      "orderId": "12345",
      "userId": "user-abc"
    }
  }
}

### Using Parameters from TOOLS.md

Check TOOLS.md for flow-specific parameters. The "参数" column indicates:

Required parameters (必填)
Default values to use
Custom variables needed for that flow

Example entry:

| abc123 | RAG知识库 | 文档查询 | sessionId=必填, variables={"namespace": "docs"} |

When calling this flow, include the specified parameters.

### Override Config Example

Override model settings or other flow parameters:

{
  "question": "Explain quantum computing",
  "overrideConfig": {
    "temperature": 0.7,
    "maxTokens": 500
  }
}

### With File Upload

curl -X POST "${FLOWISE_URL}/api/v1/prediction/${FLOW_ID}" \\
  -H "Authorization: Bearer ${API_KEY}" \\
  -F "question=Analyze this document" \\
  -F "files=@/path/to/document.pdf"

### Form Object Request

Some flows use a form object for structured input parameters:

curl -X POST "${FLOWISE_URL}/api/v1/prediction/${FLOW_ID}" \\
  -H "Authorization: Bearer ${API_KEY}" \\
  -H "Content-Type: application/json" \\
  -d '{
    "form": {
      "script": "d.send_keys(\\"小红书\\")",
      "device": "192.168.1.100:5555"
    }
  }'

Check TOOLS.md "参数" column for form格式 to identify these flows. Pass parameters inside the form object.

### Error Handling

StatusMeaning200Success400Bad request - check input format401Unauthorized - check API key404Flow not found - verify flow ID500Server error - check Flowise logs

### Workflow

Check TOOLS.md for Flowise server URL and API key
If not configured, ask user for:

Flowise server URL (e.g., http://localhost:3000)
API key (if authentication is enabled)
Flow ID to use


Use exec with curl to call the API
Parse JSON response and present results

### Tips

Use sessionId consistently to maintain conversation context
For long responses, enable streaming: true
Test connectivity with /api/v1/ping endpoint first
List available flows if user doesn't specify a flow ID
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tianmu
- Version: 0.1.0
## 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/openclaw-flowise-skill)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-flowise-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-flowise-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-flowise-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-flowise-skill)