一键导入
meatcheck
Request a PR-style review UI for a set of files or a diff and collect inline feedback with file/line anchors from the user.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Request a PR-style review UI for a set of files or a diff and collect inline feedback with file/line anchors from the user.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | meatcheck |
| description | Request a PR-style review UI for a set of files or a diff and collect inline feedback with file/line anchors from the user. |
Use this skill to request a human-style review of a set of files via meatcheck.
When you want targeted feedback, provide --prompt with specific review goals (for example: security, correctness, performance, or API design) so the reviewer knows what to prioritize.
meatcheck <file1> <file2> ...
meatcheck --prompt "Focus on security and error handling" <file1>
meatcheck --diff changes.diff
cat changes.diff | meatcheck
meatcheck --range "path/to/file.go:10-40" <file1>
meatcheck --groups groups.json <file1> <file2> ...
The CLI opens a browser UI with a GitHub-like review layout. The reviewer can select lines/ranges, add inline comments, and click Finish.
Use diff mode when you want feedback scoped to changed lines instead of full files.
# review from a saved patch file
meatcheck --diff changes.diff
# review from git output directly
git diff -- . ':!go.sum' | meatcheck
# review staged changes
git diff --cached | meatcheck --prompt "Focus on regressions and missing tests"
In diff mode:
git diff output.Use --groups to organize files into named feature groups in the sidebar tree.
meatcheck --groups groups.json <file1> <file2> ...
meatcheck --groups groups.json --diff changes.diff
The JSON file contains an ordered array of groups:
[
{"name": "Auth", "files": ["auth.go", "middleware.go"]},
{"name": "API", "files": ["handler.go", "routes.go"]}
]
meatcheck command and wait for the process to finish.On finish, the CLI prints TOON to stdout with a list of comments:
comments[2]{end_line,path,start_line,text}:
29,README.md,29,This is a comment
40,README.md,40,This is another Example comment
--host / --port to control binding.--prompt to tell the reviewer what to focus on.--diff or pipe a unified diff to render changes.--range to render only specific sections of a file.--groups to organize files into named feature groups.--skill to print this SKILL.md content.