Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MineCode

**MineCode** 是一个极简的 AI 代码生成代理,使用 Java 17 实现。项目灵感来自 [NanoCoder](https://github.com/he-yufeng/NanoCoder)(基于 Claude Code 设计)和 [AgentScope](https://github.com/alibaba/AgentScope) 的架构思想,将其核心设计模式提炼为一个可读、可学习、可扩展的代码代理框架。
**MineCode** 是一个极简的 AI 代码生成代理,使用 Java 21 实现。项目灵感来自 [NanoCoder](https://github.com/he-yufeng/NanoCoder)(基于 Claude Code 设计)和 [AgentScope](https://github.com/alibaba/AgentScope) 的架构思想,将其核心设计模式提炼为一个可读、可学习、可扩展的代码代理框架。

## 核心理念

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<description>Minimal AI coding agent in Java, inspired by Claude Code</description>

<properties>
<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<java.version>21</java.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jackson.version>2.15.2</jackson.version>
<slf4j.version>2.0.9</slf4j.version>
Expand Down
Loading