What problem does it solve? When automating GitHub integrations such as issue creation, workflows need the repository's remote URL, owner, and name, but manually inspecting Git configuration is error-prone and breaks when Git is missing or no remote is configured. ## Core Features & Use Cases - Remote URL Detection: Runs git config --get remote.origin.url to retrieve the configured origin remote. - URL Parsing: Extracts the repository owner and name from both HTTPS (https://github.com/<owner>/<repo>.git) and SSH (git@github.com:<owner>/<repo>.git) formats. - GitHub Verification: Confirms whether the remote actually points to github.com rather than assuming it from the URL shape. - Graceful Degradation: Returns an empty result with a warning instead of failing when Git is unavailable, the directory is not a repository, or no remote exists. - Use Case: In a spec-kit project, use this before creating GitHub issues so the workflow targets the correct repository without hardcoding owner and repo values. ## Quick Start Detect the Git remote URL for this repository and tell me the GitHub owner and repo name.