UNPKG

cline-sdk

Version:

Comprehensive SDK for Cline - AI-powered development assistant with database integration, execution modes, and custom functions

98 lines 3.65 kB
"use strict"; /** * Write Tool - Creates or overwrites files * Based on VSCode extension's writeTool implementation */ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.WriteTool = void 0; const fs = __importStar(require("fs")); const path = __importStar(require("path")); class WriteTool { constructor(workingDirectory) { this.workingDirectory = workingDirectory; } async execute(input) { try { const { file_path, content } = input; // Resolve absolute path const fullPath = path.isAbsolute(file_path) ? file_path : path.resolve(this.workingDirectory, file_path); // Ensure directory exists const dir = path.dirname(fullPath); if (!fs.existsSync(dir)) { fs.mkdirSync(dir, { recursive: true }); } // Write file fs.writeFileSync(fullPath, content, "utf8"); const lines = content.split("\n").length; return { success: true, message: `Successfully wrote ${lines} lines to ${file_path}`, file_path: fullPath, lines_written: lines, }; } catch (error) { return { success: false, message: `Failed to write file: ${error instanceof Error ? error.message : "Unknown error"}`, file_path: input.file_path, lines_written: 0, }; } } getDefinition() { return { name: "Write", description: "Create or overwrite a file with the provided content", inputSchema: { type: "object", properties: { file_path: { type: "string", description: "The path of the file to write (relative to working directory)", }, content: { type: "string", description: "The complete content to write to the file", }, }, required: ["file_path", "content"], }, }; } } exports.WriteTool = WriteTool; //# sourceMappingURL=write-tool.js.map