with one click
merge
Copilot review, comment resolution, squash merge
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Copilot review, comment resolution, squash merge
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Generate the daily tech watch article (filter, write, publish to site)
Generate source fiches for an article and publish to the site
Create a NotebookLM notebook from daily sources and generate a podcast
Display today's sources sorted by theme priority
Publish a personal blog post to the site
Fetch PR review comments, fix issues, reply to each comment
| name | merge |
| description | Copilot review, comment resolution, squash merge |
| argument-hint | <pr-number> |
Takes a PR number as argument ($ARGUMENTS). If no argument, list open PRs and ask which one to process.
gh pr view {PR_NUMBER} --comments
gh api repos/allienna/veilleur/pulls/{PR_NUMBER}/comments
Analyze inline comments from Copilot (or other reviewers).
If inline comments exist:
gh api repos/allienna/veilleur/pulls/{PR_NUMBER}/comments/{COMMENT_ID}/replies -f body="Fixed, thanks."
If no inline comments: skip to step 3.
Prepare a squash commit message:
docs: add ADR-001 (#18))Closes #XX if an issue is linkedCo-Authored-ByDisplay the proposed commit message and ask for validation before merging.
Once validated:
gh pr merge {PR_NUMBER} --squash --delete-branch --subject "{TITLE}" --body "{BODY}"
git checkout main
git pull
Confirm the merge is done and main is up to date.