Reviews documentation PRs and provides GitHub PR suggestions. Load when asked to review, suggest changes, or provide feedback on docs content. Covers MDX, frontmatter, style guide, components, and content accuracy.
Review documentation changes for correctness, style, and structure. Use AGENTS.md and the style guide at src/content/docs/style-guide/ as primary references.
gh CLI, never push commits. If they say "fix", "address this", or "update" — edit files directly and commit.| Instruction |
|---|
| Action |
|---|
| "review", "suggest changes", "provide suggestions" | Post suggestions only via gh CLI — do not push commits |
| "only make suggestions", "do not make changes" | Post suggestions only — never edit files or push |
| "fix", "address this", "update" | Always edit files directly and commit changes |
| "review and fix" | Fix low-severity issues directly; suggest high-impact changes |
| Invoked by someone other than PR author | Post suggestions unless explicitly told to fix |
| Invoked by PR author (or unclear) | Fix directly — especially MDX syntax, code errors, and build breakers |
When in doubt, fix obvious errors (build breakers, MDX syntax, wrong imports, broken code) and suggest subjective changes (wording, restructuring, style preferences).
Use the GitHub REST API via gh api to post line-level suggestions on PRs. This is the only way to propose changes when operating in suggestion-only mode.
Determine the PR number and the latest commit SHA before posting:
PR_NUMBER=$(gh pr view --json number -q '.number')
COMMIT_SHA=$(gh pr view --json commits -q '.commits[-1].oid')
Replace one line in the diff. Use subject_type: "line".
gh api repos/{owner}/{repo}/pulls/${PR_NUMBER}/comments \
-f body='Tighten the phrasing:
```suggestion
Workers use an event-driven architecture. Each incoming request triggers a `fetch` handler.
```' \
-f commit_id="${COMMIT_SHA}" \
-f path="src/content/docs/workers/get-started/index.mdx" \
-F line=42 \
-f side="RIGHT" \
-f subject_type="line"
Replace a range of lines. Add start_line and start_side.
gh api repos/{owner}/{repo}/pulls/${PR_NUMBER}/comments \
-f body='Simplify this paragraph:
```suggestion
Bindings provide direct, in-process access to Cloudflare services like R2, KV, and D1.
They require no network hop, no authentication token, and add no extra latency.
```' \
-f commit_id="${COMMIT_SHA}" \
-f path="src/content/docs/workers/runtime-apis/bindings.mdx" \
-F start_line=18 \
-F line=22 \
-f start_side="RIGHT" \
-f side="RIGHT" \
-f subject_type="line"
For feedback that does not map to a specific replacement, post a plain review comment (no suggestion block):
gh api repos/{owner}/{repo}/pulls/${PR_NUMBER}/comments \
-f body="This claim needs a source. Link to the relevant API reference or remove it." \
-f commit_id="${COMMIT_SHA}" \
-f path="src/content/docs/workers/observability/index.mdx" \
-F line=55 \
-f side="RIGHT" \
-f subject_type="line"
suggestion fenced block replaces the target line(s) exactly. Include the full replacement text with correct indentation.line to the diff line number. Do not set start_line.start_line to the first line and line to the last line of the range being replaced.side to "RIGHT" (the new file side of the diff).subject_type to "line".-F (not -f) for numeric fields (line, start_line) so gh sends them as integers.When posting 3+ suggestions, use a single review with multiple comments to avoid notification spam:
gh api repos/{owner}/{repo}/pulls/${PR_NUMBER}/reviews \
--input - <<EOF
{
"event": "COMMENT",
"body": "A few suggestions for this PR.",
"commit_id": "${COMMIT_SHA}",
"comments": [
{
"path": "src/content/docs/workers/get-started/index.mdx",
"line": 42,
"side": "RIGHT",
"body": "Tighten:\n\n\`\`\`suggestion\nWorkers use an event-driven model.\n\`\`\`"
},
{
"path": "src/content/docs/workers/get-started/index.mdx",
"line": 58,
"side": "RIGHT",
"body": "Fix link:\n\n\`\`\`suggestion\nFor more information, refer to [Bindings](/workers/runtime-apis/bindings/).\n\`\`\`"
}
]
}
EOF
When using --input - with a heredoc, do not pass -f/-F flags — all fields go in the JSON body. The JSON must include event, commit_id, body, and comments.
gh pr diff ${PR_NUMBER}
Read full files for context — code that looks wrong in a diff may be correct in context. Check what section the change sits in and what comes before/after.
See references/content-rules.md for the full checklist. Quick reference:
| Rule | Detail |
|---|---|
| Unescaped MDX characters | {, }, <, > in prose must be escaped or in backticks |
| Component imports | Every component used must be imported from ~/components |
| Code block languages | Must be lowercase and in the supported set (see AGENTS.md) |
| Internal links | Absolute paths, no file extensions, no https://developers.cloudflare.com |
| Heading hierarchy | Sequential: H2 then H3 then H4 — never skip |
| Frontmatter | title required; pcx_content_type must be a valid value |
| Style guide | Active voice, no contractions, "select" not "click", bold for UI elements |
| Workers code | Must use TypeScriptExample component, not bare js/ts fences |
| Config blocks | Must use WranglerConfig component with TOML input |
| Code correctness | For type checking, API usage, and binding patterns, load the code-review skill |
| Accuracy | Claims must be substantiated — link to sources of truth, do not explain inline what other docs cover |
| Flag | Do not flag |
|---|---|
| Incorrect technical content | Style preferences not in the style guide |
| Broken MDX (build will fail) | Pre-existing issues in unchanged lines |
| Wrong API usage or types | "Could be cleaner" when code is correct |
Missing component usage (TypeScriptExample, WranglerConfig) | Theoretical concerns without evidence |
| Inaccurate or unsubstantiated claims | Missing features outside the PR scope |
| Security or safety issues in examples | Minor wording differences that do not change meaning |
| Scope creep (changes to files outside the PR intent) |
Review in severity order:
TypeScriptExample, hardcoded compat dates, bare code fencesThese principles are derived from recurring review feedback on this repo:
/support/troubleshooting/http-status-codes/.TypeScriptExample. Config should use WranglerConfig with $today for compatibility dates. Package install commands should use PackageManagers.<response_format> Your responses appear as GitHub comments. Every comment a reviewer reads costs attention. Be direct, be brief, and never repeat yourself.
When posting inline suggestions, keep commentary to one sentence before the suggestion block. Do not over-explain.
When posting a summary comment, use this structure:
That is the entire comment. Do not add anything else.
When responding to a follow-up request in the same thread (for example, "fix the build", "address the review comments"):
Do not re-run the full review. Do not re-summarize the PR. Do not repeat guidance from a prior comment. Each comment in a thread should contain only new information. </response_format>