Installation
Install the YeePilot DevOps CLI, verify the binary, and start a guarded AI server operations workflow.
Quick Install
Install YeePilot with the official installer:
curl -fsSL https://yee.to/install.sh | bashThe installer:
- asks you to accept the YeePilot EULA before continuing
- detects your operating system and CPU architecture
- downloads the matching public release
- verifies the release checksum when checksum data is available
- installs to
~/.local/bin/yeepilotby default - creates the short alias
yee -> yeepilot - adds
~/.local/binto your shellPATHwhen needed
If you intentionally want a system-wide install path, run the installer with
INSTALL_DIR=/usr/local/bin.
After installation, yeepilot legal prints the current terms, privacy, and EULA links from the client.
Supported Platforms
YeePilot ships native binaries for:
- Linux (
amd64,arm64) - macOS (
amd64,arm64) - Windows (
amd64,arm64)
Verify Installation
yeepilot versionYou should see version/build metadata.
If your shell cannot find yeepilot immediately after installation, open a new terminal window or run:
export PATH="$HOME/.local/bin:$PATH"First Setup
Run the setup wizard:
yeepilot setupThe wizard configures:
- AI provider and model
- API credentials
- language/preferences
- platform authentication linkage
If you only need to manage platform login later:
yeepilot setup --authStart Using YeePilot
Interactive TUI session:
yeepilot
yeepilot runShort alias (when installed with the official installer, which creates yee -> yeepilot):
yeeOne-shot execution:
yeepilot exec "show the largest files in this repository"
yee exec "show the largest files in this repository"Manual Update and Uninstall
Update to the latest signed public release:
yeepilot updateCheck availability without installing:
yeepilot update --checkRollback to previous binary:
yeepilot update --rollbackYeePilot also checks for updates on startup when automatic checks are enabled. If a newer version is available, the client keeps the notice visible after the intro so you can run the update command when ready.
Uninstall options:
yeepilot uninstall --all
yeepilot uninstall --keep-config
yeepilot uninstall --binary-only