Update PR Body. After creating the PR with the template, update the description using gh pr edit to include specific details about your changes, keeping the template structure intact.
Rules
Never force-push.
Never commit secrets, tokens, or credentials.
Keep commits atomic — one logical change per commit.
If there are no changes to commit, exit gracefully with a message.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: petermefrandsen-agentic-audits-prepare-pr3description: Prepare Pull Request4---56# Prepare Pull Request78## When to use910Use this skill after making file changes that should be submitted as a pull11request for review, rather than pushed directly to the default branch.1213## Instructions14151. **Create a branch** from the current HEAD:16 ```bash17 BRANCH="agent/$(date +%Y%m%d-%H%M%S)-${MISSION_SLUG}"18 git checkout -b "${BRANCH}"19 ```20212. **Stage changes** selectively — only include files that were intentionally22 modified by the mission. Do NOT stage unrelated files:23 ```bash24 git add <changed-files>25 ```26273. **Commit** using Conventional Commits format:28 ```29 <type>(<scope>): <short summary>3031 <body — what changed and why>32 ```33 Types: `fix`, `feat`, `docs`, `refactor`, `chore`, `ci`, `test`.34354. **Push** the branch:36 ```bash37 git push origin "${BRANCH}"38 ```39405. **Open a Pull Request** using `gh pr create`. Always use the project's PR template at `.github/pull_request_template.md`:41 ```bash42 gh pr create \43 --title "<type>(<scope>): <summary>" \44 --body-file .github/pull_request_template.md \45 --base main46 ```47486. **Update PR Body**. After creating the PR with the template, update the description using `gh pr edit` to include specific details about your changes, keeping the template structure intact.4950## Rules5152- Never force-push.53- Never commit secrets, tokens, or credentials.54- Keep commits atomic — one logical change per commit.55- If there are no changes to commit, exit gracefully with a message.5657---58> Converted and distributed by [TomeVault](https://tomevault.io/claim/petermefrandsen) — claim your Tome and manage your conversions.59<!-- tomevault:4.0:skill_md:2026-04-11 -->
Run npx skillmds@latest add tomevault-io/petermefrandsen-agentic-audits-prepare-pr 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.
Prepare Pull Request 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.