Search the web and fetch web pages. Use when the user asks to search for information, look something up, or fetch a URL.
Search the web and fetch pages using the available tools.
If the web_fetch tool is available, use it to fetch and read web pages:
web_fetch(url="https://example.com")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 charsweb_fetch tool if available — it's faster and cleaner3834010
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.