一键导入
distill-pr-intent-orchestrator
Run PR intent distillation across a PR set and persist outputs + sidecar metadata to /memory/pr-intent.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run PR intent distillation across a PR set and persist outputs + sidecar metadata to /memory/pr-intent.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Side-effect-free distillation of a single OpenClaw PR into a short intent memo (stdout-only).
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-orchestrator |
| description | Run PR intent distillation across a PR set and persist outputs + sidecar metadata to /memory/pr-intent. |
| user-invocable | false |
Run distill-pr-intent across a selected PR set, and persist:
.txt).meta.json)All outputs go to shared memory on EFS, and are automatically published to the public S3 bucket by the host timer.
openclaw/openclawlast N (e.g. last 500)range <start..end>since <YYYY-MM-DD>v1)/memory/pr-intent/<skill_version>/openclaw-openclaw/<PR>.txt
/memory/pr-intent/<skill_version>/openclaw-openclaw/<PR>.meta.json
.txt memo..meta.json.Examples:
# last N merged PR numbers
gh pr list -R openclaw/openclaw --state merged --limit 200 --json number --jq '.[].number'
# range
seq <start> <end>
distill-pr-intent <PR>./memory/pr-intent/.../<PR>.txt./memory/pr-intent/.../<PR>.meta.json.Use the locking helpers (required on EFS):
# memo
printf '%s\n' "$MEMO" | memory-write "/memory/pr-intent/<skill_version>/openclaw-openclaw/<PR>.txt"
# meta
printf '%s\n' "$META_JSON" | memory-write "/memory/pr-intent/<skill_version>/openclaw-openclaw/<PR>.meta.json"
{
"pr": 17392,
"repo": "openclaw/openclaw",
"state": "merged",
"skill_version": "v1",
"generated_at": "2026-02-15T19:00:00Z",
"patch_mode": "PATCH_OK",
"patch_bytes": 12345,
"model": "openai/gpt-5.2-codex",
"error": null
}
.meta.json with error populated..meta.json.