mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-20 14:30:57 +00:00
12 lines
427 B
TypeScript
12 lines
427 B
TypeScript
import { definePluginEntry, type AnyAgentTool, type OpenClawPluginApi } from "./api.js";
|
|
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 });
|
|
},
|
|
});
|