Agent skill

github-repo-management

Clone, create, fork repos; manage remotes, releases.

HezaoHezaogithub.com/HezaoHezaoGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add HezaoHezao/poirot --skill github-repo-management --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Declared author: Adapted from hermes-agent (Nous Research, MIT)
Allowed tools: -bash
Path: poirot/backend/agents/skill/builtin_skills/software-development/github-repo-management/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 193
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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" \

What's inside
Steps it walks through
  1. Prerequisites
  2. 1. Clone
  3. 2. Create New Repository
  4. 3. Fork
  5. 4. Manage Remotes
  6. 5. Releases
  7. 6. Repository Settings
  8. 7. Secrets (for GitHub Actions)
  9. 8. Delete Repository
  10. Pitfalls
Commands it runs
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)
More from poirot
All skills →
About this skill
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.

Keep going