task runner less verbose

This commit is contained in:
2026-02-25 02:20:49 +00:00
parent f2da4c0300
commit 625905fc29
@@ -198,8 +198,8 @@ export const TaskRunnerModal = ({ open, onOpenChange, task, entryName, entryFull
const entryRef = entryFullPath ?? entryName; const entryRef = entryFullPath ?? entryName;
const defaultInput = promptOverride const defaultInput = promptOverride
?? (entryRef && entryType ?? (entryRef && entryType
? `Read the task instructions at ${task.filePath} and execute them on the ${entryType}: ${entryRef}\n\nBe verbose — explain each step you take and what the result was.` ? `Read the task instructions at ${task.filePath} and execute them on the ${entryType}: ${entryRef}`
: `Read the task instructions at ${task.filePath} and execute them\n\nBe verbose — explain each step you take and what the result was.`); : `Read the task instructions at ${task.filePath} and execute them`);
const taskInfo: TaskInfo = { taskName: task.name, taskDirName: task.dirName, entryName: entryName ?? '', entryType: entryType ?? 'file' }; const taskInfo: TaskInfo = { taskName: task.name, taskDirName: task.dirName, entryName: entryName ?? '', entryType: entryType ?? 'file' };
return ( return (