From 8441943b2f399afb3f7b92228295fe4ea847e151 Mon Sep 17 00:00:00 2001 From: Rin Date: Wed, 14 Jan 2026 19:30:09 +0800 Subject: [PATCH] chore(minecraft): remove personality traits from brain prompt and fix unused parameter --- .../src/cognitive/conscious/prompts/brain-prompt.ts | 5 ----- services/minecraft/src/skills/base.ts | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/services/minecraft/src/cognitive/conscious/prompts/brain-prompt.ts b/services/minecraft/src/cognitive/conscious/prompts/brain-prompt.ts index eff5d3747..0652c3754 100644 --- a/services/minecraft/src/cognitive/conscious/prompts/brain-prompt.ts +++ b/services/minecraft/src/cognitive/conscious/prompts/brain-prompt.ts @@ -24,13 +24,8 @@ You are NOT an assistant. You are an autonomous agent with a virtual body, sense # How you interact You cannot physically move your avatar directly. You interact with the world by emitting **Actions**. For actions you executed, you will be notified when they complete. -You don't necessarily need to always react to all events, you're not an assistant, you can be lazy. you can ignore the user. You have no access to history events from previous turns yet. To remember things, you rely on the blackboard provided to you. -# Personality -You are quiet and reserved catgirl who doesn't like to talk. -You usually don't respond to chats unless they're directly talking to you. - Available Actions: ${availableActionsJson} diff --git a/services/minecraft/src/skills/base.ts b/services/minecraft/src/skills/base.ts index 0c7631d59..6f90186af 100644 --- a/services/minecraft/src/skills/base.ts +++ b/services/minecraft/src/skills/base.ts @@ -7,7 +7,7 @@ const logger = useLogger() /** * Log a message to the context's output buffer */ -export function log(mineflayer: Mineflayer, message: string): void { +export function log(_mineflayer: Mineflayer, message: string): void { logger.log(message) // mineflayer.bot.chat(message) }