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. Supports general web search, vertical domain search, parallel batch search, and full-page content extraction.
| Date | Stars |
|---|---|
| 2026-07-31 | 4928 |
| 2026-08-01 | 5025 |
| 2026-08-02 | 5025 |
| 2026-08-11 | 5315 |
| 2026-08-18 | 5655 |
| 2026-08-19 | 5720 |
| 2026-08-20 | 5764 |
| 2026-08-21 | 5809 |
| 2026-08-22 | 5828 |
| 2026-08-23 | 5857 |
| 2026-08-24 | 5888 |
| 2026-08-25 | 5911 |
| 2026-08-26 | 5927 |
| 2026-08-27 | 5947 |
| 2026-08-28 | 5964 |
| 2026-08-29 | 5975 |
| 2026-08-30 | 5984 |
| 2026-08-31 | 5993 |
| 2026-09-01 | 6011 |
| 2026-09-02 | 6025 |
| 2026-09-03 | 6045 |
| 2026-09-04 | 6058 |
| 2026-09-05 | 6067 |
| 2026-09-06 | 6081 |
| 2026-09-07 | 6093 |
| 2026-09-08 | 6106 |
| 2026-09-09 | 6115 |
| 2026-09-10 | 6127 |
| 2026-09-11 | 6137 |
| 2026-09-12 | 6154 |
| 2026-09-13 | 6167 |
| 2026-09-14 | 6185 |
| 2026-09-15 | 6191 |
| 2026-09-16 | 6203 |
| 2026-09-17 | 6214 |
| 2026-09-18 | 6222 |
| 2026-09-19 | 6228 |
| 2026-09-20 | 6237 |
Today
+9 stars today
This week
+70 stars this week
This month
+428 stars this month
Momentum
141.0
growth rate 1.14%/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.1.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.1.1.zip
# or: wget -O anysearch-skill.zip https://github.com/anysearch-ai/anysearch-skill/archive/refs/tags/v3.1.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.1.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.1.1 ~/.claude/skills/anysearch
# OpenCode: mv anysearch-skill-3.1.1 ~/.config/opencode/skills/anysearch
# Cursor/Windsurf: mv anysearch-skill-3.1.1 <project>/.skills/anysearch
# Generic: mv anysearch-skill-3.1.1 <your_agent_skill_dir>/anysearch
# Shared agents: mv anysearch-skill-3.1.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.
```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) and the `login_url`.
Error handling (always `code: -1` on error; branch on the `message` string):
| message | what to do |
| ------------------------------Excerpt of 11,437 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