Agent skill · AI & Agents

VoltAgent Development

Create and configure VoltAgent AI agents with tools, memory, hooks, and sub-agents. Use when building AI agents, adding agent tools, configuring VoltAgent memory, creating multi-agent workflows, or debugging VoltAgent integrations.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill voltagent-colinmollenhour-dotfiles-3 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/agent/voltagent-colinmollenhour-dotfiles-3/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# VoltAgent Development ## What This Skill Does Guides development of VoltAgent-based AI agents including: - Agent creation and configuration - Tool development with Zod schemas - Memory persistence with LibSQL - Multi-agent orchestration with sub-agents - Lifecycle hooks and guardrails - Streaming and structured output ## Prerequisites - `@voltagent/core` package - AI SDK provider (e.g., `@ai-sdk/anthropic`, `@ai-sdk/openai`) - `zod` for schema validation --- ## Quick Start ### Basic Agent ```typescript import { Agent } from '@voltagent/core' import { anthropic } from '@ai-sdk/anthropic' const agent = new Agent({ name: 'Assistant', instructions: 'You are a helpful assistant.', model: anthropic('claude-3-5-haiku-20241022'), }) const result = await agent.generateText('Hello!') console.log(result.text) ``` ### Agent with Tools ```typescript import { Agent, createTool } from '@voltagent/core' import { z } from 'zod' const weatherTool = createTool({ name: 'get_weather', description: 'Get current weather for a location', parameters: z.object({ location: z.string().describe('The city name'), }), execute: async ({ location }) => { return { location, temperature: 72, conditions: 'sunny' }

What's inside
Steps it walks through
  1. What This Skill Does
  2. Prerequisites
  3. Quick Start
  4. Basic Agent
  5. Agent with Tools
  6. Tool Development
  7. Basic Tool Pattern
  8. Tool with Database Access (Project Pattern)
  9. Tool with Cancellation Support
  10. Critical Rules
  11. ✅ DO
  12. ❌ DON'T
  13. Project Architecture
  14. Environment Variables
Ships with 1 file
  • metadata.json
Commands it runs
Required for Anthropic (accessed directly by AI SDK)
More from claude-skill-registry
All skills →
About this skill
What does the VoltAgent Development skill do?

Create and configure VoltAgent AI agents with tools, memory, hooks, and sub-agents. Use when building AI agents, adding agent tools, configuring VoltAgent memory, creating multi-agent workflows, or debugging VoltAgent integrations.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill voltagent-colinmollenhour-dotfiles-3 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going