File: //lib/node_modules/openclaw/dist/system-cli-RnSPJJWR.js
import { Dt as theme, ht as danger, v as defaultRuntime } from "./entry.js";
import "./auth-profiles-BLqWs5Ho.js";
import "./agent-scope-BUKPOSoo.js";
import "./exec-G9-WTRVN.js";
import "./github-copilot-token-RNgXBxZS.js";
import "./host-env-security-DyQuUnEd.js";
import "./manifest-registry-BPlNBgie.js";
import "./config-DWx3SXRc.js";
import "./env-vars-iFkEK4MO.js";
import "./message-channel-CIQTys4Q.js";
import "./client-BtjXMOD6.js";
import "./call-DQYruQvM.js";
import "./pairing-token-qLzAsGdq.js";
import "./net-BEAjYacy.js";
import "./ip-m9Sjsn1o.js";
import "./tailnet-BOWO-AaH.js";
import { t as formatDocsLink } from "./links-DNSoSnpZ.js";
import "./progress-NYYdD1uh.js";
import { n as callGatewayFromCli, t as addGatewayClientOptions } from "./gateway-rpc--J6-Iqtl.js";
//#region src/cli/system-cli.ts
const normalizeWakeMode = (raw) => {
const mode = typeof raw === "string" ? raw.trim() : "";
if (!mode) return "next-heartbeat";
if (mode === "now" || mode === "next-heartbeat") return mode;
throw new Error("--mode must be now or next-heartbeat");
};
async function runSystemGatewayCommand(opts, action, successText) {
try {
const result = await action();
if (opts.json || successText === void 0) defaultRuntime.log(JSON.stringify(result, null, 2));
else defaultRuntime.log(successText);
} catch (err) {
defaultRuntime.error(danger(String(err)));
defaultRuntime.exit(1);
}
}
function registerSystemCli(program) {
const system = program.command("system").description("System tools (events, heartbeat, presence)").addHelpText("after", () => `\n${theme.muted("Docs:")} ${formatDocsLink("/cli/system", "docs.openclaw.ai/cli/system")}\n`);
addGatewayClientOptions(system.command("event").description("Enqueue a system event and optionally trigger a heartbeat").requiredOption("--text <text>", "System event text").option("--mode <mode>", "Wake mode (now|next-heartbeat)", "next-heartbeat").option("--json", "Output JSON", false)).action(async (opts) => {
await runSystemGatewayCommand(opts, async () => {
const text = typeof opts.text === "string" ? opts.text.trim() : "";
if (!text) throw new Error("--text is required");
return await callGatewayFromCli("wake", opts, {
mode: normalizeWakeMode(opts.mode),
text
}, { expectFinal: false });
}, "ok");
});
const heartbeat = system.command("heartbeat").description("Heartbeat controls");
addGatewayClientOptions(heartbeat.command("last").description("Show the last heartbeat event").option("--json", "Output JSON", false)).action(async (opts) => {
await runSystemGatewayCommand(opts, async () => {
return await callGatewayFromCli("last-heartbeat", opts, void 0, { expectFinal: false });
});
});
addGatewayClientOptions(heartbeat.command("enable").description("Enable heartbeats").option("--json", "Output JSON", false)).action(async (opts) => {
await runSystemGatewayCommand(opts, async () => {
return await callGatewayFromCli("set-heartbeats", opts, { enabled: true }, { expectFinal: false });
});
});
addGatewayClientOptions(heartbeat.command("disable").description("Disable heartbeats").option("--json", "Output JSON", false)).action(async (opts) => {
await runSystemGatewayCommand(opts, async () => {
return await callGatewayFromCli("set-heartbeats", opts, { enabled: false }, { expectFinal: false });
});
});
addGatewayClientOptions(system.command("presence").description("List system presence entries").option("--json", "Output JSON", false)).action(async (opts) => {
await runSystemGatewayCommand(opts, async () => {
return await callGatewayFromCli("system-presence", opts, void 0, { expectFinal: false });
});
});
}
//#endregion
export { registerSystemCli };