other tools
代码理解工具
ReadCodeTool
// 小文件 (<10KB) - 返回完整内容
await readCode({ path: 'src/utils.ts' });
// 大文件 - 返回函数签名
await readCode({ path: 'src/large-file.ts' });
// 输出: function foo(), class Bar, const baz = ...
// 搜索特定符号
await readCode({
path: 'src/components/',
selector: 'Button',
});
// 输出: class Button 的完整实现