Land lossless-claw pull requests safely; use when asked whether a PR is ready, whether CI passes, to merge or land a PR, or to perform maintainer closeout after review.
71
88%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Use this skill when landing a lossless-claw pull request or answering whether it is ready to merge.
Read repository instructions first.
AGENTS.md, especially data-preservation, changeset, compatibility, and command-reporting rules.Identify and pin the PR head.
gh pr view <PR> --json number,title,state,isDraft,baseRefName,headRefName,headRefOid,mergeable,mergeStateStatus,reviewDecision,statusCheckRollup,author,files,closingIssuesReferences,urlheadRefOid as the merge pin. Re-read it immediately before merge.Verify readiness.
gh pr checks <PR> --json name,state,bucket,workflow,link,startedAt,completedAtRun or confirm final review.
head=$(gh pr view <PR> --json headRefOid --jq .headRefOid)
base=$(gh pr view <PR> --json baseRefName --jq .baseRefName)
gh pr checkout <PR>
test "$(git rev-parse HEAD)" = "$head"
/Users/phaedrus/Projects/prompts/skills/autoreview/scripts/autoreview --mode branch --base "origin/$base"HEAD exactly matches the pinned PR headRefOid.Search open issues before merge closeout.
gh pr view <PR> --json closingIssuesReferences --jq '.closingIssuesReferences'gh issue list --state open --limit 50 --search "<keyword terms> repo:Martian-Engineering/lossless-claw"gh issue view <ISSUE> --json number,title,state,body,url,labels,commentsMerge deterministically.
scripts/pr-merge verify <PR>
scripts/pr-merge run <PR>head=$(gh pr view <PR> --json headRefOid --jq .headRefOid)
title=$(gh pr view <PR> --json title --jq .title)
gh pr merge <PR> --squash --match-head-commit "$head" --subject "$title"--auto for this workflow.Post-merge verification and maintainer follow-through.
MERGED and capture the merge commit:
gh pr view <PR> --json state,mergeCommit,mergedAt,mergedBy,urlgh pr comment <PR> --body "Thanks for the contribution, @<login>. This is landed now.".changeset/*.md.Final report.
AGENTS.md.Fixes #....db67593
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.