AI Agent Hub
Back to plugins
⚙️

dsh-workflow-loop

Workflow Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install satan9394/dsh-workflow-loop

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

Run dsh plugin install satan9394/dsh-workflow-loop in DeepSeek Harness to install the plugin; the source repository is at https://github.com/satan9394/dsh-workflow-loop .

About this plugin

In DeepSeek Harness agent workflows, many tasks cannot be finished with a single linear pass. dsh-workflow-loop is a workflow plugin designed for exactly that scenario: it introduces loop control into the Harness orchestration chain so that a workflow node can be re-triggered until a termination condition is met, rather than executing only once.

Licensed under MIT, the plugin slots directly into the Harness ecosystem without requiring a separate scheduling framework. Once added to an existing workflow, developers can declare loop behavior on specific nodes, letting agents handle iterative tasks more naturally and with finer-grained control.

The plugin is best suited for developers building multi-step agent workflows in DeepSeek Harness where some steps inherently require repeated execution, such as retries, progressive refinement, or multi-round negotiation. It does not replace the workflow engine itself; it simply adds the missing loop semantics as a lightweight add-on.

Use Cases

  • A workflow node must repeat until a termination condition is met
  • Agent tasks involve multi-round progressive refinement or retry logic
  • Adding loop semantics to a specific node in an existing Harness workflow

Best For

  • Developers building multi-step agent workflows with DeepSeek Harness
  • Teams whose workflows include repeated-execution steps such as retries, negotiation, or iterative convergence
  • Engineers who want lightweight loop semantics without introducing a separate scheduling framework