Distill a single OpenClaw PR into a short intent memo safely.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "distill-pr-intent" skill from askskill: 1. Download https://raw.githubusercontent.com/openclaw/clawdinators/main/clawdinator/workspace/skills/distill-pr-intent/SKILL.md 2. Save it as ~/.claude/skills/distill-pr-intent/SKILL.md 3. Reload skills and tell me it's ready
Please distill this OpenClaw PR into a short intent memo describing the problem it solves, the main change direction, expected impact, and any obvious risks or open questions. Output concise conclusions only and do not perform any modifications.
A concise memo summarizing the PR's goal, intent, scope of impact, and potential risks.
Read this single PR and generate an intent summary suitable for pre-review reading. Focus on why the change is needed, what kind of changes were made, and which modules may be affected. Keep it objective and brief.
A reviewer-friendly PR intent summary that helps establish context quickly.
Based on this OpenClaw PR, produce an intent note for product and engineering communication. Summarize the business purpose and technical purpose in one sentence each, and add any follow-up items that may need attention.
A short cross-functional note covering business intent, technical intent, and follow-up considerations.
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: ....
Manage CLAWDINATOR fleet deployments and status through the control API.
Complete an OpenClaw PR landing workflow end to end using the repo checklist.
Analyze GitHub and Discord signals to prioritize project maintainer attention.
Distill intent from multiple pull requests and save structured outputs for analysis.
Monitor Discord channel activity and persist notable items to memory. Run from main session during heartbeat.
Find and fix small high-confidence OpenClaw bugs ready to land.
Refactor OpenClaw docs pages with source-checked preservation, clearer structure, and verification.
Extract shared principles from skills and turn them into maintainable rule files.
Find duplicate PRs and issues, group them, and sync duplicate status.
Draft OpenClaw release announcements and testing guidance from release evidence.
Review, triage, and manage OpenClaw issues and pull requests faster.
Deeply review code and fix only small, high-confidence OpenClaw bugs.