github-repo-management Skill
Clone/create/fork repos; manage remotes, releases. Published by NousResearch in hermes-agent.
What is github-repo-management Skill?
Clone/create/fork repos; manage remotes, releases. Published by NousResearch in hermes-agent. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Developers using hermes-agent
Technical details
- Install or run with Copy skill directory
When to use github-repo-management Skill
- Use it for developers using hermes-agent.
Built with
Editorial notes
Source
- Creator: NousResearch
- Repository: NousResearch/hermes-agent
- Skill file: skills/github/github-repo-management/SKILL.md
What it does
Clone/create/fork repos; manage remotes, releases.
Skill instructions
GitHub Repository Management Create, clone, fork, configure, and manage GitHub repositories. Each section shows gh first, then the git + curl fallback. Prerequisites - Authenticated with GitHub (see github-auth skill) Setup bash if command -v gh &/dev/null && gh auth status &/dev/null; then AUTH="gh" else AUTH="git" if [ -z "$GITHUBTOKEN" ]; then if hermesenv="${HERMESHOME:-$HOME/.hermes}/.env"; [ -f "$hermesenv" ] && grep -q "^GITHUBTOKEN=" "$hermesenv"; then GITHUBTOKEN=$(grep "^GITHUBTOKEN=" "$hermesenv" | head -1 | cut -d= -f2 | tr -d '\n\r') elif grep -q "github.com" ~/.git-credentials 2/dev/null; then GITHUBTOKEN=$(grep "github.com" ~/.git-credentials 2/dev/null | head -1 | sed 's|https://[^:]:([^@])@.|\1|') fi fi fi Get your GitHub username (needed for several operations) if [ "$AUTH" = "gh" ]; then GHUSER=$(gh api user --jq '.login') else GHUSER=$(curl -s -H "Authorization: token $GITHUBTOKEN" https://api.github.com/user | python3 -c "import sys,json; print(json.load(sys.stdi
Explore related resources
Frequently asked questions
What is github-repo-management?
github-repo-management is a open-source AI agent skill with Copy skill directory. Clone/create/fork repos; manage remotes, releases.
Who is github-repo-management best for?
github-repo-management is best for reusing agent instructions, scripts, and references.
How do I install github-repo-management?
Install or run github-repo-management using Copy skill directory. Check github-repo-management for the latest setup command.
Is github-repo-management actively maintained?
github-repo-management may need a closer maintenance check before production use.
Auto-fetched from GitHub.