원클릭으로
distill-pr-intent
Side-effect-free distillation of a single OpenClaw PR into a short intent memo (stdout-only).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Side-effect-free distillation of a single OpenClaw PR into a short intent memo (stdout-only).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run PR intent distillation across a PR set and persist outputs + sidecar metadata to /memory/pr-intent.
Land an OpenClaw PR end-to-end using the repo landpr checklist. Use when someone requests “/landpr” or asks to merge/land a PR.
Control CLAWDINATOR fleet lifecycle via the control API. Use for /fleet deploy or /fleet status.
Analyze GitHub and Discord signals to prioritize maintainer attention. Use when asked about priorities, what's hot, what needs attention, or project status.
Monitor Discord channel activity and persist notable items to memory. Run from main session during heartbeat.
| name | distill-pr-intent |
| description | Side-effect-free distillation of a single OpenClaw PR into a short intent memo (stdout-only). |
| user-invocable | false |
Given one PR number in openclaw/openclaw, output a short memo answering:
What was the author trying to accomplish (motivation / problem framing / bet), as evidenced by the code change?
openclaw/openclaw).PR INTENT (openclaw#<PR>)
<free prose, up to ~5 sentences; keep under ~10 lines>
cd /var/lib/clawd/repos/openclaw
scripts/pr review-init <PR>
scripts/pr review-checkout-pr <PR>
source .local/review-context.env
git diff --name-status "$MERGE_BASE"..HEAD > .local/intent.name-status.txt
git diff --stat "$MERGE_BASE"..HEAD > .local/intent.stat.txt
# Patch budget: 200KB
patch_bytes=$(git diff "$MERGE_BASE"..HEAD | wc -c | tr -d ' ')
if [ "$patch_bytes" -le 200000 ]; then
git diff "$MERGE_BASE"..HEAD > .local/intent.patch.txt
echo PATCH_OK > .local/intent.patch-mode.txt
else
: > .local/intent.patch.txt
echo TOO_LONG > .local/intent.patch-mode.txt
fi
PATCH_OK: infer intent from .local/intent.patch.txt.TOO_LONG: infer intent from .local/intent.name-status.txt + .local/intent.stat.txt.If multiple intents exist, mention 2–3 briefly.
If nothing coherent: say Intent unclear: ....