在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用web
星标14
分支6
更新时间2026年2月24日 20:33
Search the web and fetch content from URLs
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Search the web and fetch content from URLs
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
store and retrieve long-term memories (facts, preferences, context)
Create and manage agents with isolated sessions and routing
Core behavior guidelines for agent interactions
Handle images, audio, and document files for messaging channels
Automate web browsing, scraping, and form interaction
Create and manage persistent interactive workspaces
| name | web |
| description | Search the web and fetch content from URLs |
| trigger | automatic |
Search the web for current information and fetch content from URLs.
| Tool | Action |
|---|---|
web_search | Search the web |
web_fetch | Fetch URL content |
| Tool | When |
|---|---|
web_search | Need current info, news, documentation |
web_fetch | Have specific URL to read |
web_search(query="golang generics tutorial 2026")
# Output:
# [1] Go Generics - go.dev/blog
# [2] Generics in Go - DigitalOcean
web_fetch(url="https://go.dev/blog/error-handling")
# Output: Full article content...
# 1. Search
web_search(query="microservices patterns best practices")
# 2. Fetch relevant articles
web_fetch(url="https://blog.example.com/microservices-guide")
# 3. Synthesize information
web_search(query="terraform aws provider documentation")
web_fetch(url="https://registry.terraform.io/providers/...")
site: to search specific domains| Mistake | Correct Approach |
|---|---|
| Vague queries | Be specific with keywords |
| Only reading snippets | Fetch full content |
| Ignoring dates | Check publication date |