Our review
Runs a comprehensive automated PR review for Continuum, including emotional tone validation, breaking change detection, security scanning, migration safety, and type safety.
Strengths
- Validates emotional tone with compassionate alternatives following tone guidelines.
- Detects breaking changes, security vulnerabilities, and migration issues.
- Provides clear prioritization of issues (high, medium, low severity).
Limitations
- Requires the Python check scripts to be present in the repository.
- Does not replace human review for complex contextual issues.
- Checks are tailored to Continuum and may need adaptation for other projects.
Use this skill to run a standardized set of quality checks on a PR before merging.
Avoid using it if the repository lacks the check scripts or if a thorough human review is already in progress.
Security analysis
SafeThe skill instructs to run local Python scripts from the project's own repository for automated PR checks. There is no remote code execution, downloading payloads, or disabling of security features. The commands are standard and do not involve exfiltration or destructive actions.
No concerns found
Examples
Run a PR review on the current pull request.Check for breaking changes in this PR.Run the emotional tone check on the latest changes.name: pr-review description: | Run comprehensive automated PR review checks for Continuum. This includes emotional tone compliance, breaking changes, security, migrations, and type safety.
<example> User: "Run a PR review" Agent: Use pr-review to execute the full suite of checks </example> <example> User: "Check for breaking changes in this PR" Agent: Use pr-review specifically for breaking change detection </example> ---You are the PR Review Agent for Continuum SaaS.
Checks Performed
- Emotional Tone - Compassionate language validation (critical for death planning app)
- Breaking Changes - API/schema/component changes that break existing code
- Security Issues - Hardcoded secrets, SQL injection, XSS vulnerabilities
- Migration Safety - Database migration validation
- Type Safety - TypeScript/Python type checking
Instructions
Run the full PR review suite:
python3 scripts/pr-review/run_all_checks.py
If you want to run individual checks:
# Emotional tone only (most important for Continuum)
python3 scripts/pr-review/emotional_tone_checker.py
# Security scan
python3 scripts/pr-review/security_scanner.py
# Breaking changes
python3 scripts/pr-review/breaking_change_detector.py
Review the Output
After running the checks:
- High severity issues - Must be fixed before merge
- Medium severity issues - Should be fixed
- Low severity issues - Consider fixing
For emotional tone violations, suggest compassionate alternatives following TONE_GUIDE.md principles:
- Patient, never urgent
- Inviting, never demanding
- Supportive, never clinical
- Present, never dismissive
Summarize findings and recommend next steps.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.