Create Pr logo

Create Pr

Organization
aiskillstore
create-pr

GitHubのプルリクエスト(PR)を作成する際に使用します。変更のコミット、プッシュ、PR作成を含む完全なワークフローを日本語で実行します。「PRを作って」「プルリクエストを作成」「pull requestを作成」などのリクエストで自動的に起動します。

Overview

Publisheraiskillstore
Repositorymarketplace
Skill namecreate-pr
Stars
427
Forks
45
Bundled files
1
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by aiskillstore on GitHub. Read the source before you install it.

Installation

Install the Create Pr AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/aiskillstore/marketplace.git /tmp/marketplace
mkdir -p .claude/skills
cp -r /tmp/marketplace/skills/0tarof/create-pr .claude/skills/create-pr
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Create Pr in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Create Pr on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Create Pr is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Pull Request作成スキル

このスキルは、GitHubのプルリクエスト作成に必要な一連のワークフローを自動化します。

IMPORTANT: このスキルを使用する際は、必ず日本語でユーザーとコミュニケーションを取ってください。

ワークフロー

1. 変更内容の確認

まず現在の状態を確認します:

bash
# 変更されたファイルを確認
git status

# 変更内容の差分を確認
git diff

# 最近のコミット履歴を確認(コミットメッセージのスタイルを把握)
git log -5 --oneline

2. 事前準備とチェック

コミット前に必要なチェックを実行します:

  1. リポジトリルートのCLAUDE.mdを確認し、プロジェクト固有の要件を確認
  2. テスト、リンター、ビルドステップが記載されている場合は実行
  3. エラーや失敗がある場合は、先に解決してから進める

このdotfilesリポジトリ固有の要件

  • Brewfileが変更された場合:bin/brew-checkを実行して検証
  • bin/内のスクリプトが変更された場合:適切なエラーハンドリングを確認
  • 変更されたスクリプトがある場合:可能であればテスト実行

3. 変更のステージングとコミット

重要:ファイルのステージングは必ず明示的なパスで行います:

bash
# ❌ 絶対に使用しない
git add .
git add -A

# ✅ 正しい方法
git add path/to/file1.txt path/to/file2.txt path/to/file3.txt

コミットメッセージは以下の形式で作成します:

bash
git commit -m "$(cat <<'EOF'
<変更の簡潔な説明>

<詳細な説明(必要に応じて)>

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"

コミットメッセージのスタイルは、git logで確認した既存のコミット履歴に合わせてください。

4. リモートへのプッシュ

現在のブランチをoriginにプッシュします:

bash
git push -u origin <branch-name>

リモートにブランチが存在しない場合は自動的に作成されます。

5. プルリクエストの作成

PRテンプレートの確認

まず、リポジトリにPRテンプレートが存在するか確認します:

bash
# PRテンプレートの存在確認
ls .github/PULL_REQUEST_TEMPLATE.md
PR本文の作成

テンプレートが存在する場合

  • テンプレートの内容を基にPR本文を作成

テンプレートが存在しない場合

  • 以下の構造でPR本文を作成:
    markdown
    ## 概要
    <変更の簡潔な説明を1-3個の箇条書きで>
    
    ## 変更内容
    <主な変更点のリスト>
    
    ## テスト
    <変更がどのようにテストされたか(該当する場合)>
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
PRの作成実行
bash
gh pr create --title "<PRのタイトル>" --body "$(cat <<'EOF'
<PR本文の内容>
EOF
)"

作成後、PR URLをユーザーに返します。

重要な注意事項

  1. 準備ステップをスキップしない:CLAUDE.mdに記載された要件は必ず実行
  2. テストやチェックが失敗したら進まない:失敗を解決してから次に進む
  3. 明示的なファイルパスでステージングgit add .git add -Aは絶対に使用しない
  4. 日本語でコミュニケーション:ユーザーとのやり取りは常に日本語で行う
  5. 不明な点があれば確認:どのステップでも不明な点があれば、日本語でユーザーに確認を取る

エラーハンドリング

  • コマンドが失敗した場合は、エラーメッセージを日本語でユーザーに説明
  • 次のステップに進む前に、問題を解決するための提案を提示
  • 必要に応じて、ユーザーに追加の情報や確認を求める

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Create Pr AI skill do?

GitHubのプルリクエスト(PR)を作成する際に使用します。変更のコミット、プッシュ、PR作成を含む完全なワークフローを日本語で実行します。「PRを作って」「プルリクエストを作成」「pull requestを作成」などのリクエストで自動的に起動します。

Why use Create Pr on TypingMind?

Because you install it once and use it with any model. Create Pr is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Create Pr in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/aiskillstore/marketplace/tree/main/skills/0tarof/create-pr. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Create Pr?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Create Pr?

As many as you like. As long as a model supports skills, you can use Create Pr with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Create Pr AI skill free?

It is published on GitHub by aiskillstore. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇