Skip to main content

macOS

Run the uninstall script:
curl -fsSL https://argentos.ai/uninstall.sh | bash -s --
This removes:
  • /Applications/Argent.app
  • Gateway, Redis, and monitoring LaunchAgents
  • CLI wrappers (argent, argentos)
  • Private Node.js runtime
  • App UserDefaults
Your data is preserved by default — memory, configuration, and workspace files stay in ~/.argentos/.

Full Removal (including data)

To also delete your memory database, config, logs, and workspace:
curl -fsSL https://argentos.ai/uninstall.sh | bash -s -- --remove-data
This will ask you to type DELETE to confirm. To skip confirmation:
curl -fsSL https://argentos.ai/uninstall.sh | bash -s -- --remove-data --force

What Gets Removed

ItemPathRemoved
Argent.app/Applications/Argent.appYes
Gateway service~/Library/LaunchAgents/ai.argent.gateway.plistYes
Redis service~/Library/LaunchAgents/ai.argent.redis.plistYes
Curiosity monitor~/Library/LaunchAgents/ai.argent.curiosity-monitor.plistYes
CLI wrappers~/bin/argent, ~/bin/argentosYes
Source checkout~/argentos/Yes
Private Node runtime~/.argentos/runtime/Yes
App preferencesUserDefaults ai.argent.macYes
Config & memory~/.argentos/Only with --remove-data
Workspace~/argent/Only with --remove-data

What Is NOT Removed

PostgreSQL, Redis, and Homebrew are not removed because they may be used by other applications. To remove them manually:
brew uninstall postgresql@17 pgvector redis

Manual Removal

If you prefer to remove everything manually:
# Stop services
osascript -e 'tell application "Argent" to quit'
launchctl bootout gui/$(id -u) ~/Library/LaunchAgents/ai.argent.gateway.plist
launchctl bootout gui/$(id -u) ~/Library/LaunchAgents/ai.argent.redis.plist

# Remove app and services
rm -rf /Applications/Argent.app
rm -f ~/Library/LaunchAgents/ai.argent.*.plist

# Remove CLI
rm -f ~/bin/argent ~/bin/argentos

# Remove source and runtime
rm -rf ~/argentos ~/.argentos/runtime

# Clear preferences
defaults delete ai.argent.mac

# Optional: remove all data
rm -rf ~/.argentos ~/.argent ~/argent

Linux

Coming soon. The Linux uninstall will remove systemd user services, CLI wrappers, and optionally data. PostgreSQL and Redis system packages will not be removed.

Windows

Coming soon. The Windows uninstall will remove the Scheduled Task, CLI wrappers, and optionally data. PostgreSQL and Memurai system services will not be removed.