원클릭으로
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.