Spaces:
Configuration error
Configuration error
| import type { Command } from "commander"; | |
| import { docsSearchCommand } from "../commands/docs.js"; | |
| import { defaultRuntime } from "../runtime.js"; | |
| import { formatDocsLink } from "../terminal/links.js"; | |
| import { theme } from "../terminal/theme.js"; | |
| import { runCommandWithRuntime } from "./cli-utils.js"; | |
| export function registerDocsCli(program: Command) { | |
| program | |
| .command("docs") | |
| .description("Search the live Moltbot docs") | |
| .argument("[query...]", "Search query") | |
| .addHelpText( | |
| "after", | |
| () => `\n${theme.muted("Docs:")} ${formatDocsLink("/cli/docs", "docs.molt.bot/cli/docs")}\n`, | |
| ) | |
| .action(async (queryParts: string[]) => { | |
| await runCommandWithRuntime(defaultRuntime, async () => { | |
| await docsSearchCommand(queryParts, defaultRuntime); | |
| }); | |
| }); | |
| } | |