minimax-ai/skills
pr-review
Review pull requests for the MiniMax Skills repository. Use when reviewing PRs, validating new skill submissions, or checking existing skills for compliance. Run the validation script first for hard checks, then apply quality guidelines for content review. Triggers: PR review, pull request, validate skill, check skill.
Installation
npx skills add minimax-ai/skills --skill pr-review
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Adds interactive widget previews to the project using the previews.dart system. Use when creati…
29.4K installsFind Google Tasks that are past due and need attention.
27.2K installsReview who attended a Google Meet conference and for how long.
26.9K installsSecurity code review for vulnerabilities.
15.5K installsThis skill enables visual inspection of websites running locally or remotely to identify and fi…
13.3K installsUniversal SQL code review assistant that performs comprehensive security, maintainability, and …
13K installsAlso in this package
Other skills from minimax-ai/skills · top by installs.
npx skills add minimax-ai/skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
More metadata
- version
- 1.0
- category
- tooling
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,476 B -
docs
SUMMARY.md337 B
History
- First seen on skills.sh
- First recorded snapshot · 1,700 installs
Videos
Tutorials, guides, and showcases specifically about this skill.
SKILL.md
PR Review Skill
Review pull requests against repository standards. Two-phase process: automated validation, then manual content review.
Phase 1: Automated Validation (Hard Rules)
Run the validation script to check structural requirements:
python .claude/skills/pr-review/scripts/validate_skills.py
The script checks:
SKILL.mdexists in every skill directory- YAML frontmatter is parseable
- Required fields present:
name,description namematches directory name- No hardcoded secrets detected
All ERROR-level checks must pass. WARNING-level items (missing license, metadata) should be flagged but are not blockers.
See [references/structure-rules.md](references/structure-rules.md) for the complete hard rules specification.
Phase 2: Content Review (Soft Guidelines)
After automated checks pass, review the PR against quality guidelines:
- Skill scope — Does it overlap with existing skills? Is the boundary clear?
- Description quality — Does the
descriptioninclude clear trigger conditions? - File size — Are reference docs reasonably sized for context window consumption?
- API key handling — If external APIs are used, are credentials read from environment variables?
- Script quality — Do scripts have shebang, requirements.txt, and error handling?
- Language — Are SKILL.md and code written in English?
- README sync — Are
README.mdandREADME_zh.mdupdated for new skills?
See [references/quality-guidelines.md](references/quality-guidelines.md) for soft guidelines details.
Review Checklist Summary
Must Pass (Blockers)
-
validate_skills.pyexits with code 0 - PR title follows conventional commit format
- One PR, one purpose
Should Pass (Flagged in Review)
- No functional overlap with existing skills
- Description includes trigger conditions
- Files are reasonably sized
- API keys via environment variables
- README tables updated for new skills (Source column set to
Community)