zoahdev/dsh-kirocrew0

dsh-kirocrew

KiroCrew bridge for DeepSeek Harness: let your dsh agent delegate to a persistent, self-evolving KiroCrew workspace over ACP (JSON-RPC 2.0 over stdio).

AI Analysis

将 DSH 智能体与 KiroCrew 工作区连接,实现复杂任务的委派与协同。适合需要利用 KiroCrew 进行自主代码编写和测试修复的高级开发任务。

Package
dsh-kirocrew
Version
0.1.0
License
MIT
Last updated
Aug 17, 2026

Install

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:zoahdev/dsh-kirocrew

Usage

You: kiro_send("Write a failing test and fix it")

Configuration (plugin config):

{
  "bin": "kiro-cli",          // optional: path to kiro-cli
  "cwd": "/path/to/work",     // optional: session working directory
  "mode": "coder",            // optional: KiroCrew agent mode id
  "model": "anthropic/...",   // optional: model id
  "timeoutMs": 120000,        // optional: turn timeout
  "autoApproveTools": true    // optional: auto-allow tool permissions
}

Per-call overrides are also accepted by kiro_send: cwd, mode, model.

使用

你:kiro_send("写一个会失败的测试,然后修好它")

配置(插件 config):

{
  "bin": "kiro-cli",          // 可选:kiro-cli 路径
  "cwd": "/path/to/work",     // 可选:会话工作目录
  "mode": "coder",            // 可选:KiroCrew agent 模式 id
  "model": "anthropic/...",   // 可选:模型 id
  "timeoutMs": 120000,        // 可选:单轮超时
  "autoApproveTools": true    // 可选:自动批准工具权限
}

kiro_send 也支持按调用覆盖 cwdmodemodel