Claude-skill-registry gh-listing-projects
Lists GitHub Projects (v2). Use when you need to find project IDs or view available boards.
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-projects" ~/.claude/skills/majiayu000-claude-skill-registry-gh-listing-projects && rm -rf "$T"
manifest:
skills/data/gh-listing-projects/SKILL.mdsource content
Listing GitHub Projects
Purpose
Retrieves projects associated with an owner using the
gh project list command.
1. Safety & Verification
- Owner Flag: The
flag is mandatory for organization-level projects.--owner
2. Common Workflows
Workflow: List Personal Projects
Lists projects for the current user.
Command:
gh project list --owner "@me"
Workflow: List Org Projects
Lists projects for a specific organization.
Command:
gh project list --owner "my-org" --json number,title,id