home / skills / desplega-ai / ai-toolbox / process-review
This skill processes file-review comments, extracts HTML markers, guides Claude through addressing each item interactively, and removes resolved markers.
npx playbooks add skill desplega-ai/ai-toolbox --skill process-reviewReview the files below or copy the command above to add this skill to your agents.
---
name: process-review
description: Process review comments in a file after user finishes reviewing in file-review GUI. Extracts HTML comment markers, guides Claude through addressing each comment interactively, and removes resolved markers.
---
# Process Review Comments
Thin redirect. Follow the **Process Comments** section of the `file-review:file-review` skill for full instructions.
This skill processes review comments embedded in a file after a user finishes reviewing in a file-review GUI. It locates HTML-style comment markers, walks an AI assistant (Claude) through addressing each comment interactively, and removes markers when issues are resolved. The skill is written for TypeScript-based agent toolchains and designed for seamless integration into an agent workflow.
The skill scans the file for HTML comment markers used by the GUI to flag review notes. For each comment it extracts context and the comment body, then prompts Claude to propose fixes, explanations, or follow-up questions. When a comment is resolved, the skill removes or updates the original marker so the file reflects the current review state. It also emits structured metadata so other agents or tools can track progress.
What kinds of comment markers are supported?
The skill expects HTML-style comment markers used by the file-review GUI; keep marker format consistent for reliable extraction.
Does the skill apply edits automatically?
It proposes and can apply edits, but workflows should include a confirmation step so humans can validate changes before finalizing.