AI Agent Hub
Back to plugins
🧰

dsh-slugify

Web Tools Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-slugify

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

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

About this plugin

When building routes, blog paths, or API endpoints, you often need to turn arbitrary text into a clean, consistent URL slug. Hand-rolling the conversion risks missing special characters, stray spaces, or inconsistent casing, while writing throwaway scripts adds friction you do not need.

dsh-slugify is a pure Node.js slug generator that, once installed, registers itself as a tool callable directly inside a DSH session. It makes no network requests and depends on no external services or third-party APIs; every transformation runs inside your local Node runtime, so results are instant and no data ever leaves your machine.

It is built for developers who generate or normalize URL slugs frequently within a DSH workflow—assembling SEO-friendly article URLs, naming REST endpoints, or bulk-cleaning an existing route table—lets them obtain a standardized slug with a single natural-language prompt instead of reaching for a one-off conversion script.

Use Cases

  • Batch-generate SEO-friendly URL paths for blog posts or static pages
  • Convert arbitrary user-supplied titles into consistent API route identifiers
  • Bulk-clean and standardize irregular slugs in an existing route table

Best For

  • Full-stack developers who frequently need to generate or normalize URL slugs in a DSH workflow
  • Platform engineers managing content routing and SEO link structures
  • API developers enforcing consistent naming conventions across REST or GraphQL endpoints