feat(cli): support targeting running containerized openclaw instances (#52651)

Signed-off-by: sallyom <somalley@redhat.com>
This commit is contained in:
Sally O'Malley
2026-03-24 10:17:17 -04:00
committed by GitHub
parent dd11bdd003
commit 91adc5e718
24 changed files with 1484 additions and 39 deletions

View File

@@ -19,6 +19,7 @@ import {
type DaemonActionResponse,
emitDaemonActionJson,
} from "./response.js";
import { filterContainerGenericHints } from "./shared.js";
type DaemonLifecycleOptions = {
json?: boolean;
@@ -81,7 +82,9 @@ async function handleServiceNotLoaded(params: {
json: boolean;
emit: ReturnType<typeof createActionIO>["emit"];
}) {
const hints = await maybeAugmentSystemdHints(params.renderStartHints());
const hints = filterContainerGenericHints(
await maybeAugmentSystemdHints(params.renderStartHints()),
);
params.emit({
ok: true,
result: "not-loaded",