AI Agent Hub
Back to plugins
🧰

dsh-env-json

Web Tools Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-env-json

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

Install the plugin in DeepSeek Harness by running dsh plugin install uckkk/dsh-env-json; the full source is available at https://github.com/uckkk/dsh-env-json .

About this plugin

Environment variables most often live in plain .env files, yet a surprising number of tools, APIs, and build scripts expect a JSON object. dsh-env-json is a lightweight plugin built specifically to close that gap, letting you flip between the two representations without friction.

Written entirely in Node.js with zero network calls and no dependency on any external service, it does everything locally: it parses an .env file that may contain inline comments, special characters, or multi-line values into a well-formed JSON object, or writes JSON key-value pairs back into .env text. One call, no extra configuration, no side effects.

It is a natural fit for developers who shuffle environment-variable files daily, engineers who need a single canonical config shape across CI/CD pipelines and automation scripts, and anyone who simply wants a quick, offline, bidirectional .env-to-JSON converter without pulling in a heavy dependency. Lightweight, self-contained, and ready the moment it is installed.

Use Cases

  • Parse an .env file into a JSON object for scripting or API consumption
  • Write JSON key-value pairs back into a .env file for deployment or containers
  • Unify environment-variable representation across CI/CD pipelines

Best For

  • Backend or full-stack developers who work with .env files daily
  • DevOps engineers who need a unified config format in automation scripts
  • Indie developers who want lightweight offline .env-to-JSON conversion