OmniAgent Studio is a premium, interactive, visual workflow builder and execution dashboard for LLM agents. Connect local models (Ollama) and cloud APIs (OpenAI) to design, simulate, trace, and debug complex multi-step agent chains entirely from a stunning dark-themed glassmorphism interface.
- Interactive Node Canvas: Drag, connect, configure, and delete nodes. Complete layout state is computed instantly.
- Parallel Execution Engine: Concurrently run independent workflow branches with custom
maxConcurrencylimits and fail-fast abort mechanics. - Multi-Provider Integration: Direct input fields for Ollama (
localhost:11434) and OpenAI. - Visual Execution Tracer: See exactly where your agent chain is executing. Active nodes highlight in real-time (
pending➔running➔completed/failed). - Advanced Nodes: Built-in support for Router, VectorDB (cosine similarity lookup), JSONPath extraction, and Tool nodes (Calculator, Web Search).
- Execution History & Replay: Review history logs, token usage, and status badges of past runs with a single click.
- Graceful Simulator Mode: Toggle simulated responses to test layout, logic, routing, and prompt structures without consuming API tokens or running local instances.
- Flow Serialization: Instantly export your agent graphs to a JSON file and import them back to continue editing.
OmniAgent Studio is styled with a premium developer dashboard look:
- Glassmorphic panels with backdrop-blur and thin high-contrast borders.
- Dynamic accents (emerald for successful steps, amber for running, slate for pending).
- Responsive design featuring a collapsible side parameters pane and collapsible trace logs console.
src/
├── components/ # React layout elements
│ ├── Canvas.tsx # Editor canvas rendering nodes and edges
│ ├── ConfigPanel.tsx # Dynamic side forms matching selected node type
│ ├── Node.tsx # Node component with custom styling and labels
│ ├── Sidebar.tsx # Sidebar containing node presets & workspace controls
│ └── TracingConsole.tsx # Collapsible tracing console for step-by-step logs
├── store/
│ └── graphStore.ts # Central Zustand-style state management
├── services/
│ ├── api.ts # Ollama/OpenAI local connector client
│ └── executor.ts # Topological traversal execution engine
├── utils/
│ └── graphUtils.ts # Topological sorting and cycle detection
└── types/
└── index.ts # TypeScript interface contracts for graphs & traces
git clone https://github.com/demmagence/omniagent-studio.git
cd omniagent-studionpm installnpm run devOpen your browser and navigate to http://localhost:5173.
OmniAgent Studio is rigorously tested across 4 tiers:
- Core Features: Graph state logic, node addition/deletion, connection rules.
- Boundary & Edge Cases: Loop/cycle detection, execution timeout, empty configurations.
- Integration & Tracing: Prompt interpolation, conditional routing, tool outputs.
- Real-world Scenarios: Multi-step chains, serialization export/import preservation.
To run tests:
npm run testContributions are welcome! Please open an issue or submit a pull request for any features, bug fixes, or enhancements.
This project is licensed under the MIT License.