Skip to main content

jwt-toolkit

Decode, inspect, and validate JWT (JSON Web Token) tokens from the command line. Shows header, payload, algorithm, expiry status, and known claim labels. Use when debugging auth tokens, checking if a JWT is expired, inspecting JWT claims, decoding Bearer tokens, or analyzing token structure. Triggers on "decode JWT", "inspect token", "JWT expired", "parse JWT", "check Bearer token", "token claims".

설치로 이동

소스 정보

저장소
knownasnaffy/prompthound
최근 소스 활동
2026년 7월 6일 07:03
감지된 SKILL.md 언어
영어
스타
0
포크
1

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
2 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
jwt-toolkit
description
Decode, inspect, and validate JWT (JSON Web Token) tokens from the command line. Shows header, payload, algorithm, expiry status, and known claim labels. Use when debugging auth tokens, checking if a JWT is expired, inspecting JWT claims, decoding Bearer tokens, or analyzing token structure. Triggers on "decode JWT", "inspect token", "JWT expired", "parse JWT", "check Bearer token", "token claims".
# JWT Toolkit Zero-dependency JWT decoder and inspector. Decodes any JWT token and shows header, payload claims, algorithm info, expiry status, and signature details. ## Quick Start ```bash # Decode a JWT token python3 scripts/jwt_decode.py eyJhbGciOiJIUzI1NiIs... # Read token from file python3 scripts/jwt_decode.py --file token.txt # Read from stdin (pipe from curl, etc.) echo "eyJ..." | python3 scripts/jwt_decode.py --stdin # JSON output for scripting python3 scripts/jwt_decode.py eyJ... --format json # Also handles "Bearer " prefix automatically python3 scripts/jwt_decode.py "Bearer eyJhbGciOiJIUzI1NiIs..." ``` ## Features - Decodes header and payload with human-readable claim labels - Shows algorithm details and security warnings (e.g., `none` algorithm) - Checks token expiry with remaining time or time-since-expired - Recognizes 20+ standard and common claims (iss, sub, aud, roles, scope, etc.) - Strips "Bearer " prefix automatically - JSON and text output formats - No external dependencies — pure Python stdlib
GitHub에서 보기