security-practices

Installation
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);
Installs
9
GitHub Stars
1
First Seen
Jan 26, 2026
security-practices — pluginagentmarketplace/custom-plugin-typescript