pr-miner
Installation
SKILL.md
PR Miner Skill
Overview
This skill extracts raw review comment data from GitHub pull requests in three deterministic phases: AUTHENTICATE (verify token and repo access), MINE (extract raw JSON with code context), and VALIDATE (confirm output quality).
The skill operates with strict separation of concerns:
- This skill: Extracts raw data only. No analysis, interpretation, or pattern detection.
- Code Archaeologist agent: Analyzes patterns, generates rules, interprets comments.
Key principles:
- Over-engineering prevention: Extract only what was requested. Do not analyze, interpret, or detect patterns.
- Deterministic extraction only: Output raw JSON. No speculation about intent or meaning.
- Authenticate first: Verify GitHub token before any mining operation.
- Rate limit respect: Honor GitHub API rate limits with exponential backoff and monitoring.