amodal init
Initialize a new Amodal agent project. Creates the .amodal/ directory structure with starter files based on your product type.
amodal initWhat It Creates
.amodal/
├── config.json ← agent name, provider, model
├── skills/ ← starter skill template
├── knowledge/ ← sample knowledge document
├── connections/ ← empty, ready for connections
├── tools/ ← empty, ready for custom tools
└── evals/ ← empty, ready for test casesInteractive Mode
The init command uses interactive prompts to configure your project:
- Product type (operations, finance, security, custom)
- Agent name and description
- LLM provider preference
Templates are customized based on the product type — a security agent gets different starter skills than a finance agent.
Non-Interactive
For CI or scripting:
amodal init --name "Ops Agent" --type operations