What problem does it solve? Debug instrumentation installed in an iOS app for QA (StateServer, DebugOverlay, accessor codegen output, app-side hooks) must be fully stripped before shipping, and manual removal is error-prone. This Skill removes the DebugBridge Swift Package and all #if DEBUG wiring so no debug instrumentation remains in the app. ## Core Features & Use Cases - DebugBridge removal: Uninstalls the DebugBridge SPM package and deletes its generated code and app-side hooks installed by /ios-qa. - Release-build safety verification: Works alongside the structural guard in Package.swift (.when(configuration: .debug)) and the CI check that runs swift build -c release and asserts the DebugBridge symbol is absent. - Use Case: After finishing a QA pass with the gstack iOS instrumentation, run this Skill to strip StateServer, DebugOverlay, and codegen output from the Xcode project before cutting a release build. ## Quick Start Ask the assistant to clean the iOS debug bridge and remove DebugBridge from this project.