What problem does it solve? Creating well-structured GitHub issues that follow a repository's conventions is tedious: you must find the right template, fill in required fields, apply correct labels, and avoid shell-escaping errors with multi-line Markdown bodies. This Skill automates that entire workflow. ## Core Features & Use Cases - Template Detection: Locates and reads issue templates from .github/ISSUE_TEMPLATE/, supporting both YAML forms (bug_report.yml, feature_request.yml) and Markdown templates. - Safe Issue Creation: Writes issue bodies to temporary files and uses gh issue create --body-file to prevent newline and special-character corruption. - Consistent Labeling: Applies the 🔒 maintainer only label by default to keep the backlog organized. - Use Case: After discovering a bug in the CLI, ask the agent to file a bug report; it drafts the title and body from the repository's bug report template, creates the issue via gh, and returns the issue link. ## Quick Start Create a GitHub issue for the bug I just described using the repository's bug report template.