pr — gerador de SBOM uv-sbom, community, gerador de SBOM, ide skills, projetos Python, PR para Claude Code, cargo fmt, commit messages em inglês, CI para Python

v1.0.0

Sobre este Skill

Perfeito para Agentes de Análise Python que necessitam de gerenciamento de dependências automatizado e geração segura de SBOM. O que é um gerador de SBOM para projetos Python? É uma ferramenta que cria PRs que passam em CI antes da criação

Recursos

Geração de SBOMs para projetos Python
Criação de PRs que passam em CI antes da criação
Formato de código com cargo fmt
Verificação de commit messages em inglês
Suporte a múltiplos branches

# Core Topics

Taketo-Yoda Taketo-Yoda
[3]
[0]
Updated: 3/22/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
33
Canonical Locale
en
Detected Body Locale
en

Perfeito para Agentes de Análise Python que necessitam de gerenciamento de dependências automatizado e geração segura de SBOM. O que é um gerador de SBOM para projetos Python? É uma ferramenta que cria PRs que passam em CI antes da criação

Por que usar essa habilidade

Habilita os agentes a automatizar a criação de solicitações de pull que passam nas verificações de CI, garantindo dependências seguras e conformes com projetos Python gerenciados por uv, utilizando SBOMs e seguindo os requisitos de idioma inglês para títulos, corpos e mensagens de commit de PR.

Melhor para

Perfeito para Agentes de Análise Python que necessitam de gerenciamento de dependências automatizado e geração segura de SBOM.

Casos de Uso Práticos for pr

Automatizar a criação de solicitações de pull para projetos Python com dependências seguras
Gerar SBOMs para projetos gerenciados por uv para garantir a conformidade
Validar solicitações de pull contra verificações de CI antes da criação

! Segurança e Limitações

  • Requer projetos Python gerenciados por uv
  • Requisito de idioma inglês para títulos, corpos e mensagens de commit de PR
  • Deve passar por verificações pré-voo, incluindo verificações de formato com cargo fmt

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?

Perfeito para Agentes de Análise Python que necessitam de gerenciamento de dependências automatizado e geração segura de SBOM. O que é um gerador de SBOM para projetos Python? É uma ferramenta que cria PRs que passam em CI antes da criação

How do I install pr?

Run the command: npx killer-skills add Taketo-Yoda/uv-sbom. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for pr?

Key use cases include: Automatizar a criação de solicitações de pull para projetos Python com dependências seguras, Gerar SBOMs para projetos gerenciados por uv para garantir a conformidade, Validar solicitações de pull contra verificações de CI antes da criação.

Which IDEs are compatible with pr?

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?

Requer projetos Python gerenciados por uv. Requisito de idioma inglês para títulos, corpos e mensagens de commit de PR. Deve passar por verificações pré-voo, incluindo verificações de formato com cargo fmt.

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 Taketo-Yoda/uv-sbom. 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 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

Aprenda a criar PRs que passam em CI antes da criação e visam o branch correto com o gerador de SBOM para projetos Python

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 - Pull Request Creation Skill

Create Pull Requests that pass CI before creation and target the correct branch.

Language Requirement

IMPORTANT: All Pull Requests MUST be written in English.

  • PR title: English
  • PR body: English
  • Commit messages: English

Pre-flight Checks (MANDATORY)

Before creating a PR, ALL of the following checks MUST pass:

1. Format Check

bash
1cargo fmt --all -- --check

If this fails, run cargo fmt --all to fix and commit the changes.

2. Clippy Check

bash
1cargo clippy --all-targets --all-features -- -D warnings

CRITICAL: Zero warnings required. Fix all issues before proceeding.

3. Test Suite

bash
1cargo test --all

All tests must pass.

Steps

Step 1: Run Pre-flight Checks

Execute all three checks above. If any fail:

  1. Fix the issues
  2. Commit the fixes using /commit skill
  3. Re-run the checks until all pass

Step 2: Verify Branch Status

bash
1# Check current branch 2git branch --show-current 3 4# Check if up to date with remote 5git status

Verify:

  • Not on main branch (direct commits to main are forbidden)
  • Branch follows naming convention:
    • feature/<issue-number>-<description> for features
    • bugfix/<issue-number>-<description> for bug fixes
    • hotfix/<issue-number>-<description> for hotfixes
    • docs/<issue-number>-<description> for documentation
    • refactor/<issue-number>-<description> for refactoring

Step 3: Determine Base Branch

CRITICAL: This project uses develop as the integration branch.

Branch TypeBase Branch
feature/*develop
bugfix/*develop
docs/*develop
refactor/*develop
hotfix/*main
release/*main

Branch Creation Rule: Always create new branches from origin/develop:

bash
1git fetch origin 2git checkout -b feature/<issue>-<desc> origin/develop

Step 4: Review Changes

bash
1# See all commits that will be in the PR 2git log origin/develop..HEAD --oneline 3 4# See the diff 5git diff origin/develop...HEAD

Step 5: Push to Remote

bash
1git push -u origin $(git branch --show-current)

Step 6: Create Pull Request

Use the following template:

bash
1gh pr create --base develop --title "TITLE" --body "$(cat <<'EOF' 2## Summary 3[1-3 bullet points summarizing the changes] 4 5## Related Issue 6Closes #XX 7 8## Changes Made 9- [Change 1] 10- [Change 2] 11- [Change 3] 12 13## Test Plan 14- [ ] `cargo test --all` passes 15- [ ] `cargo clippy --all-targets --all-features -- -D warnings` passes 16- [ ] Manual testing performed (if applicable) 17 18## Screenshots (if applicable) 19[Add screenshots for UI changes] 20 21--- 22Generated with [Claude Code](https://claude.com/claude-code) 23EOF 24)"

Step 7: Verify PR Creation

After creation:

  1. Output the PR URL
  2. Verify CI is running: gh pr checks
  3. Report status to user

Error Handling

Pre-flight Check Failures

If any pre-flight check fails:

  1. Format failure: Run cargo fmt --all, commit, retry
  2. Clippy failure: Fix warnings, commit, retry
  3. Test failure: Fix tests, commit, retry

NEVER create a PR if pre-flight checks fail.

Push Failures

If push fails:

  1. Check if branch exists on remote
  2. Check for conflicting changes
  3. Pull and resolve conflicts if needed

PR Creation Failures

If gh pr create fails:

  1. Check authentication: gh auth status
  2. Check if PR already exists: gh pr list
  3. Report error details to user

Example Usage

User: "PRを作成して"

Claude executes /pr skill:

  1. Runs cargo fmt --all -- --check (passes)
  2. Runs cargo clippy --all-targets --all-features -- -D warnings (passes)
  3. Runs cargo test --all (passes)
  4. Verifies branch is feature/84-agent-skills
  5. Determines base branch is develop
  6. Pushes to remote
  7. Creates PR with English title and body (base: develop)
  8. Reports PR URL to user

Habilidades Relacionadas

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

Ver tudo

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

Gerar plugins de widgets personalizáveis para o sistema de feed do prompts.chat

flags

Logo of vercel
vercel

O Framework React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Desenvolvedor