Documentation
CLI Reference
spark uninstall

spark uninstall

Completely remove Spark CLI and all integrations from your system.

Synopsis

spark uninstall

Description

spark uninstall performs a complete removal of Spark from your system. It removes all IDE integrations, configuration files, and the CLI binary itself. This is a destructive operation — after running it, you will need to reinstall from scratch.

The uninstall process runs in this order: uninstall the Claude Code plugin, uninstall agent skills, remove settings files, run npm uninstall -g @memco/spark, and delete any .spark directories.

Your contributions to the knowledge network are not affected. Solutions you have shared remain available to the community even after uninstalling.

⚠️

This removes all Spark configuration from your system including stored credentials. Make sure you want a complete removal before running this command. To remove Spark from a single project only, use spark disable instead.

Arguments

This command has no arguments.

Flags

This command has no additional flags beyond global flags.

What gets removed

ComponentLocation
Claude Code pluginIDE marketplace
Agent skills.agents/skills/ and .claude/skills/
Settings files.spark/settings.json (project and global)
CLI binaryGlobal npm installation
.spark directoriesProject and home directory

Examples

Complete uninstall

spark uninstall

Verify removal

which spark
# Should return nothing or "not found"

Reinstall after uninstalling

npm install -g @memco/spark
spark login
spark init

Related commands