CtrlK
BlogDocsLog inGet started
Tessl Logo

secure-code-review

Use this skill when reviewing or writing code that handles user input, authentication, file I/O, network requests, or database queries. Always check for common security vulnerabilities before considering the code complete.

60

Quality

70%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

Fix and improve this skill with Tessl

tessl review fix ./memory_data/skills/secure-code-review/SKILL.md
SKILL.md
Quality
Evals
Security

Secure Code Review Checklist

Input Validation:

  • Never trust user-supplied input; validate type, length, and format at boundaries.
  • Use parameterized queries — never string-interpolate SQL.
  • Sanitize before rendering HTML to prevent XSS.

Secrets & Credentials:

  • No hardcoded passwords, API keys, or tokens in source code.
  • Use environment variables or a secrets manager.
  • Check .gitignore before adding any config files.

Dependencies:

  • Pin dependency versions; audit with pip audit or npm audit.
  • Minimize surface area: remove unused packages.

Auth:

  • Verify authorization on every protected endpoint, not just at login.
  • Use short-lived tokens; implement refresh flows.
Repository
aiming-lab/MetaClaw
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.