Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:8
forks:2
updated:February 10, 2026 at 17:05
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | jwt |
| description | JSON Web Tokens for secure transmission. Use for authentication. |
JWT is a compact, URL-safe means of representing claims to be transferred between two parties. The claims are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) or JSON Web Encryption (JWE).
Header.Payload.Signature
// Header
{
"alg": "RS256",
"typ": "JWT"
}
// Payload (Claims)
{
"sub": "1234567890", // Subject (User ID)
"name": "John Doe",
"iat": 1516239022, // Issued At
"exp": 1516242622, // Expiration
"role": "admin"
}
// Signature
HMACSHA256(
base64UrlEncode(header) + "." +
base64UrlEncode(payload),
secret)
iss (issuer), exp (expiration), sub (subject), aud (audience).role, tenant_id).Do:
algorithms=['RS256']) in your verifier to prevent None alg attacks.Don't:
| Error | Cause | Solution |
|---|---|---|
TokenExpiredError | exp time passed. | Refresh the token using a Refresh Token. |
JsonWebTokenError | Malformed or Signature mismatch. | Check secret/public key and token integrity. |