mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-28 07:16:53 +05:00
Add file editing capabilities: - EditLinesTool: replace lines with hash conflict detection - CreateFileTool: create files with directory auto-creation - DeleteFileTool: delete files from filesystem and storage Total: 664 tests, 97.77% coverage
5 lines
247 B
TypeScript
5 lines
247 B
TypeScript
// Edit tools exports
|
|
export { EditLinesTool, type EditLinesResult } from "./EditLinesTool.js"
|
|
export { CreateFileTool, type CreateFileResult } from "./CreateFileTool.js"
|
|
export { DeleteFileTool, type DeleteFileResult } from "./DeleteFileTool.js"
|