Files
claude-code/src/main/java/com/claudecode/command/impl/ThemeCommand.java
T
abel533andCopilot 9f4023bdf0 refactor: apply BaseSlashCommand to all 54 command implementations
- implements SlashCommand -> extends BaseSlashCommand (all 54 files)
- Replace CommandUtils.parseArgs/args null checks -> args(args)
- Replace agentLoop null checks -> requireAgentLoop(context)/noSession()
- Replace context.agentLoop().getToolContext() -> toolCtx(context)
- Replace CommandUtils.success/error/header/subtitle/warning/info -> instance methods
- Remove unused CommandUtils/AnsiStyle imports where applicable
- 87 tests passing, zero compilation errors

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-05 13:16:55 +08:00

53 lines
1.7 KiB
Java

package com.claudecode.command.impl;
import com.claudecode.command.CommandContext;
import com.claudecode.command.BaseSlashCommand;
import com.claudecode.console.AnsiStyle;
/**
* /theme 命令 —— 切换主题(dark/light/auto)。
*/
public class ThemeCommand extends BaseSlashCommand {
@Override
public String name() { return "theme"; }
@Override
public String description() { return "Switch color theme (dark/light/auto)"; }
@Override
public String execute(String args, CommandContext context) {
if (requireAgentLoop(context) == null) {
return noSession();
}
var toolCtx = toolCtx(context);
String current = (String) toolCtx.get("THEME");
if (current == null) current = "dark";
String trimmed = args(args).toLowerCase();
if (trimmed.isEmpty()) {
return "\n" + AnsiStyle.bold(" 🎨 Theme Settings\n")
+ " " + "─".repeat(30) + "\n\n"
+ " Current: " + AnsiStyle.cyan(current) + "\n"
+ " Options: " + AnsiStyle.dim("dark, light, auto") + "\n"
+ "\n" + AnsiStyle.dim(" Usage: /theme <dark|light|auto>");
}
if (!trimmed.equals("dark") && !trimmed.equals("light") && !trimmed.equals("auto")) {
return AnsiStyle.yellow(" Unknown theme: " + trimmed)
+ "\n" + AnsiStyle.dim(" Options: dark, light, auto");
}
toolCtx.set("THEME", trimmed);
String icon = switch (trimmed) {
case "dark" -> "🌙";
case "light" -> "☀️";
case "auto" -> "🔄";
default -> "🎨";
};
return AnsiStyle.green(" ✓ Theme set to " + trimmed + " " + icon);
}
}