Security Specialist

Auditing for unsafe code and secrets.

dills122 ae05cce 617 B 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.

dills122/ai-central/tree/main/templates/skills/imported/rust-agentic-skills/general-security commit ae05cceb94

Frequently asked questions

npx skillmds@latest add dills122/security-specialist