gitextract_vqy0p27r/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── .swiftpm/ │ └── xcode/ │ └── package.xcworkspace/ │ └── contents.xcworkspacedata ├── App/ │ ├── InjectionBundle/ │ │ ├── Info.plist │ │ └── InjectionBundle-Bridging-Header.h │ ├── InjectionNext/ │ │ ├── App.icns │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── MainMenu.xib │ │ ├── ControlServer.swift │ │ ├── Defaults.swift │ │ ├── Experimental.swift │ │ ├── FrontendServer.swift │ │ ├── Info.plist │ │ ├── InjectionBusy.tif │ │ ├── InjectionError.tif │ │ ├── InjectionHybrid.swift │ │ ├── InjectionIdle.tif │ │ ├── InjectionNext-Bridging-Header.h │ │ ├── InjectionNext.entitlements │ │ ├── InjectionOK.tif │ │ ├── InjectionReady.tif │ │ ├── InjectionServer.swift │ │ ├── MonitorXcode.swift │ │ ├── NextCompiler.swift │ │ ├── build_bundle.sh │ │ ├── build_bundles.sh │ │ ├── copy_bundle.sh │ │ ├── main.m │ │ └── swift-frontend.sh │ ├── InjectionNext.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── InjectionNext.xcscheme │ ├── LICENSE │ ├── NIMBLE.md │ ├── QUICK.md │ └── feedcommands/ │ └── main.mm ├── BAZEL.md ├── INTRO.md ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ ├── InjectionNext/ │ │ └── InjectionNext.swift │ └── InjectionNextC/ │ ├── ClientBoot.mm │ ├── SimpleSocket.mm │ └── include/ │ ├── InjectionClient.h │ └── SimpleSocket.h ├── Tests/ │ └── InjectionNextTests/ │ └── InjectionNextTests.swift └── mcp-server/ ├── .gitignore ├── README.md ├── index.js └── package.json