spark disable
Remove Spark from the current project.
Synopsis
spark disableDescription
spark disable removes project-level Spark configuration from the current directory. This undoes what spark enable or spark init set up at the project level, including IDE integration files and local settings.
After disabling, your AI agent will no longer use Spark automatically in this project. Global configuration and authentication are not affected — only the current project is changed.
You can re-enable Spark at any time by running spark enable or spark init again.
Arguments
This command has no arguments.
Flags
This command has no additional flags beyond global flags.
Examples
Disable Spark in the current project
spark disableDisable and verify
spark disable
spark statusThe status output will show that no project-level configuration is active.
Temporarily disable for testing
# Disable to test without Spark
spark disable
# Run your tests without Spark integration
npm test
# Re-enable when done
spark enableRelated commands
spark enable— Quick project-level setupspark init— Interactive setup with IDE and scope selectionspark uninstall— Complete removal of Spark from your system- Global Flags — Flags available on all commands