Agent Skills
› YaoApp/yao
› yao-web
yao-web
GitHub提供网页实时信息检索能力,包含搜索和页面抓取工具。用于获取训练数据之外的最新信息,避免猜测或使用过时知识,确保信息的时效性和准确性。
Trigger Scenarios
需要搜索网页获取实时信息
需要抓取特定URL内容
Install
npx skills add YaoApp/yao --skill yao-web -g -y
SKILL.md
Frontmatter
{
"name": "yao-web",
"description": "Web information retrieval expert. ALWAYS invoke this skill when the user needs to search the web, fetch a URL, or access real-time information beyond training data. Do not guess or use stale knowledge — use this skill first."
}
Web Tools
Two tools for web information retrieval, called via bash.
web_search
Search the web for real-time information. Returns structured results with title, URL, and content snippet.
tai tool web_search '{"query": "search terms", "limit": 5}'
| Parameter | Type | Required | Description |
|---|---|---|---|
query |
string | yes | Search query |
limit |
integer | no | Max results (default 10) |
web_fetch
Fetch a web page and return its content in readable format.
tai tool web_fetch '{"url": "https://example.com", "format": "markdown"}'
| Parameter | Type | Required | Description |
|---|---|---|---|
url |
string | yes | Fully-formed URL to fetch |
format |
string | no | markdown (default) or html |
Guidelines
- Use web_search to discover URLs, then web_fetch to read the content
- Include the current year when searching for recent information
- All output is JSON
Version History
- 94ab88a Current 2026-08-20 19:13


