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.

Enterprise Suite — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
E

dsh-enterprise-suite

Enterprise Suite

Open-source enterprise plugins, governance controls, and connector templates 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:mickymultani/deepseek-harness-enterprise-suite#7f1adff172264055076d862bc42a29da37d0fd2a
READMECompatibilityVersions

Compatibility and provenance

Enterprise Suite is published as dsh-enterprise-suite 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/23/2026

Versions

0.1.0stable
8/23/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
★ 0
Weekly downloads
0
Last push
9/6/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 security-access.

Doctor@linxin666/dsh-doctorTransactional rescue mode for DSH profiles with a supervised launcher, isolated recovery capsule, deterministic repairs, health monitoring, and a local Web recovery consolePocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Auto Reviewdsh-auto-reviewSecond-model AI auto-review for DeepSeek Harness approval requests: a read-only reviewer subagent decides allow/deny on the approval answerer chain, with fail-closed fallback and full session-log audit.

README

DeepSeek Harness Enterprise Suite

Open-source enterprise integrations, governance controls, and plugin templates for DeepSeek Harness.

The suite provides a secure starting point for organizations that want agent access to internal systems without placing connector credentials, authorization policy, and audit logic inside individual prompts or agent loops.

Included plugins

PluginCapabilitiesStatus
AtlassianConfluence search; Jira read, create, and deterministic issue reviewWorking; mock and live modes
Enterprise policyProject and space allowlists, configurable DLP checks, approval-gated Jira writesWorking
Enterprise auditRedacted owner-only JSONL records from final tool outcomesWorking

The repository also includes a plugin generator, reusable connector utilities, a machine-readable enterprise plugin catalog, deployment guidance, a threat model, and starter templates for new connectors and policy plugins.

Install

DeepSeek Harness is currently a developer preview. Pin both Harness and this suite to reviewed versions or commits.

From a DeepSeek Harness source checkout:

export DSH_HOME=/absolute/path/to/an/evaluation-home
pnpm dsh plugin --profile web add github:mickymultani/deepseek-harness-enterprise-suite#v0.1.0
pnpm dsh --profile web --dump-config
pnpm dsh web --no-open

For local development:

git clone https://github.com/mickymultani/deepseek-harness-enterprise-suite.git
cd deepseek-harness-enterprise-suite
pnpm install
pnpm test

cd /path/to/deepseek-harness
pnpm dsh plugin --profile web add /path/to/deepseek-harness-enterprise-suite
pnpm dsh web --no-open

The bundle starts in mock Atlassian mode. It cannot modify a real tenant until an operator explicitly changes the profile configuration to mode: live and supplies credential references.

Configure live Atlassian access

Create an override at $DSH_HOME/profiles/web/cordis.patch.yml. Harness patch rows replace the complete config, so include every field:

- id: enterprise-atlassian
  config:
    mode: live
    baseUrl: https://your-company.atlassian.net
    authMode: basic
    tokenRef: ATLASSIAN_API_TOKEN
    emailRef: ATLASSIAN_EMAIL
    requestTimeoutMs: 30000
    allowInsecureHttp: false

- id: enterprise-policy
  config:
    mode: enforce
    allowedJiraProjects: [ENG, SEC]
    allowedConfluenceSpaces: [ENG, SEC]
    protectedToolPrefixes: [jira_, confluence_]
    requireApprovalForWrites: true

Configuration contains references, never credential values. Resolve those references with the Harness credential provider, an injected process environment, or a custom provider backed by the enterprise vault.

Create a plugin

Generate a standalone connector plugin:

npx dsh-enterprise-suite create-dsh-enterprise-plugin knowledge-search

The generated project includes an installable bundle manifest, typed canonical tool output, configuration validation, cancellation-aware HTTP, tests, and documentation prompts. See Creating a plugin and the connector contract.

Design principles

  • Separate read, propose, approve, execute, and verify operations.
  • Resolve credentials for every external operation and never log their values.
  • Treat retrieved enterprise content as untrusted data, not instructions.
  • Put deterministic authorization in policy plugins, not model judgment.
  • Make writes idempotent, approval-gated, cancellation-aware, and externally verified.
  • Produce structured canonical values; keep prose in renderers.
  • Record authoritative final outcomes with redaction and retention controls.
  • Pin, review, scan, sign, and canary every plugin release.

Documentation

  • Architecture
  • Enterprise plugin catalog
  • Roadmap
  • Deployment guide
  • Threat model
  • Policy model
  • Security policy
  • Contributing

Project status

The shared plugin foundation and included plugins are suitable for evaluation. A production deployment must still validate its own tenant APIs, field mappings, identity propagation, approval experience, retention rules, regulatory controls, availability targets, and incident procedures. Capability status is tracked explicitly in the plugin catalog.

License

MIT. This is an independent community project; see Notices.