pr-summary — сравнение кодов pr-summary, app-sdk, community, сравнение кодов, ide skills, генерация сводок PR, Markdown, родительская ветка, github, Claude Code, Cursor

v1.0.0

Об этом навыке

Идеально подходит для агентов кодового обзора, которым требуется автоматизированная генерация сводки PR с интеграцией GitHub. ИИ Агент pr-summary - это инструмент сравнения кодов, генерирующий сводки PR

Возможности

Сравнивает различия кодов с родительской веткой
Генерирует сводки PR в формате Markdown
Использует файл .github/PULL_REQUEST_TEMPLATE.md как шаблон
Создаёт директорию report/, если она не существует
Записывает сводку PR в ./report/PR_SUMMARY.MD

# Core Topics

StartaleGroup StartaleGroup
[0]
[0]
Updated: 3/19/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
26
Canonical Locale
en
Detected Body Locale
en

Идеально подходит для агентов кодового обзора, которым требуется автоматизированная генерация сводки PR с интеграцией GitHub. ИИ Агент pr-summary - это инструмент сравнения кодов, генерирующий сводки PR

Зачем использовать этот навык

Наделяет агентов возможностью сравнивать различия кода с родительскими ветками, предлагая содержание сводки PR на основе файлов .github/PULL_REQUEST_TEMPLATE.md, используя форматирование Markdown и протоколы GitHub.

Подходит лучше всего

Идеально подходит для агентов кодового обзора, которым требуется автоматизированная генерация сводки PR с интеграцией GitHub.

Реализуемые кейсы использования for pr-summary

Автоматизировать генерацию сводки PR для поддерживающих репозиторий
Генерировать отчеты сводки в формате Markdown для обзора кода
Сравнивать различия кода, зафиксированные и не зафиксированные, с родительскими ветками

! Безопасность и ограничения

  • Требует доступа к файлу .github/PULL_REQUEST_TEMPLATE.md
  • Ограничен репозиториями на основе GitHub
  • Требует доступа к файловой системе для записи сводки PR в ./report/PR_SUMMARY.MD

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is pr-summary?

Идеально подходит для агентов кодового обзора, которым требуется автоматизированная генерация сводки PR с интеграцией GitHub. ИИ Агент pr-summary - это инструмент сравнения кодов, генерирующий сводки PR

How do I install pr-summary?

Run the command: npx killer-skills add StartaleGroup/app-sdk/pr-summary. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for pr-summary?

Key use cases include: Автоматизировать генерацию сводки PR для поддерживающих репозиторий, Генерировать отчеты сводки в формате Markdown для обзора кода, Сравнивать различия кода, зафиксированные и не зафиксированные, с родительскими ветками.

Which IDEs are compatible with pr-summary?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for pr-summary?

Требует доступа к файлу .github/PULL_REQUEST_TEMPLATE.md. Ограничен репозиториями на основе GitHub. Требует доступа к файловой системе для записи сводки PR в ./report/PR_SUMMARY.MD.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add StartaleGroup/app-sdk/pr-summary. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use pr-summary immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

pr-summary

Install pr-summary, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Claude Command: PR Summary

  • Compare code differences (committed AND uncommitted) with the parent branch, then suggest PR summary content.
  • Use simple English with short, clear sentences.
  • Always refer to the current .github/PULL_REQUEST_TEMPLATE.md file for the template.
  • Only use sections that exist in the template, don't add custom sections.
  • Output: Write the final PR summary to ./report/PR_SUMMARY.MD (create the report/ directory if it doesn't exist).

Parent Branch Detection

The parent branch is NOT always master. Detect it in order:

  1. git config branch.<current>.merge to check tracking config
  2. git log --oneline --decorate --first-parent to find the branch point
  3. Use git merge-base with common base branches (master, main, develop) and pick the closest ancestor

Use origin/<parent> Over Local

The local parent branch may be stale. Always prefer origin/master over master, etc. Check with git rev-parse --verify origin/<parent>.

Diff Against Parent Tip (NOT merge-base)

Always diff against the parent branch's current remote tip, not the merge-base:

  • Use git diff origin/<parent> — shows only changes unique to this branch, even if the parent was merged in
  • Do NOT use git diff $(git merge-base <parent> HEAD) — this includes parent's own changes when the parent was merged into the branch
  • Run git status --short to identify uncommitted files
  • Include uncommitted changes in the summary if present

Связанные навыки

Looking for an alternative to pr-summary or another community skill for your workflow? Explore these related open-source skills.

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

widget-generator

Logo of f
f

Создание настраиваемых плагинов виджетов для системы ленты новостей prompts.chat

flags

Logo of vercel
vercel

Фреймворк React

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Разработчик