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

@@ -249,7 +249,7 @@ function wrapSandboxPathGuard(tool: AnyAgentTool, root: string): AnyAgentTool {
export function createSandboxedReadTool(root: string) {
const base = createReadTool(root) as unknown as AnyAgentTool;
return wrapSandboxPathGuard(createMoltbotReadTool(base), root);
return wrapSandboxPathGuard(createOpenClawReadTool(base), root);
}
export function createSandboxedWriteTool(root: string) {
@@ -262,7 +262,7 @@ export function createSandboxedEditTool(root: string) {
return wrapSandboxPathGuard(wrapToolParamNormalization(base, CLAUDE_PARAM_GROUPS.edit), root);
}
export function createMoltbotReadTool(base: AnyAgentTool): AnyAgentTool {
export function createOpenClawReadTool(base: AnyAgentTool): AnyAgentTool {
const patched = patchToolSchemaForClaudeCompatibility(base);
return {
...patched,