CLI Reference
wagents CLI commands and usage
The wagents CLI manages AI agent assets in this repository.
Installation
Section titled “Installation”-
Clone the repository:
Terminal window git clone https://github.com/wyattowalsh/agents.gitcd agents -
Install with uv:
Terminal window uv sync -
Verify installation:
Terminal window uv run wagents --version
Commands
Section titled “Commands”Create new assets from reference templates.
wagents new skill <name> # Create a new skillwagents new agent <name> # Create a new agentwagents new mcp <name> # Create a new MCP serverManage the documentation site.
wagents docs init # One-time: pnpm install in docs/wagents docs generate # Generate MDX content pageswagents docs dev # Generate + launch dev serverwagents docs build # Generate + static buildwagents docs preview # Generate + build + preview serverwagents docs clean # Remove generated content pagesValidate all skills and agents frontmatter.
wagents validateGenerate or check the README.
wagents readme # Regenerate README.mdwagents readme --check # Check if README is up to dateRepository Structure
Section titled “Repository Structure”Directoryskills/
Directory<name>/
- SKILL.md
Directoryreferences/ (optional)
- …
Directoryagents/
- <name>.md
Directorymcp/
Directory<name>/
- server.py
- pyproject.toml
- fastmcp.json
Directorydocs/ (this site)
- …
Directorywagents/ (CLI source)
- cli.py