.local/skills/web-search/SKILL.md
Search the web and fetch content from URLs. Use for real-time information, API documentation, and current events.
npx skillsauth add akhil151/dtpapp web-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Search the web and retrieve content from URLs for current information.
Use this skill when:
Search the web for current information.
Parameters:
query (str, required): Natural language search query phrased as a complete questionReturns: Dict with searchAnswer and resultPages (list of title/url dicts)
Example:
const results = await webSearch({ query: "OpenAI API rate limits 2026" });
console.log(results.searchAnswer);
for (const page of results.resultPages) {
console.log(`${page.title}: ${page.url}`);
}
Fetch and extract content from a URL as markdown.
Parameters:
url (str, required): Full HTTPS URL to fetchReturns: Dict with markdown key containing page content
Example:
const content = await webFetch({ url: "https://platform.openai.com/docs/guides/rate-limits" });
console.log(content.markdown.slice(0, 1000));
// Find information about a topic
const searchResults = await webSearch({ query: "FastAPI dependency injection tutorial 2026" });
// Get full content from the most relevant result
if (searchResults.resultPages.length > 0) {
const bestUrl = searchResults.resultPages[0].url;
const fullContent = await webFetch({ url: bestUrl });
console.log(fullContent.markdown);
}
tools
Manage application workflows including configuration, restart, and removal.
testing
Run automated UI tests against your application using a Playwright-based testing subagent. Use after implementing features to verify they work correctly.
data-ai
Create reusable skills that extend agent capabilities. Use when the user asks to create a skill, teach you something reusable, or save instructions for future tasks.
testing
Search Replit documentation for platform features, pricing, deployments, and capabilities.