Visual AI workflow builder — drag, drop, deploy.
Build AI workflows by connecting nodes visually. Export to SKILL.md for any agent.
- Drag & Drop — Visual node builder with 7 node types
- AI Nodes — Input, AI Prompt, Transform, Condition, Output, API Call, Skill
- SKILL.md Export — Generate structured skill files for Claude, Cursor, Codra
- CLI — Initialize, dev server, build from command line
- MCP Server — Tool calls for workflow generation
- SDK — npm and Python clients
npm install -g @talocode/flowlanepip install talocode-flowlaneflowlane init
flowlane dev
# Open http://localhost:3000
# Drag nodes, connect them, generate SKILL.mdflowlane init # Initialize project
flowlane dev # Start visual builder (default: port 3000)
flowlane build # Generate SKILL.md from workflow| Node | Description |
|---|---|
| Input | User input or text |
| AI Prompt | Send to AI model |
| Transform | Process data |
| Condition | If/else logic |
| Output | Display or save |
| API Call | External API |
| Skill | Import SKILL.md |
flowlane-mcpTools:
flowlane_create_workflow— Create a new workflowflowlane_generate_skill— Generate SKILL.md from workflowflowlane_validate_workflow— Validate a workflowflowlane_list_templates— List available templates
const { FlowLane } = require('@talocode/flowlane');
const client = new FlowLane({ apiKey: 'your-key' });
await client.createWorkflow({ name: 'chatbot', nodes: [...], edges: [...] });
await client.generateSkill({ workflow, format: 'claude' });from flowlane import FlowLane
client = FlowLane(api_key="your-key")
client.create_workflow(name="chatbot", nodes=[...], edges=[...])
client.generate_skill(workflow=workflow, format="claude")- GitHub: https://github.com/talocode/flowlane
- X: https://x.com/talocode
- Telegram: https://t.me/TalocodeChannel
- Site: https://talocode.site
MIT © Talocode