Skip to content
@VoltAgent

VoltAgent

Open Source TypeScript AI Agent Framework

VoltAgent is an open source TypeScript framework for building and orchestrating AI agents.
Escape the limitations of no-code builders and the complexity of starting from scratch.

npm version Contributor Covenant Discord Twitter Follow


VoltAgent: Build AI Agents Fast and Flexibly

VoltAgent is an open-source TypeScript framework for creating and managing AI agents. It provides modular components to build, customize, and scale agents with ease. From connecting to APIs and memory management to supporting multiple LLMs, VoltAgent simplifies the process of creating sophisticated AI systems. It enables fast development, maintains clean code, and offers flexibility to switch between models and tools without vendor lock-in.

⚡ Quick Start

Create a new VoltAgent project in seconds using the create-voltagent-app CLI tool:

npm create voltagent-app@latest

This command guides you through setup.

You'll see the starter code in src/index.ts to get you started with the VoltAgent framework.

import { VoltAgent, Agent } from "@voltagent/core";
import { VercelAIProvider } from "@voltagent/vercel-ai"; // Example provider
import { openai } from "@ai-sdk/openai"; // Example model

// Define a simple agent
const agent = new Agent({
  name: "my-agent",
  description: "A helpful assistant that answers questions without using tools",
  // Note: You can swap VercelAIProvider and openai with other supported providers/models
  llm: new VercelAIProvider(),
  model: openai("gpt-4o-mini"),
});

// Initialize VoltAgent with your agent(s)
new VoltAgent({
  agents: {
    agent,
  },
});

Afterwards, navigate to your project and run:

npm run dev

Your agent is now running! To interact with it:

Click the VoltAgent Console link in your terminal output (or copy-paste it into your browser).

435419303-65a51ec9-62f1-4dea-a7cc-d0aa5064aec7

Pinned Loading

  1. voltagent voltagent Public

    Open Source TypeScript AI Agent Framework

    TypeScript 2.9k 265

  2. awesome-voltagent awesome-voltagent Public

    Carefully curated list of awesome VoltAgent resources ⚡️

    27 2

  3. awesome-claude-code-subagents awesome-claude-code-subagents Public

    Production-ready Claude subagents collection with 100+ specialized AI agents for full-stack development, DevOps, data science, and business operations.

    1.1k 122

Repositories

Showing 6 of 6 repositories
  • voltagent Public

    Open Source TypeScript AI Agent Framework

    VoltAgent/voltagent’s past year of commit activity
    TypeScript 2,897 MIT 265 32 (11 issues need help) 9 Updated Aug 14, 2025
  • awesome-claude-code-subagents Public

    Production-ready Claude subagents collection with 100+ specialized AI agents for full-stack development, DevOps, data science, and business operations.

    VoltAgent/awesome-claude-code-subagents’s past year of commit activity
    1,054 MIT 122 1 2 Updated Aug 7, 2025
  • awesome-voltagent Public

    Carefully curated list of awesome VoltAgent resources ⚡️

    VoltAgent/awesome-voltagent’s past year of commit activity
    27 2 0 0 Updated Aug 4, 2025
  • VoltAgent/voltagent-python’s past year of commit activity
    Python 7 MIT 0 0 0 Updated Jun 5, 2025
  • VoltAgent/vercel-ai-sdk-observability’s past year of commit activity
    TypeScript 5 MIT 0 0 0 Updated Jun 3, 2025
  • .github Public
    VoltAgent/.github’s past year of commit activity
    0 0 0 0 Updated Apr 20, 2025

Sponsors

  • @zrosenbauer
  • @999-Dev-Official
  • @necatiozmen

Most used topics

Loading…