mirror of
https://github.com/Mintplex-Labs/anything-llm
synced 2026-04-25 17:15:37 +02:00
* wip * collector parse fixes * refactor for class and also operation for reading * add skill management panel * management panel + lint * management panel + lint * Hide skill in non-docker context * add ask-prompt for edit tool calls * fix dep * fix execa pkg (unused in codebase) * simplify search with ripgrep only and build deps * Fs skill i18n (#5264) i18n * add copy file support * fix translations
122 lines
4.1 KiB
JavaScript
122 lines
4.1 KiB
JavaScript
const fs = require("fs/promises");
|
|
const path = require("path");
|
|
const filesystem = require("./lib.js");
|
|
|
|
async function copyRecursive(source, destination) {
|
|
const stats = await fs.stat(source);
|
|
|
|
if (stats.isDirectory()) {
|
|
await fs.mkdir(destination, { recursive: true });
|
|
const entries = await fs.readdir(source);
|
|
for (const entry of entries) {
|
|
await copyRecursive(
|
|
path.join(source, entry),
|
|
path.join(destination, entry)
|
|
);
|
|
}
|
|
} else {
|
|
await fs.copyFile(source, destination);
|
|
}
|
|
}
|
|
|
|
module.exports.FilesystemCopyFile = {
|
|
name: "filesystem-copy-file",
|
|
plugin: function () {
|
|
return {
|
|
name: "filesystem-copy-file",
|
|
setup(aibitat) {
|
|
aibitat.function({
|
|
super: aibitat,
|
|
name: this.name,
|
|
description:
|
|
"Copy files and directories. Creates a duplicate of the source at the destination path. " +
|
|
"For directories, performs a recursive copy of all contents. If the destination exists, " +
|
|
"the operation will fail. Both source and destination must be within allowed directories.",
|
|
examples: [
|
|
{
|
|
prompt: "Make a backup copy of config.json",
|
|
call: JSON.stringify({
|
|
source: "config.json",
|
|
destination: "config.backup.json",
|
|
}),
|
|
},
|
|
{
|
|
prompt: "Copy the templates folder to a new location",
|
|
call: JSON.stringify({
|
|
source: "templates",
|
|
destination: "templates-backup",
|
|
}),
|
|
},
|
|
],
|
|
parameters: {
|
|
$schema: "http://json-schema.org/draft-07/schema#",
|
|
type: "object",
|
|
properties: {
|
|
source: {
|
|
type: "string",
|
|
description: "The path of the file or directory to copy.",
|
|
},
|
|
destination: {
|
|
type: "string",
|
|
description:
|
|
"The destination path where the copy should be created.",
|
|
},
|
|
},
|
|
required: ["source", "destination"],
|
|
additionalProperties: false,
|
|
},
|
|
handler: async function ({ source = "", destination = "" }) {
|
|
try {
|
|
this.super.handlerProps.log(
|
|
`Using the filesystem-copy-file tool.`
|
|
);
|
|
|
|
const validSourcePath = await filesystem.validatePath(source);
|
|
const validDestPath = await filesystem.validatePath(destination);
|
|
|
|
this.super.introspect(
|
|
`${this.caller}: Copying ${source} to ${destination}`
|
|
);
|
|
|
|
if (this.super.requestToolApproval) {
|
|
const approval = await this.super.requestToolApproval({
|
|
skillName: this.name,
|
|
payload: { source, destination },
|
|
description: "Copy a file or directory to a new location",
|
|
});
|
|
if (!approval.approved) {
|
|
this.super.introspect(
|
|
`${this.caller}: User rejected the ${this.name} request.`
|
|
);
|
|
return approval.message;
|
|
}
|
|
}
|
|
|
|
const destExists = await fs
|
|
.access(validDestPath)
|
|
.then(() => true)
|
|
.catch(() => false);
|
|
|
|
if (destExists) {
|
|
return `Error: Destination "${destination}" already exists. Please choose a different destination.`;
|
|
}
|
|
|
|
await copyRecursive(validSourcePath, validDestPath);
|
|
this.super.introspect(
|
|
`Successfully copied ${source} to ${destination}`
|
|
);
|
|
return `Successfully copied ${source} to ${destination}`;
|
|
} catch (e) {
|
|
this.super.handlerProps.log(
|
|
`filesystem-copy-file error: ${e.message}`
|
|
);
|
|
this.super.introspect(`Error: ${e.message}`);
|
|
return `Error copying file: ${e.message}`;
|
|
}
|
|
},
|
|
});
|
|
},
|
|
};
|
|
},
|
|
};
|