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 & CodingBeginner★ 67,530⑂ 5,507AI score 5/10Last updated: Aug 9, 2026
What it does
- Registers behavior for a
PostToolUsehook that runs comment-checker after successfulapply_patch,write,edit,multi_edit, andmultieditcalls. - 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
- The agent refactors a function and leaves
// TODO: fix later; the hook warning fires and the comment is cleaned up or justified immediately. - After a bulk
multi_editacross several files, warnings must be resolved before the agent moves to the next task. - 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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open your terminal.
- Clone the repository:
git clone https://github.com/code-yeongyu/oh-my-openagent.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r oh-my-openagent/packages/omo-codex/plugin/components/comment-checker/skills/comment-checker ~/.claude/skills/ - For the checks to actually run, install the omo-codex plugin plus the comment-checker binary and its PostToolUse hook configuration.
- Restart Claude Code and make a test edit to confirm the hook warning appears.
View source on GitHub ↗License: NOASSERTION