---
title: "Agent Templates"
description: "Templates provide pre configured agent setups for common use cases. Optimized for web research and information gathering. Pre configured for search and summarization Includes web access permissions Default model: claude "
resource: https://www.aiagents.nexus/docs/manual/agents/agent-templates
generated: { by: "process:nexus-agent-assets", at: 2026-09-07T09:13:03Z }
status: stable
---

# Agent Templates

Templates provide pre-configured agent setups for common use cases.

## Built-in Templates

### researcher
Optimized for web research and information gathering.
```bash
naos create my-researcher --template researcher
```
- Pre-configured for search and summarization
- Includes web access permissions
- Default model: claude-3-sonnet

### analyzer
Optimized for data analysis and reporting.
```bash
naos create my-analyzer --template analyzer
```
- Pre-configured for data processing
- Includes file read permissions
- Default model: claude-3-haiku

### coder
Optimized for code generation and review.
```bash
naos create my-coder --template coder
```
- Pre-configured for code tasks
- Includes file read/write permissions
- Default model: claude-3-sonnet

### planner
Optimized for task decomposition and planning.
```bash
naos create my-planner --template planner
```
- Pre-configured for planning workflows
- Minimal permissions
- Default model: claude-3-haiku

### custom
Blank template for custom agents.
```bash
naos create my-custom --template custom
```
- No pre-configuration
- No default permissions
- You define everything

## Listing Templates

```bash
naos templates

# NAME         DESCRIPTION
# researcher   Web research and summarization
# analyzer     Data analysis and reporting
# coder        Code generation and review
# planner      Task planning and decomposition
# custom       Blank template
```
