saveSkillsRootPath method
Saves the root directory path for skill ZIP storage (desktop/mobile).
Implementation
@override
Future<void> saveSkillsRootPath(String path) async {
final prefs = await _instance;
await prefs.setString('mcp_playground_skills_root_path', path);
}