create-agentverse-agent

A CLI tool to scaffold production-ready uAgents with best practices baked in

View the Project on GitHub tejus3131/create-agentverse-agent

Usage Guide

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:


Quick Start with Defaults

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.


Advanced Configuration Mode

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.


CLI Options Reference

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

Overwrite Existing Project

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.


Debug Mode

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.


Examples

Create a new agent interactively

uvx create-agentverse-agent

Quick prototype in current directory

uvx create-agentverse-agent -d

Full configuration with overwrite

uvx create-agentverse-agent -a -o

Debug a failing scaffold

uvx create-agentverse-agent --debug

Next Steps

Learn about what gets generated in Generated Structure.