Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/LedgerHQ/ledger-live --skill pre-reviewコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Place and organize Ledger Wallet code in the DDD monorepo. Use when creating, moving, or reviewing code under apps, features, domain, shared, or support; deciding which layer owns a concern; structuring packages and flow steps; or checking package names, dependency boundaries, platform variants, and legacy imports.
A new-architecture package (shared/, domain/, features/) exposes its API through barrels that contain nothing but `export *`, and keeps its private code in an internals location. Read this when creating a package under shared/, domain/ or features/, when editing any `index.*` file, or when a `lint:structure` check fails.
A new-architecture package (shared/, domain/, features/) exposes its API through barrels that contain nothing but `export *`, and keeps its private code in an internals location. Read this when creating a package under shared/, domain/ or features/, when editing any `index.*` file, or when a `lint:structure` check fails.
SOC 職業分類に基づく
SKILL.md を表示中
| name | pre-review |
| description | Deep code review |
| disable-model-invocation | true |
Deep code review
Run git diff develop...HEAD to get the full diff.
Launch 5 code-reviewer agents in parallel, each with a different focus:
detect-data-leaks skill for PII; check for auth bypass, injection, SSRF, crypto misuse; scan the diff for hardcoded secrets, tokens, API keys, or private keys.Each agent prompt: "Review the diff vs develop. Focus on [FOCUS]. Return findings with file:line, severity (🔴 Critical / 🟡 Suggestion / 🟢 Nice to have), and suggested fix."
Merge + deduplicate findings. Present grouped by severity:
🔴 Critical — path/to/file.ts:42 — issue → fix
🟡 Suggestion — ...
🟢 Nice to have — ...
Summary: X critical, Y suggestions, Z nice-to-haves
Ask the user which items to fix: "all criticals", "all", "#1,#2, #3", or "skip" → /create-pr