# Send GitHub Star Manager to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "github-star-manager-skill",
    "name": "GitHub Star Manager",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/cosformula/github-star-manager-skill",
    "canonicalUrl": "https://clawhub.ai/cosformula/github-star-manager-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/github-star-manager-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-star-manager-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "github-star-manager-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T17:54:42.908Z",
      "expiresAt": "2026-05-10T17:54:42.908Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-star-manager-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-star-manager-skill",
        "contentDisposition": "attachment; filename=\"github-star-manager-skill-0.1.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "github-star-manager-skill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/github-star-manager-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/github-star-manager-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/github-star-manager-skill",
    "agentUrl": "https://openagent3.xyz/skills/github-star-manager-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/github-star-manager-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/github-star-manager-skill/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: cosformula
- Version: 0.1.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T17:54:42.908Z
- Expires at: 2026-05-10T17:54:42.908Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/github-star-manager-skill)
- [Send to Agent page](https://openagent3.xyz/skills/github-star-manager-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/github-star-manager-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/github-star-manager-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/github-star-manager-skill)