jwt-decoder
Installation
SKILL.md
JWT Decoder Tool
Description
Decode, verify, and generate JWT (JSON Web Tokens) with support for HS256, RS256, and other algorithms.
Trigger
/jwtcommand- User needs to decode JWT
- User wants to verify tokens
Usage
# Decode JWT (no verification)
python scripts/jwt_decoder.py decode "eyJhbGciOiJIUzI1NiIs..."
# Verify JWT with secret
python scripts/jwt_decoder.py verify "eyJ..." --secret "your-secret"