feat: 新增 6 个工具并重组目录结构

新增工具:
- grep_content: 在文件内容中搜索文本/正则表达式
- get_file_info: 获取文件元信息(大小、权限、时间等)
- move_file: 移动或重命名文件/目录
- copy_file: 复制文件或目录(支持递归)
- delete_file: 删除文件或目录
- create_directory: 创建目录

目录重组:
- src/tools/shell/ - Shell 相关工具(bash)
- src/tools/filesystem/ - 文件系统工具(12个)
- 每个子目录有独立的 index.ts 导出

权限系统扩展:
- 新增操作类型: grep, info, move, copy, mkdir
- 读取类操作默认允许,写入类操作需要确认
This commit is contained in:
2025-12-10 18:25:02 +08:00
parent 60a046357b
commit e435b2f8f8
23 changed files with 819 additions and 29 deletions
+83
View File
@@ -0,0 +1,83 @@
import * as fs from 'fs/promises';
import * as path from 'path';
import type { Tool, ToolResult } from '../../types/index.js';
import { loadDescription } from '../load_description.js';
import { getPermissionManager } from '../../permission/index.js';
export const createDirectoryTool: Tool = {
name: 'create_directory',
description: loadDescription('create_directory'),
parameters: {
path: {
type: 'string',
description: '要创建的目录路径',
required: true,
},
},
execute: async (params: Record<string, unknown>): Promise<ToolResult> => {
const dirPath = params.path as string;
const cwd = process.cwd();
const absolutePath = path.isAbsolute(dirPath)
? dirPath
: path.join(cwd, dirPath);
// 权限检查
const permissionManager = getPermissionManager();
const permResult = await permissionManager.checkFilePermission({
operation: 'mkdir',
path: absolutePath,
workdir: cwd,
});
if (!permResult.allowed) {
if (permResult.needsConfirmation) {
return {
success: false,
output: '',
error: `需要用户确认: 创建目录 ${absolutePath}\n原因: ${permResult.reason || '需要权限确认'}`,
};
}
return {
success: false,
output: '',
error: `权限被拒绝: ${permResult.reason || '不允许创建此目录'}`,
};
}
try {
// 检查目录是否已存在
try {
const stats = await fs.stat(absolutePath);
if (stats.isDirectory()) {
return {
success: true,
output: `目录已存在: ${absolutePath}`,
};
} else {
return {
success: false,
output: '',
error: `路径已存在且不是目录: ${absolutePath}`,
};
}
} catch {
// 目录不存在,继续创建
}
// 创建目录(递归创建父目录)
await fs.mkdir(absolutePath, { recursive: true });
return {
success: true,
output: `已创建目录: ${absolutePath}`,
};
} catch (error) {
return {
success: false,
output: '',
error: error instanceof Error ? error.message : String(error),
};
}
},
};