AI Agent Hub
Back to plugins
⚙️

dsh-repeat

Workflow Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-repeat

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-repeat; source code lives at https://github.com/uckkk/dsh-repeat

About this plugin

Agent workflows frequently need small text operations—generating placeholders, building test fixtures, or assembling delimiters—where a simple string repeat is all that is required. Reaching for a throwaway script or an external service for that one step adds friction without adding value. dsh-repeat collapses the operation into a single tool call inside your session, removing the middleman entirely.

The implementation is deliberately minimal: pure Node.js, zero network requests, no third-party runtime dependencies. After installation the plugin registers a tool with the session, and a single invocation performs the string repetition. There are no hidden side effects and no standalone script files to keep in sync.

If you are wiring up an agent-workflow and need a lightweight, deterministic text step without pulling in a network call or an extra dependency, dsh-repeat is a small, zero-bluff option: invoke it when you need it, and it gets out of your way when you do not.

Use Cases

  • Generating controlled-length placeholder text in agent workflows
  • Quickly assembling repeated delimiters when building test fixtures
  • Batch text filling without reaching for an external script

Best For

  • Developers building agent-workflows who want to cut down on throwaway scripts
  • Teams needing lightweight, deterministic text ops without network calls
  • Engineers who validate string logic quickly inside a session