AI Agent Hub
Back to plugins
⚙️

dsh-json-pointer

Workflow Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-json-pointer

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

Run dsh plugin install uckkk/dsh-json-pointer in your terminal or session to install this plugin; the full source is available at https://github.com/uckkk/dsh-json-pointer

About this plugin

When an agent workflow repeatedly navigates deeply nested JSON, hand-crafted path strings are error-prone and hard to reuse. dsh-json-pointer turns JSON Pointer resolution into a ready-to-call tool node inside the session, so the agent can pinpoint and operate on a target value with a single pointer expression instead of juggling array indices and object keys by hand.

The entire implementation is pure Node with zero network calls and no external runtime dependencies, keeping the footprint minimal and startup instant. Once installed, the plugin registers itself as a tool in the current session and the agent can invoke it on demand during reasoning, with no extra orchestration or relay service required.

If you routinely work with JSON fragments, API responses, or intermediate state objects inside agent workflows and need a dependency-free, call-and-done pointer tool, dsh-json-pointer is a lightweight fit.

Use Cases

  • Quickly locate target fields in deeply nested JSON during agent workflows
  • Resolve API response or config fragments without manually crafting array indices
  • Extract or manipulate values from intermediate state by pointer expression

Best For

  • Agent workflow developers who handle JSON structures frequently
  • Orchestration engineers who prefer zero-dependency lightweight tools
  • Developers who register and invoke tool nodes on demand in sessions