30 lines
964 B
TypeScript
30 lines
964 B
TypeScript
import type { Command } from "commander";
|
|
import { formatDocsLink } from "../../terminal/links.js";
|
|
import { theme } from "../../terminal/theme.js";
|
|
import {
|
|
registerCronAddCommand,
|
|
registerCronListCommand,
|
|
registerCronStatusCommand,
|
|
} from "./register.cron-add.js";
|
|
import { registerCronEditCommand } from "./register.cron-edit.js";
|
|
import { registerCronSimpleCommands } from "./register.cron-simple.js";
|
|
import { registerWakeCommand } from "./register.wake.js";
|
|
|
|
export function registerCronCli(program: Command) {
|
|
registerWakeCommand(program);
|
|
|
|
const cron = program
|
|
.command("cron")
|
|
.description("Manage cron jobs (via Gateway)")
|
|
.addHelpText(
|
|
"after",
|
|
() => `\n${theme.muted("Docs:")} ${formatDocsLink("/cli/cron", "docs.clawd.bot/cli/cron")}\n`,
|
|
);
|
|
|
|
registerCronStatusCommand(cron);
|
|
registerCronListCommand(cron);
|
|
registerCronAddCommand(cron);
|
|
registerCronSimpleCommands(cron);
|
|
registerCronEditCommand(cron);
|
|
}
|