Documentation
README
GitHub Issues Management
Create, search, triage, and manage GitHub issues. Each section shows gh first,
then curl fallback.
Prerequisites
- Authenticated with GitHub (see
github-authskill) - Inside a git repo with GitHub remote, or specify repo explicitly
Setup
if command -v gh &>/dev/null && gh auth status &>/dev/null; then
AUTH="gh"
else
AUTH="curl"
fi
REMOTE_URL=$(git remote get-url origin)
OWNER_REPO=$(echo "$REMOTE_URL" | sed -E 's|.*github\.com[:/]||; s|\.git$||')
OWNER=$(echo "$OWNER_REPO" | cut -d/ -f1)
REPO=$(echo "$OWNER_REPO" | cut -d/ -f2)
1. Viewing Issues
This is the opening of the README. Read the full README on GitHub.