-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathllms.txt
More file actions
42 lines (28 loc) · 1.14 KB
/
llms.txt
File metadata and controls
42 lines (28 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# jwt.io
> JWT.IO allows you to decode, verify, and generate JSON Web Tokens.
## About
jwt.io is the go-to resource for JSON Web Tokens (JWTs). It provides:
- An interactive JWT debugger to decode and verify tokens
- A comprehensive library directory for JWT implementations
- Educational content explaining JWT concepts
Maintained by Auth0.
## Quick Links
- Debugger: https://jwt.io
- Libraries: https://jwt.io/libraries
- Introduction: https://jwt.io/introduction
## JWT Overview
A JSON Web Token consists of three Base64Url-encoded parts:
1. Header - algorithm and token type
2. Payload - claims (registered, public, private)
3. Signature - ensures token integrity
Format: xxxxx.yyyyy.zzzzz
## For AI Agents
Claude Code users can install JWT skills for token operations:
- `/jwt-decode` - Decode and inspect JWTs
- `/jwt-encode` - Create and sign JWTs
- `/jwt-validate` - Verify JWT signatures and claims
Install: `npx skills add jsonwebtoken/jwt-skills`
Repository: https://github.com/jsonwebtoken/jwt-skills
## Resources
- RFC 7519: https://datatracker.ietf.org/doc/html/rfc7519
- Source: https://github.com/jsonwebtoken/jsonwebtoken.github.io