From harness-plugin
Run local Codex code review via npm run review, parse findings from .codex-reviews/latest.md, and fix issues. Single pass — no polling loop.
How this skill is triggered — by the user, by Claude, or both
Slash command
/harness-plugin:reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run a local Codex code review against the current branch's diff from `main`, parse the findings, and fix each issue. This is a single-pass review — no PR required, no polling loop.
Run a local Codex code review against the current branch's diff from main, parse the findings, and fix each issue. This is a single-pass review — no PR required, no polling loop.
/harness-plugin:github-review when you don't need cloud reviewnpm run review
This runs codex exec review --base main via scripts/review.sh. It saves the review output to .codex-reviews/latest.md.
Wait for the command to complete (may take 1-3 minutes).
cat .codex-reviews/latest.md
The review output follows this format:
Review comment:
- [SEVERITY] Description — file_path:line_range
Explanation of the issue and how to fix it.
If the review says "No issues found" or the patch is correct — tell the user the review is clean and stop.
For each finding:
Rules:
After all fixes:
npm run lint
npm run test
Both must pass before reporting results.
Tell the user:
Do NOT commit or push — leave that to the user or to the next step in their workflow.
OPENAI_API_KEY or codex CLI)npx claudepluginhub winoooops/vimeflow --plugin harness-pluginProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.