Wyrmx CLI is the official command-line interface for Wyrmx โ a modern, AI-assisted web framework built on FastAPI and Uvicorn.
With Wyrmx CLI, you can scaffold, generate, and manage full-stack or microservice projects without the usual setup headaches. From controllers and services to models and schemas, everything is automated so you can focus on building your application, not boilerplate.
Before installing Wyrmx CLI, make sure you have:
- Python 3.13 installed
- pipx (to install Wyrmx CLI globally)
- Poetry installed globally (for dependency management)
Install Wyrmx CLI globally with:
pipx install wyrmx-cliVerify installation
wyrmx --helpCreate a new project:
wyrmx new <project-name>
cd <project-name>Generate Common modules:
# Controllers / Services / Models / Schemas
wyrmx generate:controller <controller-name>
wyrmx generate:service <service-name>
wyrmx generate:model <model-name>
wyrmx generate:schema <schema-name>Run the server:
wyrmx run # defaults to http://127.0.0.1:8000Integrates LLMs via MCP to generate boilerplate directly in your projectโno copy-pasting from chat windows.
Spin up complete Wyrmx project structures with FastAPI + Uvicorn in seconds.
Generate controllers, services, models, schemas via simple CLI commands.
Decorators for request methods and pathsโskip repetitive endpoint wiring.
Alembic + SQLAlchemy for migrations and ORM usage
Poetry for dependency management
Pyright for pre-execution type checking
Pytest for testing, out of the box
No need to activate a venv each timeโthe CLI handles workflows.
Create boilerplate, run servers, and manage migrations with clear, concise commands.
