Multi-agent orchestration framework for building swarm intelligence systems. Route tasks to specialized agents, execute in parallel, and synthesize results.
~850ms
Thanks to parallel execution. Sequential would be ~3.2s.
Intelligent task routing based on agent capabilities, specialization, and current load.
Multiple agents work simultaneously on different aspects of the task.
Automatic aggregation and deduplication of results from multiple agents.
Real-time metrics on latency, agent utilization, and output quality.
Multi-agent research pipeline with fact-checking
Parallel code analysis from multiple specialties
Multi-stage content creation and refinement
import { ClaudeFlow } from '@hubify/labs';
const flow = new ClaudeFlow({
agents: [researcher, checker, synthesizer],
timeout: 5000,
parallel: true,
});
const result = await flow.execute({
task: "Research AI safety best practices",
context: userContext,
});ClaudeFlow is available as an npm package and integrates with Hubify workspaces for authentication and observability.