在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用lrv
星标4
分支0
更新时间2026年7月20日 16:38
show diffs for human code review in lrv
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
17 个文件SKILL.md
readonly菜单
show diffs for human code review in lrv
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | lrv |
| description | show diffs for human code review in lrv |
Run lrv to open a diff in a browser UI for code review. The user submits
comments which are returned as JSON or text. Apply all comments as code fixes.
# Uncommitted changes
jj diff --git | lrv --title="description"
git diff | lrv --title="description"
# Single committed revision
lrv --cmd "jj show --git -r <rev>"
lrv --cmd "git show HEAD"
# Full branch as a series of commits
lrv --series "trunk()..@" # jj revset
lrv --series "main..HEAD" # git range
# Local LLM pre-review requested by the user
# 1. Review the diff yourself before launching lrv.
# 2. Write findings as review notes JSON.
# 3. Launch lrv with those notes.
git diff > /tmp/lrv.diff
lrv --file /tmp/lrv.diff --review-notes-file /tmp/lrv-local-review.json
# Validate a review notes JSON file
lrv --validate-review-notes /tmp/notes.json
# GitHub PR comments (pipe gh output, don't let lrv call gh itself)
gh api --paginate repos/OWNER/REPO/pulls/N/comments > /tmp/pr-comments.json
git diff main..HEAD | lrv --github-pr-comments /tmp/pr-comments.json
# or with process substitution
git diff main..HEAD | lrv --github-pr-comments <(gh api --paginate repos/OWNER/REPO/pulls/N/comments)
# Phabricator — with API token (PHABRICATOR_API_KEY env var)
lrv --phab-revision D123456 ...
# Phabricator — without token, using mcp__moz__get_phabricator_revision
# 1. Call the MCP tool and write its output to a file
# 2. Pass to lrv
lrv --phab-mcp-comments /tmp/phab.md ...
lrv synchronously. Never use a sub-agent or background task.lrv, write a JSON array of review notes, and pass it with
--review-notes-file. Do not make lrv call a model.file, line, side, and body are
required. Optional fields: id, author, date, source_url,
commit_idx. Use exact diff file paths; use side: "new" for comments on
changed/new code; use file: "(commit)", line: 1, side: "new" for
global comments. In series mode, set commit_idx to the zero-based commit
index.commits array, each entry has commit_hash,
commit_message, and a comments list. Work through the array in order:
for each commit that has comments, edit that commit and apply all its fixes,
then return to the top of the stack before moving on.