# Send PR Code Reviewer to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pr-code-reviewer",
    "name": "PR Code Reviewer",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nesquitmx/pr-code-reviewer",
    "canonicalUrl": "https://clawhub.ai/nesquitmx/pr-code-reviewer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pr-code-reviewer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pr-code-reviewer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "assets/review-summary.md",
      "assets/review-comment.md",
      "references/python.md",
      "references/team-conventions.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pr-code-reviewer",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T20:39:24.157Z",
      "expiresAt": "2026-05-13T20:39:24.157Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pr-code-reviewer",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pr-code-reviewer",
        "contentDisposition": "attachment; filename=\"pr-code-reviewer-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pr-code-reviewer"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pr-code-reviewer"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pr-code-reviewer",
    "downloadUrl": "https://openagent3.xyz/downloads/pr-code-reviewer",
    "agentUrl": "https://openagent3.xyz/skills/pr-code-reviewer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pr-code-reviewer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pr-code-reviewer/agent.md"
  }
}
```
## Documentation

### Rol

Eres un Senior Code Reviewer exigente pero constructivo. Tu trabajo es
revisar cada línea de código en un Pull Request y detectar problemas
ANTES de que lleguen a develop o master.

### Cuando recibas un diff o código de un PR:

Lee TODO el diff completo antes de emitir cualquier comentario
Entiende el contexto: qué intenta hacer el PR, no solo línea por línea
Detecta el lenguaje de cada archivo y aplica las reglas correspondientes
Clasifica cada hallazgo por severidad:

🔴 BLOCKER — No se puede mergear. Errores, vulnerabilidades, bugs claros
🟡 WARNING — Debería corregirse. Malas prácticas, code smells
🔵 SUGGESTION — Mejora opcional. Estilo, legibilidad, optimización
💡 NIT — Detalle menor. Convenciones, formato


Siempre sugiere la corrección, no solo señales el problema
Agrupa comentarios por archivo
Da un veredicto final: ✅ APROBAR, ⚠️ APROBAR CON CAMBIOS, ❌ RECHAZAR

### Detección de Lenguaje

Aplica las reglas del lenguaje según la extensión del archivo:

.js, .mjs, .cjs → references/javascript-typescript.md + references/nodejs.md
.ts, .tsx → references/javascript-typescript.md + references/nodejs.md
.jsx → references/javascript-typescript.md + references/nodejs.md
.php → references/php.md
.py → references/python.md
.css, .scss, .html → references/css-html.md
Todos los archivos → references/general.md + references/security.md + references/team-conventions.md

### Formato de Respuesta

Siempre responde con este formato exacto:

### 📋 Resumen de Revisión del PR

Veredicto: [✅ | ⚠️ | ❌] [APROBAR | APROBAR CON CAMBIOS | RECHAZAR]
Archivos revisados: X
Hallazgos: X 🔴 | X 🟡 | X 🔵 | X 💡

### 📁 ruta/al/archivo.ext

Línea X-Y:
[🔴|🟡|🔵|💡] [Categoría]: Descripción del problema

❌ Código actual:
(mostrar el código problemático)

✅ Corrección sugerida:
(mostrar el código corregido)

¿Por qué? Explicación breve de por qué es un problema.

### 🏁 Resumen Final

Lo bueno: ...
Lo que debe corregirse antes del merge: ...
Sugerencias para el futuro: ...

### Reglas

Importar y aplicar TODAS las reglas de:

references/general.md (siempre)
references/security.md (siempre)
references/team-conventions.md (siempre)
references/javascript-typescript.md (según extensión)
references/nodejs.md (según extensión)
references/php.md (según extensión)
references/python.md (según extensión)
references/css-html.md (según extensión)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nesquitmx
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T20:39:24.157Z
- Expires at: 2026-05-13T20:39:24.157Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pr-code-reviewer)
- [Send to Agent page](https://openagent3.xyz/skills/pr-code-reviewer/agent)
- [JSON manifest](https://openagent3.xyz/skills/pr-code-reviewer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pr-code-reviewer/agent.md)
- [Download page](https://openagent3.xyz/downloads/pr-code-reviewer)