/gaia-bridge-disable

user-facing
Category:
Configuration
Lifecycle phase:
Any

What 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-ci first.

How to invoke

/gaia-bridge-disable

What it does step by step

  1. Read current state Checks the current bridge_enabled value.
  2. Check idempotency If already disabled, reports the state and exits.
  3. Flip the flag Sets bridge_enabled from true to false, preserving formatting.
  4. 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

OutputLocationDescription
Updated configuration.gaia/config/project-config.yamlThe 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.