A Claude skill that generates production-ready Flowise AI workflows — importable JSON files, step-by-step build instructions, and visual diagrams.
Describe what you want your AI workflow to do, and this skill generates:
- Importable JSON — Load directly into Flowise via Settings → Load Chatflow
- Step-by-step instructions — How to build the same workflow manually in the Flowise UI
- Visual diagrams — Mermaid/SVG showing node connections and data flow
| Type | Description |
|---|---|
| Chatflows | LangChain-based chains — RAG, chatbots, Q&A, translation |
| AgentFlow V2 | Latest multi-agent architecture with human-in-the-loop, MCP tools, streaming |
| AgentFlow V1 | Legacy Sequential Agents (LangGraph-based) |
Comes with 10 ready-to-customize templates:
- 💬 Simple Chatbot (LLM + Memory)
- 📄 RAG Q&A (Document → Vector Store → Retrieval Chain)
- 🔁 Conversational RAG (RAG + follow-up questions)
- 🛠️ Tool Agent (OpenAI Function Agent + tools)
- 👥 Multi-Agent Supervisor (V2 — Supervisor → Workers)
- 🌐 API Integration Agent
- 🕸️ Web Scraping RAG
- 📑 PDF Q&A
- 🗃️ SQL Database Agent
- 🙋 Human-in-the-Loop (V2 — approval gates)
flowise-workflows/
├── SKILL.md # Main skill instructions
└── references/
├── json-structure.md # Flowise JSON schema & examples
├── nodes.md # 100+ node catalog by category
├── templates.md # 10 pre-built workflow patterns
└── agentflow-v2.md # V2 architecture deep dive
- Download this repo as a
.zip - In Claude, go to Settings → Skills
- Upload the skill folder
Place the flowise-workflows/ folder in your skills directory:
# Clone this repo
git clone https://github.com/drdshivajiraju-ctrl/flowise-workflows-skill.git
# Copy to your skills directory
cp -r flowise-workflows-skill/flowise-workflows /path/to/your/skills/Once the skill is installed, try prompts like:
- "Create a Flowise RAG chatbot for my PDF documents using OpenAI"
- "Build a multi-agent workflow where a supervisor delegates to research and writing agents"
- "Generate a Flowise chatflow that connects to my REST API with conversation memory"
- "Make a Flowise workflow for a customer support bot with web search and human approval"
MIT — free to use, modify, and distribute.
PRs welcome! If you'd like to add new templates, update node catalogs, or improve the skill instructions, feel free to open a pull request.