Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Comment Checker Feedback Handler

Defines how the agent should interpret and act on blocking warnings from the comment-checker hook that runs after file edits.

Dev & CodingBeginner67,5305,507AI score 5/10Last updated: Aug 9, 2026

What it does

  • Registers behavior for a PostToolUse hook that runs comment-checker after successful apply_patch, write, edit, multi_edit, and multiedit calls.
  • When the checker reports a warning, the feedback is blocking: the agent must fix the flagged comment or explain why it should stay before continuing.
  • States its boundaries clearly — no MCP tool is exposed, non-edit tools are ignored, and missing checker binaries produce no hook output so work proceeds normally.

Who it's for

  • Developers running the oh-my-openagent / omo-codex plugin who want comment hygiene enforced automatically.
  • Teams tired of stale or noise comments accumulating in the codebase.
  • Anyone building post-edit hook pipelines for automated code quality checks.

Examples

  1. The agent refactors a function and leaves // TODO: fix later; the hook warning fires and the comment is cleaned up or justified immediately.
  2. After a bulk multi_edit across several files, warnings must be resolved before the agent moves to the next task.
  3. On a machine without the checker binary installed, no warnings appear and the normal edit workflow is unaffected.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/HEAD/packages/omo-codex/plugin/components/comment-checker/skills/comment-checker/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the packages/omo-codex/plugin/components/comment-checker/skills/comment-checker folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/comment-checker/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/code-yeongyu/oh-my-openagent.git && mkdir -p ~/.claude/skills && cp -r oh-my-openagent/packages/omo-codex/plugin/components/comment-checker/skills/comment-checker ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open your terminal.
  2. Clone the repository: git clone https://github.com/code-yeongyu/oh-my-openagent.git
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r oh-my-openagent/packages/omo-codex/plugin/components/comment-checker/skills/comment-checker ~/.claude/skills/
  5. For the checks to actually run, install the omo-codex plugin plus the comment-checker binary and its PostToolUse hook configuration.
  6. Restart Claude Code and make a test edit to confirm the hook warning appears.
View source on GitHubLicense: NOASSERTION