Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    pluginagentmarketplace

    security-practices

    pluginagentmarketplace/security-practices
    Security
    1
    1 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Master secure development, OWASP top 10, testing, and compliance. Use when building secure systems, conducting security reviews, or implementing best practices.

    SKILL.md

    Security, QA & Best Practices Skill

    Quick Start - Secure Authentication

    import bcrypt from 'bcrypt';
    import jwt from 'jsonwebtoken';
    
    // Hash password
    const password = 'user_password';
    const hash = await bcrypt.hash(password, 10);
    
    // Verify password
    const isValid = await bcrypt.compare(password, hash);
    
    // Issue JWT
    const token = jwt.sign(
      { userId: 1, email: 'user@example.com' },
      process.env.JWT_SECRET,
      { expiresIn: '24h', algorithm: 'HS256' }
    );
    
    // Verify JWT
    const decoded = jwt.verify(token, process.env.JWT_SECRET);
    

    Core Technologies

    Security Tools

    • Burp Suite
    • OWASP ZAP
    • Snort/Suricata
    • Nmap

    Testing Frameworks

    • Selenium / Cypress
    • Jest / pytest
    • JMeter / Gatling
    • Postman / Insomnia

    Code Quality

    • SonarQube
    • ESLint / Prettier
    • Pylint / Black

    Best Practices

    1. OWASP Top 10 - Know and prevent vulnerabilities
    2. Secure Coding - Input validation, parameterized queries
    3. Testing - Unit, integration, and E2E tests
    4. Code Review - Peer review process
    5. Monitoring - Continuous security monitoring
    6. Compliance - GDPR, HIPAA, PCI-DSS
    7. Incident Response - Clear procedures
    8. Documentation - Security policies

    Resources

    • OWASP Top 10
    • Burp Suite Documentation
    • SonarQube Documentation
    Recommended Servers
    OpenZeppelin
    OpenZeppelin
    Vercel Grep
    Vercel Grep
    Microsoft Learn MCP
    Microsoft Learn MCP
    Repository
    pluginagentmarketplace/custom-plugin-typescript
    Files