chore: add docs triage skill#31697
Conversation
|
This pull request requires reviews from CODEOWNERS as it changes files that match the following patterns:
|
There was a problem hiding this comment.
Review Summary
This PR adds a new docs-triage agent skill (.agents/skills/docs-triage/SKILL.md) that codifies workflows for triaging, shallow-reviewing, and auto-merging docs PRs. It is a focused, well-structured change (1 file, ~200 lines) and aligns with the existing skill layout under .agents/skills/.
Suggested Labels
choreagentsskill
Issues Flagged
1. Incorrect skill references (line 181)
The shallow-review checklist says:
If the PR touches Workers code examples or Cloudflare API usage, load
code-review. If reviewing docs content deeply or posting suggestions, loaddocs-review.
The exact skill names registered in this repo are workers-code-review and contributing (there is no code-review or docs-review skill). Loading a non-existent skill will cause the agent to fail. Please update these references to the canonical names:
code-review→workers-code-reviewdocs-review→contributing(or remove the reference if it's meant to be a future skill)
2. Missing trailing newline at EOF
The file ends without a trailing newline. While minor, many tools and style conventions expect a newline at the end of text files.
What’s Good
- Clear progressive-discovery workflow and well-defined triage gates.
- Commands are accurate and executable (verified
gh pr list --jsonfields againstghv2.95). - Good coverage of approval safeguards (explicit confirmation before acting, re-checking state, auto-merge with squash).
- No contractions, filler phrases, or directional language issues.
Recommendation
Approve after addressing the skill-name references. The trailing newline is optional but appreciated.
|
Posted a review on PR #31697. What the PR changesAdds a single new agent skill at Suggested labels
Issues flagged
VerdictThe PR is small, well-scoped, and consistent with the existing skill structure. I recommended approval after fixing the skill-name references. |
|
Preview URL: https://2428be1d.preview.developers.cloudflare.com |
Summary
Adds a
docs-triageagent skill for replaying Cloudflare docs PR triage workflows. The skill captures queue filters, readiness gates, shallow review checks, and approval/auto-merge safeguards based on recent triage sessions.