Conversation
…t scanning, and async diagnostics Eliminate redundant subprocess spawns in McpProcessDetector by caching isListeningOnSocket result and adding a fast-path that checks for socket file existence before invoking lsof. Parallelize DefaultPortScanner commands with async/awaitAll and skip ss on macOS to avoid 2s timeout. Move DiagnosticsDashboard system checks off the UI thread into a LaunchedEffect with Dispatchers.IO and increase the refresh interval from 2s to 30s. Extract ProcessRunner, SocketFileChecker, PortCommandRunner, and PlatformInfo interfaces to enable unit testing without real subprocesses. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The accessibility service observation stream stops sending updates when the device screen turns off because Android suppresses accessibility events for inactive displays. Register a BroadcastReceiver for ACTION_SCREEN_ON/OFF that triggers immediate hierarchy extraction so the push stream resumes on screen wake and sends a final snapshot on screen off. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
MCP BenchmarksOverall Status: ✅ PASSED Context Thresholds
Overall Status: ✅ PASSED Generated at 2026-02-08T21:07:43.841Z Tool Call ThroughputSample Size: 50 iterations per tool Fast Operations (<100ms)
Medium Operations (100ms-1s)
Slow Operations (1s+)
Summary: 7/7 tools passed Generated at 2026-02-08T21:08:11.013Z Startup PerformanceMCP Server (stdio)
Device discovery: skipped (not run) Daemon
Overall Status: ✅ PASSED Generated at 2026-02-08T21:07:50Z NPM Unpacked Size
Package: @kaeawc/auto-mobile@0.0.10 Overall Status: ✅ PASSED Generated at 2026-02-08T21:07:45.157Z |
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.
Summary
BroadcastReceiverforACTION_SCREEN_ON/ACTION_SCREEN_OFFin the accessibility service to trigger immediate hierarchy extraction when the screen state changesTest plan
./gradlew -p android :accessibility-service:assembleDebugcompiles (verified)observestream, turn screen off → IDE receives final hierarchy withaccessibilityServiceIncomplete: true🤖 Generated with Claude Code