Locate Template: Search for a pull request template in the repository.
Check .github/pull_request_template.md
Check .github/PULL_REQUEST_TEMPLATE.md
If multiple templates exist (e.g., in .github/PULL_REQUEST_TEMPLATE/),
ask the user which one to use or select the most appropriate one based on
the context (e.g., bug_fix.md vs feature.md).
Read Template: Read the content of the identified template file.
Draft Description: Create a PR description that strictly follows the
template's structure.
Headings: Keep all headings from the template.
Checklists: Review each item. Mark with [x] if completed. If an item
is not applicable, leave it unchecked or mark as [ ] (depending on the
template's instructions) or remove it if the template allows flexibility
(but prefer keeping it unchecked for transparency).
Content: Fill in the sections with clear, concise summaries of your
changes.
Related Issues: Link any issues fixed or related to this PR (e.g.,
"Fixes #123").
Preflight Check: Before creating the PR, run the workspace preflight
script to ensure all build, lint, and test checks pass.
npm run preflight
If any checks fail, address the issues before proceeding to create the PR.
Push Branch: Push the current branch to the remote repository.
CRITICAL SAFETY RAIL: Double-check your branch name before pushing.
NEVER push if the current branch is main.
# Verify current branch is NOT main
git branch --show-current
# Push non-interactively
git push -u origin HEAD
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>
# 3. Remove the temporary file
rm <temp_file_path>
Title: Ensure the title follows the
Conventional Commits format if the
repository uses it (e.g., feat(ui): add new button,
fix(core): resolve crash).
Principles
Safety First: NEVER push to main. This is your highest priority.
Compliance: Never ignore the PR template. It exists for a reason.
Completeness: Fill out all relevant sections.
Accuracy: Don't check boxes for tasks you haven't done.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: ssd-mkdocs-platform-teams-board-pr-creator3description: Pull Request Creator4---5# Pull Request Creator67This skill guides the creation of high-quality Pull Requests that adhere to the8repository's standards.910## Workflow1112Follow these steps to create a Pull Request:13141. **Branch Management**: **CRITICAL:** Ensure you are NOT working on the15 `main` branch.16 - Run `git branch --show-current`.17 - If the current branch is `main`, you MUST create and switch to a new18 descriptive branch:19 ```bash20 git checkout -b <new-branch-name>21 ```22232. **Commit Changes**: Verify that all intended changes are committed.24 - Run `git status` to check for unstaged or uncommitted changes.25 - If there are uncommitted changes, stage and commit them with a descriptive26 message before proceeding. NEVER commit directly to `main`.27 ```bash28 git add .29 git commit -m "type(scope): description"30 ```31323. **Locate Template**: Search for a pull request template in the repository.33 - Check `.github/pull_request_template.md`34 - Check `.github/PULL_REQUEST_TEMPLATE.md`35 - If multiple templates exist (e.g., in `.github/PULL_REQUEST_TEMPLATE/`),36 ask the user which one to use or select the most appropriate one based on37 the context (e.g., `bug_fix.md` vs `feature.md`).38394. **Read Template**: Read the content of the identified template file.40415. **Draft Description**: Create a PR description that strictly follows the42 template's structure.43 - **Headings**: Keep all headings from the template.44 - **Checklists**: Review each item. Mark with `[x]` if completed. If an item45 is not applicable, leave it unchecked or mark as `[ ]` (depending on the46 template's instructions) or remove it if the template allows flexibility47 (but prefer keeping it unchecked for transparency).48 - **Content**: Fill in the sections with clear, concise summaries of your49 changes.50 - **Related Issues**: Link any issues fixed or related to this PR (e.g.,51 "Fixes #123").52536. **Preflight Check**: Before creating the PR, run the workspace preflight54 script to ensure all build, lint, and test checks pass.55 ```bash56 npm run preflight57 ```58 If any checks fail, address the issues before proceeding to create the PR.59607. **Push Branch**: Push the current branch to the remote repository.61 **CRITICAL SAFETY RAIL:** Double-check your branch name before pushing.62 NEVER push if the current branch is `main`.63 ```bash64 # Verify current branch is NOT main65 git branch --show-current66 # Push non-interactively67 git push -u origin HEAD68 ```69708. **Create PR**: Use the `gh` CLI to create the PR. To avoid shell escaping71 issues with multi-line Markdown, write the description to a temporary file72 first.73 ```bash74 # 1. Write the drafted description to a temporary file75 # 2. Create the PR using the --body-file flag76 gh pr create --title "type(scope): succinct description" --body-file <temp_file_path>77 # 3. Remove the temporary file78 rm <temp_file_path>79 ```80 - **Title**: Ensure the title follows the81 [Conventional Commits](https://www.conventionalcommits.org/) format if the82 repository uses it (e.g., `feat(ui): add new button`,83 `fix(core): resolve crash`).8485## Principles8687- **Safety First**: NEVER push to `main`. This is your highest priority.88- **Compliance**: Never ignore the PR template. It exists for a reason.89- **Completeness**: Fill out all relevant sections.90- **Accuracy**: Don't check boxes for tasks you haven't done.9192---93> Converted and distributed by [TomeVault](https://tomevault.io/claim/ssd-mkdocs-platform) — claim your Tome and manage your conversions.94<!-- tomevault:4.0:skill_md:2026-04-13 -->
Run npx skillmds@latest add tomevault-io/ssd-mkdocs-platform-teams-board-pr-creator in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Pull Request Creator It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.