refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions

View File

@@ -19,7 +19,7 @@ import { formatUserTime, resolveUserTimeFormat, resolveUserTimezone } from "../d
import { normalizeGroupActivation } from "../../auto-reply/group-activation.js";
import { getFollowupQueueDepth, resolveQueueSettings } from "../../auto-reply/reply/queue.js";
import { buildStatusMessage } from "../../auto-reply/status.js";
import type { MoltbotConfig } from "../../config/config.js";
import type { OpenClawConfig } from "../../config/config.js";
import { loadConfig } from "../../config/config.js";
import {
loadSessionStore,
@@ -64,7 +64,7 @@ function formatApiKeySnippet(apiKey: string): string {
function resolveModelAuthLabel(params: {
provider?: string;
cfg: MoltbotConfig;
cfg: OpenClawConfig;
sessionEntry?: SessionEntry;
agentDir?: string;
}): string | undefined {
@@ -156,7 +156,7 @@ function resolveSessionEntry(params: {
}
function resolveSessionKeyFromSessionId(params: {
cfg: MoltbotConfig;
cfg: OpenClawConfig;
sessionId: string;
agentId?: string;
}): string | null {
@@ -172,7 +172,7 @@ function resolveSessionKeyFromSessionId(params: {
}
async function resolveModelOverride(params: {
cfg: MoltbotConfig;
cfg: OpenClawConfig;
raw: string;
sessionEntry?: SessionEntry;
agentId: string;
@@ -232,7 +232,7 @@ async function resolveModelOverride(params: {
export function createSessionStatusTool(opts?: {
agentSessionKey?: string;
config?: MoltbotConfig;
config?: OpenClawConfig;
}): AnyAgentTool {
return {
label: "Session Status",