ソース情報
- リポジトリ
- toss/es-toolkit
- ソースの最終更新活動
- 2026年3月2日 10:22
- 検出された SKILL.md の言語
- 英語
- スター
- 11,333
- フォーク
- 613
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/toss/es-toolkit --skill pr-reviewコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | pr-review |
| description | Review recent PRs with deep context and label-specific checks |
| argument-hint | [count=10] |
| allowed-tools | Bash, Read, Grep, Glob, Skill |
Fetch recent PRs, classify, read source code, and produce contextual reviews.
$ARGUMENTS — Number of PRs (default: 10)
Examples:
/pr-review — 10 most recent open PRs/pr-review 20 — 20 PRsgh pr list --repo toss/es-toolkit --state open --limit {count} --json number,title,author,labels,createdAt
Run /pr-triage {number} for each PR to classify.
For each PR, go beyond classification — read the actual source code and provide context:
Read the files being modified on main to understand the current behavior:
Read the diff to understand what's changing:
/compat-review {number}yarn vitest run src/{category}/{fn}.spec.ts + review breaking impacttsc --noEmitGroup PRs by same function name or same files modified.
For each PR, output:
### PR #{number} — {title}
**Classification**: {labels}
**Changed files**: {summary}
**Current code**: {what the function does now, with code snippet}
**PR change**: {what's changing and why, with before/after}
**Context**: {JS spec, lodash behavior, design principle considerations}
**Checkpoints**:
- {specific things to verify}
**Verdict**: {merge / merge with changes / hold for discussion / reject}
## PR Review — {date}
| # | Title | Label | Verdict |
|---|-------|-------|---------|
- {N} ready to merge
- {N} need changes
- {N} need discussion
- {N} potential duplicates