Ready-made flows
Complete agents to download and import on the platform: the canvas, the JSON and the explanation of why each card is there.
Updated on Sep 02, 2026
Each flow below is a complete agent, exported from the platform and ready to import: download the file, import it, adjust what's yours, and publish. Each one's page shows the canvas, the JSON, and — the part that matters — why each card is there and what it solves.
They're real starting points, not fragments: you can import, run, and keep changing.
Agents that talk to your system: query, record, and act, with your authenticated API on one side and your knowledge base on the other.
Short flows, each isolating one piece: routing, approval, sequence, tool pipeline, loop. They help you understand the mechanism and paste into a larger flow.
- 1
Download the flow file
Each page has the
.hinow-agent.jsondownload button. - 2
On the platform, open Agents → Import
Choose the file. The agent enters as new draft — nothing you already have is changed.
- 3
Fill in what belongs to your environment
Webhook credentials (come masked), your API URLs and knowledge bases (the link comes empty: bases don't cross environments).
- 4
Test in sandbox
Run in the editor itself and track tool calls before publishing.
- 5
Publish
Only the published version responds on
/run.
It's the same envelope that the platform's Export button generates:
{
"format": "hinow.agent",
"version": 1,
"exported_at": "2026-09-01T00:00:00Z",
"credentials_included": false,
"agent": {
"name": "...",
"description": "...",
"model": "...",
"system_prompt": "...",
"config": { },
"workflow": { "nodes": [ ], "edges": [ ] }
}
}| Import details | Behavior |
|---|---|
| Always creates draft | The imported agent is born as draft, private, in the current project — never overwrites an existing one. |
| Duplicate name | Becomes Name (imported), Name (imported 2)… |
| Credentials | Sensitive keys come out of the file masked. Fill in after importing. |
| Knowledge bases | rag_ids comes empty: a base from the source environment doesn't exist in yours. |
| Observability IDs | Renewed on import — your agent's metrics don't mix with anyone else's. |
| Limits | Up to 200 nodes and 500 connections per file. |
Test before the API is ready
In flows with Webhook, swap the baseUrl for https://httpbin.org/anything and publish: the agent runs for real and each route returns the echo of the request itself — method, URL, query string, body and headers. It's the fastest way to check if the {{parameters}} are arriving as you expect before pointing to your system.
Example credentials
The files bring PASTE_YOUR_TOKEN_HERE in place of the secret, on purpose. Before publishing, fill in the Webhook card authentication — and read Credentials and identity to choose the right standard for your case.
Prefer to build from scratch?
Start with My first agent and use the Builder cards as reference for each piece.
Create and manage by API
The same flows can be created by REST: `POST /v1/agents` with the workflow JSON.

