DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Llm Kimi — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
L

@phillarmonic/dsh-llm-kimi

Llm Kimi

用于 DeepSeek Harness llm 能力接口的 Kimi K3 连接器插件。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:phillarmonic/dsh-llm-kimi#a132c76baf2aaa42089cc30fb6bd79d8729d9e2c
README兼容性版本

兼容性与来源证明

Llm Kimi 以 @phillarmonic/dsh-llm-kimi 发布,当前版本为 0.3.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/9/15

版本

0.3.0stable
2026/9/10
0.1.0stable
2026/8/25
查看其余 1 个版本收起版本
0.1.6-alpha.1prerelease
2026/9/15

相关插件

正在加载相关插件…

最新版
0.3.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 1
周下载
0
最近提交
2026/9/15
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 models-usage 分类下经过校验的插件。

Usage@linxin666/dsh-usage用于 dsh Web GUI 的使用统计插件:检测各提供商的余额和编码计划配额,并提供实时令牌使用记录,同时在侧边栏条目中显示当前会话提供商今日的使用量Whale Widgetdsh-whale-widgetDSH Web 界面右下角的 DeepSeek 余额小鲸鱼挂件:余额/今日已用/峰谷定价、自定义泡泡点击序列(文本/余额/今日/峰谷/图片/随机语句与并列加权选择)、逐行样式与字体、悬浮快捷编辑、音效与每轮消耗、自定义角色/动图/音效、吸附与翻转自定义Usage Stats@ychris12138/dsh-usage-statsdsh Web GUI 的令牌使用热力图、提供商余额和订阅配额Codex Connectdsh-codex-connect用于 DeepSeek Harness 的 ChatGPT OAuth 和 Codex 模型。

README

@phillarmonic/dsh-llm-kimi

A Kimi K3 connector plugin for the DeepSeek Harness llm capability seam.

It registers a direct-fetch LlmAdapter for the kimi-code provider route, streaming Kimi Code chat completions (an OpenAI-compatible dialect) as harness StreamChunks. Connection facts resolve per request, so a changed base URL, catalog, or key reaches the next request without a restart.

Install

Install as a DeepSeek Harness bundle so dsh plugin registers it automatically:

dsh plugin --profile <name> add @phillarmonic/dsh-llm-kimi
dsh --profile <name>

Or add it manually when you compose cordis.yml directly:

pnpm add @phillarmonic/dsh-llm-kimi

The harness packages are peer dependencies; install them alongside the plugin if they are not already present:

pnpm add @deepseek-ai/cordis @deepseek-ai/dsh-llm @deepseek-ai/dsh-credentials \
  @deepseek-ai/dsh-settings @deepseek-ai/dsh-launch-environment @deepseek-ai/dsh-timeout \
  @deepseek-ai/dsh-attachment @deepseek-ai/schemastery

Configure

Add the plugin to your cordis.yml. Every field is optional; the defaults target the public Kimi Code endpoint.

plugins:
  llm: {}
  '@phillarmonic/dsh-llm-kimi':
    apiKeyEnv: KIMI_CODE_API_KEY
    reasoningEffort: low

Then export your key (from the Kimi Code console at api.kimi.com) or store it through the harness credentials service:

export KIMI_CODE_API_KEY=sk-...

Select the provider and a model when you run a task, for example provider kimi-code with model k3.

Configuration

FieldDefaultDescription
apiKeyEnvKIMI_CODE_API_KEYCredential reference (environment-variable name) resolved per request.
baseURLhttps://api.kimi.com/coding/v1Endpoint base; /chat/completions is appended. Falls back to $KIMI_BASE_URL from a trusted environment layer.
reasoningEffortlowDefault thinking effort for the K3 family (low, high, max).
sendTemperaturefalseWhether to forward an explicit sampling temperature. Kimi enforces fixed sampling, so this stays off by default.
firstToolChoiceunsetForce this tool on a conversation's first tool call (wire tool_choice), applied only while the history holds no earlier tool call and the request's tool list carries the name.
maxTokens131072Default per-request output cap; a model's own cap and explicit request values win.
defaultContextWindow1048576Context capacity used when the selected model has no exact value.
imagePixelBudget8294400Reject a request image whose intrinsic pixel count exceeds this budget. Default is Kimi's 4K ceiling (3840x2160).
imageMaxBytes1048576Reject a request image whose encoded byte length exceeds this budget. Keeps inline base64 within Kimi's per-message size limit.
modelsfour Kimi Code modelsAdvisory catalog shown by discovery consumers.
streamIdleTimeoutMs300000Maximum provider idle time while one stream read is outstanding.
retryPolicynormal, five retriesProvider-owned model-request retry policy.

Models

Model idContextReasoning effortImage input
k31,048,576low / high / maxyes
k3-256k262,144low / high / maxyes
kimi-for-coding262,144always on (no effort levels)yes
kimi-for-coding-highspeed262,144always on (no effort levels)yes

Image input

All four Kimi Code models accept images. When a request carries image content, the adapter reads each image through the harness attachment service (ctx.attachments) and inlines it as a base64 image_url data URL. The attachment service is optional: a request with images fails loudly when it is not mounted, and text-only requests never touch it.

Budgeting is enforced inside this plugin from the durable attachment metadata, before any bytes are read. An image whose pixel count exceeds imagePixelBudget, or whose encoded byte length exceeds imageMaxBytes, is rejected rather than pushing the request past Kimi's per-message size limit. A request that sends image content to a model configured without image support is rejected too.

Behavior notes

  • All four Kimi Code models accept image input; see Image input for how images are resolved and budgeted.
  • Kimi enforces fixed sampling. The adapter does not send temperature, top_p, or n unless sendTemperature is enabled.
  • While thinking is enabled, an assistant message with tool calls must carry its reasoning_content. The adapter replays the harness reasoning block onto that field so multi-turn tool sessions stay valid.
  • Kimi cannot disable thinking without routing to a weaker model, so the adapter never sends an off or none effort. The K3 family exposes low, high, and max; the coding models keep thinking on with no effort selector.

Development

pnpm install
pnpm run typecheck
pnpm run test
pnpm run build

License

MIT. See LICENSE.