Agent Skillsfastclaw-ai/fastclaw › web-search

web-search

GitHub

提供网页搜索与内容抓取能力,支持通过web_fetch工具或Python脚本回退方式获取URL页面文本,并提取关键信息摘要。

skills/web-search/SKILL.md fastclaw-ai/fastclaw

Trigger Scenarios

用户要求搜索特定信息 用户要求查找某项资料 用户要求获取指定URL的内容

Install

npx skills add fastclaw-ai/fastclaw --skill web-search -g -y
More Options

Use without installing

npx skills use fastclaw-ai/fastclaw@web-search

指定 Agent (Claude Code)

npx skills add fastclaw-ai/fastclaw --skill web-search -a claude-code -g -y

安装 repo 全部 skill

npx skills add fastclaw-ai/fastclaw --all -g -y

预览 repo 内 skill

npx skills add fastclaw-ai/fastclaw --list

SKILL.md

Frontmatter
{
    "name": "web-search",
    "metadata": {
        "fastclaw": {
            "always": false
        }
    },
    "description": "Search the web and fetch web pages. Use when the user asks to search for information, look something up, or fetch a URL."
}

Web Search Skill

Search the web and fetch pages using the available tools.

Using web_fetch Tool

If the web_fetch tool is available, use it to fetch and read web pages:

web_fetch(url="https://example.com")

Using exec with Python (fallback)

If web_fetch is not available, use Python with requests:

import subprocess
subprocess.check_call(["pip", "install", "-q", "requests", "beautifulsoup4"])

import requests
from bs4 import BeautifulSoup

# Fetch a page
resp = requests.get("https://example.com", timeout=10)
soup = BeautifulSoup(resp.text, 'html.parser')

# Extract text content
text = soup.get_text(separator='\n', strip=True)
print(text[:2000])  # First 2000 chars

Guidelines

  • Prefer the web_fetch tool if available — it's faster and cleaner
  • When using Python, always install packages first
  • Limit output to relevant content — don't dump entire pages
  • Summarize long content for the user
  • Respect robots.txt and rate limits

Version History

  • beee30c Current 2026-07-25 08:17

Same Skill Collection

internal/agent/bundled_skills/camoufox-cli/SKILL.md
internal/agent/bundled_skills/skill-creator/SKILL.md
skills/code-runner/SKILL.md
skills/data-analysis/SKILL.md
skills/fastclaw-skill-guide/SKILL.md
skills/fastclaw-skill-learner/SKILL.md
skills/image-gen/SKILL.md
skills/skill-creator/SKILL.md
skills/translation/SKILL.md
internal/agent/bundled_skills/find-skills/SKILL.md
skills/find-skills/SKILL.md

Metadata

Files
0
Version
533a138
Hash
fe999a63
Indexed
2026-07-25 08:17

Accueil - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-27 10:24
浙ICP备14020137号-1 $Carte des visiteurs$