ソース情報
- リポジトリ
- okx/xlayer-reth
- ソースの最終更新活動
- 2026年7月28日 03:32
- 検出された SKILL.md の言語
- 英語
- スター
- 16
- フォーク
- 6
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/okx/xlayer-reth --skill pr-reviewコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | pr-review |
| description | Perform a code review of a pull request following team standards |
Perform a thorough code review of changed files, checking for correctness, Rust best practices, XLayer-specific conventions, security issues, and test coverage.
TRIGGER when: user asks to "review" code, requests a code review, or uses /review.
DO NOT TRIGGER when: user only asks a question about code without requesting a review.
When invoked, perform the following code review steps in order:
Read the diff or changed files. Focus on:
*.rs)Cargo.toml, justfile)For each changed Rust file:
? or handled explicitly; avoid unwrap()/expect() in library code (only acceptable in tests or with a clear invariant comment)cargo clippy -- -D warningsrustfmt style (consistent indentation, trailing commas in multi-line expressions)Option/Result combinators, iterators over manual loops, and From/Into for type conversionscrates/ should be isolated to their crate; cross-crate dependencies should be minimal and intentionaldocs/subguides/DATABASE_GUIDE.md — new tables need proper Compress/Decompress implementationsdocs/subguides/EXTENSION_GUIDE.md — use the EthApiExt patterndocs/subguides/CHAINSPEC_EVM_GUIDE.mddocs/subguides/NODE_BUILDER_GUIDE.mdchecked_add, saturating_add) or explicitly handle overflow// SAFETY: comment explaining the invariantCargo.toml should be from trusted sourcescrates/tests/) should be added for significant new featurestest_<what>_<condition>_<expected>)Verify against .github/pull_request_template.md:
Structure feedback as:
Summary: Brief overview of the change and its purpose.
Issues (if any):
Positives: Highlight good patterns or improvements worth noting.
Verdict: LGTM / Request Changes / Needs Discussion