Files
openclaw/extensions/llm-task/index.ts
2026-03-17 00:14:12 -07:00

16 lines
454 B
TypeScript

import {
definePluginEntry,
type AnyAgentTool,
type OpenClawPluginApi,
} from "openclaw/plugin-sdk/llm-task";
import { createLlmTaskTool } from "./src/llm-task-tool.js";
export default definePluginEntry({
id: "llm-task",
name: "LLM Task",
description: "Optional tool for structured subtask execution",
register(api: OpenClawPluginApi) {
api.registerTool(createLlmTaskTool(api) as unknown as AnyAgentTool, { optional: true });
},
});