Awesome-openclaw-skills pr-commit-workflow
This skill should be used when creating commits or pull requests, enforcing a human-written PR structure, intent capture, and evidence in agentic workflows.
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/pr-commit-workflow" ~/.claude/skills/sundial-org-awesome-openclaw-skills-pr-commit-workflow && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/pr-commit-workflow" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-pr-commit-workflow && rm -rf "$T"
manifest:
skills/pr-commit-workflow/SKILL.mdsource content
PR + Commit Workflow
Overview
Enforce a high-signal commit workflow and a human-written PR format. Keep global process rules as source of truth and make PRs reviewable by humans and agents.
Workflow Decision Tree
- If the task is about commits only, follow
.references/workflow-commit.md - If the task involves PR creation or PR updates, follow
.references/workflow-pr.md
Global Rules
- If the repo has
orAGENTS.md
, read it for repo-specific rules.docs/agents/PROCESS.md - Require user-supplied, human-written intent for every PR. Never generate or paraphrase this text.
- Use
for PR body drafts and/tmp
for updates.gh pr edit --body-file
Commit Workflow (entry point)
- Execute the steps in
.references/workflow-commit.md - Use the message format in
.references/commit-format.md
PR Workflow (entry point)
- Execute the steps in
.references/workflow-pr.md - Use the template in
verbatim.references/pr-human-template.md - Use
to gather environment metadata if available.scripts/build_pr_body.sh
Resources
: commit checklist and evidence expectations.references/workflow-commit.md
: PR creation/update flow, comment checks, and evidence rules.references/workflow-pr.md
: human-written PR structure (must be used as-is).references/pr-human-template.md
: commit message format and examples.references/commit-format.md
: environment metadata collector for PR prompt history section.scripts/build_pr_body.sh