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.

Model Catalog Bigmodel — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
M

@deepseek-ai/dsh-model-catalog-bigmodel

Model Catalog Bigmodel

Zhipu AI BigModel and GLM Coding Plan LLM Provider model catalog plugin for DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add github:OpenSaozi/dsh-bigmodel-catalog#0a74906a907b412e6a41b835af3cff9e6db83c52
READMECompatibilityVersions

Compatibility and provenance

Model Catalog Bigmodel is published as @deepseek-ai/dsh-model-catalog-bigmodel and currently resolves to version 0.1.0-rc.5. 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/22/2026

Versions

0.1.0-rc.5prerelease
8/22/2026

Related plugins

Loading related plugins…

Latest
0.1.0-rc.5
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
9/10/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 models-usage.

Usage@linxin666/dsh-usageUsage statistics plugin for the dsh web GUI: per-provider balance and coding-plan quota detection plus a live token usage ledger, with the current session provider's today usage on the sidebar entryUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.Ui Usage Billing@kenz1117/dsh-ui-usage-billingUsage billing dashboard for DeepSeek Harness: sidebar cost metrics plus a full dashboard modal, priced from a current multi-provider catalog with real usage aggregated from session logs.

README

DSH Plugin: LLM Provider - BigModel GLM

中文 | English

Allows connecting to the Zhipu AI BigModel / GLM Coding Plan as an LLM Provider, enabling DeepSeek Harness to utilize the dedicated Coding Plan route and unlocking the verified 1M-token context model glm-5.3 (along with glm-4.5, glm-4.6, and glm-5).

Target Audience and Use Cases

Designed for developers with a Zhipu GLM Coding Plan membership or BigModel account who need to analyze large codebases, process long documents, or perform intensive code generation.

Key Features

  • Unlocks 1M Context Window: Directly select glm-5.3 in the model selector, featuring a 1,000,000-token context limit and 128K max output capacity.
  • Tailored for Coding Plan: Connects to Zhipu AI's developer-focused Coding PaaS endpoint (https://open.bigmodel.cn/api/coding/paas/v4/models).
  • Live Reconciled with Verified Exceptions: Combines live endpoint discovery while maintaining verified support for glm-5.3.
  • Independent Provider Route: The plugin registers its own zai adapter. It reuses the exported PiAiAdapter only for message and stream conversion, without depending on llm-pi-ai provider configuration or catalog seams.
  • Secure Credential Isolation: The plugin resolves BIGMODEL_API_KEY through the Harness credential service for each request and never places the key in Cordis configuration or logs.

Installation and Quick Start

Install a reviewed revision into a DeepSeek Harness profile. The repository includes a dsh.bundle patch and prebuilt runtime artifacts so no local build steps are required:

dsh plugin --profile <profile> add github:OpenSaozi/dsh-bigmodel-catalog#<commit-sha>

The installed bundle contributes the following Cordis configuration:

- id: model-catalog-bigmodel
  name: '@deepseek-ai/dsh-model-catalog-bigmodel'
  config:
    apiKeyEnv: BIGMODEL_API_KEY
    baseURL: https://open.bigmodel.cn/api/coding/paas/v4
    displayName: BigModel

The plugin owns the complete zai route: catalog, live filtering, credential resolution, and adapter registration all live in this package. Deployments may override baseURL for another Coding Plan endpoint and apiKeyEnv for another credential reference.

Contributing

Please attach provider evidence for every catalog change: exact model ID, protocol, context/output capacity, reasoning behavior, and direct request verification where applicable. Update both README languages and run package tests in a matching DeepSeek Harness checkout.

License and Disclaimer

MIT License. This community integration is not affiliated with or endorsed by Zhipu AI, BigModel, DeepSeek, or pi-ai.

Model Experience

Catalog Selection

What the model sees

No package-owned text. The plugin controls which BigModel descriptor, such as glm-5.3, can be selected; the exported PiAiAdapter owns request conversion.

Token effect

No direct token effect. Tokenization and context use remain properties of the selected model and pi-ai's z.ai-compatible request implementation.

KV Cache effect

No direct effect. Selecting a different model may change provider-side cache eligibility, but this plugin adds no request content.

Known Limitations and Deferred Work

  • Refresh runs on mount and when the managed credential named by BIGMODEL_API_KEY changes. Failure keeps the maintained catalog and logs the error.
  • The Coding Plan Models endpoint currently omits a directly callable glm-5.3; that exact id is an explicit verified exception.
  • The endpoint supplies ids, not complete capability metadata. Context and output capacities therefore come from the reviewed descriptor table and remain pinned by package tests.