agentsclimarketplace

Review

Skill GlamgarOnDiscord/claude-saas-blueprint/.claude/skills/review

Code review automatique des changements récents. 3 agents parallèles + scan secrets + vérification architecture hexagonale.From its SKILL.md

Install
npx -y skills add GlamgarOnDiscord/claude-saas-blueprint --skill review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.2 KB, 595 tokens by cl100k_base, as published. Nobody here has run it

Instructions

1. Identifier les changements

git diff --name-only HEAD~1   # derniers fichiers modifiés

Si pas de git → demander quels fichiers reviewer.

2. Scan secrets (obligatoire en premier)

python scripts/scan_secrets.py --staged-only

Si exit 1 → bloquer la review, corriger avant tout.

3. Review automatique (3 agents en parallèle)

Agent 1 — Clean Code (Explore)

Lire [fichiers modifiés] et vérifier :
- Fichiers > 200 lignes ?
- Fonctions > 50 lignes ?
- Duplication de code ?
- `any` utilisé ?
- `console.log` oublié ?
- Imports inutilisés ?
Retourner UNIQUEMENT les problèmes trouvés, pas les OK.

Agent 2 — Sécurité (Explore)

Lire [fichiers modifiés] et vérifier :
- Inputs validés avec Zod AVANT usage ?
- Auth + organizationId vérifiés sur chaque route ?
- Pas de secrets hardcodés ?
- Rate limiting présent sur les endpoints publics ?
- Headers sécurité en place (CSP, X-Frame-Options) ?
- SQL/HTML injection possible ?
Référence : .claude/rules/security.md
Retourner UNIQUEMENT les vulnérabilités trouvées.

Agent 3 — Architecture (Explore)

Lire [fichiers modifiés] et vérifier :
- core/ importe-t-il depuis adapters/ ? (violation hexagonale)
- Les types sont cohérents avec core/entities/ ?
- Les usecases retournent des types typés, pas des objets bruts ?
- Pas d'accès DB direct dans les routes (passer par usecase) ?
- Conventions respectées : kebab-case fichiers, PascalCase types ?
Retourner UNIQUEMENT les violations trouvées.

4. Rapport

## Code Review — [date] — [branche]

### Fichiers reviewés
[liste]

### Secrets
✓ Aucun secret détecté  |  ✗ [problèmes]

### Problèmes trouvés
- [CRITICAL] ...
- [WARNING] ...
- [SUGGESTION] ...

### Verdict
APPROVE | CHANGES_REQUESTED

Score sécurité : x/5

5. Auto-fix

Proposer de corriger automatiquement : imports inutilisés, console.log, nommage évident. Pour les problèmes architecturaux → utiliser /refactor.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,452. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.