โ† All skills
Tencent SkillHub ยท Developer Tools

GitHub Star Manager

Manage GitHub stars with AI-powered categorization and cleanup. Use when a user wants to organize their starred repos into GitHub Lists, clean up stale/depre...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage GitHub stars with AI-powered categorization and cleanup. Use when a user wants to organize their starred repos into GitHub Lists, clean up stale/depre...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

GitHub Star Manager

Requires gh (authenticated) + jq. For Lists operations: token needs user scope (Classic token recommended).

Authentication

This skill uses the gh CLI's existing auth session. Before using: Run gh auth login if not already authenticated For read-only operations (export, stats): default token scopes are sufficient For Lists operations (create list, add to list): token needs user scope โ€” run gh auth refresh -s user or use a Classic token with user scope No separate API key or environment variable is needed.

Export Stars

gh api user/starred --paginate --jq '.[] | { full_name, description, url: .html_url, language, topics, stars: .stargazers_count, forks: .forks_count, archived, updated_at, pushed_at }' | jq -s '.' > stars.json Slow for 1000+ stars (~1 min per 1000). Quick count: gh api user/starred --paginate --jq '. | length' | jq -s 'add'.

View Existing Lists

gh api graphql -f query='{ viewer { lists(first: 100) { nodes { id name description isPrivate items { totalCount } } } } }' --jq '.data.viewer.lists.nodes'

Create a List

gh api graphql -f query=' mutation($name: String!, $desc: String) { createUserList(input: {name: $name, description: $desc, isPrivate: false}) { list { id name } } }' -f name="LIST_NAME" -f desc="LIST_DESCRIPTION" --jq '.data.createUserList.list' Save the returned id for adding repos.

Add Repo to List

REPO_ID=$(gh api repos/OWNER/REPO --jq '.node_id') # Note: listIds is a JSON array, use --input to pass variables correctly echo '{"query":"mutation($itemId:ID!,$listIds:[ID!]!){updateUserListsForItem(input:{itemId:$itemId,listIds:$listIds}){user{login}}}","variables":{"itemId":"'$REPO_ID'","listIds":["LIST_ID"]}}' \ | gh api graphql --input - Add ~300ms delay between calls to avoid rate limits.

Unstar

gh api -X DELETE user/starred/OWNER/REPO Always confirm with user before unstarring.

Organize Workflow

Export stars to JSON Analyze the JSON โ€” suggest categories based on language, topics, purpose, domain Present suggestions to user for review Create Lists and add repos after confirmation Batch operations with delays between API calls

Cleanup Workflow

Export stars to JSON Use jq to find archived, stale (2+ years no push), low-star, or deprecated repos Present candidates to user, confirm before unstarring

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc