AI Agent Hub
Back to plugins
🧩

dsh-dotenv

admin-security Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-dotenv

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-dotenv; full source is available at https://github.com/uckkk/dsh-dotenv .

About this plugin

Managing .env files inside a DeepSeek Harness session often means juggling API keys, database connection strings, and other service credentials. dsh-dotenv turns .env parsing and serialization into first-class session tools, letting the agent read and write environment variables in a single step—no external scripts, CLIs, or network services required.

The implementation is deliberately minimal: pure Node.js, zero network calls, zero external dependencies. Once registered as a plugin tool, the agent can invoke a parse operation to expand .env text into key-value pairs, or a serialize operation to write those pairs back into standard .env format. All data stays inside the local process and never passes through a third party.

It is built for developers who want their agent to handle environment variables safely within a Harness workflow—extracting config for the agent to reference, bulk-updating credentials, or bootstrapping a fresh .env template—while keeping every sensitive operation fully local, dependency-free, and network-quiet. Lightweight, controllable, and side-effect free by design.

Use Cases

  • Parse a .env file into key-value pairs for the agent to reference
  • Serialize updated config back into standard .env format
  • Bootstrap a fresh .env template with project variables

Best For

  • Developers managing environment variables in Harness sessions
  • Teams that prefer sensitive config to never transit through a third party
  • DevOps engineers who demand zero-dependency, fully local tooling