All skills
Skillintermediate

@flowiseai/agentflow Examples

This folder demonstrates various usage patterns of the `@flowiseai/agentflow` package.

Claude Code Knowledge Pack7/10/2026

Overview

@flowiseai/agentflow Examples

This folder demonstrates various usage patterns of the @flowiseai/agentflow package.

Setup

  1. First, build the agentflow package from the root:

    cd packages/agentflow
    pnpm build
    
  2. Install dependencies for this example:

    cd examples
    pnpm install
    
  3. Start the development server:

    pnpm dev
    
  4. Open http://localhost:5174 in your browser

Configuration

The examples app uses environment variables for configuration. To set up:

  1. Copy the .env.example file to .env:

    cp .env.example .env
    
  2. Edit .env to configure your Flowise API server:

    # Flowise API Base URL
    VITE_INSTANCE_URL=http://localhost:3000
    
    # API Key (required for authenticated endpoints)
    VITE_API_TOKEN=your-api-key-here
    
  3. Get your API Key from Flowise:

    • Open your Flowise instance (http://localhost:3000)
    • Go to SettingsAPI Keys
    • Click Create New Key
    • Copy the generated key and paste it in .env

    ⚠️ Important: Use an API Key, not a user authentication token (JWT).

  4. Restart the dev server to apply changes:

    pnpm dev
    

Environment Variables:

VariableRequiredDescription
VITE_INSTANCE_URLNoFlowise API server endpoint (default: http://localhost:3000)
VITE_API_TOKENYes (authenticated)Flowise API Key — get from Settings → API Keys
VITE_FLOW_IDNoAgentflow ID to load on startup. When set, the canvas loads the saved flow from the database and enables Test Run and Run Status polling without saving first. Copy the ID from the Flowise URL: /agentflows/<id>

Note: The .env file is gitignored and will not be committed to version control. Add your actual API key to .env, not .env.example.

Troubleshooting Authentication

Getting 401 Unauthorized errors?

Common causes:

  1. Using wrong token type

    • Don't use: User authentication JWT tokens (long tokens starting with eyJhbGc...)
    • Use: API Keys (shorter tokens like 9CnKuLRHbEY...)
  2. Token not loaded

    • Restart dev server after editing .env: pnpm dev
  3. Invalid API Key

    • Regenerate key in Flowise: Settings → API Keys → Create New Key
    • Copy the new key to .env
  4. CORS issues

    • Ensure Flowise allows requests from http://localhost:5174
    • Check Flowise CORS configuration

Examples

The app opens to the E2E (Live Instance) example when VITE_FLOW_ID is set, and falls back to Basic Usage otherwise.

Basic Usage (BasicExample.tsx)

Minimal canvas integration — no database calls:

  • Rendering the canvas with a hardcoded initialFlow
  • Tracking flow changes via onFlowChange
  • Local-only save via onSave
  • Imperative fitView / clear via ref

E2E — Live Instance (E2eExample.tsx)

Full integration with a running Flowise instance. Requires VITE_FLOW_ID for the best experience:

  • Loads the saved flow from the database on startup (VITE_FLOW_ID)
  • Editable flow title synced to the database on save
  • Save to DB — prompts to create a new chatflow when no ID is configured
  • Delete chatflow from the database
  • Test Run via POST /api/v1/internal-prediction with markdown-rendered response (disabled when flow has validation errors)
  • Run Status panel showing per-node execution results (manual refresh)

API Token permissions required: The VITE_API_TOKEN used for the E2E example must have Create, Update, and Delete permissions for Agentflows. A read-only key is not sufficient — save, rename, and delete operations will return 403.

Additional Examples

ExampleFileDescription
Multi-Node FlowMultiNodeFlow.tsxComplete translation agent flow with multiple connected nodes showing gradient edges
Dark ModeDarkModeExample.tsxTheme toggle demonstrating light/dark mode support
Status IndicatorsStatusIndicatorsExample.tsxNode execution states (running, finished, error, stopped) with animated loader
Custom UICustomUIExample.tsxCustom header and node palette using render props
All Node TypesAllNodeTypesExample.tsxVisual catalog of all 15 available node types with colors and icons
Filtered ComponentsFilteredComponentsExample.tsxRestricting available nodes with preset configurations

Switching Examples

Use the dropdown selector at the top of the page to switch between examples. All examples are lazy-loaded for better performance.

Node Types Reference

Node TypeColorDescription
startAgentflow#7EE787Entry point for the flow
llmAgentflow#64B5F6Large Language Model node
agentAgentflow#4DD0E1AI Agent with tools
conditionAgentflow#FFB938Conditional branching
conditionAgentAgentflow#ff8fabAgent-based condition
humanInputAgentflow#6E6EFDHuman approval required
loopAgentflow#FFA07ALoop iteration
iterationAgentflow#9C89B8Iteration container
directReplyAgentflow#4DDBBBSend response to user
customFunctionAgentflow#E4B7FFCustom JavaScript function
toolAgentflow#d4a373External tool integration
retrieverAgentflow#b8beddVector store retrieval
httpAgentflow#FF7F7FHTTP API request
executeFlowAgentflow#a3b18aExecute another flow
stickyNoteAgentflow#fee440Documentation note

Requirements

The examples work best with a running Flowise instance at http://localhost:3000 for the node API. Without it:

  • The canvas will render
  • Initial flow data will display
  • Node palette may be empty (nodes load from API)

For standalone testing, examples include mock flow data.