code-review-digest-writer

Generate weekly Markdown code-review digests from GitHub PR comments.

3|4|Updated Nov 30, 2025
One-click install
npx skills add https://github.com/DiversioTeam/agent-skills-marketplace --skill code-review-digest-writer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review-digest-writer
Source: https://github.com/DiversioTeam/agent-skills-marketplace/tree/main/plugins/code-review-digest-writer/skills/code-review-digest-writer
Command: npx skills add https://github.com/DiversioTeam/agent-skills-marketplace --skill code-review-digest-writer

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill generates weekly code-review digest docs from PR review comments for any GitHub repository. If present, follows project-specific guidelines for digests. Use this to turn a date-bounded set of PR reviews into a structured markdown newsletter that captures themes, repeated issues, and concrete takeaways.

Core Features & Use Cases

  • Thematic summaries: cluster feedback across PRs into recurring themes (e.g., tests, formatting, accessibility).
  • Time-bounded digests: generate digests for a defined window (start_date → end_date).
  • Output artifacts: writes the digest to docs/review-digests/YYYY-MM-DD.md with a consistent layout.

Quick Start

Generate a digest for 2025-01-01 → 2025-01-07 and save it to docs/review-digests/2025-01-07.md.

Frequently Asked Questions about code-review-digest-writer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate a code review digest from PR feedback?

A code review digest summarizes PR review comments into a structured markdown document organized by recurring themes rather than individual PRs. This Skill collects review-thread comments from GitHub PRs within a date range, clusters feedback into topics like testing or formatting, labels issues as new or repeated, and writes the result to docs/review-digests/YYYY-MM-DD.md.

Can I automate weekly code review summaries for my GitHub repository?

Yes. This Skill automates weekly digest generation by accepting a start_date and end_date, extracting all PR review comments via gh and Bash, grouping feedback into thematic clusters, and outputting a markdown newsletter to your docs folder without modifying application code.

What's the best way to turn PR feedback into a structured newsletter?

Cluster PR comments by theme—such as tests, formatting, or accessibility—label recurring issues as [REPEAT] and new patterns as [NEW], then generate a markdown digest. This approach surfaces best practices and improvement areas across multiple PRs in one consolidated document.

Does this work with project-specific code review guidelines?

Yes. If your repository contains an AGENTS.md file defining project-specific digest guidelines, this Skill respects those rules when generating the digest, ensuring the output aligns with your team's documentation standards.

What input do I need to create a code review digest?

You need a GitHub repository, a defined time window (start_date and end_date), and access to gh CLI. The Skill extracts PR review comments from that window, clusters them into themes, and generates the markdown digest automatically.

Can I use this for ad-hoc code reviews outside a weekly schedule?

Yes. While designed for weekly digests, you can specify any start_date and end_date to generate digests for custom time windows, making it flexible for sprint reviews, monthly summaries, or project-specific feedback periods.