pr — Claude Code skill pr, uv-sbom, Taketo-Yoda, community, Claude Code skill, ai agent skill, ide skills, agent automation, AI agent skill, Cursor skill, Windsurf skill, SBOM generator

v1.0.0
GitHub

About this Skill

Perfect for Python Analysis Agents needing automated dependency management and secure SBOM generation. The pr skill is a tool that generates SBOMs for Python projects, automating the process of creating secure and compliant dependencies

Features

Automated SBOM generation for Python projects
Integration with uv for project management
CI checks before pull request creation
Secure and compliant dependency management
Support for multiple programming languages

# Core Topics

Taketo-Yoda Taketo-Yoda
[3]
[0]
Updated: 3/22/2026

Quality Score

Top 5%
33
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add Taketo-Yoda/uv-sbom/pr
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

Agent Capability Analysis

The pr skill by Taketo-Yoda is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for AI agent skill, Claude Code skill, Cursor skill.

Ideal Agent Persona

Perfect for Python Analysis Agents needing automated dependency management and secure SBOM generation.

Core Value

Empowers agents to automate the creation of pull requests that pass CI checks, ensuring secure and compliant dependencies with uv-managed Python projects, utilizing SBOMs and adhering to English language requirements for PR titles, bodies, and commit messages.

Capabilities Granted for pr

Automating pull request creation for Python projects with secure dependencies
Generating SBOMs for uv-managed projects to ensure compliance
Validating pull requests against CI checks before creation

! Prerequisites & Limits

  • Requires uv-managed Python projects
  • English language requirement for PR titles, bodies, and commit messages
  • Must pass pre-flight checks, including format checks with cargo fmt
Project
SKILL.md
3.9 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8
SKILL.md
Readonly

/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

FAQ & Installation Steps

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

? Frequently Asked Questions

What is pr?

Perfect for Python Analysis Agents needing automated dependency management and secure SBOM generation. The pr skill is a tool that generates SBOMs for Python projects, automating the process of creating secure and compliant dependencies

How do I install pr?

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

What are the use cases for pr?

Key use cases include: Automating pull request creation for Python projects with secure dependencies, Generating SBOMs for uv-managed projects to ensure compliance, Validating pull requests against CI checks before creation.

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?

Requires uv-managed Python projects. English language requirement for PR titles, bodies, and commit messages. Must pass pre-flight checks, including format checks with 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/pr. 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.

Related Skills

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

View All

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
AI

antd-commit-msg

Logo of ant-design
ant-design

Generate a single-line commit message for ant-design by reading the projects git staged area and recent commit style. Use when the user asks for a commit message, says msg, commit msg, 写提交信息, or wants

97.8k
0
Design