بنقرة واحدة
skill-pr-creator
Quality gatekeeper for drafting high-resolution GitHub Pull Requests with documentation compliance.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Quality gatekeeper for drafting high-resolution GitHub Pull Requests with documentation compliance.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Professional bootstrapper for Vercel-style Agentic Repositories using compressed AGENTS.md manifests.
Persistent SQLite-based cognitive layer for cross-session interaction logging and insight distillation.
Design lead for C4 structural documentation, Mermaid.js diagrams, and Architecture Decision Records (ADRs).
Specialist in core AWS infrastructure: EC2 compute, IAM identity, VPC networking, and RDS/Aurora databases.
5-phase migration engine for transitioning workloads from Google Cloud Platform to AWS architecture.
AI/ML infrastructure expert for SageMaker fine-tuning, HyperPod cluster management, and dataset evaluation.
| name | skill-pr-creator |
| description | Quality gatekeeper for drafting high-resolution GitHub Pull Requests with documentation compliance. |
This skill guides the creation of high-performance Pull Requests that adhere to the factory's standards.
Follow these steps to create a Pull Request:
Branch Management (CRITICAL): Ensure you are NOT working on the master branch.
git branch --show-current.git checkout -b <new-branch-name>.Commit Changes: Verify that all intended changes are committed.
git status to check for unstaged or uncommitted changes.Locate Template: Search for a pull request template in the factory.
.github/pull_request_template.md.Read Template: Read the content of the identified template file.
Draft Description: Create a PR description that strictly follows the template's structure.
Preflight Check: Ensure all build, lint, and test checks pass locally before creation.
Push Branch: Push the current branch to the remote repository.
Create PR: Use the gh CLI to create the PR. To avoid shell escaping issues with multi-line Markdown, write the description to a temporary file first.
# 1. Write the drafted description to a temporary file
# 2. Create the PR using the --body-file flag
gh pr create --title "type(scope): succinct description" --body-file <temp_file_path>