address-comments

Apply CLAUDE:-prefixed pull request comments to local codebase files.

213|13|Updated Aug 7, 2025
One-click install
npx skills add https://github.com/imbue-ai/sculptor --skill address-comments-imbue-ai
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: address-comments
Source: https://github.com/imbue-ai/sculptor/tree/main/.claude/skills/address-comments
Command: npx skills add https://github.com/imbue-ai/sculptor --skill address-comments-imbue-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires gh, git, grep, and includes scripts (resource) components.

What problem does it solve?

This Skill automates the process of applying comments prefixed with "CLAUDE:" from a pull request to the local codebase, eliminating manual review and modification.

Core Features & Use Cases

  • Comment Application: Applies specific comments from a pull request to the codebase.
  • File Modification: Reads and writes changes to local files based on comments.
  • Use Case: After receiving a pull request with "CLAUDE:"-prefixed comments, this Skill can apply the changes without the need for manual intervention.

Quick Start

Apply comments prefixed with "CLAUDE:" from pull request #123 to your local codebase by running sculptor skills run address-comments pr-number=123.

Frequently Asked Questions about address-comments

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

FAQPage Schema
How do I automatically apply pull request comments to my local codebase?

To automatically apply pull request comments to your local codebase, you can run a script that fetches comments prefixed with "CLAUDE:" from GitHub and writes the suggested modifications directly to your local files. This eliminates manual review and modification.

Can I apply both inline and discussion PR comments to local files automatically?

Yes, you can apply both inline and discussion PR comments to local files automatically. The process parses GitHub pull request threads, filters for specific prefixed comments using grep, and applies the requested code modifications across both comment types.

Do I need the gh CLI and git installed to apply GitHub PR comments locally?

Yes, you need the gh CLI and git installed to apply GitHub PR comments locally. The gh command handles GitHub API interactions to fetch pull request comments, while git manages the local repository state and file modifications.

What is the best way to automate code modifications from GitHub pull request reviews?

The best way to automate code modifications from GitHub pull request reviews is using a script that filters for specific prefixed comments like "CLAUDE:" and applies them directly to your codebase. This ensures only designated review comments trigger automated file changes.

How does filtering prefixed comments work when processing GitHub pull requests?

Filtering prefixed comments works by using grep to search through GitHub pull request comments and isolate those starting with a specific tag like "CLAUDE:". Only these tagged comments are extracted and processed for application to the local codebase.