Nico0713520/dsh-github-cli ↗★ 0
dsh-github-cli
Reuse your local GitHub CLI (gh) inside DeepSeek Harness. Read-first, audit-friendly tools for repos, PRs, issues, releases, workflows and more.
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Nico0713520/dsh-github-cli说明文档
阅读完整 README ↗配置
插件读取 GhCliConfig(在 profile 的插件配置里设置):
interface GhCliConfig {
ghPath?: string // gh 路径,默认 PATH 上的 `gh`
fullAccess?: boolean // 允许写命令,默认 false
extraReadOnly?: string[] // 额外放行的只读前缀,如 ['gist create']
timeoutMs?: number // 单次调用超时,默认 60_000
}
cordis patch 示例:
- insert:
- id: gh-cli
name: gh-cli
config:
fullAccess: false
timeoutMs: 120000