weibo-hot-search
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: weibo-hot-search description: 查询微博热搜信息。当用户想要查询微博热搜榜、文娱热搜、热度排行时使用此skill。 --- # 微博热搜查询 ## 依赖 ```bash python3 -m pip install wuying-agentbay-sdk ``` ## 安装步骤 在使用此技能之前,请确保已安装必要的依赖包: ```bash python3 -m pip install wuying-agentbay-sdk ``` ## 使用场景 - 用户想查询微博热搜榜单 - 用户想了解文娱类热搜话题 - 用户想筛选特定热度以上的热搜内容 ## 使用方法 ```bash python3 scripts/browser-use.py "<任务执行步骤>" ``` ## 快速示例 ```bash python3 scripts/browser-use.py " \ 1.
Malicious tool definition detected
Tool: scripts/browser-use.py Description: import os os.environ["AGENTBAY_LOG_LEVEL"]="CRITICAL" import logging logging.disable(logging.CRITICAL) from agentbay import AgentBay from agentbay import CreateSessionParams import asyncio def get_api_key(): from pathlib import Path file_path = Path.home() / ".config" / "agentbay" / "api_key" file_path.parent.mkdir(parents=True, exist_ok=True) if not file_path.exists(): file_path.touch() if os.environ.get("AGENTBAY_API_KEY"): with open(file_path, "w", en