What problem does it solve? When automating GitHub workflows such as issue creation, you need to know which repository the current project points to. This Skill detects the Git remote URL and extracts the repository owner and name so downstream GitHub integrations can target the correct repository. ## Core Features & Use Cases - Remote URL Detection: Runs git config --get remote.origin.url to retrieve the configured remote. - URL Parsing: Extracts 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, avoiding false assumptions. - Graceful Degradation: Returns an empty result without errors when Git is unavailable, the directory is not a repository, or no remote is configured. - Use Case: Before creating a GitHub issue from a spec-kit workflow, use this Skill to determine the target repository owner and name automatically. ## Quick Start Detect the Git remote URL for this project and tell me the GitHub repository owner and name.