refactor: rename clawdbot to moltbot

This commit is contained in:
Keith the Silly Goose 2026-01-28 20:28:03 +13:00
parent 600150a2cb
commit 6563506da7
2 changed files with 3 additions and 3 deletions

View File

@ -406,7 +406,7 @@ const FIELD_HELP: Record<string, string> = {
"diagnostics.cacheTrace.enabled": "diagnostics.cacheTrace.enabled":
"Log cache trace snapshots for embedded agent runs (default: false).", "Log cache trace snapshots for embedded agent runs (default: false).",
"diagnostics.cacheTrace.filePath": "diagnostics.cacheTrace.filePath":
"JSONL output path for cache trace logs (default: $CLAWDBOT_STATE_DIR/logs/cache-trace.jsonl).", "JSONL output path for cache trace logs (default: $MOLTBOT_STATE_DIR/logs/cache-trace.jsonl).",
"diagnostics.cacheTrace.includeMessages": "diagnostics.cacheTrace.includeMessages":
"Include full message payloads in trace output (default: true).", "Include full message payloads in trace output (default: true).",
"diagnostics.cacheTrace.includePrompt": "Include prompt text in trace output (default: true).", "diagnostics.cacheTrace.includePrompt": "Include prompt text in trace output (default: true).",
@ -682,7 +682,7 @@ const FIELD_PLACEHOLDERS: Record<string, string> = {
"gateway.remote.sshTarget": "user@host", "gateway.remote.sshTarget": "user@host",
"gateway.controlUi.basePath": "/moltbot", "gateway.controlUi.basePath": "/moltbot",
"channels.mattermost.baseUrl": "https://chat.example.com", "channels.mattermost.baseUrl": "https://chat.example.com",
"agents.list[].identity.avatar": "avatars/clawd.png", "agents.list[].identity.avatar": "avatars/molt.png",
}; };
const SENSITIVE_PATTERNS = [/token/i, /password/i, /secret/i, /api.?key/i]; const SENSITIVE_PATTERNS = [/token/i, /password/i, /secret/i, /api.?key/i];

View File

@ -112,7 +112,7 @@ async function submitVoyageBatch(params: {
model: params.client.model, model: params.client.model,
}, },
metadata: { metadata: {
source: "clawdbot-memory", source: "moltbot-memory",
agent: params.agentId, agent: params.agentId,
}, },
}), }),