DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Kubectl — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
K

dsh-kubectl

Kubectl

Kubernetes (kubectl) integration for DeepSeek Harness: inspect clusters, get/describe resources, read logs, port-forward and run one-off commands — with structured JSON output that agents parse reliably.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:WODE25500/dsh-kubectl#7bb8623b7a55a997c418235b78cfae1443a23a73
READMECompatibilityVersions

Compatibility and provenance

Kubectl is published as dsh-kubectl and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/20/2026

Versions

0.1.0stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 2
Weekly downloads
0
Last push
8/20/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-kubectl

Kubernetes (kubectl) 的 DeepSeek Harness (dsh) 插件 —— 让 dsh 智能体检查集群、查资源、 读日志、端口转发、执行一次性命令。只读命令输出 JSON 结构化数据(模型解析可靠),写操作显式确认。

独立社区项目,非官方。基于 kubernetes/kubectl(Apache-2.0)。

为什么值得做

Kubernetes(40k+ star)至今没有 DSH 适配插件。kubectl 的 -o json 结构化输出对 agent 极其友好(远胜 winget 的表格),是运维刚需:

能力说明
kubectl_get查资源,-o json 结构化输出
kubectl_describe / kubectl_logs排障三件套
kubectl_status版本/上下文/集群信息
kubectl_exec / kubectl_apply / kubectl_delete执行/部署/删除(显式确认)
kubectl_port_forward本地访问集群内服务

前置要求

  • DeepSeek Harness(dsh)
  • kubectl 已安装并配置 kubeconfig(kubectl config get-contexts 可看)

安装

- insert:
    - id: kubectl
      name: './src/index.js'
      config:
        kubectlPath: kubectl
        context: my-cluster
        namespace: default
pnpm dsh web --patch ./dsh-kubectl/cordis.patch.yml

工具

工具行为安全
kubectl_get查资源(JSON)🔵 只读
kubectl_describe资源详情🔵 只读
kubectl_logspod 日志(tail/previous/container)🔵 只读
kubectl_status版本/上下文🔵 只读
kubectl_exec容器内执行命令🟡 确认
kubectl_apply应用清单🔴 确认
kubectl_delete删除资源🔴 确认
kubectl_port_forward端口转发🟡 常驻

配置项

键默认说明
kubectlPathkubectlkubectl 路径
context—默认上下文
namespace—默认命名空间
timeoutMs60000单次调用超时

已知限制

  • 无集群时命令报连接拒绝(stderr 原样返回)
  • port-forward 是常驻进程,当前版本不自动停止
  • 写操作依赖用户确认;SKILL.md 有明确红线

目录结构

dsh-kubectl/
  src/index.js            # 8 个工具 + 配置
  skills/kubectl/SKILL.md
  docs/
  cordis.patch.yml

许可

MIT。