Skip to content

CLI Reference

wagents CLI commands and usage

The wagents CLI manages AI agent assets in this repository.

  1. Clone the repository:

    Terminal window
    git clone https://github.com/wyattowalsh/agents.git
    cd agents
  2. Install with uv:

    Terminal window
    uv sync
  3. Verify installation:

    Terminal window
    uv run wagents --version

Create new assets from reference templates.

Terminal window
wagents new skill <name> # Create a new skill
wagents new agent <name> # Create a new agent
wagents new mcp <name> # Create a new MCP server
  • 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