بنقرة واحدة
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.