EN DE
← ← Back to Index

github-repo-management

github › github-repo-management v1.1.0
GitHub Repositories Git Releases Secrets Configuration

Description

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

Relevance to Our Projects

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

SKILL.md Preview

# 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 "$GITHUB_TOKEN" ]; then
    if _hermes_env="${HERMES_HOME:-$HOME/.hermes}/.env"; [ -f "$_hermes_env" ] && grep -q "^GITHUB_TOKEN=" "$_hermes_

← ← Back to Index