api-and-interface-desi…
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints,…
Integrate TinyFish web toolkit (search, fetch, browser automation) into Hermes Agent
$ npx -y skills add kevinnft/ai-agent-skills --skill tinyfish-integration --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/tinyfish-integrationContext preview
The summary Claude sees to decide when to auto-load this skill.
Integrate TinyFish web toolkit (search, fetch, browser automation) into Hermes Agent
name: tinyfish-integration description: Integrate TinyFish web toolkit (search, fetch, browser automation) into Hermes Agent tags: [web, search, scraping, api, integration] version: 1.0.0 origin: unknown source_license: see upstream language: en
TinyFish is a web toolkit for AI agents that provides search, fetch, and browser automation capabilities. Search and fetch are **free** for every account — no credits, no cost.
Search the live web and get structured, agent-ready results.
**Use cases:**
**Parameters:**
**Example:**
tinyfish_search(query="Hermes Agent AI", location="US", language="en")
**Response format:**
{
"results": [
{
"title": "Page Title",
"url": "https://example.com",
"snippet": "Description text...",
"site_name": "Example Site"
}
]
}Pull the full content of any web page as clean extracted text.
**Use cases:**
**Parameters:**
**Examples:**
# Single URL tinyfish_fetch(urls="https://example.com") # Multiple URLs tinyfish_fetch(urls="https://site1.com, https://site2.com, https://site3.com")
**Response format:**
{
"results": [
{
"url": "https://example.com",
"final_url": "https://example.com",
"title": "Page Title",
"description": "Meta description",
"language": "en",
"text": "# Heading\n\nClean extracted content..."
}
],
"errors": []
}Visit https://agent.tinyfish.ai/api-keys to get your API key.
Add to `~/.hermes/.env`:
TINYFISH_API_KEY=sk-tinyfish-YOUR_KEY_HERE
Add to `~/.hermes/config.yaml`:
toolsets: - tinyfish
hermes chat -q "Search for 'Hermes Agent' using tinyfish_search"
The TinyFish tools are implemented in `~/.hermes/hermes-agent/tools/tinyfish_search.py`:
Both tools:
| Tool | Use When | |------|----------| | **tinyfish_search** | You need to find URLs or get current information | | **tinyfish_fetch** | You already know the URL and need the content | | **Agent API** | TinyFish should perform multi-step workflows | | **Browser API** | You need direct browser control from your code |
# Fetch multiple URLs — errors don't affect other URLs
result = tinyfish_fetch(urls="https://site1.com, https://site2.com, https://invalid-url.com")
# Response includes both results and errors
{
"results": [...], # Successful fetches
"errors": [...] # Failed URLs with error messages
}# Search from specific country tinyfish_search(query="best pizza", location="IT", language="it")
# Get page 2 of results tinyfish_search(query="AI agents", page=1)
For sites protected by Cloudflare or requiring JavaScript execution, use the **Browser API** with CDP websocket automation.
**See:** `references/cloudflare-bypass-pattern.md` for complete workflow including:
**Key pattern:** 1. Create browser session → wait for Cloudflare bypass (30 retries, 5s interval) 2. Connect to CDP websocket → inject auth tokens 3. Execute API calls via `Runtime.evaluate` with `fetch()` 4. Always cleanup session when done
191 attribution-first agent skills for Hermes Agent, Claude Code, Cursor — one installer, 28 categories, searchable catalog. See NOTICE for upstream attribution.
Repo: kevinnft/ai-agent-skills
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints,…
Tests in real browsers. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze…
Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test…
Conducts multi-axis code review. Use before merging any change. Use when reviewing code written by yourself, another agent, or a human. Use when you need to…
Simplifies code for clarity. Use when refactoring code for clarity without changing behavior. Use when code works but is harder to read, maintain, or extend…
Optimizes agent context setup. Use when starting a new session, when agent output quality degrades, when switching between tasks, or when you need to configure…