Skip to main content

taskInstructions

codebolt.task-management.TaskInstruction(tools: Tools, userMessage: UserMessage, filepath: string, refsection: string): TaskInstruction
Encapsulates task instructions and their metadata, handling loading/processing from YAML files.

Parameters

NameTypeDescription
toolsToolsObject containing tool definitions with descriptions and usage examples
userMessageUserMessageUser message content handler for prompt generation
filepathstringPath to YAML file containing task definitions
refsectionstringSpecific section key to load from the YAML file

Example

import { TaskInstruction } from './task-instruction';
import { UserMessage } from './usermessage';

// Sample tools configuration
const tools = {
fileProcessor: {
description: "Handles file operations",
usage: "processFile(filename)",
example: "processFile('data.txt')"
}
};

// Create a UserMessage instance
const userMsg = new UserMessage(/* message configuration */);

// Initialize task instruction loader
const taskInstruction = new TaskInstruction(
tools,
userMsg,
"./tasks/data_processing.yml",
"data_cleanup"
);

// Generate prompts with task details
try {
const prompts = await taskInstruction.toPrompt();
console.log("Generated prompts:", prompts);
} catch (error) {
console.error("Failed to process task:", error);
}