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.

Weixin Reader — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
W

dsh-weixin-reader

Weixin Reader

WeChat Official Account article reader for DeepSeek Harness: parses mp.weixin.qq.com article bodies into clean Markdown for the model

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

npx -y @deepseek-ai/dsh plugin --profile web add github:jack1545/dsh-weixin-reader#f6d9973c5c07012dcd505e3aa60b8407cf0cb5c7
READMECompatibilityVersions

Compatibility and provenance

Weixin Reader is published as dsh-weixin-reader 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
9/21/2026

Versions

0.1.0stable
9/21/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/21/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.Modsearch@liustack/modsearchThe strongest free web search plugin for coding agents. Plug-in web search, X search, and page fetch for models without native web access. Free out of the box: no signup, no API key (Firecrawl keyless, 1,000 free credits/month)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.

README

dsh-weixin-reader

English | 中文

A WeChat Official Account article reader for DeepSeek Harness. It fetches a mp.weixin.qq.com article and parses the body into clean Markdown for the model.

Why

Harness's built-in web_fetch often fails on WeChat articles: the site returns an environment-check page, the body is buried under heavy inline styles and nested containers, and images load lazily through data-src. This plugin handles those cases and exposes a single narrow tool.

What it provides

One model-facing tool, weixin_read:

ParameterTypeRequiredDescription
urlstringyesArticle link, e.g. https://mp.weixin.qq.com/s/xxxxxxxx
maxCharsintegernoMaximum body characters before truncation; falls back to the plugin config
saveToFilebooleannoWrite the full body to a workspace file; falls back to the plugin config

The canonical result carries title, author, publishedAt, sourceUrl, wordCount, imageCount, markdown, truncated, savedTo, and bodyChars. What the model sees is rendered Markdown: the title, a metadata line, then the body.

The plugin also registers a system-prompt section telling the model to prefer weixin_read over web_fetch for WeChat articles.

Install

dsh plugin --profile web add github:jack1545/dsh-weixin-reader

Running from a source checkout, use pnpm dsh instead of dsh. Restart the Harness process to load the new layer.

Verify the layer without starting:

dsh --profile web --dump-config   # should contain a "# == dsh-weixin-reader" layer

Uninstall:

dsh plugin --profile web remove dsh-weixin-reader

Configuration

Every tunable lives in the config block of cordis.patch.yml, and can be overridden by id in a profile's own cordis.patch.yml:

KeyDefaultDescription
timeoutMs30000Fetch timeout in milliseconds
maxChars60000Body character limit; longer bodies are truncated and flagged
saveToFilefalseWhether to save the full body by default
saveDir""Save directory; empty writes to <workspace>/weixin-articles/
systemPromptOrder10120Prompt-section order; later sits closer to generation
userAgent""Overrides the default desktop browser UA

Two design decisions

No subprocess for fetching. The Harness file sandbox blocks Node from reading a child process's pipes; execFileSync and piped spawn both fail with EPERM, so external fetchers such as url-md.exe cannot be used from inside a plugin. This plugin uses the host fetch instead, which inherits the process's existing proxy settings and is unaffected by that limit. Redirecting a child's stdout to a file descriptor rather than a pipe would work around it, but that adds temporary files and cleanup responsibility for no benefit here.

Zero external imports. A profile's node_modules does not provide @deepseek-ai/* runtime dependencies, so the plugin uses only Node built-ins and ctx, and does not use defineTool. The cost is manual argument validation, which is implemented and whose failure messages match the declared schema.

Limitations

  • mp.weixin.qq.com only. Other hosts are rejected, so it cannot be repurposed as a general fetcher.
  • Fails loudly rather than degrading. An environment-check page, a deleted or restricted article, and an unrecognizable page structure each raise an explicit error instead of silently retrying or returning an empty body.
  • The body is a parse result, not raw HTML. Rich layouts (custom cards, interactive components) degrade to text or image links; images stay as Markdown image syntax and are not downloaded.
  • No bulk fetching. Keep the request rate low and respect WeChat's platform terms; this plugin is for personal reading and research.

Layout

dsh-weixin-reader/
├── package.json         # declares dsh.bundle
├── cordis.patch.yml     # the layer applied on install
├── index.js             # plugin entry: registers weixin_read and the prompt section
└── lib/parser.js        # zero-dependency parser, testable outside Harness

lib/parser.js works standalone:

import { fetchArticle, formatArticle } from './lib/parser.js';

const article = await fetchArticle('https://mp.weixin.qq.com/s/xxxxxxxx');
console.log(article.title, article.author, article.wordCount);
console.log(formatArticle(article));

Verification

Measured locally on 2026-09-21:

  • weixin_read fetched and parsed a real article: title, author, and publication time correct; 5049 characters and 16 images; clean Markdown structure.
  • Argument validation rejects, as intended: a missing url, a non-object argument, an empty string, a non-positive-integer maxChars, and an undeclared extra key.
  • A non-mp.weixin.qq.com host is rejected.
  • maxChars truncation applies and is flagged; saveToFile writes the correct path and full Markdown content.
  • The canonical result matches output.schema exactly: all required keys present, no undeclared keys.

License

MIT. This plugin is not affiliated with Tencent or WeChat, and is intended for personal reading and research.