saveSkillsRootPath method

  1. @override
Future<void> saveSkillsRootPath(
  1. String path
)
override

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);
}