{"id":"322ff54e-24e5-44b3-ac62-f5add533395e","shortId":"XGawGR","kind":"skill","title":"performance-testing-review-multi-agent-review","tagline":"Use when working with performance testing review multi agent review","description":"# Multi-Agent Code Review Orchestration Tool\n\n## Use this skill when\n\n- Working on multi-agent code review orchestration tool tasks or workflows\n- Needing guidance, best practices, or checklists for multi-agent code review orchestration tool\n\n## Do not use this skill when\n\n- The task is unrelated to multi-agent code review orchestration tool\n- You need a different domain or tool outside this scope\n\n## Instructions\n\n- Clarify goals, constraints, and required inputs.\n- Apply relevant best practices and validate outcomes.\n- Provide actionable steps and verification.\n- If detailed examples are required, open `resources/implementation-playbook.md`.\n\n## Role: Expert Multi-Agent Review Orchestration Specialist\n\nA sophisticated AI-powered code review system designed to provide comprehensive, multi-perspective analysis of software artifacts through intelligent agent coordination and specialized domain expertise.\n\n## Context and Purpose\n\nThe Multi-Agent Review Tool leverages a distributed, specialized agent network to perform holistic code assessments that transcend traditional single-perspective review approaches. By coordinating agents with distinct expertise, we generate a comprehensive evaluation that captures nuanced insights across multiple critical dimensions:\n\n- **Depth**: Specialized agents dive deep into specific domains\n- **Breadth**: Parallel processing enables comprehensive coverage\n- **Intelligence**: Context-aware routing and intelligent synthesis\n- **Adaptability**: Dynamic agent selection based on code characteristics\n\n## Tool Arguments and Configuration\n\n### Input Parameters\n- `$ARGUMENTS`: Target code/project for review\n  - Supports: File paths, Git repositories, code snippets\n  - Handles multiple input formats\n  - Enables context extraction and agent routing\n\n### Agent Types\n1. Code Quality Reviewers\n2. Security Auditors\n3. Architecture Specialists\n4. Performance Analysts\n5. Compliance Validators\n6. Best Practices Experts\n\n## Multi-Agent Coordination Strategy\n\n### 1. Agent Selection and Routing Logic\n- **Dynamic Agent Matching**:\n  - Analyze input characteristics\n  - Select most appropriate agent types\n  - Configure specialized sub-agents dynamically\n- **Expertise Routing**:\n  ```python\n  def route_agents(code_context):\n      agents = []\n      if is_web_application(code_context):\n          agents.extend([\n              \"security-auditor\",\n              \"web-architecture-reviewer\"\n          ])\n      if is_performance_critical(code_context):\n          agents.append(\"performance-analyst\")\n      return agents\n  ```\n\n### 2. Context Management and State Passing\n- **Contextual Intelligence**:\n  - Maintain shared context across agent interactions\n  - Pass refined insights between agents\n  - Support incremental review refinement\n- **Context Propagation Model**:\n  ```python\n  class ReviewContext:\n      def __init__(self, target, metadata):\n          self.target = target\n          self.metadata = metadata\n          self.agent_insights = {}\n\n      def update_insights(self, agent_type, insights):\n          self.agent_insights[agent_type] = insights\n  ```\n\n### 3. Parallel vs Sequential Execution\n- **Hybrid Execution Strategy**:\n  - Parallel execution for independent reviews\n  - Sequential processing for dependent insights\n  - Intelligent timeout and fallback mechanisms\n- **Execution Flow**:\n  ```python\n  def execute_review(review_context):\n      # Parallel independent agents\n      parallel_agents = [\n          \"code-quality-reviewer\",\n          \"security-auditor\"\n      ]\n\n      # Sequential dependent agents\n      sequential_agents = [\n          \"architecture-reviewer\",\n          \"performance-optimizer\"\n      ]\n  ```\n\n### 4. Result Aggregation and Synthesis\n- **Intelligent Consolidation**:\n  - Merge insights from multiple agents\n  - Resolve conflicting recommendations\n  - Generate unified, prioritized report\n- **Synthesis Algorithm**:\n  ```python\n  def synthesize_review_insights(agent_results):\n      consolidated_report = {\n          \"critical_issues\": [],\n          \"important_issues\": [],\n          \"improvement_suggestions\": []\n      }\n      # Intelligent merging logic\n      return consolidated_report\n  ```\n\n### 5. Conflict Resolution Mechanism\n- **Smart Conflict Handling**:\n  - Detect contradictory agent recommendations\n  - Apply weighted scoring\n  - Escalate complex conflicts\n- **Resolution Strategy**:\n  ```python\n  def resolve_conflicts(agent_insights):\n      conflict_resolver = ConflictResolutionEngine()\n      return conflict_resolver.process(agent_insights)\n  ```\n\n### 6. Performance Optimization\n- **Efficiency Techniques**:\n  - Minimal redundant processing\n  - Cached intermediate results\n  - Adaptive agent resource allocation\n- **Optimization Approach**:\n  ```python\n  def optimize_review_process(review_context):\n      return ReviewOptimizer.allocate_resources(review_context)\n  ```\n\n### 7. Quality Validation Framework\n- **Comprehensive Validation**:\n  - Cross-agent result verification\n  - Statistical confidence scoring\n  - Continuous learning and improvement\n- **Validation Process**:\n  ```python\n  def validate_review_quality(review_results):\n      quality_score = QualityScoreCalculator.compute(review_results)\n      return quality_score > QUALITY_THRESHOLD\n  ```\n\n## Example Implementations\n\n### 1. Parallel Code Review Scenario\n```python\nmulti_agent_review(\n    target=\"/path/to/project\",\n    agents=[\n        {\"type\": \"security-auditor\", \"weight\": 0.3},\n        {\"type\": \"architecture-reviewer\", \"weight\": 0.3},\n        {\"type\": \"performance-analyst\", \"weight\": 0.2}\n    ]\n)\n```\n\n### 2. Sequential Workflow\n```python\nsequential_review_workflow = [\n    {\"phase\": \"design-review\", \"agent\": \"architect-reviewer\"},\n    {\"phase\": \"implementation-review\", \"agent\": \"code-quality-reviewer\"},\n    {\"phase\": \"testing-review\", \"agent\": \"test-coverage-analyst\"},\n    {\"phase\": \"deployment-readiness\", \"agent\": \"devops-validator\"}\n]\n```\n\n### 3. Hybrid Orchestration\n```python\nhybrid_review_strategy = {\n    \"parallel_agents\": [\"security\", \"performance\"],\n    \"sequential_agents\": [\"architecture\", \"compliance\"]\n}\n```\n\n## Reference Implementations\n\n1. **Web Application Security Review**\n2. **Microservices Architecture Validation**\n\n## Best Practices and Considerations\n\n- Maintain agent independence\n- Implement robust error handling\n- Use probabilistic routing\n- Support incremental reviews\n- Ensure privacy and security\n\n## Extensibility\n\nThe tool is designed with a plugin-based architecture, allowing easy addition of new agent types and review strategies.\n\n## Invocation\n\nTarget for review: $ARGUMENTS\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.","tags":["performance","testing","review","multi","agent","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills"],"capabilities":["skill","source-sickn33","skill-performance-testing-review-multi-agent-review","topic-agent-skills","topic-agentic-skills","topic-ai-agent-skills","topic-ai-agents","topic-ai-coding","topic-ai-workflows","topic-antigravity","topic-antigravity-skills","topic-claude-code","topic-claude-code-skills","topic-codex-cli","topic-codex-skills"],"categories":["antigravity-awesome-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sickn33/antigravity-awesome-skills/performance-testing-review-multi-agent-review","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sickn33/antigravity-awesome-skills","source_repo":"https://github.com/sickn33/antigravity-awesome-skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 34616 github stars · SKILL.md body (6,913 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-23T00:51:23.305Z","embedding":null,"createdAt":"2026-04-18T21:42:20.477Z","updatedAt":"2026-04-23T00:51:23.305Z","lastSeenAt":"2026-04-23T00:51:23.305Z","tsv":"'/path/to/project':592 '0.2':611 '0.3':599,605 '1':251,276,582,670 '2':255,334,612,675 '3':258,386,653 '4':261,440 '5':264,482 '6':267,514 '7':543 'across':187,345 'action':98 'adapt':213,525 'addit':713 'agent':6,16,20,33,50,68,113,138,150,157,174,193,215,247,249,273,277,283,291,297,304,307,333,346,352,378,383,419,421,431,433,451,466,491,505,512,526,551,589,593,623,631,640,649,661,665,684,716 'agents.append':328 'agents.extend':314 'aggreg':442 'ai':120 'ai-pow':119 'algorithm':460 'alloc':528 'allow':711 'analysi':132 'analyst':263,331,609,644 'analyz':285 'appli':90,493 'applic':311,672 'approach':171,530 'appropri':290 'architect':625 'architect-review':624 'architectur':259,320,435,602,666,677,710 'architecture-review':434,601 'argument':222,227,725 'artifact':135 'ask':759 'assess':163 'auditor':257,317,428,597 'awar':208 'base':217,709 'best':43,92,268,679 'boundari':767 'breadth':199 'cach':522 'captur':184 'characterist':220,287 'checklist':46 'clarif':761 'clarifi':84 'class':361 'clear':734 'code':21,34,51,69,122,162,219,237,252,305,312,326,423,584,633 'code-quality-review':422,632 'code/project':229 'complex':497 'complianc':265,667 'comprehens':128,181,203,547 'confid':555 'configur':224,293 'conflict':453,483,487,498,504,507 'conflict_resolver.process':511 'conflictresolutionengin':509 'consider':682 'consolid':446,468,480 'constraint':86 'context':144,207,244,306,313,327,335,344,357,416,537,542 'context-awar':206 'contextu':340 'continu':557 'contradictori':490 'coordin':139,173,274 'coverag':204,643 'criteria':770 'critic':189,325,470 'cross':550 'cross-ag':549 'deep':195 'def':302,363,374,412,462,502,532,564 'depend':402,430 'deploy':647 'deployment-readi':646 'depth':191 'describ':738 'design':125,621,704 'design-review':620 'detail':103 'detect':489 'devop':651 'devops-valid':650 'differ':76 'dimens':190 'distinct':176 'distribut':155 'dive':194 'domain':77,142,198 'dynam':214,282,298 'easi':712 'effici':517 'enabl':202,243 'ensur':696 'environ':750 'environment-specif':749 'error':688 'escal':496 'evalu':182 'exampl':104,580 'execut':390,392,395,409,413 'expert':110,270,755 'expertis':143,177,299 'extens':700 'extract':245 'fallback':407 'file':233 'flow':410 'format':242 'framework':546 'generat':179,455 'git':235 'goal':85 'guidanc':42 'handl':239,488,689 'holist':161 'hybrid':391,654,657 'implement':581,629,669,686 'implementation-review':628 'import':472 'improv':474,560 'increment':354,694 'independ':397,418,685 'init':364 'input':89,225,241,286,764 'insight':186,350,373,376,380,382,385,403,448,465,506,513 'instruct':83 'intellig':137,205,211,341,404,445,476 'interact':347 'intermedi':523 'invoc':721 'issu':471,473 'learn':558 'leverag':153 'limit':726 'logic':281,478 'maintain':342,683 'manag':336 'match':284,735 'mechan':408,485 'merg':447,477 'metadata':367,371 'microservic':676 'minim':519 'miss':772 'model':359 'multi':5,15,19,32,49,67,112,130,149,272,588 'multi-ag':18,31,48,66,111,148,271 'multi-perspect':129 'multipl':188,240,450 'need':41,74 'network':158 'new':715 'nuanc':185 'open':107 'optim':439,516,529,533 'orchestr':23,36,53,71,115,655 'outcom':96 'output':744 'outsid':80 'parallel':200,387,394,417,420,583,660 'paramet':226 'pass':339,348 'path':234 'perform':2,12,160,262,324,330,438,515,608,663 'performance-analyst':329,607 'performance-optim':437 'performance-testing-review-multi-agent-review':1 'permiss':765 'perspect':131,169 'phase':619,627,636,645 'plugin':708 'plugin-bas':707 'power':121 'practic':44,93,269,680 'priorit':457 'privaci':697 'probabilist':691 'process':201,400,521,535,562 'propag':358 'provid':97,127 'purpos':146 'python':301,360,411,461,501,531,563,587,615,656 'qualiti':253,424,544,567,570,576,578,634 'qualityscorecalculator.compute':572 'readi':648 'recommend':454,492 'redund':520 'refer':668 'refin':349,356 'relev':91 'report':458,469,481 'repositori':236 'requir':88,106,763 'resolut':484,499 'resolv':452,503,508 'resourc':527,540 'resources/implementation-playbook.md':108 'result':441,467,524,552,569,574 'return':332,479,510,538,575 'review':4,7,14,17,22,35,52,70,114,123,151,170,231,254,321,355,398,414,415,425,436,464,534,536,541,566,568,573,585,590,603,617,622,626,630,635,639,658,674,695,719,724,756 'reviewcontext':362 'reviewoptimizer.allocate':539 'robust':687 'role':109 'rout':209,248,280,300,303,692 'safeti':766 'scenario':586 'scope':82,737 'score':495,556,571,577 'secur':256,316,427,596,662,673,699 'security-auditor':315,426,595 'select':216,278,288 'self':365,377 'self.agent':372,381 'self.metadata':370 'self.target':368 'sequenti':389,399,429,432,613,616,664 'share':343 'singl':168 'single-perspect':167 'skill':27,59,729 'skill-performance-testing-review-multi-agent-review' 'smart':486 'snippet':238 'softwar':134 'sophist':118 'source-sickn33' 'special':141,156,192,294 'specialist':116,260 'specif':197,751 'state':338 'statist':554 'step':99 'stop':757 'strategi':275,393,500,659,720 'sub':296 'sub-ag':295 'substitut':747 'success':769 'suggest':475 'support':232,353,693 'synthes':463 'synthesi':212,444,459 'system':124 'target':228,366,369,591,722 'task':38,62,733 'techniqu':518 'test':3,13,638,642,753 'test-coverage-analyst':641 'testing-review':637 'threshold':579 'timeout':405 'tool':24,37,54,72,79,152,221,702 'topic-agent-skills' 'topic-agentic-skills' 'topic-ai-agent-skills' 'topic-ai-agents' 'topic-ai-coding' 'topic-ai-workflows' 'topic-antigravity' 'topic-antigravity-skills' 'topic-claude-code' 'topic-claude-code-skills' 'topic-codex-cli' 'topic-codex-skills' 'tradit':166 'transcend':165 'treat':742 'type':250,292,379,384,594,600,606,717 'unifi':456 'unrel':64 'updat':375 'use':8,25,57,690,727 'valid':95,266,545,548,561,565,652,678,752 'verif':101,553 'vs':388 'web':310,319,671 'web-architecture-review':318 'weight':494,598,604,610 'work':10,29 'workflow':40,614,618","prices":[{"id":"dc47a32b-258a-4373-b7e5-dc1a7f7cb776","listingId":"322ff54e-24e5-44b3-ac62-f5add533395e","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sickn33","category":"antigravity-awesome-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:42:20.477Z"}],"sources":[{"listingId":"322ff54e-24e5-44b3-ac62-f5add533395e","source":"github","sourceId":"sickn33/antigravity-awesome-skills/performance-testing-review-multi-agent-review","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/performance-testing-review-multi-agent-review","isPrimary":false,"firstSeenAt":"2026-04-18T21:42:20.477Z","lastSeenAt":"2026-04-23T00:51:23.305Z"}],"details":{"listingId":"322ff54e-24e5-44b3-ac62-f5add533395e","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"performance-testing-review-multi-agent-review","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34616,"topics":["agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity","antigravity-skills","claude-code","claude-code-skills","codex-cli","codex-skills","cursor","cursor-skills","developer-tools","gemini-cli","gemini-skills","kiro","mcp","skill-library"],"license":"mit","html_url":"https://github.com/sickn33/antigravity-awesome-skills","pushed_at":"2026-04-22T06:40:00Z","description":"Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.","skill_md_sha":"08893aee194d14300ecf7518475750b5597b7a0e","skill_md_path":"skills/performance-testing-review-multi-agent-review/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/performance-testing-review-multi-agent-review"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"performance-testing-review-multi-agent-review","description":"Use when working with performance testing review multi agent review"},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/performance-testing-review-multi-agent-review"},"updatedAt":"2026-04-23T00:51:23.305Z"}}