feat: opt claude

This commit is contained in:
2025-12-01 23:57:09 +08:00
parent 398ab1b515
commit f118cc1e9b
12 changed files with 1542 additions and 139 deletions

20
.claude/commands/build.md Normal file
View File

@@ -0,0 +1,20 @@
---
description: 构建整个 Maven 项目并运行测试
---
# Maven 项目构建和测试
执行以下操作:
1. 清理之前的构建文件
2. 编译整个项目(跳过测试)
3. 显示构建结果
4. 检查是否有编译错误
使用 Maven 命令:
```bash
mvn clean install -DskipTests
```
如果构建成功,输出项目的模块结构和构建时间。
如果有错误,分析错误信息并提供解决建议。