From a3db9d258542a2960645743442f944968d24ec2b Mon Sep 17 00:00:00 2001
From: TevinClaw <510129976@qq.com>
Date: Tue, 17 Mar 2026 12:50:46 +0800
Subject: [PATCH] 移除:旧热记忆和自改进技能,更新工具箱记录 memory-md-learning 触发规则

---
 workspace/skills/tavily-search/SKILL.md |   17 ++++++++++-------
 1 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/workspace/skills/tavily-search/SKILL.md b/workspace/skills/tavily-search/SKILL.md
index b4ac09f..596e5b3 100644
--- a/workspace/skills/tavily-search/SKILL.md
+++ b/workspace/skills/tavily-search/SKILL.md
@@ -10,13 +10,16 @@
 ## Prerequisites
 
 1. Get a Tavily API key from https://tavily.com
-2. Configure the key using one of these methods:
-   - **.env file (推荐)**: 在 `~/.openclaw/.env` 文件中配置:
-     ```json
-     {"env": {"TAVILY_API_KEY": "your_key_here"}}
-     ```
-   - **Environment variable**: `export TAVILY_API_KEY=your_key_here`
-   - **Direct parameter**: Pass `api_key` when calling the function
+2. Configure the key via **environment variable**:
+   ```bash
+   export TAVILY_API_KEY=your_key_here
+   ```
+   Add to `~/.bashrc` or `~/.zshrc` for persistence:
+   ```bash
+   echo 'export TAVILY_API_KEY=your_key_here' >> ~/.bashrc
+   source ~/.bashrc
+   ```
+3. Or pass `api_key` as a direct parameter when calling the function
 
 ## Usage
 

--
Gitblit v1.9.1