Token导航 LogoToken导航TokenDH.com
AI 工具只读github未标认证来源可访问clear审计异常

describe-pr描述公关

Agent Skill

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

总安装

7,342

周安装

309

GitHub Stars

3,718

下载量

2,571
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill describe-pr

简介

describe-pr 根据仓库模板自动生成 Pull Request 描述文档,确保包含变更概述、测试方法和回滚计划等内容。

  • 它首先检查 thoughts/shared/pr_description.md 是否存在有效模板,无模板时报错要求用户先行创建。
  • 自动关联当前分支的 PR 编号和状态,若不存在则提示用户手动创建后再运行本技能补充描述文本。
  • 输出结果严格遵循模板字段顺序和必填项要求,避免遗漏关键章节导致合并请求被拒绝或延期处理。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Generate PR Description

You are tasked with generating a comprehensive pull request description following the repository's standard template.

Steps to follow:

  1. Read the PR description template:

- First, check if thoughts/shared/pr_description.md exists - If it doesn't exist, inform the user they need to create a PR description template at thoughts/shared/pr_description.md - Read the template carefully to understand all sections and requirements

  1. Identify the PR to describe:

- Check if the current branch has an associated PR: gh pr view --json url,number,title,state 2>/dev/null - If no PR exists for the current branch, or if on main/master, list open PRs: gh pr list --limit 10 --json number,title,headRefName,author - Ask the user which PR they want to describe

  1. Check for existing description:

- Check if thoughts/shared/prs/{number}_description.md already exists - If it exists, read it and inform the user you'll be updating it - Consider what has changed since the last description was written

  1. Gather comprehensive PR information:

- Get the full PR diff: gh pr diff {number} - If you get an error about no default remote repository, instruct the user to run gh repo set-default and select the appropriate repository - Get commit history: gh pr view {number} --json commits - Review the base branch: gh pr view {number} --json baseRefName - Get PR metadata: gh pr view {number} --json url,title,number,state

4b. Gather reasoning history (if available):

  • Check if reasoning files exist: ls.git/claude/commits/*/reasoning.md 2>/dev/null
  • If they exist, aggregate them: bash "$CLAUDE_PROJECT_DIR/.claude/scripts/aggregate-reasoning.sh" main
  • This shows what approaches were tried before the final solution
  • Save the output for inclusion in the PR description
  1. Analyze the changes thoroughly: (ultrathink about the code changes, their architectural implications, and potential impacts)

- Read through the entire diff carefully - For context, read any files that are referenced but not shown in the diff - Understand the purpose and impact of each change - Identify user-facing changes vs internal implementation details - Look for breaking changes or migration requirements

  1. Handle verification requirements:

- Look for any checklist items in the "How to verify it" section of the template - For each verification step: - If it's a command you can run (like make check test, npm test, etc.), run it - If it passes, mark the checkbox as checked: - [x] - If it fails, keep it unchecked and note what failed: - [] with explanation - If it requires manual testing (UI interactions, external services), leave unchecked and note for user - Document any verification steps you couldn't complete

  1. Generate the description:

- Fill out each section from the template thoroughly: - Answer each question/section based on your analysis - Be specific about problems solved and changes made - Focus on user impact where relevant - Include technical details in appropriate sections - Write a concise changelog entry - If reasoning files were found (from step 4b): - Add an "## Approaches Tried" section before "## How to verify it" - Include the aggregated reasoning showing failed attempts and what was learned - This helps reviewers understand the journey, not just the destination - Ensure all checklist items are addressed (checked or explained)

  1. Save the description:

- Write the completed description to thoughts/shared/prs/{number}_description.md - Show the user the generated description

  1. Update the PR:

- Update the PR description directly: gh pr edit {number} --body-file thoughts/shared/prs/{number}_description.md - Confirm the update was successful - If any verification steps remain unchecked, remind the user to complete them before merging

Important notes:

  • This command works across different repositories - always read the local template
  • Be thorough but concise - descriptions should be scannable
  • Focus on the "why" as much as the "what"
  • Include any breaking changes or migration notes prominently
  • If the PR touches multiple components, organize the description accordingly
  • Always attempt to run verification commands when possible
  • Clearly communicate which verification steps need manual testing

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.27%
按下载量换算727

OpenCode

22.22%
按下载量换算571

Gemini CLI

17.97%
按下载量换算462

Codex

11.04%
按下载量换算284

windsurf

7.28%
按下载量换算187

Cursor

3.46%
按下载量换算89

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills