UNPKG

pyb-ts

Version:

PYB-CLI - Minimal AI Agent with multi-model support and CLI interface

21 lines (20 loc) 512 B
import { Help } from "@components/Help"; import * as React from "react"; const help = { type: "local-jsx", name: "help", description: "Show help and available commands", isEnabled: true, isHidden: false, async call(onDone, context) { return /* @__PURE__ */ React.createElement(Help, { commands: context.options?.commands || [], onClose: onDone }); }, userFacingName() { return "help"; } }; var help_default = help; export { help_default as default }; //# sourceMappingURL=help.js.map