bitbank-mcp-server: Skill for Cursor

.cursor/skills/create-pr/SKILL.md

create-pr is a skill for Cursor from bitbankinc/bitbank-mcp-server. It costs 87 tokens per session (1,027 once invoked), scanned A, original, MIT.

A skill for creating structured GitHub pull requests using a repository's pull-request template.

In plain words
What is it for?
Use it when preparing a PR, including its title, description, change type, related issues, changes made, checklist and notes.
Why use it?
It turns branch changes into a consistent PR description and checks the branch, commits and related issue information first.

Skill for Cursor

Written for Cursor: installed under .cursor/.

This is bitbankinc/bitbank-mcp-server's own configuration. It tells Cursor how to work on bitbank-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything bitbank-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to bitbankinc/bitbank-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/bitbankinc/bitbank-mcp-server/main/.cursor/skills/create-pr/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/bitbankinc/bitbank-mcp-server

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for create-pr

README.md
[![agentmods](https://agentmods.dev/badge/skills/bitbankinc/bitbank-mcp-server/create-pr/github.svg)](https://agentmods.dev/skills/bitbankinc/bitbank-mcp-server/create-pr)
Your own site
<a href="https://agentmods.dev/skills/bitbankinc/bitbank-mcp-server/create-pr"><img src="https://agentmods.dev/badge/skills/bitbankinc/bitbank-mcp-server/create-pr/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for create-pr

Your own site · 80×15
<a href="https://agentmods.dev/skills/bitbankinc/bitbank-mcp-server/create-pr"><img src="https://agentmods.dev/badge/skills/bitbankinc/bitbank-mcp-server/create-pr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,027 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00087 $0.01027
Opus 5 $0.00044 $0.00513
Sonnet 5 $0.00017 $0.00205
Haiku 4.5 $0.00009 $0.00103

Measured 8d ago against content hash 134569e355b1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

create-pr scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/skills/create-pr/SKILL.md · 114 lines

What it actually says

create-pr

bitbank-mcp-server リポジトリの PR テンプレートに従って構造化 PR を作成する。

PR テンプレートの場所

.github/pull_request_template.md を必ず読み取り、最新の形式に従って本文を生成すること。

手順

Step 1: ブランチの準備を確認

git status          # 未コミットの変更がないことを確認
git branch --show-current
git fetch origin
git log origin/main..HEAD --oneline  # origin/main との差分コミットを確認

未コミットの変更がある場合: lint-and-commit スキルに従ってコミットする。

ブランチが未 push の場合: ユーザーに確認してから push する:

git push -u origin <ブランチ名>

Step 2: PR 本文の下書きを作成

.github/pull_request_template.md を読み取り、その形式に従って以下の内容を埋める。

Description セクション:

  • git log origin/main..HEAD --onelinegit diff origin/main...HEAD --stat から変更内容を要約する
  • 背景・動機、破壊的変更や注意点があれば記載する

Type of Change セクション:

  • 変更内容に合うチェックボックスを選択する

Related Issue(s) セクション:

  • コミットメッセージや会話のコンテキストから GitHub Issue 番号を探す
  • コマンド引数に issue 番号(例: #123)が含まれる場合はそれを使用する(例: Fixes #123
  • 見つからない場合は「なし」と記載する

Changes Made セクション:

  • 変更内容の主要な箇条書きを記載する

Checklist セクション:

  • 実施済みの項目を確認してチェックする

Additional Notes セクション:

  • 追記内容がない場合は空欄のまま

Step 3: PR のタイトルとラベルを提案

タイトルの形式:

<type>(<scope>): <subject>

コミットメッセージから生成する。

ラベルの候補:

変更種別 ラベル
機能追加 feat
バグ修正 fix
ドキュメント docs
リファクタリング refactor
設定・ビルド chore

Step 4: ユーザーに確認して PR を作成

提案内容をユーザーに確認し、承認を得てから実行する。

実行前に gh コマンドの存在を確認する:

command -v gh
  • gh が見つかった場合: 以下のコマンドで PR を作成する
gh pr create \
  --title "<タイトル>" \
  --body "$(cat <<'EOF'
<PR本文>
EOF
)"
  • gh が見つからない場合: ユーザーに以下を案内してこのステップを終了する
    • インストール方法: brew install gh を実行後、gh auth login で認証
    • 代替手段: push 済みのブランチから GitHub Web UI で PR を作成する
      • URL 例: https://github.com/bitbankinc/bitbank-mcp-server/compare/<ブランチ名>

Step 5: PR をブラウザで開く

PR 作成後、ブラウザで開く:

gh pr view --web

注意

  • push と gh pr create の実行はユーザーの確認後のみ行う
  • テンプレートの最新形式は必ず .github/pull_request_template.md を読み取って確認する
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 114 lines · 0 tokens per session scan A 134569e355b1

Subscribe to this mod's changes

create-pr is a skill published in the GitHub repository bitbankinc/bitbank-mcp-server (0 stars, last pushed 5mo ago), licensed MIT. It adds 87 tokens to every session and 1,027 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

prowler-commit

Creates professional git commits following conventional-commits format. Trigger: When creating commits, after completing code changes, when user asks to commit.

prowler-cloud/prowler · 33 tokens

gh-auth-isolation

Safely manage multiple GitHub identities (EMU + personal) in agent workflows.

github/gh-aw · 20 tokens

comet-github

A routing guide for Comet-related GitHub work. It directs requests about pull requests, issues, CI failures, ideas, and fixes to the appropriate review or implementation process.

rpamis/comet · 72 tokens

github-skill

Work with GitHub via the gh CLI — clone repositories, create/list/merge pull requests, create/list issues, and run any other gh command (API calls, workflow runs, releases, repo administration). List operations return parsed JSON.

zeenie-ai/OpenCompany · 51 tokens

re0-merge

Review and land an external contribution the way this suite does: gate it against the thesis, land it with the author's credit intact, complete a new skill rather than merging it raw, then approve, credit, and explain before closing. Use when reviewing a pull request, as any collaborator or maintainer, not only the…

LilMGenius/paperthin · 70 tokens

nvca-chart-release

Release NVCA Operator chart changes from the native monorepo source to the vendored Helm chart. Use when updating the vendored NVCA Operator chart, changing NVCA image refs, publishing helm-nvca-operator, or validating the chart against a self-managed control plane.

NVIDIA/nvcf · 61 tokens