AI Agent Hub
Back to plugins
🧰

dsh-jwt

Web Tools Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install ZhijiangTang/dsh-jwt

Paste the following prompt into your AI chat to install this plugin:

Run dsh plugin install ZhijiangTang/dsh-jwt in the DeepSeek Harness terminal to install it; the source repository is https://github.com/ZhijiangTang/dsh-jwt .

About this plugin

When debugging APIs, tracing OAuth flows, or inspecting backend authentication, you often end up with a raw JWT string. The header and payload are base64url-encoded JSON blobs, and exp, iat, and nbf are bare epoch numbers that are hard to interpret at a glance.

dsh-jwt splits the token into its three dot-separated segments, base64url-decodes the header and payload into readable JSON, and interprets the time claims with both UTC and local time, expired status, and remaining seconds. Values above 1e12 are automatically detected as millisecond timestamps and converted accordingly. On parse failure it returns ok: false with an errors array describing exactly which step broke, instead of throwing an exception.

It suits frontend and backend developers who need a quick look at token contents during auth debugging, DevOps engineers inspecting service-to-service calls, and security auditors extracting claims for further analysis. Keep in mind: this tool only decodes and does not verify signatures, so never rely on its output for security decisions.

Use Cases

  • Quickly inspect header and claims while debugging OAuth or API calls
  • Confirm whether exp has lapsed and how many seconds remain when tracing inter-service auth failures
  • Extract iss, aud and other claims for follow-up manual analysis during security audits

Best For

  • Frontend and backend developers
  • DevOps and SRE engineers
  • Security auditors