用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/arklexai/arksim --skill review-pr命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when the user wants to re-evaluate a previous arksim simulation with different metrics, thresholds, or judge model without re-running the agent. Cheaper than re-simulating.
Use when the user wants to inspect arksim evaluation results, debug specific failures turn by turn, or compare two runs to measure improvement.
Use when the user wants to generate, edit, or extend arksim test scenarios. Reads the agent's source code to derive realistic scenarios; can build regression scenarios from past failures.
基于 SOC 职业分类
正在显示 SKILL.md
| name | review-pr |
| description | Review a pull request against arksim project standards |
| disable-model-invocation | true |
| effort | high |
| argument-hint | [PR-number] |
| context | fork |
| agent | Explore |
| allowed-tools | Bash, Read, Grep, Glob |
Review an open pull request for functional correctness and project conventions. Focus on logic, architecture, and behavior. Formatting issues are caught by CI (ruff, pre-commit) and do not need manual review.
Fetch PR metadata and diff
gh pr view $ARGUMENTS --json title,body,files,additions,deletions,commits,headRefName
gh pr diff $ARGUMENTS
Validate PR title and description
Review functional changes Focus on:
Check scope
Check test coverage
arksim/ with no corresponding test changesCheck documentation
docs/ updates[Unreleased]Check license headers on new files
.py files should start with # SPDX-License-Identifier: Apache-2.0| Check | Status | Notes |
|---|---|---|
| Title format | PASS/FAIL | ... |
| Description | PASS/FAIL | ... |
| Functional correctness | PASS/WARN | ... |
| Scope | PASS/WARN | ... |
| Tests | PASS/WARN | ... |
| Docs/Changelog | PASS/WARN | ... |
| License headers | PASS/N/A | ... |
End with: APPROVED, CHANGES REQUESTED, or NEEDS DISCUSSION.