refactor: 移除多余依赖,统一 MUI 为唯一 UI 库
- 移除 radix-ui、clsx、tailwind-merge、class-variance-authority、react-router-dom - 前后端全面适配 MUI 组件,清理残留 Tailwind 工具类引用 - 优化 Agent Loop 引擎、IPC 处理器、Provider Adapter 等后端模块 - 新增 Agent 网络工具通用设计文档 v2
This commit is contained in:
@@ -219,8 +219,8 @@ Use tools when needed to gather information or perform actions. Think step by st
|
||||
let skipMeta = true;
|
||||
|
||||
for (const line of lines) {
|
||||
// 跳过元数据注释行(以 # 开头的非标题行)
|
||||
if (skipMeta && line.startsWith('#') && !line.startsWith('## ')) {
|
||||
// 跳过元数据注释行(以 # 开头且不跟另一个 # 的行,即只跳过一级标题)
|
||||
if (skipMeta && line.match(/^#[^#]/)) {
|
||||
continue;
|
||||
}
|
||||
skipMeta = false;
|
||||
|
||||
Reference in New Issue
Block a user