@@ -68,7 +68,7 @@ part 'tool_handlers/bug_report_handlers.dart';
6868part 'tool_handlers/fixture_handlers.dart' ;
6969part 'tool_handlers/explore_handlers.dart' ;
7070
71- const String currentVersion = '0.9.32 ' ;
71+ const String currentVersion = '0.9.33 ' ;
7272
7373/// Session information for multi-session support
7474class SessionInfo {
@@ -1020,8 +1020,8 @@ class FlutterMcpServer {
10201020 'no isolates found' ,
10211021 'connection refused' ,
10221022 'timeout' ,
1023- 'rpcerror' , // errors from target app, not flutter-skill itself
1024- 'server error' , // RPC server errors from target app
1023+ 'rpcerror' , // errors from target app, not flutter-skill itself
1024+ 'server error' , // RPC server errors from target app
10251025 ];
10261026
10271027 // Check if it's a critical error
@@ -1067,7 +1067,8 @@ class FlutterMcpServer {
10671067// ==================== CLI Error Formatting ====================
10681068
10691069/// Print a structured, actionable CLI error to stderr.
1070- void _printCliError (String title, String detail, {List <String > fixes = const []}) {
1070+ void _printCliError (String title, String detail,
1071+ {List <String > fixes = const []}) {
10711072 stderr.writeln ('' );
10721073 stderr.writeln ('❌ $title ' );
10731074 stderr.writeln ('' );
@@ -1086,8 +1087,8 @@ void _printCliError(String title, String detail, {List<String> fixes = const []}
10861087
10871088/// Acquire a lock file to prevent multiple server instances
10881089Future <File ?> _acquireLock () async {
1089- final home = Platform .environment[ 'HOME' ] ??
1090- Platform .environment['USERPROFILE' ];
1090+ final home =
1091+ Platform .environment['HOME' ] ?? Platform .environment[ ' USERPROFILE' ];
10911092 if (home == null ) return null ;
10921093
10931094 final lockFile = File ('$home /.flutter_skill.lock' );
0 commit comments