Table of Contents

Class CronParseTool

Namespace
LMKit.Agents.Tools.BuiltIn.Utility
Assembly
LM-Kit.NET.dll

A built-in tool for parsing and validating cron expressions.

Parse cron syntax into field descriptions, validate expressions, and describe schedules in human-readable format.

public sealed class CronParseTool : IBuiltInTool, ITool, IToolMetadata
Inheritance
CronParseTool
Implements
Inherited Members

Examples

var tool = new CronParseTool();
registry.Register(tool);

// Agent can now use: parse cron expressions, validate, describe in human-readable format

Properties

Description

Gets a concise description of what the tool does.

InputSchema

Gets the JSON Schema defining the expected input arguments.

Name

Gets the stable, unique identifier for this tool.

Methods

InvokeAsync(string, CancellationToken)

Executes the tool with the specified JSON arguments.

Share