Afficher résultats de révision de code

VérifiéPrudence

Affiche les résultats d'une revue de code existante pour un commit ou un ID de tâche. Permet de consulter le verdict, les constats et les questions d'une revue précédente sans lancer une nouvelle analyse. Affiche également la liste des tâches récentes et le prompt envoyé au réviseur.

Spar Skills Guide Bot
DeveloppementDébutant
3002/06/2026
Claude CodeCursorWindsurfCopilotCodex
#code-review#show-results#roborev#review-status

Recommandé pour

Notre avis

Affiche les résultats d'une revue de code existante pour un commit ou un job spécifique sans relancer l'analyse.

Points forts

  • Permet de consulter rapidement le verdict et les constats d'une revue déjà effectuée
  • Évite de relancer une revue coûteuse en temps et en ressources
  • Prend en charge plusieurs modes d'accès : commit SHA, ID de job, ou HEAD par défaut

Limites

  • Nécessite que la revue ait déjà été lancée avec roborev-review
  • Les résultats sont limités à ce qui a été produit lors de la revue initiale
  • Ne fournit pas de mise à jour en temps réel ni de re-exécution partielle
Quand l'utiliser

Utilisez cette compétence pour vérifier les résultats d'une revue de code sans refaire l'analyse complète.

Quand l'éviter

Évitez de l'utiliser si vous devez exécuter une nouvelle revue sur un code modifié ou si le job ID est invalide.

Analyse de sécurité

Prudence
Score qualité80/100

The skill uses Bash to run 'roborev show' commands, passing user input directly to the shell. Without sanitization, an attacker could inject shell metacharacters (e.g., '; rm -rf /'). While intended for legitimate code review display, the lack of input validation poses a moderate risk.

Points d'attention
  • Potential command injection via unsanitized arguments. The skill constructs bash commands directly with user-provided arguments ($ARGUMENTS) without escaping or validation, which could allow execution of arbitrary commands if a malicious argument is supplied.

Exemples

Show recent reviews
Show me the recent code reviews.
Show review for commit abc123
Show the review results for commit abc123.
Show review by job ID
Show the review for job ID 9.

name: roborev-show description: Show existing code review results for a commit or job. Use to check review status without re-running. argument-hint: "[commit-sha|job-id]" allowed-tools: Bash

Roborev Show Skill

Display the results of an existing code review.

Usage

| Argument | Command | Description | |----------|---------|-------------| | (none) | roborev show | Show review for HEAD | | status | roborev status | List recent jobs with IDs | | <sha> | roborev show <sha> | Show review for specific commit | | <job-id> | roborev show --job <id> | Show review by job ID | | prompt <id> | roborev show --prompt <id> | Show the prompt sent to the reviewer |

Finding Job IDs

If the user doesn't know the job ID, run roborev status first to show recent jobs:

Recent Jobs:
  ID  SHA                Repo                 Agent  Status  Time
  9   dirty              buzzsprout-headless  codex  done    1m13s
  8   dirty              buzzsprout-headless  codex  done    2m5s

Then use the ID with roborev show --job <id>.

Instructions

  1. If user asks to see "recent reviews" or doesn't provide an ID, run roborev status first

  2. Parse the argument: $ARGUMENTS

  3. Run the appropriate command:

    • If empty: roborev show
    • If starts with "prompt ": roborev show --prompt <rest>
    • If numeric and user wants job ID: roborev show --job $ARGUMENTS
    • Otherwise: roborev show $ARGUMENTS
  4. Present the review results, highlighting:

    • Verdict (pass/fail)
    • Findings by severity
    • Questions/assumptions

Related Skills

  • /roborev-review - Run a new review
  • /roborev-address - Fix findings from a review
  • /roborev-refine - Automated fix loop
Skills similaires