24 lines
814 B
TypeScript
24 lines
814 B
TypeScript
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 Clawdbot docs")
|
|
.argument("[query...]", "Search query")
|
|
.addHelpText(
|
|
"after",
|
|
() => `\n${theme.muted("Docs:")} ${formatDocsLink("/cli/docs", "docs.clawd.bot/cli/docs")}\n`,
|
|
)
|
|
.action(async (queryParts: string[]) => {
|
|
await runCommandWithRuntime(defaultRuntime, async () => {
|
|
await docsSearchCommand(queryParts, defaultRuntime);
|
|
});
|
|
});
|
|
}
|