AI Agent Hub
Back to plugins
🧰

dsh-glob

Web Tools Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-glob

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

Install dsh-glob (source: https://github.com/uckkk/dsh-glob ) first, then add dsh-glob to the dsh.profile.bundles array in your profile's package.json to activate it.

About this plugin

Filtering file paths with glob patterns inside an agent conversation sounds trivial, yet it often means shelling out to a subprocess or pulling in another dependency. dsh-glob keeps this small and self-contained: a pure Node.js plugin you register once and call directly in the chat, with no child processes and no external service.

Its scope is deliberately narrow yet complete. Give it a glob pattern and get back the matching results. The implementation stays on the Node.js path, makes no network requests, and introduces no third-party run-time, so behavior is predictable and easy to debug. For the kind of task where you just need every .ts file under src, it is exactly enough without being heavy.

It suits developers who frequently match or batch-select source files and test fixtures within DeepSeek Harness conversations. If you want the toolchain to stay lightweight, fully offline, and free of extra packages for a single wildcard expansion, dsh-glob offers a low-friction option.

Use Cases

  • Batch-extract source files with wildcard patterns in conversation
  • Perform file path matching fully offline without network access
  • Provide lightweight path filtering for agent workflows

Best For

  • Developers who need lightweight, offline file matching
  • Engineers who frequently wildcard-filter in agent conversations
  • Teams that avoid extra dependencies for one-off pattern expansion