Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

pr-message-writer公关消息撰写者

Agent Skill

pr-message-writer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

222

周安装

9

GitHub Stars

16

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill pr-message-writer

简介

pr-message-writer 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

PR Message Writer

Write comprehensive, well-structured pull request descriptions by analyzing code changes and following established best practices for technical documentation.

Workflow

Step 1: Gather Context

  1. Determine the main branch: git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@' Falls back to main or master if not set.
  2. Find the merge base: MAIN_BRANCH=$(git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's@^refs/remotes/origin/@@' || echo "main") MERGE_BASE=$(git merge-base HEAD origin/$MAIN_BRANCH)
  3. Collect all changes since the branch diverged: git log --oneline $MERGE_BASE..HEAD git diff --stat $MERGE_BASE..HEAD git diff $MERGE_BASE..HEAD
  4. If a ticket ID or branch name is provided as an argument, include it in the PR title.
  5. Gather ticket context. The ticket content is essential for writing accurate testing instructions and understanding the business requirement. If the ticket content is available in context (e.g., from a previous conversation or your project tracker), use it. If it is NOT available or has fallen out of context, ask the user to provide the ticket content before proceeding. Do not guess or invent requirements.

Step 2: Analyze Changes

Read every changed file and understand:

  • What was changed (new files, modified logic, deleted code)
  • Why the change was made (bug fix, new feature, refactoring, performance)
  • Impact on existing functionality (breaking changes, migrations, cache invalidation)
  • Dependencies introduced or removed

Step 3: Follow the Template

Use the PR message template for structure: template

Review real-world examples for tone and detail level: examples

Step 4: Match Change Type to Categories

Apply the appropriate sections based on what the PR touches:

CategoryWhen to Include
Database and Entity/Model ChangesNew tables, columns, migrations, schema changes
API Changes (REST/GraphQL)New or modified endpoints, query/mutation changes
Admin Interface ChangesNew admin pages, filters, list views, form fields
Caching and PerformanceCache keys, invalidation, query optimization
Security and PermissionsAuth rules, role checks, access control changes
Event HandlingNew events, handlers, message queue changes
TestingNew or modified test cases, fixtures, test utilities

Step 5: Write Testing Instructions (Optional)

Before writing testing scenarios, ask the user whether they want testing scenarios included in this PR message. Testing scenarios are optional. If the user declines, skip this step entirely and omit the "Test scenarios" section from the PR message. Still include the "Testing instructions" section with basic verification steps and database queries if applicable.

If the user wants testing scenarios included:

Target audience: QA testers with ZERO codebase knowledge. They do not know about internal code structure, classes, services, or any implementation details. Write every instruction as if explaining to someone who has never seen the code and never will.

Rules for testing instructions:

  • NEVER reference code -- no file paths, class names, method names, variable names, or internal architecture
  • NEVER use technical implementation terms -- no internal framework concepts, no code-level abstractions
  • If UI exists, provide exact click-by-click navigation: which URL to open, which button to click, which field to fill, what value to enter, what to expect on screen
  • If no UI exists (API-only or GraphQL-only), provide the exact request to execute -- full query/mutation with example variables, which tool to use (GraphQL playground, Postman, curl), and the exact URL/endpoint
  • Database queries are OK -- QA knows how to run SQL. Include queries when there is no other way to verify something through UI or API
  • Every scenario is checkboxed -- use - [] **Scenario N: Name** so QA can tick them off
  • Every scenario ends with "Expected results" -- a bullet list of what should be visible/changed after the steps
  • Every scenario is step-by-step -- numbered steps, one action per step
  • Use plain language -- "Go to the admin panel", "Click the 'Users' menu item", "You should see a green success message"

Finding real URLs and UI paths

When a scenario involves navigating to a page, search the codebase for the actual route/URL rather than guessing or using placeholder URLs. Look in:

  • Route configuration files (e.g., route definitions, annotations, attributes, decorators)
  • Controller or handler definitions with route mappings
  • Frontend router definitions (e.g., client-side router configs, page-based routing)

Always provide the real relative URL path (e.g., /en/account/internal-store) rather than generic placeholders like https://your-staging.example.com/store. If the route has dynamic segments, show the pattern and explain what to substitute (e.g., /en/account/store/checkout/{packageId} -- replace {packageId} with the ID from the previous step).

When a feature is reachable through the UI, lead with the UI navigation -- describe how to get there by clicking through menus and buttons. Only fall back to direct URL navigation when there is no UI path or the UI path is too many clicks deep.

Providing test data

Always provide concrete, realistic test data that QA can copy-paste directly. Never say "enter a valid credit card" or "use test credentials" without giving the actual values.

Common test data to include when relevant:

  • Credit cards (Stripe test mode): 4242 4242 4242 4242 (Visa, succeeds), 4000 0000 0000 3220 (3D Secure required), 4000 0000 0000 0002 (declined). Expiry: any future date (e.g., 12/34). CVC: any 3 digits (e.g., 123)
  • Credit cards (Adyen test mode): 4111 1111 1111 1111 (Visa), 5500 0000 0000 0004 (Mastercard). Expiry: 03/30. CVC: 737
  • PayPal sandbox: provide sandbox buyer email/password if available, or note "use PayPal sandbox credentials from the team"
  • Email addresses: use realistic but clearly fake addresses (e.g., qa-tester+scenario1@example.com)
  • Phone numbers: use test numbers for the relevant country (e.g., +1 555 0100 for US test)
  • Dates: use specific dates, not "any date" (e.g., 2025-01-15)
  • Amounts/quantities: use specific numbers that test the scenario (e.g., quantity 3, not "some items")

If the project uses a specific payment provider, search for its test mode configuration in the codebase (look for environment variable keys related to payment, payment config files) to determine which test card numbers apply.

When test data requires database setup (e.g., a specific user account, a product with certain stock), provide the exact SQL INSERT or describe the UI steps to create it.

For every PR, include:

  • Step-by-step verification -- exact UI navigation or exact API requests to run
  • Copy-pasteable requests -- full GraphQL queries/mutations or curl commands with example values, specifying where to run them
  • Database verification -- SQL queries to confirm data integrity (QA can run these)
  • Edge cases -- described as user actions and expected outcomes, not as code behavior

Step 6: Maintain Consistency

  • Use the same section ordering as the template
  • Write in imperative mood for descriptions ("Add product review entity" not "Added" or "Adds")
  • Include code blocks with language hints for syntax highlighting
  • Keep line length reasonable for readability in PR tools

Quality Checklist

Before finalizing the PR message, verify:

  • Ticket content was referenced (or user was asked to provide it)
  • Title is concise and includes ticket ID if available
  • "What have I changed" covers every file group logically
  • Testing instructions contain ZERO code references (no file names, class names, method names)
  • Testing instructions are step-by-step with one action per step
  • Every scenario specifies exact UI navigation OR exact API requests to run
  • Every scenario has a checkbox (- []) and an "Expected results" bullet list
  • URLs in scenarios are real routes from the codebase (not placeholder URLs)
  • Test data is concrete and copy-pasteable (card numbers, emails, dates -- not "use a valid card")
  • Testing instructions are understandable by someone with zero codebase knowledge
  • Database verification queries are included for any schema changes
  • Product-facing changes are called out explicitly
  • No sensitive data (secrets, tokens, internal URLs) is included
  • Migration steps are documented if applicable
  • Breaking changes are highlighted prominently

Common Patterns by PR Type

New Feature

  • Describe the business requirement briefly
  • List new entities/models, endpoints, and admin pages
  • Provide full testing flow from setup to verification
  • Include database queries showing new data

Bug Fix

  • State the bug clearly: what happened vs. what should happen
  • Explain root cause
  • Describe the fix and why this approach was chosen
  • Include regression test instructions

Refactoring

  • Explain motivation (tech debt, performance, maintainability)
  • Confirm no behavioral changes (or document any intentional ones)
  • List before/after comparisons if helpful
  • Note any config or dependency changes

Database Migration

  • List all schema changes (new tables, columns, indexes)
  • Note if migration is reversible
  • Flag any data migrations that touch existing rows
  • Include rollback instructions if applicable

Reference Files

ReferenceContents
PR message templateStructured template for PR descriptions with all optional sections
Example PR messagesReal-world examples for features, bug fixes, and admin changes

Integration with Other Skills

SituationRecommended Skill
Starting work on a ticket end-to-endticket-delivery
Generating a summary report after completing workreport-writer
Reviewing code before writing the PRcode-review-excellence
Requesting a code review from teammatesrequesting-code-review

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.22%
按下载量换算26

Claude

30.9%
按下载量换算22

Cursor

16.81%
按下载量换算12

Gemini CLI

9.4%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills