packages/agentflow/README.md
Embeddable React component for building and visualizing AI agent workflows
This package is currently under active development.
Cannot be used in production. For development and testing purposes only.
@flowiseai/agentflow is a React-based flow editor for creating AI agent workflows. It provides a visual canvas built on ReactFlow for connecting AI agents, LLMs, tools, and logic nodes.
getFlow, validate, fitView, clear, addNode, toJSON)pnpm add @flowiseai/agentflow
Peer Dependencies:
pnpm add react react-dom @mui/material @mui/icons-material @emotion/react @emotion/styled reactflow
import { Agentflow } from '@flowiseai/agentflow'
import '@flowiseai/agentflow/flowise.css'
export default function App() {
return (
<div style={{ width: '100vw', height: '100vh' }}>
<Agentflow apiBaseUrl='http://localhost:3000' token='your-api-key' />
</div>
)
}
import { useRef } from 'react'
import { Agentflow, type AgentFlowInstance, type FlowData } from '@flowiseai/agentflow'
import '@flowiseai/agentflow/flowise.css'
export default function App() {
const ref = useRef<AgentFlowInstance>(null)
const initialFlow: FlowData = {
nodes: [
{
id: 'startAgentflow_0',
type: 'agentflowNode',
position: { x: 100, y: 100 },
data: {
id: 'startAgentflow_0',
name: 'startAgentflow',
label: 'Start',
color: '#7EE787',
hideInput: true,
outputAnchors: [{ id: 'startAgentflow_0-output-0', name: 'start', label: 'Start', type: 'start' }]
}
}
],
edges: [],
viewport: { x: 0, y: 0, zoom: 1 }
}
return (
<div style={{ width: '100vw', height: '100vh' }}>
<Agentflow
ref={ref}
apiBaseUrl='http://localhost:3000'
token='your-api-key'
initialFlow={initialFlow}
onFlowChange={(flow) => console.log('Flow changed:', flow)}
onSave={(flow) => console.log('Flow saved:', flow)}
/>
</div>
)
}
| Prop | Type | Default | Description |
|---|---|---|---|
apiBaseUrl | string | (required) | Flowise API server endpoint |
token | string | — | Authentication token for API calls |
requestInterceptor | (config: InternalAxiosRequestConfig) => InternalAxiosRequestConfig | — | Customize outgoing API requests (e.g., set withCredentials, add headers). The callback receives the full Axios request config — only modify what you need. See Security: requestInterceptor below. |
initialFlow | FlowData | — | Initial flow data to render (uncontrolled — only used on mount) |
components | string[] | — | Restrict which node types appear in the palette |
onFlowChange | (flow: FlowData) => void | — | Called when the flow changes (node/edge add, remove, move) |
onSave | (flow: FlowData) => void | — | Called when the user triggers a save |
onFlowGenerated | (flow: FlowData) => void | — | Called when a flow is generated via AI |
isDarkMode | boolean | false | Use dark mode theme |
readOnly | boolean | false | Disable editing (nodes not draggable/connectable) |
showDefaultHeader | boolean | true | Show built-in header (ignored if renderHeader provided) |
showDefaultPalette | boolean | true | Show built-in node palette |
enableGenerator | boolean | true | Show the AI flow generator button |
renderHeader | (props: HeaderRenderProps) => ReactNode | — | Custom header renderer |
renderNodePalette | (props: PaletteRenderProps) => ReactNode | — | Custom node palette renderer |
ref)| Method | Return Type | Description |
|---|---|---|
getFlow() | FlowData | Get current flow data |
toJSON() | string | Export flow as JSON string |
validate() | ValidationResult | Validate the current flow |
fitView() | void | Fit all nodes into view |
clear() | void | Remove all nodes and edges |
addNode(nodeData) | void | Add a node (Partial<FlowNode>) |
getReactFlowInstance() | ReactFlowInstance|null | Get the underlying ReactFlow instance |
requestInterceptorThe requestInterceptor callback runs inside the Axios request pipeline and has access to the full request configuration, including authentication headers. This is the same trust model as any other callback prop (e.g., onSave, renderHeader) — the host application developer supplies the function and is responsible for its behavior.
Guidelines for consumers:
eval, new Function, etc.) or user-generated input as the interceptor.withCredentials, custom headers).The following node types are available in the palette by default. Use the components prop to restrict which types are shown.
| Node Type | Description |
|---|---|
startAgentflow | Entry point (required, always shown) |
agentAgentflow | AI agent execution |
llmAgentflow | LLM / language model call |
conditionAgentflow | Conditional branching |
conditionAgentAgentflow | Agent-level conditional branching |
humanInputAgentflow | Wait for user input |
loopAgentflow | Loop / iteration |
directReplyAgentflow | Direct response to user |
customFunctionAgentflow | Custom JavaScript function |
toolAgentflow | Tool integration |
retrieverAgentflow | Data retrieval |
stickyNoteAgentflow | Canvas annotation (not connectable) |
httpAgentflow | HTTP request |
iterationAgentflow | Iteration / map-reduce container |
executeFlowAgentflow | Execute a sub-flow |
<Agentflow> is an uncontrolled component. The initialFlow prop seeds the canvas state on mount, but the component owns its own state afterward. Use the ref for imperative access and onFlowChange to observe changes.
Beyond the main <Agentflow> component, the package exports utilities for advanced usage:
// Main component and provider
// Types
// Hooks
// Validation
// Node utilities
// Field visibility helpers
# Install dependencies
pnpm install
# Build the package
pnpm build
# Run tests
pnpm test
# Run examples
cd examples && pnpm install && pnpm dev
Visit the examples directory for more usage patterns. See TESTS.md for the full test plan and coverage status.
Bump the version in package.json before publishing. Use npm version to update the version and create a git tag:
# Prerelease (for testing)
npm version prerelease --preid=dev # 0.0.0-dev.1 → 0.0.0-dev.2
# Patch / Minor / Major (for stable releases)
npm version patch # 0.0.1
npm version minor # 0.1.0
npm version major # 1.0.0
# Build and check the tarball contents
pnpm build
npm pack --dry-run
# Full publish dry-run (runs prepublishOnly + simulates upload)
npm publish --dry-run
# Prerelease — tagged so `npm install @flowiseai/agentflow` won't pick it up
npm publish --tag dev
# Stable release — gets the `latest` tag
npm publish
The
prepublishOnlyscript automatically runscleanandbuildbefore every publish, so stale dist files are never uploaded.
This package follows a feature-based architecture with clear separation of concerns. See ARCHITECTURE.md for details on the project structure and development guidelines.
Apache-2.0 — see the repository root LICENSE.md for details.
Part of the Flowise ecosystem