Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Unified real-time search engine skill for AI agents.
| Date | Stars |
|---|---|
| 2026-07-31 | 4928 |
| 2026-08-01 | 5025 |
| 2026-08-02 | 5025 |
| 2026-08-06 | 5025 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
35.0
growth rate 0.00%/day
# AnySearch Skill
[](https://opensource.org/licenses/Apache-2.0)
> English | [简体中文](./README_zh.md)
Unified real-time search engine skill for AI agents. Supports general web search, vertical domain search, parallel batch search, and full-page content extraction.
**[IMPORTANT!] Registration instructions can be found in this section: ### Register for an API Key (Recommended)**
Get started in 30 seconds: Register with just an email address. The AI agent will complete the whole process automatically, no verification code required.
[Jump to registration steps →](#register-for-an-api-key-recommended)
## Download & Install
### For AI Agents
If your agent platform supports a skill marketplace/store, search for **anysearch** and install from there. Otherwise, download and install manually:
```bash
# Download a pinned release (recommended). Replace v3.0.1 with the latest tag
# from https://github.com/anysearch-ai/anysearch-skill/releases
curl -L -o anysearch-skill.zip https://github.com/anysearch-ai/anysearch-skill/archive/refs/tags/v3.0.1.zip
# or: wget -O anysearch-skill.zip https://github.com/anysearch-ai/anysearch-skill/archive/refs/tags/v3.0.1.zip
# (For the latest unreleased changes, use .../archive/refs/heads/main.zip instead.)
# Unzip — creates a directory named anysearch-skill-<ref>, e.g. anysearch-skill-3.0.1
unzip anysearch-skill.zip
# Move it to your agent's skill directory, renaming it to "anysearch".
# Adjust the source directory name to match the ref you downloaded.
# Claude Code: mv anysearch-skill-3.0.1 ~/.claude/skills/anysearch
# OpenCode: mv anysearch-skill-3.0.1 ~/.config/opencode/skills/anysearch
# Cursor/Windsurf: mv anysearch-skill-3.0.1 <project>/.skills/anysearch
# Generic: mv anysearch-skill-3.0.1 <your_agent_skill_dir>/anysearch
# Shared agents: mv anysearch-skill-3.0.1 ~/.agents/skills/anysearch
```
`~/.agents/skills/` is a useful shared install location when multiple AI tools read from the same skill directory, including Codex, Cursor, and OpenClaw personal agent skills.
### For Humans
1. Download the latest release zip: https://github.com/anysearch-ai/anysearch-skill/releases
2. Unzip to your agent's skill directory
3. Configure API key (see below)
4. Run the entry test to verify installation
## API Key Configuration
An 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**.
### Register for an API Key (Recommended)
The agent can register the user and obtain an API key in a **single call** — no verification code, no manual signup. Ask the user for a **real email address**: it becomes the account username, and a randomly generated password is emailed to it.
```bash
curl -s -X POST "https://api.anysearch.com/v1/auth/email/register" \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]"}'
```
Success response (`code: 0`) returns the account info and a one-time plaintext API key:
```json
{
"code": 0,
"message": "success",
"data": {
"username": "[email protected]",
"email": "[email protected]",
"login_url": "https://www.anysearch.com/login",
"api_key": {
"id": "key_xxxxxxxx",
"key": "as_sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"key_prefix": "as_sk_xxxxxx...",
"name": "default",
"rate_limit": 100,
"quota_limit": 0,
"expires_at": null,
"created_at": "2026-06-23T10:23:00Z"
}
}
}
```
On success the agent MUST:
1. Write `data.api_key.key` to `.env` as `ANYSEARCH_API_KEY=<key>` — it is shown only once (it can also be retrieved later from the dashboard).
2. Tell the user their username (= email), the `login_url`, and that a **random password has been emailed to that address**.
3. Relay this note to the user: *A verification email has been sent to your inbox. If you don't see it within a few minutes, please checkExcerpt of 11,700 characters
Read on GitHubmorecry
25
Martha Kivelson · Anysearch
6
6
Aldrich Chen · Hillhouse Investment · China
5
3
CagedBird
2
1
Burak Bayır
1
1
1
Gavin Lin
1
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:91a708fb5eb0ff7a, desc:ai agents