From 6f54071ddc2b31ae492b49dafbdcc37219c7f295 Mon Sep 17 00:00:00 2001 From: loop Date: Sun, 19 Apr 2026 17:56:21 +0800 Subject: [PATCH] change: update skill and memory wording --- application/basic_demo/sdkconfig.defaults | 1 + components/claw_modules/claw_memory/src/claw_memory_storage.c | 2 +- components/claw_modules/claw_skill/src/claw_skill.c | 2 +- .../lua_module_event_publisher/skills/skills_list.json | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/application/basic_demo/sdkconfig.defaults b/application/basic_demo/sdkconfig.defaults index 99dac96..94d3255 100644 --- a/application/basic_demo/sdkconfig.defaults +++ b/application/basic_demo/sdkconfig.defaults @@ -28,3 +28,4 @@ CONFIG_IDF_EXPERIMENTAL_FEATURES=y CONFIG_MMAP_FILE_NAME_LENGTH=32 CONFIG_SPIRAM_XIP_FROM_PSRAM=y CONFIG_EMOTE_DEF_BG_COLOR=0x171617 +CONFIG_CLAW_CORE_STAGE_VERBOSITY_VERBOSE=y diff --git a/components/claw_modules/claw_memory/src/claw_memory_storage.c b/components/claw_modules/claw_memory/src/claw_memory_storage.c index 9cf5f77..cdd76b2 100644 --- a/components/claw_modules/claw_memory/src/claw_memory_storage.c +++ b/components/claw_modules/claw_memory/src/claw_memory_storage.c @@ -737,7 +737,7 @@ esp_err_t claw_memory_export_markdown_internal(char **out_markdown, if (!items || items->count == 0) { off += snprintf(buf + off, buf_size - off, - "(empty - Clawgent will write memories here as it learns)\n"); + "(empty - Claw will write memories here as it learns)\n"); *out_markdown = buf; return ESP_OK; } diff --git a/components/claw_modules/claw_skill/src/claw_skill.c b/components/claw_modules/claw_skill/src/claw_skill.c index ac13560..063da1a 100644 --- a/components/claw_modules/claw_skill/src/claw_skill.c +++ b/components/claw_modules/claw_skill/src/claw_skill.c @@ -691,7 +691,7 @@ static esp_err_t load_active_skill_ids_from_disk(const char *session_id, err = read_file_dup(path, &json_text); if (err != ESP_OK) { - ESP_LOGE(TAG, "read session %s: %s", session_id, esp_err_to_name(err)); + ESP_LOGD(TAG, "read session %s: %s", session_id, esp_err_to_name(err)); free(path); return err; } diff --git a/components/lua_modules/lua_module_event_publisher/skills/skills_list.json b/components/lua_modules/lua_module_event_publisher/skills/skills_list.json index 418c792..4b8c81e 100644 --- a/components/lua_modules/lua_module_event_publisher/skills/skills_list.json +++ b/components/lua_modules/lua_module_event_publisher/skills/skills_list.json @@ -3,7 +3,7 @@ { "id": "lua_module_event_publisher", "file": "lua_module_event_publisher.md", - "summary": "How to publish message, trigger, and custom events from Lua.", + "summary": "Describe how to publish events to event_router to trigger other actions, such as sending messages or call other capabilities.", "cap_groups": [ "cap_lua" ]