/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
| Check | Status |
|---|---|
| Unit tests | 20+ cases |
| Performance | \x3C100ms |
| Security | Pure stdlib, no injection |
| Determinism | Byte-to-byte stable |
| License | Apache-2.0 |
Last updated: 2026-06-14
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install axiom-jwt-inspector - After installation, invoke the skill by name or use
/axiom-jwt-inspector - Provide required inputs per the skill's parameter spec and get structured output
What is Axiom Jwt Inspector?
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 s... It is an AI Agent Skill for Claude Code / OpenClaw, with 39 downloads so far.
How do I install Axiom Jwt Inspector?
Run "/install axiom-jwt-inspector" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Axiom Jwt Inspector free?
Yes, Axiom Jwt Inspector is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Axiom Jwt Inspector support?
Axiom Jwt Inspector is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Axiom Jwt Inspector?
It is built and maintained by Kofna3369 (@kofna3369); the current version is v0.1.2.