How to cleanly reinstall, reset, or remove Pllan.
# 1. Stop the gateway pllan daemon stop # 2. Remove Pllan + all state npm uninstall -g pllan rm -rf ~/.pllan # 3. Reinstall curl -fsSL https://pllan.ai/install.sh | bash # 4. Run onboarding pllan onboard
pllan onboard --reset --reset-scope full
rm -rf ~/.pllan/pllan.json pllan onboard
rm -rf ~/.pllan/agents/main/sessions pllan onboard --skip-channels --skip-skills --skip-search
# Stop the service pllan daemon stop pllan daemon uninstall # Remove the package npm uninstall -g pllan # Remove all data rm -rf ~/.pllan
# Check what's running on the port pllan daemon status # Kill stuck processes pkill -f "pllan-gateway\|node.*dist/entry" # Restart clean pllan daemon stop pllan gateway run
# Force stop pllan daemon stop pkill -9 -f pllan # Start fresh pllan daemon start
# Remove installed plugins and reinstall rm -rf ~/.pllan/extensions pllan onboard --skip-channels
# bash echo 'export PATH="$(npm config get prefix)/bin:$PATH"' >> ~/.bashrc source ~/.bashrc # zsh (macOS default) echo 'export PATH="$(npm config get prefix)/bin:$PATH"' >> ~/.zshrc source ~/.zshrc
node --version # Install Node 24 (recommended) # macOS: brew install node # Linux: curl -fsSL https://deb.nodesource.com/setup_24.x | sudo bash - && sudo apt install -y nodejs