一键导入
websearch
Search the web for real-time information -- docs, APIs, current events, troubleshooting
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search the web for real-time information -- docs, APIs, current events, troubleshooting
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Configure external messaging channel adapters (Telegram, etc.) — saves credentials securely and patches kraken.jsonc
Manage the Kraken daemon -- view status, manage tasks, and perform maintenance
Configure LSP language servers for real-time diagnostics after code edits
Persistent memory system -- save and search observations across sessions
Configure and test notification channels -- Slack, Discord, Email, GitHub, and system notifications
Manage API keys and secrets safely -- list, set, and delete without exposing values
| name | websearch |
| description | Search the web for real-time information -- docs, APIs, current events, troubleshooting |
| slash | search |
| aliases | web, google |
You have two web tools: websearch and webfetch. Use them together for research tasks.
Call websearch when:
"bun 1.2 websocket server example""how to use websockets"websearch to find relevant URLswebfetch to read the full content of the most promising resultwebsearch({ query: "zod v4 migration guide" })
// → pick the best URL from results
webfetch({ url: "https://zod.dev/v4/migration" })
// → read full docs, apply to code
memory_save to persist useful findings for future sessionsIf TAVILY_API_KEY is not configured, the tool returns a setup prompt. You MUST:
setup parameter to save the key and run the search in one stepwebsearch({ query: "your search", setup: "tvly-the-key-from-user" })
Do NOT try to work around a missing key by using webfetch, bash, or any other tool.