omdsh-dev/dsh-gomoku13

@yejiming/dsh-gomoku

Gomoku (five-in-a-row) for the dsh web GUI: AI move routes, model catalog, and default prompt (node half) plus the conversation-view tab with the board (browser half)

AI 分析

核心用途是提供与 AI 进行五子棋对弈的功能。适合想要测试大模型空间推理能力,或在 DSH 中进行人机娱乐互动的用户。

パッケージ
@yejiming/dsh-gomoku
バージョン
0.0.1
ライセンス
MIT
最終更新
2026/08/15

インストール

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:omdsh-dev/dsh-gomoku

ドキュメント

README 全文を読む ↗

从 npm 安装(首次使用会初始化该 profile)

dsh plugin --profile demo add @yejiming/dsh-gomoku


### 方式二:GitHub 源码安装

```sh

## 配置

所有字段都有 loader 默认值;无库级默认值。

| 键 | 说明 |
|---|---|
| `moveTimeoutMs` | 单次 AI 落子尝试的端到端截止时间(默认 3000000 毫秒,即 3000 秒)。浏览器端每次都发送固定值,界面不再提供调整。 |
| `maxMoveOutputTokens` | 单次 AI 落子回复的输出 token 上限(默认 32000)。推理模型会把思考计入输出预算,因此默认值较宽松;截断的回复只要 JSON 完整仍会被解析,只有 JSON 丢失才触发重试。浏览器端每次都发送固定值,界面不再提供调整。 |
| `maxMoveAttempts` | 每次落子请求的 AI 尝试总次数;最后一次尝试附带纠正反馈(默认 3)。 |