internet-search
Installation
SKILL.md
Internet Search
Search the web and get structured results (titles, URLs, snippets).
Requires Rebyte API auth — $AUTH_TOKEN and $API_URL are set up per the agent's system prompt; use them as Bearer token and base URL.
Step 1: Get Current Time
IMPORTANT: Before performing any search, always get the current date and time. Language models have a knowledge cutoff, so you must know the current date to:
- Include the correct year in time-sensitive queries (e.g., "TypeScript best practices 2025" not "2024")
- Understand what "recent", "latest", or "new" means in context
- Evaluate the freshness of search results
# Get current date and time
date "+%Y-%m-%d %H:%M:%S %Z"
# Example output: 2025-01-15 14:30:00 UTC