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

@@ -6,7 +6,7 @@ import {
resolveConfiguredModelRef,
resolveModelRefFromString,
} from "../../agents/model-selection.js";
import type { MoltbotConfig } from "../../config/config.js";
import type { OpenClawConfig } from "../../config/config.js";
import { shortenHomePath } from "../../utils.js";
import type { ReplyPayload } from "../types.js";
import {
@@ -24,7 +24,7 @@ import { resolveModelsCommandReply } from "./commands-models.js";
import { type ModelDirectiveSelection, resolveModelDirectiveSelection } from "./model-selection.js";
function buildModelPickerCatalog(params: {
cfg: MoltbotConfig;
cfg: OpenClawConfig;
defaultProvider: string;
defaultModel: string;
aliasIndex: ModelAliasIndex;
@@ -153,7 +153,7 @@ function buildModelPickerCatalog(params: {
export async function maybeHandleModelDirectiveInfo(params: {
directives: InlineDirectives;
cfg: MoltbotConfig;
cfg: OpenClawConfig;
agentDir: string;
activeAgentId: string;
provider: string;
@@ -271,7 +271,7 @@ export async function maybeHandleModelDirectiveInfo(params: {
export function resolveModelSelectionFromDirective(params: {
directives: InlineDirectives;
cfg: MoltbotConfig;
cfg: OpenClawConfig;
agentDir: string;
defaultProvider: string;
defaultModel: string;