Audit quick
Audit rapide securite et qualite du projet courant. Utiliser avant un deploiement ou en revue.From its SKILL.md
npx -y skills add TheWatcher01/skills --skill audit-quickAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 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
1.1 KB, 292 tokens by cl100k_base, as published. Nobody here has run it
Audit rapide du projet
Effectuer un audit en 5 minutes max. Reponses concises, pas de blabla.
1. Secrets exposes
Chercher dans le code : API keys, passwords, tokens, secrets en dur.
grep -rn "password\|secret\|api_key\|token" --include="*.ts" --include="*.env*" --exclude-dir=node_modules
2. Vulnerabilites evidentes
- SQL injection (interpolation de strings dans les requetes)
- XSS (innerHTML, dangerouslySetInnerHTML sans sanitize)
- SSRF (URLs construites depuis input utilisateur)
- Path traversal (chemins fichiers depuis input)
3. Couverture de tests
pnpm test -- --coverage 2>&1 | tail -20
Reporter : % couverture, fichiers non couverts critiques.
4. Dependances
pnpm audit 2>&1 | tail -20
5. Resume
Format strict :
SECURITE: [OK|WARN|CRITICAL] — [details]
TESTS: [X%] couverture — [fichiers critiques non couverts]
DEPS: [X vulns] — [critiques listees]
VERDICT: [DEPLOY OK|BLOQUER]
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.