import '../command.dart'; Future run(CommandContext context, List args) async { context.writeLine("Skills"); context.writeLine(""); context.writeLine( "Skills are reusable prompt templates that can be invoked as slash commands.", ); context.writeLine("The interactive skills browser is not ported to the Dart CLI runtime."); context.writeLine(""); context.writeLine( "In the legacy CLI, skills are loaded from ~/.claude/skills/ or project .claude/skills/.", ); return const CommandResult(exitCode: 2); }