Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ocr-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ jobs:
}
}
}

// Post summary comment with statistics
let finalBody = buildSummaryBody(totalCount, successCount, commentsWithoutLine.length + failedComments.length, warnings);
finalBody += formatSummaryComments(commentsWithoutLine);
Expand Down
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,13 +321,22 @@ Install and enable `Open Code Review`, then start a new Codex thread and invoke
@Open Code Review review and fix high-confidence issues
```

This registers a Codex skill that runs the local OCR CLI:
This registers a Codex-owned review skill. OCR supplies deterministic review
evidence and target-aware context; Codex performs all planning, reasoning,
prioritization, reporting, and explicitly requested fixes.

The host-agnostic command surface is `ocr agent ...`; Codex is the first adapter
using that shared deterministic layer:

```bash
ocr review --audience agent
ocr agent prepare --format json
ocr agent validate-comments --bundle /tmp/bundle.json --comments /tmp/comments.json --output /tmp/validation.json
ocr agent report --bundle /tmp/bundle.json --comments /tmp/comments.json --validation /tmp/validation.json --format markdown
```

This integration does not change OCR's internal LLM backend and does not require configuring an OpenAI Responses API endpoint for Codex. OCR itself still requires the `ocr` CLI to be installed and configured as described in the CLI setup section.
The Codex-owned path does not initialize OCR's LLM backend and requires no OCR
provider or API key. Native `ocr review` and `ocr scan` remain available when a
user explicitly wants OCR's independent external-LLM workflow.

Korean guide: [`plugins/open-code-review/CODEX.ko-KR.md`](plugins/open-code-review/CODEX.ko-KR.md)

Expand Down
Loading
Loading