A CLI tool to scaffold production-ready uAgents with best practices baked in
View the Project on GitHub tejus3131/create-agentverse-agent
This guide covers all CLI options and common usage patterns.
Launch the interactive wizard to configure your agent step by step:
uvx create-agentverse-agent
The wizard will guide you through:
Skip all prompts and generate an agent using sensible defaults:
uvx create-agentverse-agent --default
# or
uvx create-agentverse-agent -d
Best for: Rapid prototyping, automation, or CI pipelines.
Enable advanced mode to access all available configuration options:
uvx create-agentverse-agent --advanced
# or
uvx create-agentverse-agent -a
This unlocks additional options not shown in standard interactive mode.
| Option | Short | Description |
|---|---|---|
--default |
-d |
Use default values, skip prompts |
--advanced |
-a |
Show all configuration options |
--overwrite |
-o |
Overwrite existing project directory |
--debug |
Enable debug logging | |
--version |
-v |
Show version and exit |
--help |
Show help message |
If a project already exists in the target directory:
uvx create-agentverse-agent --overwrite
# or
uvx create-agentverse-agent -o
⚠️ Warning: This will replace existing files without prompting.
Run with debug logging enabled for troubleshooting:
uvx create-agentverse-agent --debug
This creates a detailed log file in the current directory:
create-agentverse-agent-<version>-cli-execution-<uuid>.log
Useful for: Troubleshooting issues or filing bug reports.
uvx create-agentverse-agent
uvx create-agentverse-agent -d
uvx create-agentverse-agent -a -o
uvx create-agentverse-agent --debug
Learn about what gets generated in Generated Structure.