Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

cubrid-pr-createcubrid 公关创建

Agent Skill

cubrid-pr-create 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

210

周安装

9

GitHub Stars

2

下载量

73
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cubrid-pr-create(cubrid 公关创建)
来源仓库:https://github.com/vimkim/my-cubrid-skills
仓库路径:skills/cubrid-pr-create
安装命令:
npx skills add https://github.com/vimkim/my-cubrid-skills --skill cubrid-pr-create
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/vimkim/my-cubrid-skills --skill cubrid-pr-create

简介

cubrid-pr-create 按照团队规范自动生成 GitHub Pull Request,标题包含 JIRA 编号。

  • 适用于提交 CUBRID 项目变更前的标准化 PR 创建流程辅助。
  • 支持从分支名提取 ticket 号、指定基础分支与填写详细描述正文。
  • 通过 npx skills add 安装,需配置 GitHub token 并具有目标仓库推送权限。
  • PR 描述应避免直接复制日志,而应总结变更意图与测试覆盖情况。

SKILL.md

CUBRID PR Creator

Create GitHub pull requests for the CUBRID project following team conventions.

When to Use

  • User says "create pr", "make pr", "PR 만들어", "PR 올려", "풀리퀘"
  • User wants to push changes and open a PR against CUBRID/CUBRID or a fork

Arguments

Pass optional arguments to customize:

  • /cubrid-pr-create CBRD-26583 — Use this JIRA ticket number
  • /cubrid-pr-create CBRD-26583 feat/oos — Ticket + base branch
  • /cubrid-pr-create — Interactive: detect from branch name or ask

Conventions

Title Format

[CBRD-XXXXX] Short English description
  • The JIRA ticket number is required. Extract from branch name (e.g., cbrd-26583-oos-compactCBRD-26583) or ask the user.
  • Description should be concise (<60 chars after the tag), in English.
  • Use imperative mood: "Fix", "Add", "Refactor", "Support", not "Fixed", "Adding".

Body Format

  • Section headers (##): Always in English
  • Body text: Always in Korean
  • Code snippets, function names, file paths: Keep as-is (English/code)

Required Sections

The JIRA issue link must appear at the very top of the PR body, before any section headers.

https://jira.cubrid.org/browse/CBRD-XXXXX

## Description
(변경 사항에 대한 배경 및 설명)

## Implementation
(구현 방법 및 주요 변경 사항 요약)

## Remarks
(참고 사항, 주의점, 후속 작업 등)

Optional Sections

Add when relevant:

  • ## Test Plan — 테스트 방법 및 검증 계획
  • ## Related Issues — 관련 JIRA 이슈 또는 PR 링크

Execution Steps

Step 1: Gather Context

Run these in parallel:

  1. git status — check for uncommitted changes
  2. git branch -vv — current branch and tracking info
  3. git remote -v — available remotes

If there are uncommitted changes, warn the user and ask whether to proceed or commit first.

Step 2: Determine PR Parameters

  1. JIRA ticket: Extract from arguments, branch name (cbrd-XXXXX or CBRD-XXXXX pattern), or ask.
  2. Base branch: If not specified, detect:

- For feat/oos* branches → base is feat/oos - For CBRD-* branches → base is develop - For cubvec/* branches → base is cubvec/cubvec - Otherwise ask the user

  1. Target repo: Default CUBRID/CUBRID. Use --repo if different.
  2. Source: Determine the user's fork remote (typically vk for vimkim/cubrid). The head ref format is <github-user>:<branch>.

Step 3: Analyze Changes

  1. Fetch the base branch: git fetch <upstream-remote> <base-branch>
  2. Show commits: git log --oneline <upstream>/<base>..HEAD
  3. Show diff stat: git diff <upstream>/<base>...HEAD --stat
  4. Read the full diff to understand all changes.
  5. If a JIRA ticket was identified, fetch context with /jira CBRD-XXXXX for richer description.

Step 4: Draft PR Content

Based on the diff analysis:

  1. Title: [CBRD-XXXXX] Imperative English summary
  2. Body: Start with the JIRA link on the first line, then Korean text with English ## headers:

- https://jira.cubrid.org/browse/CBRD-XXXXX — 맨 위에 JIRA 이슈 링크 - ## Description — 왜 이 변경이 필요한지 배경 설명 - ## Implementation — 주요 변경 내용을 bullet points로 정리. 파일명, 함수명 포함. - ## Remarks — 리뷰어가 알아야 할 참고 사항, 제한 사항, 후속 작업

Show the draft to the user and ask for confirmation before creating.

Step 5: Push and Create PR

  1. Push the branch to the user's fork: git push <fork-remote> <branch> -u
  2. Create the PR using gh: gh pr create --repo CUBRID/CUBRID \ --draft \ --base <base-branch> \ --head <user>:<branch> \ --assignee vimkim \ --title "[CBRD-XXXXX] Title" \ --body "$(cat <<'EOF' https://jira.cubrid.org/browse/CBRD-XXXXX ## Description 한국어 설명... ## Implementation 한국어 구현 내용... ## Remarks 한국어 참고 사항... EOF)"
  3. Print the resulting PR URL.

Example Output

PR created: https://github.com/CUBRID/cubrid/pull/6950

Title: [CBRD-26583] Re-enable OOS OID replacement in heap records
Base:  feat/oos
Head:  vimkim:feat/oos-replace-oos-oid

Tips

  • If the branch has already been pushed, skip the push step.
  • If a PR already exists for the branch, show it instead of creating a duplicate.
  • For multi-commit PRs, summarize the overall change rather than listing each commit message.
  • Always use gh pr create with heredoc for the body to handle multi-line Korean text correctly.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.23%
按下载量换算24

Claude

32.48%
按下载量换算24

Cursor

18.08%
按下载量换算13

Gemini CLI

9.77%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills