From 2bcc4003f05347e2123f145f6b6e7d0877e985a7 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sat, 30 May 2026 19:09:12 +0900 Subject: [PATCH] feat(packages): add CHANGELOG.md --- .../components/comment-checker/CHANGELOG.md | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 packages/omo-codex/plugin/components/comment-checker/CHANGELOG.md diff --git a/packages/omo-codex/plugin/components/comment-checker/CHANGELOG.md b/packages/omo-codex/plugin/components/comment-checker/CHANGELOG.md new file mode 100644 index 000000000..c5b91529d --- /dev/null +++ b/packages/omo-codex/plugin/components/comment-checker/CHANGELOG.md @@ -0,0 +1,33 @@ +# Changelog + +## Unreleased + +### Added + +- Restore `write`, `edit`, `multi_edit`, and `multiedit` PostToolUse coverage alongside `apply_patch`. +- Forward Codex `transcript_path` into native comment-checker hook input when available. +- Add package smoke coverage for portable hook entrypoints. + +### Changed + +- Treat the native checker binary as an optional dependency for unsupported platforms. +- Cap child process stdout/stderr captured from the native checker. +- Run CI on Windows in addition to Ubuntu and macOS. + +## [0.1.1] - 2026-05-15 + +### Changed + +- Limit automatic comment checking to successful `apply_patch` hook events. +- Remove the `comment_check` MCP tool and MCP server configuration. +- Update plugin metadata, docs, and contributor guidance to describe hook-only behavior. + +## [0.1.0] - 2026-05-15 + +### Added + +- Initial `codex-comment-checker` Codex plugin. +- `PostToolUse` hook for `apply_patch`, `write`, `edit`, and `multiedit` style tool calls. +- Blocking hook feedback when `comment-checker` reports warnings. +- `comment_check` MCP tool for explicit write/edit/multiedit checks. +- Codex plugin manifest, local MCP config, bundled skill, and GitHub repository metadata.