Altairpaca/dshelm--packages-dsh2

@dshelm/dsh

DSHelm — The batteries-included agent layer for DeepSeek Harness. OmO-inspired. DSH-native. Ecosystem-composable.

包名
@dshelm/dsh
版本
0.1.0-alpha.1
许可证
Apache-2.0
最近更新
2026年8月15日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Altairpaca/dshelm#58648ef2aa5b6f2057a1ecb2bd5c2b35249cff7a&path:packages/dsh

Configuration

Project policy lives in .dshelm/config.jsonc (committable). Runtime-local state lives in .dshelm/local/ (gitignored). Precedence: defaults → user → project → request → runtime validation.

Example:

// .dshelm/config.jsonc
{
  "profiles": {
    "reasoning-high": {
      "id": "reasoning-high",
      "reasoning": "high",
      "candidates": [{ "provider": "deepseek", "model": "deepseek-v4-pro" }]
    },
    "fast-worker": {
      "id": "fast-worker",
      "candidates": [{ "provider": "deepseek", "model": "deepseek-v4-flash" }]
    }
  },
  "agents": {
    "planner": { "id": "planner", "role": "planner", "profile": "reasoning-high" },
    "executor": { "id": "executor", "role": "worker", "profile": "fast-worker" },
    "reviewer": { "id": "reviewer", "role": "reviewer", "profile": "reasoning-high" }
  },
  "categories": {
    "deep": { "id": "deep", "agent": "planner" },
    "quick": { "id": "quick", "agent": "executor" },
    "review": { "id": "review", "agent": "reviewer" }
  }
}