web-search

Search the web and fetch URL content as markdown.

Updated Apr 3, 2026
One-click install
npx skills add https://github.com/gopforever/Idle-Echoes --skill web-search-gopforever
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: web-search
Source: https://github.com/gopforever/Idle-Echoes/tree/main/.local/skills/web-search
Command: npx skills add https://github.com/gopforever/Idle-Echoes --skill web-search-gopforever

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Retrieve real-time information by searching the web and fetching content from URLs, enabling quick access to current events, API docs, and reference material.

Core Features & Use Cases

  • Single web search: webSearch(query) returns an object with searchAnswer and resultPages (title, url, snippet).
  • Multiple web searches: webSearch({ queries }) returns a list of results, each containing searchAnswer and resultPages.
  • Content fetch: webFetch(url) fetches and converts a URL's content to markdown for easy consumption.

Quick Start

Search a topic and fetch the full content from the top result URL.

Frequently Asked Questions about web-search

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch real-time web content and convert a URL to markdown?▼

To fetch real-time web content and convert a URL to markdown, use the webFetch(url) function which retrieves the page and outputs a markdown payload for easy consumption.

How do I perform multiple web searches at once for current events?▼

You can perform multiple web searches for current events by passing an array of queries to the webSearch function, returning a list where each item contains a searchAnswer and resultPages.

What is the best way to retrieve API documentation and technical references from search results?▼

The best way to retrieve API documentation is using the single webSearch(query) function to get resultPages with titles and URLs, then fetching the full content via webFetch.

Can I get both a direct search answer and a list of source URLs from a single web query?▼

Yes, a single web search using the webSearch(query) function returns an object containing both a direct searchAnswer and a list of resultPages with titles, URLs, and snippets.

What data format does the fetched URL content return?▼

Fetched URL content returns a markdown payload, converting the web page into structured markdown text to enable easy consumption and parsing of technical references.

Does the web search function work without any external dependencies?▼

Yes, the web search and fetch functions operate without any external dependencies, allowing you to directly retrieve real-time information and API docs instantly.