import chalk from "chalk"; import { ConversationContext } from "../types.js"; export async function handleClear(ctx: ConversationContext): Promise { console.clear(); console.log(chalk.blue.bold("\n" + "=".repeat(60))); console.log(chalk.blue.bold(" 屏幕已清空")); console.log(chalk.blue.bold("=".repeat(60) + "\n")); }