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 Tavily — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

@aiwayds/dsh-web-search-tavily

Web Search Tavily

Tavily-backed web search provider for DeepSeek Harness (dsh)

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

npx -y @deepseek-ai/dsh plugin --profile web add @aiwayds/dsh-web-search-tavily@0.4.0
READMECompatibilityVersions

Compatibility and provenance

Web Search Tavily is published as @aiwayds/dsh-web-search-tavily and currently resolves to version 0.4.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.4.0stable
9/11/2026
0.3.1stable
9/5/2026
0.3.0stable
9/3/2026
Show 3 more versionsCollapse versions
0.2.0stable
9/1/2026
0.1.2stable
8/29/2026
0.1.1stable
8/29/2026

Related plugins

Loading related plugins…

Latest
0.4.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
36.7 kB
Files
13
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
175
Security scan
✓ v0.4.0 scan passed
Last push
9/11/2026
View source ↗Project homepage ↗
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-tavily

A DeepSeek Harness (dsh) plugin that provides web search through the Tavily Search API.

Requires dsh >= 0.1.5-rc.2 — this plugin targets the dsh RC/stable line only (CI and releases resolve the newest of the latest/next dist-tags at runtime). The alpha line is no longer supported.

It replaces the default DeepSeek web search — which spends a full auxiliary model call per search (Anthropic-compatible Messages API + web_search_20250305 server tool) — with a plain Tavily REST call: ~1s, 1 credit at basic depth, no model tokens.

The plugin registers a WebSearchProvider (id: "tavily") with the official ctx.web capability seam, so everything around the tool stays exactly as shipped: the model still calls the same web_search tool, with the same citation formatting, searchMaxResults bound, and timeout budget. A provider swap changes how the harness reaches the web, nothing else.

Requirements

  • dsh >= 0.1.5-rc.2 (peer deps resolve to the profile's shared @deepseek-ai closure)
  • A Tavily API key (tvly-…, free tier available)

Install

One command:

dsh plugin --profile <name> add @aiwayds/dsh-web-search-tavily

dsh plugin installs the package into the profile (via pnpm) and registers it in dsh.profile.bundles automatically. Restart dsh — the provider is registered and ready. Local development: dsh plugin --profile <name> add link:/path/to/dsh-web-search-tavily (relative path specs anchor to your invoking directory). The manual route — adding the dependency and the bundle entry to ~/.dsh/profiles/<name>/package.json yourself and running pnpm install there — works identically.

Unlike the anysearch sibling plugin, this one does not claim the web_search default on install — Tavily needs an API key, and a selected-but-unconfigured provider would fail every search. After storing the key, select it with one patch entry (below).

@deepseek-ai/* packages are peer dependencies by design: they must resolve to the profile's single shared dsh closure (link-dsh-closure). Putting them in dependencies installs a second cordis instance and crashes the loader.

Uninstall

dsh plugin --profile <name> remove @aiwayds/dsh-web-search-tavily

The host auto-cleans the whole install: the bundles entry is spliced out of the profile's package.json, the dependency is removed, and the plugin's patch layer drops with the package. Restart dsh and the tavily provider is gone — web_search falls back to whichever provider your patch layers still select (the shipped deepseek-official by default).

The plugin keeps no on-disk state. Your Tavily API key lives in host-owned storage — the TAVILY_API_KEY ref in ~/.dsh/.credentials.yaml or the launching environment — and uninstall never touches it. If you no longer want the key (or the searchProvider: tavily patch entry selecting the provider), remove those by hand.

Configure

1. API key. Store the key in dsh's managed credentials document (~/.dsh/.credentials.yaml) — resolved per search, never written to config files:

version: 1
refs:
  TAVILY_API_KEY: tvly-xxxxxxxx

Fallbacks, in resolution order: TAVILY_API_KEY in the launching environment, then a literal apiKey in the plugin config (discouraged).

2. Select the provider. The base bundle pins web.searchProvider to deepseek-official, and a configured id always wins — so add the override to the profile's cordis.patch.yml (or the home-level ~/.dsh/cordis.patch.yml for every profile):

- id: web
  config:
    searchProvider: tavily

Optionally retire the DeepSeek search plugin entirely:

- id: web-search-deepseek
  disabled: true

Restart dsh. Verify the composed tree:

dsh --profile <name> --dump-config | grep -A3 'id: web$'   # searchProvider: tavily

Rollback: delete the patch entries and restart — web_search returns to the shipped DeepSeek provider.

Plugin config (all optional; via a patch layer, read at startup):

FieldDefaultNotes
apiKeyEnvTAVILY_API_KEYCredential reference resolved per search
apiKey—Literal key; wins over the reference
baseURLhttps://api.tavily.comEnv override: TAVILY_BASE_URL
searchDepthbasicbasic / advanced (2 credits) / fast / ultra-fast
topicgeneralgeneral / news / finance
maxResults8Default when the tool sends no bound; API caps at 20
includeAnswertrueTavily's generated answer becomes the result's content

Example patch entry with config:

- insert:
    - id: web-search-tavily
      name: '@aiwayds/dsh-web-search-tavily'
      config:
        searchDepth: advanced
        topic: news

Behavior

  • results[].content → the portable snippet; Tavily's answer → the result's content; the API returns no publication dates, so publishedAt is never set.
  • Follows the ctx.web seam contract: cancellation as WEB_ABORTED, a missing key as WEB_PROVIDER_CREDENTIAL_MISSING (naming TAVILY_API_KEY), provider failures as WEB_PROVIDER_ERROR with Tavily's own error detail surfaced; a rejected key reads Tavily rejected the API key (HTTP 401).
  • available() is a local check only (credential source present, base URL parseable) — it never makes network calls.
  • Result-count requests are clamped to Tavily's max_results cap (20); the seam additionally enforces the tool's searchMaxResults bound (default 8).

Develop

npm install
npm run check   # tsc --noEmit
npm test        # build + node --test (14 tests)

After editing src/, run npm run build and restart dsh — the plugin loads from lib/. Unit tests cover response mapping, availability, the request shape, and the HTTP/abort/credential error branches with mocked fetch.

License

MIT