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.

Web Search Ark — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
W

dsh-web-search-ark

Web Search Ark

Volcengine Ark (火山方舟) web-search provider for the DSH web seam: calls the Ark Responses API with the native web_search tool and maps url_citation annotations to search sources.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:of1102/dsh-web-search-ark#7dbdaedc9ca36b91ac6b5459233dbd7c9f962565
READMECompatibilityVersions

Compatibility and provenance

Web Search Ark is published as dsh-web-search-ark and currently resolves to version 1.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/6/2026

Versions

1.1.1stable
9/6/2026
1.0.0stable
8/25/2026

Related plugins

Loading related plugins…

Latest
1.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
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 search-research.

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-pluginDeepSeek Harness tool plugin that exposes BrowserSkill browser automation (browser_* tools) to the modelWeknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Free Searchdsh-free-searchFree web search for DeepSeek Harness: 13 engines (Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl keyless; Parallel/Perplexity/SerpBase/DeepSeek with key) + time filtering + platform search + web_fetch, with web settings UI.Find Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.

README

dsh-web-search-ark

A web-search provider plugin for DeepSeek Harness (DSH) that routes the built-in web_search capability through Volcengine Ark (火山方舟). It is designed for deployments whose chat model runs on Ark and that do not have a DeepSeek official-platform key.

中文使用指南见 docs/使用指南.md。

Why

The official DeepSeek search provider speaks the Anthropic Messages API against DeepSeek's own platform, so an Ark-only deployment fails with Authentication Fails ... key is invalid. Ark exposes its 联网内容插件 (web search plugin) only through the Responses API with the native {"type": "web_search"} tool. This plugin calls that endpoint and maps the model's url_citation annotations to DSH search sources.

What it does

  • Registers a search provider under the id ark-official (web.searchProvider: ark-official, or $DSH_WEB_SEARCH_PROVIDER=ark-official).
  • Calls POST {baseURL}/responses with the native web_search tool (max_keyword bounds how many keyword searches one round may run; Ark accepts 1–50).
  • Normalizes the Responses body into DSH's search-result shape (answer text, deduplicated sources with title / publish time / site name), and throws a structured WEB_PROVIDER_ERROR when the model never triggered a search.
  • Ships a settings card in Settings → Plugins (model, endpoint, max keywords, API key) with the same staged save / collapse behavior as the built-in cards.
  • Records every request under the session event web/ark-search-llm-request (registered into the session vocabulary, so the fail-closed persistence reader still loads affected session logs).

Requirements

ItemRequirement
DSH0.1.2-rc.1 (verified for 1.1.0+), e.g. npx @deepseek-ai/dsh@0.1.2-rc.1 (0.1.1-rc.2 for 1.0.x)
Node / pnpmdsh plugin is a pnpm forwarder — install pnpm (npm i -g pnpm or corepack enable)
Ark account联网内容插件 (web search plugin) enabled, with a usable API key
NetworkAccess to ark.cn-beijing.volces.com (or your own ARK_SEARCH_BASE_URL)

Install

# 1. Install DSH (pin the verified version)
npx @deepseek-ai/dsh@0.1.2-rc.1

# 2. Make sure pnpm is available
npm install -g pnpm        # or: corepack enable

# 3. Unpack the plugin and place it inside the DSH home (important!)
unzip dsh-web-search-ark-1.0.0.zip
mkdir -p ~/.dsh/profiles/web/packages
cp -R web-search-ark ~/.dsh/profiles/web/packages/

# 4. Register the plugin (writes package.json deps + dsh.profile.bundles)
dsh plugin --profile web add ~/.dsh/profiles/web/packages/web-search-ark

# 5. Append to ~/.dsh/profiles/web/cordis.patch.yml (merge into the array):
#    - id: web
#      config:
#        searchProvider: ark-official

# 6. Configure the Ark key (the same key as your chat model works):
#    A) Settings → Models page in the web UI, or
#    B) VOLCENGINE_API_KEY in ~/.dsh/.credentials.yaml, or
#    C) export VOLCENGINE_API_KEY in the launching environment

# 7. Start and verify
dsh web

Keep the plugin directory inside ~/.dsh (the official location is ~/.dsh/profiles/<profile>/packages/). If it lives elsewhere, dsh plugin add fails with Cannot find package '@deepseek-ai/schemastery', because Node resolves @deepseek-ai/* bridges from the plugin's real path upward to ~/.dsh/profiles/node_modules/.

Configuration

KeyDefaultDescription
apiKeyEnvVOLCENGINE_API_KEYCredential reference: resolved from the credentials service, the launching environment, or a literal apiKey in this section
baseURLhttps://ark.cn-beijing.volces.com/api/v3Responses-API base; /responses is appended. Env override: ARK_SEARCH_BASE_URL
modeldeepseek-v4-flash-ga-260731Model id used for the search sub-task
maxKeyword5Max keyword searches per round (Ark allows 1–50)

The bundle patch (cordis.patch.yml) presets apiKeyEnv, model, and maxKeyword; a user patch only needs web.searchProvider: ark-official. See examples/example-cordis.patch.yml.

Cost

Ark's web search plugin bills per actual search invocation: one web_search may fan out into up to maxKeyword keyword searches, each billed separately. There is no cache; repeated calls cost again. Every request is recorded under web/ark-search-llm-request for reconciliation in the Ark console.

Development

npm ci                      # installs the DSH dev dependencies for the tests
npm test                    # offline contract + client-card + session-load checks
SMOKE_LIVE=1 npm run test:live   # also perform one real Ark search (needs a key)

Environment variables for the test harness:

VariableDefaultPurpose
DSH_MODULES_ROOTauto (./node_modules, then ~/.dsh/profiles/node_modules)Where @deepseek-ai/* packages resolve from
DSH_CREDENTIALS_FILE~/.dsh/.credentials.yamlCredential file for live tests
SMOKE_LIVEunsetPerform the live Ark search scenario
ARK_SMOKE_API_KEY_ENVVOLCENGINE_API_KEYCredential reference for the live call
ARK_SMOKE_MODELdeepseek-v4-flash-ga-260731Model for the live call
ARK_SMOKE_MAX_KEYWORD3max_keyword for the live call
DSH_SESSIONS_ROOT / DSH_SESSION_ID—Session-log A/B test; skipped when unset

Release

npm run release

Builds release/dsh-web-search-ark-<version>.zip (a web-search-ark/ tree ready for the install steps above) plus release/SHA256SUMS.txt. The script self-verifies the zip by extracting it and comparing every entry before declaring success; release/ also keeps the unpacked tree, so cd release && shasum -a 256 -c SHA256SUMS.txt verifies everything at once. Pushing a v* tag triggers .github/workflows/release.yml, which runs the tests and attaches the artifacts to the GitHub release.

License

MIT © 2026 Oscar Fang