Claude-skill-registry gh-listing-milestones
Lists milestones in a repository. Use to track progress against release goals.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/gh-listing-milestones" ~/.claude/skills/majiayu000-claude-skill-registry-gh-listing-milestones && rm -rf "$T"
manifest:
skills/data/gh-listing-milestones/SKILL.mdsource content
Listing GitHub Milestones
Purpose
Retrieves milestones using the
gh api or gh issue list (via JSON) as there isn't a direct gh milestone list.
1. Safety & Verification
- API Use: Requires making a GET request to the milestones endpoint.
2. Common Workflows
Workflow: List Active Milestones
Fetches milestones and their states.
Command:
gh api repos/:owner/:repo/milestones --jq '.[] | {number: .number, title: .title, state: .state}'