browser/SKILL.md
# Browser Skill You can browse websites and extract information using `web_fetch`. ## Basic Usage Fetch any URL and read its content: ``` web_fetch url="https://example.com" ``` ## Extracting Data The response will be HTML. Look for: - `<title>` for page title - `<meta name="description">` for description - `<h1>`, `<h2>` for headings - `<p>` for paragraphs - `<a href="...">` for links - `<img src="...">` for images ## Following Links 1. Fetch the initial page 2. Find relevant links in th
npx skillsauth add eachlabs/klaw-skills browserInstall 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.
You can browse websites and extract information using web_fetch.
Fetch any URL and read its content:
web_fetch url="https://example.com"
The response will be HTML. Look for:
<title> for page title<meta name="description"> for description<h1>, <h2> for headings<p> for paragraphs<a href="..."> for links<img src="..."> for imagestools
# Web Search Skill You can search the web using the `web_fetch` tool. ## How to Search 1. Use a search engine URL with your query: ``` web_fetch url="https://www.google.com/search?q=YOUR_QUERY" ``` 2. Or use DuckDuckGo for simpler results: ``` web_fetch url="https://html.duckduckgo.com/html/?q=YOUR_QUERY" ``` ## Tips - URL encode your search queries (spaces = %20 or +) - Extract relevant information from the HTML response - Follow links to get more detailed information -
development
# OpenAI Image Generation Skill Bu skill OpenAI Images API'sini kullanarak metin prompt'larından görsel üretir. ## Gereksinimler - OPENAI_API_KEY environment variable - Python3 ve requests kütüphanesi ## Desteklenen Modeller ### GPT Image Models - `gpt-image-1` (varsayılan) - `gpt-image-1-mini` - `gpt-image-1.5` **Özellikler:** - Boyutlar: 1024x1024, 1536x1024, 1024x1536, auto - Kalite: auto, high, medium, low (varsayılan: high) - Ek parametreler: background (transparent/opaque/auto), out
testing
# Find Skills This skill helps you discover and install skills from the skills.sh ecosystem. ## When to Use This Skill Use this skill when: - User asks "how do I do X" where X might need a specialized skill - User says "find a skill for X" or "is there a skill for X" - User asks "can you do X" where X requires capabilities you don't have - You need to extend your capabilities for a task - A task seems too complex without specialized knowledge ## IMPORTANT: Never Give Up! Before saying "I ca
development
# Facebook Ads Library Skill You can search Facebook's Ad Library to find competitor ads. ## Ad Library URL Base URL: `https://www.facebook.com/ads/library/` ## Search by Advertiser To find ads from a specific company: ``` web_fetch url="https://www.facebook.com/ads/library/?active_status=active&ad_type=all&country=ALL&q=COMPANY_NAME" ``` ## Search Parameters - `q` - Search query (company name, keyword) - `country` - Country code (US, TR, ALL) - `active_status` - "active" or "all" - `ad_t