issue-creator

Create GitHub Issues interactively from templates using the gh CLI.

Updated Jun 11, 2025
One-click install
npx skills add https://github.com/nobu007/connective-byte --skill issue-creator-nobu007
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: issue-creator
Source: https://github.com/nobu007/connective-byte/tree/main/.claude/skills/issue-creator
Command: npx skills add https://github.com/nobu007/connective-byte --skill issue-creator-nobu007

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires PyYAML, and includes scripts (resource) and references (resource) components.

What problem does it solve?

GitHub Issueをテンプレートベースで対話的に作成するスキルです。対話的なフロー、ラベル付与、自動バッチ作成、Agent実行設定をサポートします。

Core Features & Use Cases

  • 対話的なIssue作成フロー: 対話を通じてIssueを作成、更新、分類します。
  • 自動ラベル付与: 適切なラベルを自動で提案・適用します。
  • バッチ作成対応: 複数Issueの一括作成・管理が可能です。
  • Agent実行設定: 自動化ワークフローを設定可能です。

Quick Start

from issue_creator import IssueCreator creator = IssueCreator() issue = creator.create_interactive()

Frequently Asked Questions about issue-creator

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

FAQPage Schema
How do I automate GitHub issue creation from templates?

Automating GitHub issue creation from templates uses the gh CLI with template-driven workflows to generate issues interactively or in batch. This Skill applies YAML-based templates, automatically assigns labels, milestones, and assignees, then outputs JSON for integration into your pipeline.

Can I create multiple GitHub issues at once using YAML configuration?

Yes, batch issue creation processes multiple issues through YAML configuration files. The Skill reads structured YAML, validates titles and inputs, applies consistent labeling and milestone assignments, then creates all issues in a single operation.

What's the best way to standardize GitHub issues across a project team?

Template-driven issue creation standardizes formatting and metadata across teams by enforcing consistent body structure, label application, and field population. Interactive flows guide contributors through required fields while batch modes enforce compliance at scale.

Does this work with GitHub projects using the gh command-line tool?

Yes, this Skill integrates directly with GitHub projects via the gh CLI. It discovers repository context automatically, constructs template-based issue bodies, applies metadata like labels and assignees, and supports both interactive and batch workflows.

How do I integrate issue creation output into downstream workflows?

The Skill generates JSON output from completed issue operations, enabling integration into CI/CD pipelines, notification systems, or tracking tools. This structured output captures issue IDs, metadata, and creation status for further automation.

What validation does template-based issue creation perform?

Template validation ensures titles meet requirements, input data conforms to expected formats, and YAML configuration is syntactically correct. Robust validation prevents malformed issues and catches configuration errors before GitHub API calls execute.