























@@ -68,25 +68,54 @@ gh api "repos/openclaw/openclaw/commits/<sha>/check-runs?per_page=100" \
6868 --jq '.check_runs[] | select(.name=="ClawSweeper Commit Review") | [.status,.conclusion,.details_url] | @tsv'
6969```
707071-## Manual Backfill
71+## Manual Commit Rerun / Backfill
727273-Use the workflow when Peter asks to review a specific commit or historic range:
73+Use the receiver workflow when Peter asks to rerun a specific commit report,
74+review a specific commit, or backfill a historic range. Reruns overwrite the
75+same canonical report file:
76+`records/<repo-slug>/commits/<40-char-sha>.md`.
77+78+Single-commit rerun:
79+80+```bash
81+gh workflow run commit-review.yml --repo openclaw/clawsweeper \
82+ -f target_repo=openclaw/openclaw \
83+ -f commit_sha=<sha> \
84+ -f before_sha=<parent-sha> \
85+ -f create_checks=false \
86+ -f enabled=true
87+```
88+89+Historic range backfill:
74907591```bash
7692gh workflow run commit-review.yml --repo openclaw/clawsweeper \
7793 -f target_repo=openclaw/openclaw \
7894 -f commit_sha=<end-sha> \
7995 -f before_sha=<start-sha> \
80- -f create_checks=true \
96+ -f create_checks=false \
8197 -f enabled=true
8298```
839984-For a targeted rerun with extra instructions, add:
100+Use `create_checks=true` only when Peter explicitly wants target commit check
101+runs. Checks are opt-in; markdown reports are the primary surface.
102+103+For a targeted rerun with extra instructions, add `additional_prompt`:
8510486105```bash
87106-f additional_prompt="Review this commit with focus on <topic>."
88107```
89108109+After dispatch, monitor and then pull the regenerated report:
110+111+```bash
112+gh run list --repo openclaw/clawsweeper --workflow "ClawSweeper Commit Review" \
113+ --limit 5 --json databaseId,displayTitle,status,conclusion,url
114+gh run watch <run-id> --repo openclaw/clawsweeper --interval 30 --exit-status
115+git pull --ff-only
116+sed -n '1,180p' records/openclaw-openclaw/commits/<sha>.md
117+```
118+90119## Report Reading
9112092121Lead with counts and useful findings:
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。