mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-30 07:33:33 +00:00
* refactor: move terminal core into package * refactor: move terminal module files * fix: clean terminal package CI followups * test: update lint suppression allowlist * fix: ship terminal core runtime aliases
17 lines
572 B
TypeScript
17 lines
572 B
TypeScript
import type { Command } from "commander";
|
|
import { formatDocsLink } from "../../packages/terminal-core/src/links.js";
|
|
import { theme } from "../../packages/terminal-core/src/theme.js";
|
|
import { registerQrCli } from "./qr-cli.js";
|
|
|
|
export function registerClawbotCli(program: Command) {
|
|
const clawbot = program
|
|
.command("clawbot")
|
|
.description("Legacy clawbot command aliases")
|
|
.addHelpText(
|
|
"after",
|
|
() =>
|
|
`\n${theme.muted("Docs:")} ${formatDocsLink("/cli/clawbot", "docs.openclaw.ai/cli/clawbot")}\n`,
|
|
);
|
|
registerQrCli(clawbot);
|
|
}
|