github-issue-creator

Creates GitHub issues with structured templates, labels, and priorities via the gh CLI.

1|Updated Jul 2, 2026
One-click install
npx skills add https://github.com/tarabakz25/my-skills --skill github-issue-creator-tarabakz25
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: github-issue-creator
Source: https://github.com/tarabakz25/my-skills/tree/main/github-issue-creator
Command: npx skills add https://github.com/tarabakz25/my-skills --skill github-issue-creator-tarabakz25

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Writing well-structured GitHub issues with consistent titles, labels, and priorities is repetitive and often skipped, leading to untriaged backlogs. This Skill standardizes bug reports and feature requests and creates them directly through the GitHub CLI. ## Core Features & Use Cases - Structured Issue Creation: Generates bug reports and feature requests from templates covering reproduction steps, expected behavior, motivation, and alternatives. - Label and Priority Management: Applies type, priority, size, and triage labels, and can create missing priority labels in the repository. - Confirmation Workflow: Drafts the title, labels, and body for user review before running gh issue create. - Use Case: After discovering a broken password reset flow, ask the agent to file a bug; it drafts a titled, labeled issue with reproduction steps and creates it via gh after your confirmation. ## Quick Start Ask the agent to create a GitHub bug report for the login page password reset issue with high priority.

Frequently Asked Questions about github-issue-creator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a GitHub issue from the command line?▼

Use the gh CLI with `gh issue create --title --body --label` to file an issue directly from the terminal. This Skill builds the title, body, and labels for you, shows a draft for confirmation, then runs the command.

How to write a good bug report for GitHub?▼

A good bug report includes a summary, reproduction steps, expected versus actual behavior, environment details, and logs or screenshots. The Skill's bug template in references/templates.md structures all of these sections automatically.

Does this work with repositories that have no labels configured?▼

Yes. The Skill first checks existing labels with `gh label list` and can create missing priority labels such as priority: high, medium, and low using `gh label create` with predefined colors and descriptions.

Can I review the issue before it is created?▼

Yes. The Skill always presents the title, labels, and full body in a confirmation prompt and waits for your approval before executing `gh issue create`, so nothing is published without review.

What are the limitations of creating issues via the gh CLI?▼

The gh CLI requires authentication and network access to GitHub, and it operates on the current repository context. It cannot file issues across multiple repositories at once or attach images directly without manual upload.