Skip to Content
ReferenceUninstall

Uninstall

npm global install

If you installed proto with npm install -g proto:

npm uninstall -g proto

npx 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 -Force

Remove configuration and data

rm -rf ~/.proto/ # global settings, memory, agents, skills rm -rf ~/.proto/memory/ # just global memory

For project-scoped data, delete the .proto/ directory in the project root.

Remove beads task data:

rm -rf .beads/ # task database for this project
Last updated on