AI Agent Hub
Back to plugins
🖥️

dsh-yaml

Client Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-yaml

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

Run dsh plugin install uckkk/dsh-yaml in DeepSeek Harness to install this plugin; the source is available at https://github.com/uckkk/dsh-yaml

About this plugin

YAML and JSON are arguably the two most commonly encountered data formats in AI conversations and automation pipelines, yet manually converting between them is slow and prone to syntax errors. dsh-yaml turns that chore into a single tool call, so you can focus on the data rather than the format.
The plugin is a pure Node.js implementation exposing two tools: yaml_to_json and json_to_yaml. Both are invoked right inside the conversation session with no extra services, no network round-trips, and no moving parts — the conversion runs entirely locally for instant, deterministic results.
Whether you work with Kubernetes manifests, CI/CD pipeline definitions, or domain-specific configuration files on a daily basis, or simply need to render a JSON response into human-readable YAML and back, dsh-yaml is a lightweight, drop-in option that gets out of your way.

Use Cases

  • Parse YAML manifests (Kubernetes, CI/CD) into JSON for structured querying in a conversation
  • Serialize API JSON responses into human-readable YAML for quick review and editing
  • Convert between the two formats in automation pipelines to eliminate manual processing

Best For

  • DevOps engineers working with Kubernetes, Helm, or CI/CD configs daily
  • Researchers and developers who frequently handle structured data in conversations
  • Automation script maintainers looking to eliminate manual format conversion