Uninstall
npm global install
If you installed proto with npm install -g proto:
npm uninstall -g protonpx cache
If you ran proto via npx without a global install, clear the npx cache:
macOS / Linux:
rm -rf "$(npm config get cache)/_npx"Windows (Command Prompt):
rmdir /s /q "%LocalAppData%\npm-cache\_npx"Windows (PowerShell):
Remove-Item -Path (Join-Path $env:LocalAppData "npm-cache\_npx") -Recurse -ForceRemove configuration and data
rm -rf ~/.proto/ # global settings, memory, agents, skills
rm -rf ~/.proto/memory/ # just global memoryFor project-scoped data, delete the .proto/ directory in the project root.
Remove beads task data:
rm -rf .beads/ # task database for this projectLast updated on