What problem does it solve?
Code changes can accidentally send personally identifiable information (wallet addresses, transaction IDs, public keys) to third-party logging and analytics services like Datadog, Sentry, or Mixpanel. This Skill reviews the current branch's diff to catch such privacy leaks before they ship.
Core Features & Use Cases
- Diff-based leak detection: Analyzes
git diff develop...HEAD for high-risk variables flowing into tracking, logging, or crash-reporting calls.
- Guard removal detection: Flags removed confidentiality filters or PII-scrubbing wrappers that could re-enable leaks.
- Risk scoring and fixes: Scores each finding 1-10 and reports only critical issues (score 7+) with concrete remediation steps.
- Use Case: Before merging a pull request in the Ledger Live monorepo, run this check to confirm no wallet addresses or signed transaction payloads are being sent to analytics or crash-reporting sinks.
Quick Start
Check the current branch for potential PII data leaks to third-party services.