github-repo-management
Clone, create, fork repos; manage remotes, releases.
npx skills add HezaoHezao/poirot --skill github-repo-management --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# GitHub Repository Management Create, clone, fork, configure, and manage GitHub repositories. ## Prerequisites - Authenticated with GitHub (see `github-auth` skill) ## 1. Clone ```bash # HTTPS git clone https://github.com/owner/repo.git # SSH git clone git@github.com:owner/repo.git # With gh (auto-forks if you don't have push access) gh repo clone owner/repo # Clone + set up remote for fork gh repo clone owner/repo -- --origin upstream git remote add origin https://github.com/$GH_USER/repo.git ``` ## 2. Create New Repository ```bash # With gh (creates on GitHub + clones locally) gh repo create my-project --public --clone --description "My project" # Private gh repo create my-project --private --clone # With git + curl mkdir my-project && cd my-project && git init curl -s -X POST \ -H "Authorization: token $GITHUB_TOKEN" \ https://api.github.com/user/repos \ -d '{"name":"my-project","private":true,"description":"My project"}' git remote add origin https://github.com/$GH_USER/my-project.git git push -u origin main ``` ## 3. Fork ```bash # With gh (forks + clones + sets up remotes) gh repo fork owner/repo --clone # With curl curl -s -X POST \ -H "Authorization: token $GITHUB_TOKEN" \
- Prerequisites
- 1. Clone
- 2. Create New Repository
- 3. Fork
- 4. Manage Remotes
- 5. Releases
- 6. Repository Settings
- 7. Secrets (for GitHub Actions)
- 8. Delete Repository
- Pitfalls
HTTPS git clone https://github.com/owner/repo.git SSH git clone git@github.com:owner/repo.git With gh (auto-forks if you don't have push access) gh repo clone owner/repo Clone + set up remote for fork gh repo clone owner/repo -- --origin upstream git remote add origin https://github.com/$GH_USER/repo.git With gh (creates on GitHub + clones locally)
What does the github-repo-management skill do?
Clone, create, fork repos; manage remotes, releases.
How do I install it?
Run `npx skills add HezaoHezao/poirot --skill github-repo-management --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From HezaoHezao/poirot, a repository with 193 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
