gitee_explore
Use real commit, star, and fork data to discover trending repos on Gitee. Choose between a live activity radar, top-starred, or top-forked discovery, with optional language filtering and Chinese-to-English translation.
Instructions
Explore what is humming on Gitee - live ranked activity radar, top-starred and top-forked discovery.
[RATIONALE] Gitee has no public trending API (the explore pages are behind an anti-bot challenge). One tool consolidates the anonymous radar, the token-tier sorted searches, and seed maintenance instead of four separate discovery tools.
Return Format
{"success": bool, "message": str, "data": {"repos": [...], "total": int, "dead_seeds": [...], "tier": str, "generated_at": str}} Each repo: {full_name, owner, description, translation, language, stargazers_count, forks_count, pushed_at, activity_score, recent_commits}
Examples
gitee_explore(operation="humming", limit=10) gitee_explore(operation="humming", language="Python", translate=True) gitee_explore(operation="top_starred", limit=15)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max repos to return (1-50). | |
| language | No | Filter by main language, e.g. 'Python', 'Java' (empty = all). | |
| operation | No | Operation: 'humming' derives a ranked live feed from real commit/star/forks data of popular seed repos (works anonymously); 'top_starred' / 'top_forked' query repo search sorted by stars or forks (requires GITEE_TOKEN); 'recommended' returns the seed list; 'refresh' re-verifies seed repos and drops dead ones. | humming |
| translate | No | Translate Chinese descriptions to English via local LLM. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||