Xcode26.3 (#125)#8
Closed
johnno1962 wants to merge 1 commit into
Closed
Conversation
* Streamline DLKit.appImages. * Xcode 26.3 * Bump version for log parsing changes. * Restructure. * Fallback to builtin swiftc. * Afterthoughts. * Simplify, simplify. * feat(Xcode26.3): Fix The Bazel ✏️ (#130) * Add MCP server for AI-driven control of InjectionNext (#129) * Add MCP server for AI-driven control of InjectionNext - ControlServer: local TCP server (localhost:8919) that exposes app actions as JSON commands (watch project, enable devices, get status, etc.) - LogBuffer: ring buffer capturing injection logs, compilation errors, and file watcher activity for AI consumption - MCP server (Node.js): 13 tools exposing InjectionNext to AI agents via the Model Context Protocol (get_status, watch_project, get_logs, etc.) - Hook log() and InjectionServer.log/error into LogBuffer for real-time debug console access Made-with: Cursor * Update README.md * Address review: opt-in mcpServer default, harden ControlServer - Add Defaults.mcpServer boolean (set via `defaults write`); ControlServer and LogBuffer only start when enabled. - Make LogBuffer.shared optional; all call sites use optional chaining. - Clamp get_logs limit to 0...500 to prevent negative/overflow traps. - Add 64KB max request size guard on TCP read loop. - Add zod as direct dependency and engines field in package.json. - Update README with enable step and correct Node.js version. Made-with: Cursor * Bump InjectionLite. --------- Co-authored-by: Matheus Gois <matheus.gois@doordash.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Streamline DLKit.appImages.
Xcode 26.3
Bump version for log parsing changes.
Restructure.
Fallback to builtin swiftc.
Afterthoughts.
Simplify, simplify.
feat(Xcode26.3): Fix The Bazel ✏️ (Fix Bazel hot-reload: handle .swift-suffixed include paths and stale -o flags johnno1962/InjectionNext#130)
Add MCP server for AI-driven control of InjectionNext (Add MCP server for AI-driven control of InjectionNext johnno1962/InjectionNext#129)
Add MCP server for AI-driven control of InjectionNext
Made-with: Cursor
Update README.md
Address review: opt-in mcpServer default, harden ControlServer
defaults write); ControlServer and LogBuffer only start when enabled.Made-with: Cursor