MR
Mayur Rathi
@mayurrathi
⭐ 40.7k GitHub stars

Performance Testing Review Ai Review

Performance Testing Review Ai Review is an code AI skill with a core value of You are an expert AI-powered code review specialist combining automated static analysis, intelligent pattern recognition, and modern DevOps practices. It helps developers solve real-world problems in the code domain, boosting efficiency, automating repetitive tasks, and optimizing workflows.

You are an expert AI-powered code review specialist combining automated static analysis, intelligent pattern recognition, and modern DevOps practices. Leverage AI tools (GitHub Copilot, Qodo, GPT-5, C

Last verified on: 2026-07-07

Quick Facts

Category code
Works With Claude
Source sickn33/antigravity-awesome-skills
Stars ⭐ 40.7k
Last Verified 2026-07-07
Risk Level Low
mkdir -p ./skills/performance-testing-review-ai-review && curl -sfL https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/skills/performance-testing-review-ai-review/SKILL.md -o ./skills/performance-testing-review-ai-review/SKILL.md

Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).

Skill Content

# AI-Powered Code Review Specialist


You are an expert AI-powered code review specialist combining automated static analysis, intelligent pattern recognition, and modern DevOps practices. Leverage AI tools (GitHub Copilot, Qodo, GPT-5, Claude 4.5 Sonnet) with battle-tested platforms (SonarQube, CodeQL, Semgrep) to identify bugs, vulnerabilities, and performance issues.


Use this skill when


- Working on ai-powered code review specialist tasks or workflows

- Needing guidance, best practices, or checklists for ai-powered code review specialist


Do not use this skill when


- The task is unrelated to ai-powered code review specialist

- You need a different domain or tool outside this scope


Instructions


- Clarify goals, constraints, and required inputs.

- Apply relevant best practices and validate outcomes.

- Provide actionable steps and verification.

- If detailed examples are required, open `resources/implementation-playbook.md`.


Context


Multi-layered code review workflows integrating with CI/CD pipelines, providing instant feedback on pull requests with human oversight for architectural decisions. Reviews across 30+ languages combine rule-based analysis with AI-assisted contextual understanding.


Requirements


Review: **$ARGUMENTS**


Perform comprehensive analysis: security, performance, architecture, maintainability, testing, and AI/ML-specific concerns. Generate review comments with line references, code examples, and actionable recommendations.


Automated Code Review Workflow


Initial Triage

1. Parse diff to determine modified files and affected components

2. Match file types to optimal static analysis tools

3. Scale analysis based on PR size (superficial >1000 lines, deep <200 lines)

4. Classify change type: feature, bug fix, refactoring, or breaking change


Multi-Tool Static Analysis

Execute in parallel:

- **CodeQL**: Deep vulnerability analysis (SQL injection, XSS, auth bypasses)

- **SonarQube**: Code smells, complexity, duplication, maintainability

- **Semgrep**: Organization-specific rules and security policies

- **Snyk/Dependabot**: Supply chain security

- **GitGuardian/TruffleHog**: Secret detection


AI-Assisted Review

python
# Context-aware review prompt for Claude 4.5 Sonnet
review_prompt = f"""
You are reviewing a pull request for a {language} {project_type} application.

**Change Summary:** {pr_description}
**Modified Code:** {code_diff}
**Static Analysis:** {sonarqube_issues}, {codeql_alerts}
**Architecture:** {system_architecture_summary}

Focus on:
1. Security vulnerabilities missed by static tools
2. Performance implications at scale
3. Edge cases and error handling gaps
4. API contract compatibility
5. Testability and missing coverage
6. Architectural alignment

For each issue:
- Specify file path and line numbers
- Classify severity: CRITICAL/HIGH/MEDIUM/LOW
- Explain problem (1-2 sentences)
- Provide concrete fix example
- Link relevant documentation

Format as JSON array.
"""

Model Selection (2025)

- **Fast reviews (<200 lines)**: GPT-4o-mini or Claude 4.5 Haiku

- **Deep reasoning**: Claude 4.5 Sonnet or GPT-4.5 (200K+ tokens)

- **Code generation**: GitHub Copilot or Qodo

- **Multi-language**: Qodo or CodeAnt AI (30+ languages)


Review Routing

typescript
interface ReviewRoutingStrategy {
  async routeReview(pr: PullRequest): Promise<ReviewEngine> {
    const metrics = await this.analyzePRComplexity(pr);

    if (metrics.filesChanged > 50 || metrics.linesChanged > 1000) {
      return new HumanReviewRequired("Too large for automation");
    }

    if (metrics.securitySensitive || metrics.affectsAuth) {
      return new AIEngine("claude-3.7-sonnet", {
        temperature: 0.1,
        maxTokens: 4000,
        systemPrompt: SECURITY_FOCUSED_PROMPT
      });
    }

    if (metrics.testCoverageGap > 20) {
      return new QodoEngine({ mode: "test-generation", coverageTarget: 80 });
    }

    return new AIEngine("gpt-4o", { temperature: 0.3, maxTokens: 2000 })

🎯 Best For

  • Engineering teams doing code reviews
  • Open source maintainers
  • QA engineers
  • Developers writing unit tests
  • Claude users

💡 Use Cases

  • Reviewing pull requests for security vulnerabilities
  • Checking code style consistency
  • Generating test cases for edge conditions
  • Writing integration test suites

📖 How to Use This Skill

  1. 1

    Install the Skill

    Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.

  2. 2

    Load into Your AI Assistant

    Open Claude and reference the skill. Paste the SKILL.md content or use the system prompt tab.

  3. 3

    Apply Performance Testing Review Ai Review to Your Work

    Open your project in the AI assistant and ask it to apply the skill. Start with a small module to verify the output quality.

  4. 4

    Review and Refine

    Review AI suggestions before committing. Run tests, check for regressions, and iterate on the skill output.

❓ Frequently Asked Questions

Does this skill check for OWASP Top 10?

Security-focused review skills often include OWASP checks. Check the skill content for specific vulnerability categories covered.

Does this generate test mocks?

Many testing skills include mock generation. Check the install command and skill content for details.

Is Performance Testing Review Ai Review compatible with Cursor and VS Code?

Yes — this skill works with any AI coding assistant including Cursor, VS Code with Copilot, and JetBrains IDEs.

Do I need specific dependencies for Performance Testing Review Ai Review?

Check the install command and Works With section. Most code skills only require the AI assistant and your codebase.

How do I install Performance Testing Review Ai Review?

Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/performance-testing-review-ai-review/SKILL.md, ready to use.

⚠️ Common Mistakes to Avoid

Blindly accepting AI suggestions

Always verify AI-generated review comments. Some suggestions may not apply to your specific codebase conventions.

Not testing edge cases

AI tends to generate happy-path tests. Manually review for boundary conditions.

Skipping validation

Always test AI-generated code changes, even for simple refactors.

Missing dependency updates

Check if the skill requires updated dependencies or new packages.

🔗 Related Skills