Get started faster with pre-built agent templates. Each template includes the agent definition, context files, helper scripts, and everything you need to run a working agent.Documentation Index
Fetch the complete documentation index at: https://datagen.dev/llms.txt
Use this file to discover all available pages before exploring further.
In Claude Code, run
/datagen:fetch-agent to browse and install templates with guided setup.Browse Templates
Run the command without arguments to see all available templates:Install a Template
Specify a template ID to install it:Download Files
Fetches the template’s manifest and downloads all files to:
.claude/agents/<template-id>.md— the agent definition.datagen/<template-id>/— context, scripts, memory, and workspace files
Check Prerequisites
Identifies required MCP connections, secrets, and Python packages. Reports what’s ready and what’s missing.
After Installation
Connect Required MCPs
Templates may require external MCP servers (Gmail, Linear, Slack, etc.). Connect them before running:Configure Secrets
Some templates need API keys or credentials. Add them at DataGen Secrets.Run the Agent
Customizing Templates
Installed templates are fully editable:- Context files — Update
.datagen/<template-id>/context/with your domain knowledge - Scripts — Modify
.datagen/<template-id>/scripts/to change data processing logic - Agent definition — Edit
.claude/agents/<template-id>.mdto adjust reasoning and workflow - Memory — Upgrade the memory structure if you need more state management
Reusable Skills
Skills are smaller, reusable capabilities that any agent can use:.claude/skills/<skill-name>/ and can be composed into any agent. Unlike templates (which are complete agents), skills are building blocks — e.g., a product analysis skill, a lead scoring skill, or a data validation skill.