Can flutter-skill see and understand Flutter DevTools? #31
-
|
As in title |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Not directly — but flutter-skill talks to your app via the Dart VM Service Protocol, which is the same underlying data source that DevTools uses. So there is significant overlap: What flutter-skill CAN access (same data source as DevTools):
What flutter-skill cannot currently access:
Workaround for the DevTools UI: If you open Flutter DevTools in Chrome, Roadmap: Surfacing the profiler, timeline, and network inspector data as dedicated MCP tools is planned. The VM Service protocol exposes all of it — it just needs to be wired up. |
Beta Was this translation helpful? Give feedback.
Not directly — but flutter-skill talks to your app via the Dart VM Service Protocol, which is the same underlying data source that DevTools uses. So there is significant overlap:
What flutter-skill CAN access (same data source as DevTools):
inspect,inspect_interactive)get_memory_stats)get_logs)What flutter-skill cannot currently access:
dart:ioHTTP overrides)Workaround for the DevTools UI: If you open Flutter DevTools in Chrome,
connect_cdp…