/gaia-bridge-disable
user-facingWhat it does
/gaia-bridge-disable disables the Test Execution Bridge by setting test_execution_bridge.bridge_enabled = false in your project configuration. This command is idempotent -- if the bridge is already disabled, it reports the current state without writing.
When to use it
- You want to disable real test execution and return to simulated test results.
- You are troubleshooting test runner issues and want to bypass the bridge temporarily.
Prerequisites
- The test_execution_bridge configuration block must exist. Run
/gaia-config-cifirst.
How to invoke
/gaia-bridge-disable
What it does step by step
- Read current state Checks the current bridge_enabled value.
- Check idempotency If already disabled, reports the state and exits.
- Flip the flag Sets bridge_enabled from true to false, preserving formatting.
- Report Confirms the bridge is now disabled.
Inputs
This command takes no arguments. The bridge state is read from .gaia/config/project-config.yaml.
Outputs
| Output | Location | Description |
|---|---|---|
| Updated configuration | .gaia/config/project-config.yaml | The bridge_enabled flag set to false. |
Example session
> /gaia-bridge-disable
Bridge disabled. Test execution bridge is now inactive.
What to run next
- Tests in development workflows will use simulated results.
Troubleshooting
test_execution_bridge block missing
Run /gaia-config-ci first.