Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

comprehensive-review-full-review全面审查 全面审查

Agent Skill

comprehensive-review-full-review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

734

周安装

30

GitHub Stars

693

下载量

235
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:comprehensive-review-full-review(全面审查 全面审查)
来源仓库:https://github.com/rmyndharis/antigravity-skills
仓库路径:skills/comprehensive-review-full-review
安装命令:
npx skills add https://github.com/rmyndharis/antigravity-skills --skill comprehensive-review-full-review
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rmyndharis/antigravity-skills --skill comprehensive-review-full-review

简介

提供全面审查任务的指引、清单与最佳实践参考。

  • 聚焦于 multi-dimensional code review 的 orchestration 支持。
  • 适用于需要标准化评审流程、提升团队评审效率的组织。
  • 可结合 resources/implementation-playbook.md 获取详细示例。
  • 安装前建议确认是否有权限读取项目评审规范文档。

SKILL.md

Use this skill when

  • Working on comprehensive review full review tasks or workflows
  • Needing guidance, best practices, or checklists for comprehensive review full review

Do not use this skill when

  • The task is unrelated to comprehensive review full review
  • 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.

Orchestrate comprehensive multi-dimensional code review using specialized review agents

[Extended thinking: This workflow performs an exhaustive code review by orchestrating multiple specialized agents in sequential phases. Each phase builds upon previous findings to create a comprehensive review that covers code quality, security, performance, testing, documentation, and best practices. The workflow integrates modern AI-assisted review tools, static analysis, security scanning, and automated quality metrics. Results are consolidated into actionable feedback with clear prioritization and remediation guidance. The phased approach ensures thorough coverage while maintaining efficiency through parallel agent execution where appropriate.]

Review Configuration Options

  • --security-focus: Prioritize security vulnerabilities and OWASP compliance
  • --performance-critical: Emphasize performance bottlenecks and scalability issues
  • --tdd-review: Include TDD compliance and test-first verification
  • --ai-assisted: Enable AI-powered review tools (Copilot, Codium, Bito)
  • --strict-mode: Fail review on any critical issues found
  • --metrics-report: Generate detailed quality metrics dashboard
  • --framework [name]: Apply framework-specific best practices (React, Spring, Django, etc.)

Phase 1: Code Quality & Architecture Review

Use Task tool to orchestrate quality and architecture agents in parallel:

1A. Code Quality Analysis

  • Use Task tool with subagent_type="code-reviewer"
  • Prompt: "Perform comprehensive code quality review for: $ARGUMENTS. Analyze code complexity, maintainability index, technical debt, code duplication, naming conventions, and adherence to Clean Code principles. Integrate with SonarQube, CodeQL, and Semgrep for static analysis. Check for code smells, anti-patterns, and violations of SOLID principles. Generate cyclomatic complexity metrics and identify refactoring opportunities."
  • Expected output: Quality metrics, code smell inventory, refactoring recommendations
  • Context: Initial codebase analysis, no dependencies on other phases

1B. Architecture & Design Review

  • Use Task tool with subagent_type="architect-review"
  • Prompt: "Review architectural design patterns and structural integrity in: $ARGUMENTS. Evaluate microservices boundaries, API design, database schema, dependency management, and adherence to Domain-Driven Design principles. Check for circular dependencies, inappropriate coupling, missing abstractions, and architectural drift. Verify compliance with enterprise architecture standards and cloud-native patterns."
  • Expected output: Architecture assessment, design pattern analysis, structural recommendations
  • Context: Runs parallel with code quality analysis

Phase 2: Security & Performance Review

Use Task tool with security and performance agents, incorporating Phase 1 findings:

2A. Security Vulnerability Assessment

  • Use Task tool with subagent_type="security-auditor"
  • Prompt: "Execute comprehensive security audit on: $ARGUMENTS. Perform OWASP Top 10 analysis, dependency vulnerability scanning with Snyk/Trivy, secrets detection with GitLeaks, input validation review, authentication/authorization assessment, and cryptographic implementation review. Include findings from Phase 1 architecture review: {phase1_architecture_context}. Check for SQL injection, XSS, CSRF, insecure deserialization, and configuration security issues."
  • Expected output: Vulnerability report, CVE list, security risk matrix, remediation steps
  • Context: Incorporates architectural vulnerabilities identified in Phase 1B

2B. Performance & Scalability Analysis

  • Use Task tool with subagent_type="application-performance::performance-engineer"
  • Prompt: "Conduct performance analysis and scalability assessment for: $ARGUMENTS. Profile code for CPU/memory hotspots, analyze database query performance, review caching strategies, identify N+1 problems, assess connection pooling, and evaluate asynchronous processing patterns. Consider architectural findings from Phase 1: {phase1_architecture_context}. Check for memory leaks, resource contention, and bottlenecks under load."
  • Expected output: Performance metrics, bottleneck analysis, optimization recommendations
  • Context: Uses architecture insights to identify systemic performance issues

Phase 3: Testing & Documentation Review

Use Task tool for test and documentation quality assessment:

3A. Test Coverage & Quality Analysis

  • Use Task tool with subagent_type="unit-testing::test-automator"
  • Prompt: "Evaluate testing strategy and implementation for: $ARGUMENTS. Analyze unit test coverage, integration test completeness, end-to-end test scenarios, test pyramid adherence, and test maintainability. Review test quality metrics including assertion density, test isolation, mock usage, and flakiness. Consider security and performance test requirements from Phase 2: {phase2_security_context}, {phase2_performance_context}. Verify TDD practices if --tdd-review flag is set."
  • Expected output: Coverage report, test quality metrics, testing gap analysis
  • Context: Incorporates security and performance testing requirements from Phase 2

3B. Documentation & API Specification Review

  • Use Task tool with subagent_type="code-documentation::docs-architect"
  • Prompt: "Review documentation completeness and quality for: $ARGUMENTS. Assess inline code documentation, API documentation (OpenAPI/Swagger), architecture decision records (ADRs), README completeness, deployment guides, and runbooks. Verify documentation reflects actual implementation based on all previous phase findings: {phase1_context}, {phase2_context}. Check for outdated documentation, missing examples, and unclear explanations."
  • Expected output: Documentation coverage report, inconsistency list, improvement recommendations
  • Context: Cross-references all previous findings to ensure documentation accuracy

Phase 4: Best Practices & Standards Compliance

Use Task tool to verify framework-specific and industry best practices:

4A. Framework & Language Best Practices

  • Use Task tool with subagent_type="framework-migration::legacy-modernizer"
  • Prompt: "Verify adherence to framework and language best practices for: $ARGUMENTS. Check modern JavaScript/TypeScript patterns, React hooks best practices, Python PEP compliance, Java enterprise patterns, Go idiomatic code, or framework-specific conventions (based on --framework flag). Review package management, build configuration, environment handling, and deployment practices. Include all quality issues from previous phases: {all_previous_contexts}."
  • Expected output: Best practices compliance report, modernization recommendations
  • Context: Synthesizes all previous findings for framework-specific guidance

4B. CI/CD & DevOps Practices Review

  • Use Task tool with subagent_type="cicd-automation::deployment-engineer"
  • Prompt: "Review CI/CD pipeline and DevOps practices for: $ARGUMENTS. Evaluate build automation, test automation integration, deployment strategies (blue-green, canary), infrastructure as code, monitoring/observability setup, and incident response procedures. Assess pipeline security, artifact management, and rollback capabilities. Consider all issues identified in previous phases that impact deployment: {all_critical_issues}."
  • Expected output: Pipeline assessment, DevOps maturity evaluation, automation recommendations
  • Context: Focuses on operationalizing fixes for all identified issues

Consolidated Report Generation

Compile all phase outputs into comprehensive review report:

Critical Issues (P0 - Must Fix Immediately)

  • Security vulnerabilities with CVSS > 7.0
  • Data loss or corruption risks
  • Authentication/authorization bypasses
  • Production stability threats
  • Compliance violations (GDPR, PCI DSS, SOC2)

High Priority (P1 - Fix Before Next Release)

  • Performance bottlenecks impacting user experience
  • Missing critical test coverage
  • Architectural anti-patterns causing technical debt
  • Outdated dependencies with known vulnerabilities
  • Code quality issues affecting maintainability

Medium Priority (P2 - Plan for Next Sprint)

  • Non-critical performance optimizations
  • Documentation gaps and inconsistencies
  • Code refactoring opportunities
  • Test quality improvements
  • DevOps automation enhancements

Low Priority (P3 - Track in Backlog)

  • Style guide violations
  • Minor code smell issues
  • Nice-to-have documentation updates
  • Cosmetic improvements

Success Criteria

Review is considered successful when:

  • All critical security vulnerabilities are identified and documented
  • Performance bottlenecks are profiled with remediation paths
  • Test coverage gaps are mapped with priority recommendations
  • Architecture risks are assessed with mitigation strategies
  • Documentation reflects actual implementation state
  • Framework best practices compliance is verified
  • CI/CD pipeline supports safe deployment of reviewed code
  • Clear, actionable feedback is provided for all findings
  • Metrics dashboard shows improvement trends
  • Team has clear prioritized action plan for remediation

Target: $ARGUMENTS

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

28.96%
按下载量换算68

windsurf

24.71%
按下载量换算58

trae

19.42%
按下载量换算46

Claude Code

13.22%
按下载量换算31

Antigravity

7.45%
按下载量换算18

qoder

3.1%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills