Maintainer workflow for reviewing, triaging, preparing, closing, or landing OpenClaw pull requests and related issues. Use when Codex needs to validate bug-fix claims, search for related issues or PRs, apply or recommend close/reason labels, prepare GitHub comments safely, check review-thread follow-up, or perform maintainer-style PR decision making before merge or closure.
Use this skill for maintainer-facing GitHub workflow, not for ordinary code changes.
.github/workflows/auto-response.yml handle the comment/close/lock flow.r:* labels can be used on both issues and PRs.r: skillr: supportr: no-ci-prr: too-many-prsr: testflightr: third-party-extensionr: moltbookr: spaminvaliddirty for PRs only-F - <<'EOF' for real newlines. Never embed \n.gh issue/pr comment -b "..." when the body contains backticks or shell characters. Prefer a single-quoted heredoc.#24643 in backticks when you want auto-linking.--repo openclaw/openclaw with --match title,body first.--match comments when triaging follow-up discussion.Examples:
gh search prs --repo openclaw/openclaw --match title,body --limit 50 -- "auto-update"
gh search issues --repo openclaw/openclaw --match title,body --limit 50 -- "auto-update"
gh search issues --repo openclaw/openclaw --match title,body --limit 50 \
--json number,title,state,url,updatedAt -- "auto update" \
--jq '.[] | "\(.number) | \(.state) | \(.title) | \(.url)"'
/landpr process.scripts/committer "<msg>" <file...> for scoped commits instead of manual git add and git commit..github/pull_request_template.md for PR submissions and .github/ISSUE_TEMPLATE/ for issues.sync means: if the tree is dirty, commit all changes with a sensible Conventional Commit message, then git pull --rebase, then git push. Stop if rebase conflicts cannot be resolved safely.