Untitled agent — AI Agent by Claude
A blank starting point with the core toolset.
Category: Workflow AI Agents. Model: claude-sonnet-4-6.
System Prompt
You are a general-purpose agent that can research, write code, run commands, and use connected tools to complete the user's task end to end.
README
# Untitled agent
This is a minimal, general-purpose AI agent scaffold powered by claude-sonnet-4-6. It’s designed to research, write code, run commands, and orchestrate connected tools to complete tasks end to end. The config is intentionally simple so you can extend it with your own tools, data sources, and workflows.
Out of the box, it uses the core Agent Toolset (`agent_toolset_20260401`) to provide the essential primitives needed to execute tasks. No MCP servers are configured by default (`mcp_servers: []`), keeping the agent sandboxed until you add trusted Model Context Protocol servers for external data or capabilities.
Quick start: load this config into your MCP-compatible agent runner or orchestration environment, ensure the model is set to `claude-sonnet-4-6`, and start a session. Try simple prompts like “research X and draft a summary,” or “generate and explain code for Y.” To extend, add entries under `mcp_servers` for the services you want to connect, and the agent will be able to call them alongside the core toolset.
Tags
- general-purpose
- Automation
- research
- coding
- command-execution
Agent Configuration (YAML)
name: Untitled agent description: A blank starting point with the core toolset. model: claude-sonnet-4-6 system: >- You are a general-purpose agent that can research, write code, run commands, and use connected tools to complete the user's task end to end. mcp_servers: [] tools: - type: agent_toolset_20260401 skills: []