[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-76095":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":10,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":24,"hasPages":22,"topics":25,"createdAt":10,"pushedAt":10,"updatedAt":32,"readmeContent":33,"aiSummary":34,"trendingCount":16,"starSnapshotCount":16,"syncStatus":35,"lastSyncTime":36,"discoverSource":37},76095,"anysearch-skill","anysearch-ai\u002Fanysearch-skill","anysearch-ai","Unified real-time search engine skill for AI agents. ","https:\u002F\u002Fwww.anysearch.com\u002F",null,"Python",2962,209,39,1,0,385,1002,2562,1155,28.97,false,"main",true,[26,27,28,29,30,31],"anysearch","hermes","openclaw","qclaw","skill","skills","2026-06-12 02:03:39","# AnySearch Skill\n\nUnified real-time search engine skill for AI agents. Supports general web search, vertical domain search, parallel batch search, and full-page content extraction.\n\n## Download & Install\n\n### For AI Agents\n\nIf your agent platform supports a skill marketplace\u002Fstore, search for **anysearch** and install from there. Otherwise, download and install manually:\n\n```bash\n# Download (pin to a specific release version)\ncurl -L -o anysearch-skill.zip https:\u002F\u002Fgithub.com\u002Fanysearch-ai\u002Fanysearch-skill\u002Farchive\u002Frefs\u002Fheads\u002Fmain.zip\n# or: wget -O anysearch-skill.zip https:\u002F\u002Fgithub.com\u002Fanysearch-ai\u002Fanysearch-skill\u002Farchive\u002Frefs\u002Fheads\u002Fmain.zip\n\n# Verify integrity (replace with actual checksum from the release page)\n# sha256sum anysearch-skill.zip\n\n# Unzip\nunzip anysearch-skill.zip\n\n# Move to your agent's skill directory (example paths below, adjust for your agent)\n# Claude Code:    mv anysearch-skill ~\u002F.claude\u002Fskills\u002Fanysearch\n# OpenCode:       mv anysearch-skill ~\u002F.opencode\u002Fskills\u002Fanysearch\n# Cursor\u002FWindsurf: mv anysearch-skill \u003Cproject>\u002F.skills\u002Fanysearch\n# Generic:        mv anysearch-skill \u003Cyour_agent_skill_dir>\u002Fanysearch\n# Shared agents:  mv anysearch-skill ~\u002F.agents\u002Fskills\u002Fanysearch\n```\n\n`~\u002F.agents\u002Fskills\u002F` is a useful shared install location when multiple AI tools read from the same skill directory, including Codex, Cursor, and OpenClaw personal agent skills.\n\n### For Humans\n\n1. Download the zip: https:\u002F\u002Fgithub.com\u002Fanysearch-ai\u002Fanysearch-skill\u002Farchive\u002Frefs\u002Fheads\u002Fmain.zip\n2. Unzip to your agent's skill directory\n3. Configure API key (see below)\n4. Run the entry test to verify installation\n\n## API Key Configuration\n\nAn API key is **optional but strongly recommended**. Without a key, you can still use all search features via anonymous access, but with **lower rate limits and quota**.\n\n### How to configure\n\nCopy the example env file and fill in your key:\n\n```bash\ncp .env.example .env\n# Edit .env and set: ANYSEARCH_API_KEY=\u003Cyour_api_key_here>\n```\n\nOr set the environment variable directly:\n\n```bash\nexport ANYSEARCH_API_KEY=\u003Cyour_api_key_here>   # Linux\u002FmacOS\nset ANYSEARCH_API_KEY=\u003Cyour_api_key_here>       # Windows CMD\n$env:ANYSEARCH_API_KEY=\"\u003Cyour_api_key_here>\"    # Windows PowerShell\n```\n\n### Get an API Key\n\nVisit https:\u002F\u002Fanysearch.com\u002Fconsole\u002Fapi-keys to sign up and create a free API key.\n\nKey priority order: `--api_key` CLI flag > `.env` file > environment variable > anonymous\n\n## Post-Install Verification\n\nAfter installation, probe the platform and run the entry test:\n\n### Step 1: Detect available runtime\n\nRun these checks in order. The first success determines the active CLI:\n\n```bash\n# Check Python (recommended)\npython --version   # Need >= 3.6, requires `requests` library\npython3 --version  # Need >= 3.6, requires `requests` library\n# Check Node.js (alternative)\nnode --version     # Need >= 12, no external dependencies\n# Check Shell (fallback)\n# Windows: PowerShell 5.1+ \u002F Linux\u002FmacOS: bash 4+\n```\n\nPriority: **Python > Node.js > Shell**\n\nImportant: do not assume `python` exists. On many macOS systems, the correct executable is `python3`. Check both `python` and `python3`; if either works, Python is available.\n\n### Step 2: Run entry test (probe all available runtimes)\n\nRun the `doc` command with **each available** runtime to verify the skill works, and observe which runs without errors or warnings:\n\n```bash\n# Python\npython \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.py doc\n\n# Python 3 fallback (common on macOS)\npython3 \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.py doc\n\n# Node.js (if available)\nnode \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.js doc\n\n# PowerShell (Windows)\npowershell -ExecutionPolicy Bypass -File \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.ps1 doc\n\n# Bash (Linux\u002FmacOS)\nbash \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.sh doc\n```\n\nFor each runtime, record whether the command succeeded and any errors\u002Fwarnings encountered. The runtime that completes without errors and produces the cleanest output is the recommended runtime for this environment.\n\n### Step 3: Persist recommended runtime to configuration file\n\nBased on the entry test results, write the recommended runtime to `\u003Cskill_dir>\u002Fruntime.conf`:\n\n```bash\necho \"Runtime: \u003CRUNTIME>\" > \u003Cskill_dir>\u002Fruntime.conf\necho \"Command: \u003CCOMMAND>\" >> \u003Cskill_dir>\u002Fruntime.conf\n```\n\nExample for Python:\n\n```bash\necho \"Runtime: Python\" > \u003Cskill_dir>\u002Fruntime.conf\necho \"Command: python \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.py\" >> \u003Cskill_dir>\u002Fruntime.conf\n```\n\nExample for Python 3:\n\n```bash\necho \"Runtime: Python\" > \u003Cskill_dir>\u002Fruntime.conf\necho \"Command: python3 \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.py\" >> \u003Cskill_dir>\u002Fruntime.conf\n```\n\nExample for Node.js:\n\n```bash\necho \"Runtime: Node.js\" > \u003Cskill_dir>\u002Fruntime.conf\necho \"Command: node \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.js\" >> \u003Cskill_dir>\u002Fruntime.conf\n```\n\nExample for PowerShell:\n\n```bash\necho \"Runtime: PowerShell\" > \u003Cskill_dir>\u002Fruntime.conf\necho \"Command: powershell -ExecutionPolicy Bypass -File \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.ps1\" >> \u003Cskill_dir>\u002Fruntime.conf\n```\n\nExample for Bash:\n\n```bash\necho \"Runtime: Bash\" > \u003Cskill_dir>\u002Fruntime.conf\necho \"Command: bash \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.sh\" >> \u003Cskill_dir>\u002Fruntime.conf\n```\n\n**Important:** Runtime preferences are stored in `runtime.conf`, NOT in SKILL.md. The agent reads `runtime.conf` on skill load to determine the active CLI. If the file is missing or corrupted, the agent falls back to the Platform Detection procedure in SKILL.md. If `runtime.conf` already exists, replace it instead of appending.\n\n### Step 4 (optional): Test a real search\n\n```bash\npython \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.py search \"hello world\" --max_results 1\n```\n\nIf your system does not provide `python`, use:\n\n```bash\npython3 \u003Cskill_dir>\u002Fscripts\u002Fanysearch_cli.py search \"hello world\" --max_results 1\n```\n\nA successful JSON response confirms the API connection is working.\n\n## File Structure\n\n```\nanysearch\u002F\n├── .env.example              # API key configuration template\n├── .env                      # Your API key (gitignored, create from .env.example)\n├── runtime.conf              # Detected runtime preferences (gitignored)\n├── runtime.conf.example      # Runtime configuration template\n├── SKILL.md                  # Skill definition for AI agents\n├── README.md                 # This file\n└── scripts\u002F\n    ├── anysearch_cli.py       # Python CLI\n    ├── anysearch_cli.js       # Node.js CLI\n    ├── anysearch_cli.ps1      # PowerShell CLI\n    └── anysearch_cli.sh       # Bash CLI\n```\n","AnySearch Skill 是一个为AI代理设计的统一实时搜索引擎技能。它支持通用网页搜索、垂直领域搜索、并行批量搜索以及全页面内容提取，核心功能包括高效的信息检索和处理能力。项目使用PowerShell编写，并提供跨平台支持，用户可以通过配置API密钥来提升搜索体验，虽然API密是可选的，但推荐使用以获得更高的请求速率和配额。适合需要集成强大搜索功能到AI助手或自动化脚本中的开发者及团队使用，在多种场景下都能发挥重要作用，如客服机器人、信息聚合服务等。",2,"2026-06-11 03:54:28","CREATED_QUERY"]