A CLI tool to scaffold production-ready uAgents with best practices baked in
View the Project on GitHub tejus3131/create-agentverse-agent
There are multiple ways to install and run create-agentverse-agent. Choose the method that best fits your workflow.
The easiest way to use the tool — no installation required, similar to npx:
uvx create-agentverse-agent
This downloads and runs the latest version in an isolated environment. Perfect for one-off usage or trying out the tool.
Requirements: uv must be installed.
Install globally in an isolated environment:
pipx install create-agentverse-agent
create-agentverse-agent
Best for: Users who want the CLI always available without polluting their global Python environment.
Install directly with pip:
pip install create-agentverse-agent
create-agentverse-agent
Best for: Adding to existing projects or virtual environments.
Add as a dependency in a Poetry-managed project:
poetry add create-agentverse-agent
poetry run create-agentverse-agent
Best for: Projects already using Poetry for dependency management.
Check that the installation was successful:
create-agentverse-agent --version
You should see the current version number printed.
Once installed, head to the Usage Guide to learn how to create your first agent.