What problem does it solve?
It helps you reliably determine the GitHub repository owner and name by reading the configured Git remote, so downstream GitHub integrations can create links or issue context without manual copy-paste.
Core Features & Use Cases
- Git remote URL detection: Reads the current repository’s configured
remote.origin.url and safely handles cases where Git is unavailable or no remote exists.
- GitHub owner/repo extraction: Parses supported HTTPS and SSH Git URL formats to extract the repository owner and repository name.
- Safety-first reporting: Only reports GitHub details when the remote URL actually points to
github.com, avoiding incorrect assumptions.
Use case: You’re running an automation workflow that needs to open or create a GitHub issue in the correct repository for the current working tree.
Quick Start
Ask the AI to detect the Git remote URL for the current project and return the GitHub owner and repository name when the remote points to github.com.