← All skills
Tencent SkillHub · Developer Tools

Flowise

Interact with Flowise AI workflows via REST API. Use when user mentions Flowise, chatflows, or wants to send messages to Flowise bots/agents. Supports listing flows, sending predictions, and managing conversations.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Interact with Flowise AI workflows via REST API. Use when user mentions Flowise, chatflows, or wants to send messages to Flowise bots/agents. Supports listing flows, sending predictions, and managing conversations.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/flowise.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 17 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/flowise.py Scripts