fix-comments — community fix-comments, MoonMind, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

About this Skill

Perfect for Code Review Agents needing automated comment resolution and PR management capabilities. Resolve GitHub PR feedback end-to-end for the branch you are on. Use when you need to fetch all comments on the branch PR, evaluate whether each comment still applies, decide whether it should be addr

MoonLadderStudios MoonLadderStudios
[6]
[4]
Updated: 3/11/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 9/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
9/11
Quality Score
50
Canonical Locale
en
Detected Body Locale
en

Perfect for Code Review Agents needing automated comment resolution and PR management capabilities. Resolve GitHub PR feedback end-to-end for the branch you are on. Use when you need to fetch all comments on the branch PR, evaluate whether each comment still applies, decide whether it should be addr

Core Value

Empowers agents to automate comment resolution for developers using Dockerized agent orchestration, compatibility with Claude Code, Gemini CLI, and Codex CLI, and utilizing Python scripts like `get_branch_pr_comments.py` to collect and address PR comments.

Ideal Agent Persona

Perfect for Code Review Agents needing automated comment resolution and PR management capabilities.

Capabilities Granted for fix-comments

Automating PR comment resolution for active branches
Generating commit messages for resolved comments
Debugging PR analysis workflows using tools like `python3 tools/get_branch_pr_comments.py`

! Prerequisites & Limits

  • Requires Dockerized agent orchestration
  • Compatibility limited to Claude Code, Gemini CLI, and Codex CLI
  • Python 3.x required for script execution

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is fix-comments?

Perfect for Code Review Agents needing automated comment resolution and PR management capabilities. Resolve GitHub PR feedback end-to-end for the branch you are on. Use when you need to fetch all comments on the branch PR, evaluate whether each comment still applies, decide whether it should be addr

How do I install fix-comments?

Run the command: npx killer-skills add MoonLadderStudios/MoonMind. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for fix-comments?

Key use cases include: Automating PR comment resolution for active branches, Generating commit messages for resolved comments, Debugging PR analysis workflows using tools like `python3 tools/get_branch_pr_comments.py`.

Which IDEs are compatible with fix-comments?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for fix-comments?

Requires Dockerized agent orchestration. Compatibility limited to Claude Code, Gemini CLI, and Codex CLI. Python 3.x required for script execution.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add MoonLadderStudios/MoonMind. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use fix-comments immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

fix-comments

Install fix-comments, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Fix Comments

Run this as a full remediation workflow for the active branch PR. Do not stop after analysis.

Inputs

  • Optional: explicit scope constraints from the user (for example, "only fix blocking items").
  • Optional: preferred commit message.

If no constraints are provided, default to addressing all applicable feedback.

Workflow

  1. Resolve PR and collect all comments.
  • Run python3 tools/get_branch_pr_comments.py --output Saved/PRComments/current-branch-comments.json.
  • If PR resolution fails, stop and ask the user for a PR number/URL.
  • Load Saved/PRComments/current-branch-comments.json (explicitly bypass ignore checking when reading this artifact) and treat every entry in comments as input feedback.
  1. Build a feedback ledger before editing code.
  • Create a working checklist with one row per comment:
    • id, type, author, url, path:line (if present), summary, still_applies, should_address, action_plan.
  • Keep replies (in_reply_to_id) tied to their parent comment to avoid duplicate work.
  • Never silently drop a comment.
  1. Decide if each comment still applies.
  • For code-line comments:
    • Inspect current file state and surrounding logic, not just the old line number.
    • Mark still_applies=false only when the concern is already fixed or made irrelevant by later changes.
  • For broad review/issue comments:
    • Compare against current behavior, tests, and architecture constraints.
  • Record a one-sentence rationale for each still_applies=false decision.
  1. Decide whether each applicable comment should be addressed now.
  • Default to should_address=true for correctness, crashes, determinism, networking, security, data loss, CI stability, and test gaps.
  • should_address=false is allowed only when:
    • It conflicts with explicit user direction, or
    • It requires product/design decisions outside current scope.
  • Record rationale for each skipped item and keep the skipped list in final output.
  1. Implement fixes with the smallest safe change.
  • Process one actionable item at a time.
  • Prefer root-cause fixes over cosmetic edits.
  • Add or update tests whenever behavior changes.
  • Re-check adjacent comments after each fix to collapse duplicates.
  1. Run compile/tests and retry until green.
  • Follow repo AGENTS guidance for local Unreal validation:
    • Compile only if platform build entrypoint and toolchain exist.
    • Run targeted automation tests when UnrealEditor-Cmd is available.
  • If compilation/tests fail:
    • Read logs,
    • Fix the failures,
    • Re-run compile/tests.
  • Repeat until the touched scope is passing locally, or until blocked by missing environment prerequisites. If blocked, report exact blocker.
  1. Finalize and push.
  • Ensure every comment is classified in the ledger (addressed, not-applicable, or deferred-with-reason).
  • Run a final git status review.
  • Commit with a clear message (default: Address PR feedback for #<number>).
  • Push the current branch.

Output

Provide a concise report with:

  • PR number and URL.
  • Count summary: total comments, addressed, not applicable, deferred.
  • Per-comment disposition (comment URL + decision + short rationale).
  • Files changed.
  • Compile/test commands run and their final status.
  • Commit hash and pushed branch.

Notes

  • Use tools/get_branch_pr_comments.py as the default retrieval path; it wraps tools/get_pr_comments.py.
  • If retrieval needs customization (repo/token/review-body filtering), pass through the corresponding flags supported by tools/get_branch_pr_comments.py.
  • Do not claim completion if compile/tests are still failing.

Related Skills

Looking for an alternative to fix-comments or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer