Documentation
CLI Reference
spark disable

spark disable

Remove Spark from the current project.

Synopsis

spark disable

Description

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 disable

Disable and verify

spark disable
spark status

The 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 enable

Related commands