Scaffolding Templates¶
Agentomatic ships with 5 templates for quick agent creation.
Usage¶
# Interactive (with questionary installed)
agentomatic init my_agent
# Non-interactive
agentomatic init my_agent --template basic
Available Templates¶
basic — Minimal Agent¶
7 files. Best for quick prototyping.
full — All Override Files¶
11 files. Includes config, schemas, tools, custom api router.
rag — Retrieval-Augmented Generation¶
9 files. Two-stage pipeline: retrieve → generate.
chatbot — Conversational Agent¶
8 files. Conversation-aware with memory support.
custom — Framework-Agnostic¶
4 files. No LangGraph dependency — pure Python.