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

Sobre este Skill

Perfeito para Agentes de Integração do GitHub que precisam de geração automática de título e descrição de PR no formato de commit convencional. Resumo localizado: 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.

Recursos

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)

# Tópicos principais

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

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Perfeito para Agentes de Integração do GitHub que precisam de geração automática de título e descrição de PR no formato de commit convencional. Resumo localizado: 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.

Por que usar essa habilidade

Habilita os agentes a gerar títulos e descrições de PR usando saída em markdown, simplificando o processo de desenvolvimento em branches de recursos por meio da automação da produção de texto no formato de commit, utilizando protocolos de commit convencional e markdown.

Melhor para

Perfeito para Agentes de Integração do GitHub que precisam de geração automática de título e descrição de PR no formato de commit convencional.

Casos de Uso Práticos for pr-title-and-description

Automatizar a criação de títulos e descrições de PR para branches de recursos
Gerar texto no formato de commit convencional para solicitações de pull do GitHub
Produzir saída em markdown para descrições de PR para melhorar a legibilidade

! Segurança e Limitações

  • Requer acesso ao repositório e informações da branch do GitHub
  • Limitado a gerar títulos e descrições de PR no formato de commit convencional e markdown

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Demo Labs

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 e etapas de instalação

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

? Perguntas frequentes

O que é pr-title-and-description?

Perfeito para Agentes de Integração do GitHub que precisam de geração automática de título e descrição de PR no formato de commit convencional. Resumo localizado: 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.

Como instalar pr-title-and-description?

Execute o comando: npx killer-skills add kartuli-app/kartuli/pr-title-and-description. Ele funciona com Cursor, Windsurf, VS Code, Claude Code e mais de 19 outros IDEs.

Quais são os casos de uso de pr-title-and-description?

Os principais casos de uso incluem: Automatizar a criação de títulos e descrições de PR para branches de recursos, Gerar texto no formato de commit convencional para solicitações de pull do GitHub, Produzir saída em markdown para descrições de PR para melhorar a legibilidade.

Quais IDEs são compatíveis com pr-title-and-description?

Esta skill é compatível com 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 a CLI do Killer-Skills para uma instalação unificada.

pr-title-and-description tem limitações?

Requer acesso ao repositório e informações da branch do GitHub. Limitado a gerar títulos e descrições de PR no formato de commit convencional e markdown.

Como instalar este skill

  1. 1. Abra o terminal

    Abra o terminal ou linha de comando no diretório do projeto.

  2. 2. Execute o comando de instalação

    Execute: npx killer-skills add kartuli-app/kartuli/pr-title-and-description. A CLI detectará sua IDE ou agente automaticamente e configurará a skill.

  3. 3. Comece a usar o skill

    O skill já está ativo. Seu agente de IA pode usar pr-title-and-description imediatamente no projeto atual.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

pr-title-and-description

Install pr-title-and-description, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

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.

Habilidades Relacionadas

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

Ver tudo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumo localizado: 🦞 # 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

Resumo localizado: 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

Resumo localizado: 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
Navegador

pr-review

Logo of pytorch
pytorch

Resumo localizado: 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
Desenvolvedor