npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

github-issue-pr-templates

v1.0.3

Published

日本語対応のGitHub Issue/PRテンプレート集とCLI

Readme

GitHub Issue・PR テンプレート集

日本語対応のGitHub Issue/PRテンプレート集とCLIツールです。開発チームが効率的に課題報告や機能提案を行えるよう、包括的なテンプレートセットを提供します。

特徴

  • 🇯🇵 日本語完全対応 - 日本の開発チーム向けに最適化
  • 📝 豊富なテンプレート - バグ報告、機能要求、文書修正、パフォーマンス問題など
  • 🚀 簡単インストール - CLIコマンド一つで即座にセットアップ
  • 🤖 Claude Code連携 - AI開発環境との統合サポート
  • TypeScript製 - 型安全で保守性の高いコードベース
  • 🎯 カスタマイズ可能 - プロジェクトのニーズに応じて選択的インストール

使用方法

インストール不要。npxで直接実行できます。

基本コマンド

# インタラクティブインストール
npx github-issue-pr-templates install

# 全テンプレートを一括インストール
npx github-issue-pr-templates install --all

# 特定タイプのみインストール
npx github-issue-pr-templates install --type bug,feature,typo

# Claude Code用設定も含めてインストール
npx github-issue-pr-templates install --claude

# 利用可能テンプレート一覧
npx github-issue-pr-templates list

# テンプレート削除
npx github-issue-pr-templates remove

# テンプレート更新
npx github-issue-pr-templates update

提供テンプレート

Issue テンプレート

| テンプレート | 説明 | ラベル | |-------------|------|--------| | バグレポート | 不具合や問題の報告用 | bug | | 機能要求 | 新機能やアイデアの提案用 | enhancement | | 質問 | 使用方法や技術的質問用 | question | | ドキュメント | 文書の改善や追加要求用 | documentation | | パフォーマンス | 性能問題の報告用 | performance | | Typo修正 | 誤字脱字や表記ゆれ修正用 | typo, documentation |

PR テンプレート

  • 統一形式のプルリクエスト - 変更内容、テスト手順、チェックリスト付き

追加ファイル

  • Claude Code連携設定 - AI開発環境用のテンプレートガイド

Claude Code との連携

# Claude Code用設定を含めてインストール
npx github-issue-pr-templates install --claude

このオプションにより以下が追加されます:

  • .claude/templates.md - Claude Code用のIssue/PRテンプレートガイド
  • AI開発環境でのテンプレート活用指針

カスタマイズ

特定テンプレートのみインストール

# バグレポートと機能要求のみ
npx github-issue-pr-templates install --type bug,feature

# ドキュメント関連のみ
npx github-issue-pr-templates install --type documentation,typo

既存ファイルの上書き

# 確認なしで強制上書き
npx github-issue-pr-templates install --force

プロジェクト構成

インストール後のディレクトリ構成:

your-project/
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.md
│   │   ├── feature_request.md
│   │   ├── question.md
│   │   ├── documentation.md
│   │   ├── performance.md
│   │   └── typo_fix.md
│   └── pull_request_template.md
├── .claude/                    # --claude オプション時のみ
    └── templates.md

テンプレート例

バグレポート

## バグの概要
バグの内容を簡潔に記述してください。

## 再現手順
1. '...'にアクセス
2. '....'をクリック
3. エラーが発生

## 期待される動作
正常に動作した場合の結果を記述してください。

## 環境情報
- OS: [例: macOS 13.0]
- ブラウザ: [例: Chrome 118]
- Node.js: [例: v18.17.0]

機能要求

## 機能要求の背景
この機能が必要な理由を記述してください。

## 提案する解決策
具体的な解決策を記述してください。

## 期待される効果
実装後の期待される効果を記述してください。

コマンドリファレンス

install

テンプレートをプロジェクトにインストールします。

npx github-issue-pr-templates install [options]

オプション:

  • --all - 全テンプレートをインストール
  • --type <types> - 特定タイプのみインストール(カンマ区切り)
  • --claude - Claude Code用設定も含める
  • --force - 確認なしで上書き

list

利用可能なテンプレート一覧を表示します。

npx github-issue-pr-templates list

remove

インストール済みテンプレートを削除します。

npx github-issue-pr-templates remove [options]

update

既存テンプレートを最新版に更新します。

npx github-issue-pr-templates update

トラブルシューティング

パッケージの実行エラー

# 初回実行時にダウンロードされます
npx github-issue-pr-templates install

既存ファイルとの競合

# 強制上書きで解決
npx github-issue-pr-templates install --force

npm cacheの問題

# npm cacheをクリア
npm cache clean --force

# 再実行
npx github-issue-pr-templates install

関連リンク