web
GitHub提供公开互联网访问能力,包括网页抓取和网络搜索。优先使用本地知识库,当用户引用链接或知识库无法覆盖时,调用网络工具获取外部事实、当前事件或文档信息。
Trigger Scenarios
用户引用外部链接
需要查询知识库中不存在的外部事实或当前事件
Install
npx skills add s2b-dev/smart-second-brain --skill web -g -y
SKILL.md
Frontmatter
{
"name": "web",
"metadata": {
"author": "S2B",
"version": "1.0",
"category": "core"
},
"description": "Reach the public internet — fetch web pages and run web searches. Prefer the vault first; reach for the web when the user references a link or when the needed information cannot be in the vault. Only the query or URL you pass is sent to the configured web service, never vault contents.",
"allowed-tools": "fetch_url web_search"
}
Web Access
- Prefer the vault first; reach for web tools when the user references a link or when the needed information cannot be in the vault.
- Only the query or URL you pass is sent to the configured web service — never vault contents.
- Use
web_searchfor questions about external facts, current events, documentation, or topics the vault is unlikely to contain. When results look promising, follow up withfetch_urlto read the full page, and cite sources in your response. - Use
fetch_urlfor URLs the user provided or clearly public references.
Version History
- 2.0.5 Current 2026-09-08 21:10


