UNPKG

@mariozechner/pi-coding-agent

Version:

Coding agent CLI with read, bash, edit, write tools and session management

83 lines 3.31 kB
/** * Process @file CLI arguments into text content and image attachments */ import { access, readFile, stat } from "node:fs/promises"; import chalk from "chalk"; import { resolve } from "path"; import { resolveReadPath } from "../core/tools/path-utils.js"; import { formatDimensionNote, resizeImage } from "../utils/image-resize.js"; import { detectSupportedImageMimeTypeFromFile } from "../utils/mime.js"; /** Process @file arguments into text content and image attachments */ export async function processFileArguments(fileArgs, options) { const autoResizeImages = options?.autoResizeImages ?? true; let text = ""; const images = []; for (const fileArg of fileArgs) { // Expand and resolve path (handles ~ expansion and macOS screenshot Unicode spaces) const absolutePath = resolve(resolveReadPath(fileArg, process.cwd())); // Check if file exists try { await access(absolutePath); } catch { console.error(chalk.red(`Error: File not found: ${absolutePath}`)); process.exit(1); } // Check if file is empty const stats = await stat(absolutePath); if (stats.size === 0) { // Skip empty files continue; } const mimeType = await detectSupportedImageMimeTypeFromFile(absolutePath); if (mimeType) { // Handle image file const content = await readFile(absolutePath); const base64Content = content.toString("base64"); let attachment; let dimensionNote; if (autoResizeImages) { const resized = await resizeImage({ type: "image", data: base64Content, mimeType }); if (!resized) { text += `<file name="${absolutePath}">[Image omitted: could not be resized below the inline image size limit.]</file>\n`; continue; } dimensionNote = formatDimensionNote(resized); attachment = { type: "image", mimeType: resized.mimeType, data: resized.data, }; } else { attachment = { type: "image", mimeType, data: base64Content, }; } images.push(attachment); // Add text reference to image with optional dimension note if (dimensionNote) { text += `<file name="${absolutePath}">${dimensionNote}</file>\n`; } else { text += `<file name="${absolutePath}"></file>\n`; } } else { // Handle text file try { const content = await readFile(absolutePath, "utf-8"); text += `<file name="${absolutePath}">\n${content}\n</file>\n`; } catch (error) { const message = error instanceof Error ? error.message : String(error); console.error(chalk.red(`Error: Could not read file ${absolutePath}: ${message}`)); process.exit(1); } } } return { text, images }; } //# sourceMappingURL=file-processor.js.map