Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
Conducts an audit of a Pull Request, merges it into main, and synchronizes the local environment. Use this skill when a PR is ready for final review and integration.
Sign in to like and favorite skills
This skill focuses on the "Gatekeeper" role, ensuring that only high-quality, verified code enters the
main branch.
Audit:
gh pr diff [id]. Focus on source code changes, excluding third-party packages or generated binaries.audit_reports/audit_PR-[id].md confirming compliance with tech specs and UI guides.Merge Execution:
gh pr merge [id] --merge --delete-branch (if it''s a feature branch).dev branches, use --merge to integrate into main.Local Sync:
main and pull the latest changes: git checkout main; git pull origin main.dev and merge main to ensure the local development branch is up-to-date: git checkout dev; git merge main.dev branch to the remote: git push origin dev.Verification: