pr-title-and-description — for Claude Code pr-title-and-description, kartuli, community, for Claude Code, ide skills, edtech, georgia, georgian-language, language-learning, description

v1.0.0

À propos de ce Skill

Parfait pour les agents d'intégration GitHub nécessitant une génération automatisée de titre et de description de PR au format de commit conventionnel. Resume localise : Draft pull request title and description from branch vs main, following the repo PR template. It covers edtech, georgia, georgian-language workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Fonctionnalités

PR title and description
User is on a feature branch and wants copy for a new pull request.
Draft pull request title and description from branch vs main, following the repo PR template
Does not create or open the PR—only produces the text
Output is meant to be pasted into GitHub (or used by another skill that creates the PR)

# Core Topics

kartuli-app kartuli-app
[0]
[0]
Updated: 3/8/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, 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 Quality floor passed for review
Review Score
10/11
Quality Score
57
Canonical Locale
en
Detected Body Locale
en

Parfait pour les agents d'intégration GitHub nécessitant une génération automatisée de titre et de description de PR au format de commit conventionnel. Resume localise : Draft pull request title and description from branch vs main, following the repo PR template. It covers edtech, georgia, georgian-language workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Pourquoi utiliser cette compétence

Permet aux agents de générer des titres et des descriptions de PR en utilisant une sortie markdown, simplifiant le processus de développement sur les branches de fonctionnalités en automatisant la production de texte de format de commit, en utilisant le format de commit conventionnel et les

Meilleur pour

Parfait pour les agents d'intégration GitHub nécessitant une génération automatisée de titre et de description de PR au format de commit conventionnel.

Cas d'utilisation exploitables for pr-title-and-description

Automatiser la rédaction de titres et de descriptions de PR pour les branches de fonctionnalités
Générer du texte de format de commit conventionnel pour les demandes d'extraction de GitHub
Produire une sortie markdown pour les descriptions de PR afin d'améliorer la lisibilité

! Sécurité et Limitations

  • Nécessite un accès aux informations du référentiel et de la branche GitHub
  • Limité à la génération de titres et de descriptions de PR au format de commit conventionnel et markdown

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

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-title-and-description?

Parfait pour les agents d'intégration GitHub nécessitant une génération automatisée de titre et de description de PR au format de commit conventionnel. Resume localise : Draft pull request title and description from branch vs main, following the repo PR template. It covers edtech, georgia, georgian-language workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install pr-title-and-description?

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

What are the use cases for pr-title-and-description?

Key use cases include: Automatiser la rédaction de titres et de descriptions de PR pour les branches de fonctionnalités, Générer du texte de format de commit conventionnel pour les demandes d'extraction de GitHub, Produire une sortie markdown pour les descriptions de PR afin d'améliorer la lisibilité.

Which IDEs are compatible with pr-title-and-description?

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-title-and-description?

Nécessite un accès aux informations du référentiel et de la branche GitHub. Limité à la génération de titres et de descriptions de PR au format de commit conventionnel et markdown.

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 kartuli-app/kartuli/pr-title-and-description. 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-title-and-description 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-title-and-description

Install pr-title-and-description, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

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

PR title and description

Produce a PR title (text, conventional commit format) and PR description (markdown) for the current branch compared to main. Output is meant to be pasted into GitHub (or used by another skill that creates the PR).

When to use

  • User says: "generate the PR description", "draft my PR", "write PR title and description", "what should my PR say", or similar.
  • User is on a feature branch and wants copy for a new pull request.

Steps

  1. Get the diff and context

    • Ensure origin/main is available (e.g. git fetch origin main); in shallow/CI/agent checkouts a local main may be missing or stale.
    • Compare current branch to origin/main:
      • Summary: git diff origin/main...HEAD --stat and git log origin/main..HEAD --oneline.
      • Full diff (for content): git diff origin/main...HEAD — use this (or path-specific invocations like git diff origin/main...HEAD -- tsconfig.json 'apps/*/tsconfig.json') to review config and source file changes when inferring themes for the description.
    • Inspect substantive diffs, not only stat and commit messages. Commit messages are often narrowly scoped (e.g. all "chore(diagrams):"); the PR may include other important changes. To avoid omitting them:
      • Review the content of diffs for config and tooling (e.g. tsconfig.json, vitest.config.*, vite.config.*, root and app-level), so path alias changes, baseUrl, or resolver config are captured.
      • Review the content of diffs for source files (e.g. changed imports, path alias usage like @app/... or @domain/...), so refactors and import migrations are captured.
      • If the stat shows changes in both config and source, treat them as separate themes until the diff shows they are the same (e.g. diagram tooling only).
    • Use diff content and log together to infer what the PR does (scope, type, description).
  2. Optional: related issue

    • If the user provides a related issue—either an issue number (e.g. #42, "issue 42") or a GitHub issue URL (e.g. https://github.com/org/repo/issues/42)—reference it in the description under Linked Issues using GitHub keywords: Closes #42, Fixes #42, or Resolves #42. Extract the issue number from a URL if needed.
  3. Follow the PR template

    • When running in a repository checkout, read .github/pull_request_template.md from the workspace (current branch) so PR-local changes to the template are applied. Fallback / human reference: .github/pull_request_template.md on main.
    • Fill sections in this order:
      • Description: Clear summary of what the PR does and why (from diff content and log). Include every substantive theme found in the diff (e.g. diagram tooling and path alias refactors), not only the theme that dominates the commit messages.
      • Linked Issues: Closes #N (or none) if user gave an issue.
      • Type: Check the one that matches the change (feat, chore, fix, docs, test).
      • Scope: Check all that apply (game-client, backoffice-client, ui, storybook, e2e, global).
      • Screenshots / Preview links / Testing notes / Documentation changes: Fill only if the diff clearly implies them; otherwise leave placeholders or "N/A" as in the template.
  4. Title

    • One line, conventional commit: type(scope): short description.
    • Examples from template: feat(game-client): add user authentication, fix(ui): resolve button alignment issue, docs: update contributing guidelines, chore(e2e): upgrade testing dependencies.

Output format

Return exactly two things, clearly labeled:

  1. Title (single line, conventional commit).
  2. Description (full markdown body matching the PR template structure, ready to paste into the PR description field).

Example:

Title:
feat(ui): add responsive layout for settings panel

Description:
[full markdown following .github/pull_request_template.md]

What this skill does not do

  • Does not create or open the PR on GitHub.
  • Does not set assignees, reviewers, or labels.
  • A future skill (e.g. "pr-create") could use this draft and then perform those actions.

Compétences associées

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

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Resume localise : 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Resume localise : Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

flags

Logo of vercel
vercel

Resume localise : The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Resume localise : Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Développeur