Files
memind/skills/web/SKILL.md
T
John 2e14873f2d Initial commit: Memind H5 portal with MindSpace, Plaza, and agent jobs.
Track application source and tests; exclude local env, user workspaces, and runtime data via .gitignore.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-15 15:04:43 -07:00

804 B

name, description
name description
web 网页抓取与搜索技能:访问网页、查阅文档、搜索互联网

网页访问

使用内置 web 平台扩展获取网页内容和搜索信息。

何时使用

  • 用户要查某个 API 文档、库的用法
  • 用户要搜索最新新闻、技术资料
  • 需要验证某个 URL 的内容

工具

工具 用途
fetch_url 抓取指定 URL 的内容,可提取纯文本
web_search 通过 DuckDuckGo 搜索,返回标题/摘要/链接列表

规则

  1. 优先用 web_search 探索,再用 fetch_url 读取具体页面
  2. extract_text: true(默认)获取可读文本,false 获取原始 HTML
  3. 不要访问不明来源的链接,向用户确认后再访问
  4. 官方文档优先于第三方博客