SuperClaude é um sistema avançado de inteligência artificial para desenvolvimento, análise e operações. Este guia fornece documentação completa sobre todos os comandos disponíveis, personas e suas capacidades.
Perform a comprehensive code review of changes in the current branch or a specified GitHub PR.
You are performing a code review. Follow these steps carefully:
- Determine the review scope:
- If a GitHub PR URL is provided, use
gh pr view --json title,body,url,filesto get PR details
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type { Plugin } from "@opencode-ai/plugin" | |
| const opencodePattern = /OpenCode|opencode/g | |
| export const ClaudeCodePlugin: Plugin = async () => { | |
| return { | |
| "experimental.chat.system.transform": async (_ctx, data) => { | |
| const system = data?.system | |
| if (!system || !Array.isArray(system)) { | |
| return |