Skill

review

Apply code review comments from .code-review.md. Use when the user says "review", "apply review", "apply comments", or invokes /review.

From code-review
Install
1
Run in your terminal
$
npx claudepluginhub scristobal/claude-plugins --plugin code-review
Tool Access

This skill uses the workspace's default tool permissions.

Skill Content

Apply Code Review

Read .code-review.md in the current working directory and apply every review comment.

Workflow

  1. Read .code-review.md
  2. For each comment section:
    • Note the file path and line range from the heading (e.g. src/main.rs:10-15)
    • Read the referenced file to understand the current code in context
    • Apply the change described in the comment text
  3. After processing ALL comments, ALWAYS delete .code-review.md — even if some comments were skipped or required no changes
  4. Summarize what was done, one line per comment (applied, skipped, or already resolved)

Rules

  • Apply comments in order, top to bottom
  • Read enough surrounding context to make correct edits — don't blindly match only the snippet
  • If a comment is ambiguous, make your best judgment and note it in the summary
  • If a comment cannot be applied (file missing, code already changed), mark it as resolved and move on
  • Do not make changes beyond what the review comments ask for
  • Deleting .code-review.md at the end is mandatory — it signals the review is complete
Similar Skills
cache-components

Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.

138.5k
Stats
Parent Repo Stars0
Parent Repo Forks0
Last CommitMar 7, 2026