Install and Quickstart
Install
Use the public worai installer scripts. They install or upgrade worai through pipx and persist the pipx/worai PATH entries in your shell profile when needed.
macOS and Linux
curl -fsSL https://raw.githubusercontent.com/wordlift/worai-install/main/install-worai.sh | bash
For immediate use in the current shell, reload your shell profile:
source ~/.zshrc
or:
source ~/.bashrc
Then run:
worai --help
Windows PowerShell
irm https://raw.githubusercontent.com/wordlift/worai-install/main/install-worai.ps1 | iex
Open a new PowerShell session if this is your first pipx install, then run:
worai --help
Verify before running
If you want to inspect the installer before executing it:
curl -fsSL -o /tmp/install-worai.sh https://raw.githubusercontent.com/wordlift/worai-install/main/install-worai.sh && less /tmp/install-worai.sh && bash /tmp/install-worai.sh
irm https://raw.githubusercontent.com/wordlift/worai-install/main/install-worai.ps1 -OutFile $env:TEMP\install-worai.ps1; notepad $env:TEMP\install-worai.ps1; & $env:TEMP\install-worai.ps1
Manual fallback
If you prefer to manage Python tooling yourself, install worai with pipx:
pipx install worai
If you plan to run seocheck, install Playwright browsers:
playwright install chromium
Quick Start
worai --help
worai seocheck https://example.com/sitemap.xml
worai google-search-console --site sc-domain:example.com --client-secrets ./client_secrets.json
worai self update --check-only
worai <command> --help
Autocompletion
worai --install-completion
worai --show-completion