Refactor high-complexity React components in Dify frontend. Use when `pnpm analyze-component...
npx skills add ferologics/pi-skills --skill "deep-review"
Install specific skill from multi-skill repository
# Description
Multi-model code review. Runs code-review skill with 3 models in parallel, then synthesizes findings.
# SKILL.md
name: deep-review
description: Multi-model code review. Runs code-review skill with 3 models in parallel, then synthesizes findings.
Deep Review
Runs the code-review skill with 3 different models in parallel, then synthesizes.
Process
-
Get the PR diff (same as code-review)
bash # If PR number provided, use it. Otherwise current branch. gh pr diff [PR_NUMBER] > /tmp/pr-diff.txt -
Run 3 parallel reviews via bash
bash pi --model claude-opus-4-5 "Read and follow ~/.pi/agent/skills/code-review/SKILL.md to review the PR. Diff is at /tmp/pr-diff.txt" > /tmp/review-opus.md & pi --model gpt-5.2-codex "Read and follow ~/.pi/agent/skills/code-review/SKILL.md to review the PR. Diff is at /tmp/pr-diff.txt" > /tmp/review-codex.md & pi --model gemini-2.5-pro "Read and follow ~/.pi/agent/skills/code-review/SKILL.md to review the PR. Diff is at /tmp/pr-diff.txt" > /tmp/review-gemini.md & wait -
Synthesize findings
Read all 3 review files and combine: - 🔴 Consensus - issues found by 2+ models (high confidence)
- 🟡 Unique - found by only one model (note which)
- Resolve contradictions, filter obvious false positives
- Final verdict: merge / fix first / needs discussion
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.