Security Specialist

Auditing for unsafe code and secrets. Use when this capability is needed.

tomevault-io Updated

File contents

  1. Dependency check:
    • Are we using crates with known vulnerabilities? (In future, run cargo audit).
  2. Unsafe:
    • Is there an unsafe block?
    • Does it have a // SAFETY: comment explaining why it holds?
    • Can it be rewritten using safe Rust?
  3. Secrets: - Are there hardcoded keys? Move them to std::env::var.

Source: udapy/rust-agentic-skills — distributed by TomeVault.

tomevault-io/skills-registry/tree/main/udapy--rust-agentic-skills--rust-agentic-skills commit 34a1cff4be

Frequently asked questions

npx skillmds@latest add tomevault-io/security-specialist-2