AI Agent Hub
Back to plugins
⚙️

dsh-kirocrew

Workflow Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install zoahdev/dsh-kirocrew

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

Run dsh plugin install zoahdev/dsh-kirocrew in your terminal to install; source repository is https://github.com/zoahdev/dsh-kirocrew

About this plugin

KiroCrew is an open-source development workspace that runs on your own hardware, remembers context across sessions, and keeps working unattended. If you are building agent workflows in DeepSeek Harness, there was previously no native way to hand a full turn off to that persistent workspace. dsh-kirocrew bridges exactly that gap: a single tool call lets your dsh agent delegate work into the workspace and get the finished result back.

The plugin registers one model-facing tool, kiro_send. At call time it spawns kiro-cli acp, walks through the full ACP handshake (initialize, session/new, session/prompt), forwards your prompt, streams text chunks, and returns the final answer. Session permission requests are auto-approved by default (allow_once), with a config option to deny instead. The design is deliberately thin: it forwards and returns, nothing more, and does not reimplement any of KiroCrew internals.

Made for dsh users who already run KiroCrew locally. If you want your agents to delegate long-running tasks into a workspace that carries context across sessions, rather than starting from scratch every turn, this is the minimal glue code needed to make that step work.

Use Cases

  • Delegate long-running tasks from a dsh agent into a KiroCrew persistent workspace and collect results
  • Invoke a local dev workspace via ACP without manually managing session state
  • Hand off unattended development tasks to a workspace that carries context across sessions

Best For

  • Developers running KiroCrew locally who want to integrate it with DeepSeek Harness
  • Engineers building multi-agent dsh workflows that rely on an external persistent workspace
  • Developers who want to avoid rebuilding session context on every agent turn