Axiom Jwt Inspector

Dev Tools

JWT inspector — decode JSON Web Tokens and inspect header, payload, claims, expiration. Use when you need to debug or audit JWTs. Pure stdlib, no LLM. **No signature verification** (use a JWT lib for that).

Install

openclaw skills install axiom-jwt-inspector

axiom-jwt-inspector

Version: 0.1.2 Axioma Tools

Decodes JWTs and exposes their structure for debugging and auditing.

What this skill does

  • Decodes header (alg, typ, kid, etc.)
  • Decodes payload (claims)
  • Shows expiration status (exp/nbf/iat)
  • Flags common vulnerabilities (alg=none, weak secret)
  • Does NOT verify signatures — debug only

When to use this skill

  • ✅ Debug a JWT you're receiving
  • ✅ Audit token structure before trusting
  • ✅ Inspect expiration/issued-at
  • ❌ Authenticate users (use a JWT lib with sig verification)
  • ❌ Replace pyjwt (this is inspection only)

Usage

python3 axiom_jwt_inspector.py "eyJhbGciOiJIUzI1NiIs..."
python3 axiom_jwt_inspector.py token.txt --json
from axiom_jwt_inspector import inspect_jwt
info = inspect_jwt('eyJhbGciOiJIUzI1NiIs...')
# {'header': {...}, 'payload': {...}, 'expired': False, 'warnings': []}

Validation

CheckStatus
Unit tests20+ cases
Performance<100ms
SecurityPure stdlib, no injection
DeterminismByte-to-byte stable
LicenseApache-2.0

Last updated: 2026-06-14