15 lines
554 B
Dart
15 lines
554 B
Dart
import '../command.dart';
|
|
|
|
Future<CommandResult> run(CommandContext context, List<String> 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);
|
|
}
|