AI Agent Hub
Back to plugins
🧰

dsh-web-summary

Web Tools Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install lavenleo/dsh-web-summary

Paste the following prompt into your AI chat to install this plugin:

Install this plugin in DeepSeek Harness by running dsh plugin install lavenleo/dsh-web-summary; the source code is available at https://github.com/lavenleo/dsh-web-summary .

About this plugin

When an agent needs to make sense of a web page, it is usually buried under HTML tags, inline scripts, and CSS noise. dsh-web-summary tackles exactly that pain point: it extracts only the visible text content and strips everything else.

At its core, the plugin registers a single model-callable tool called fetch_page_summary. Give it an HTTPS URL and it returns the page title, a plain-text summary with all scripts, styles, and markup removed, and a truncated flag. A maxChars parameter (default 4000) lets you cap the summary length so the agent stays within its token budget.

It is aimed at developers who want a lightweight web-page summarization capability for their DeepSeek Harness agents. Pure ESM JavaScript, no build step, no extra dependencies - install from Git or npm and it is ready to use.

Use Cases

  • Let the agent quickly grasp what a web page says without manual copy-paste
  • Cite the title and key points of external web content directly in conversation
  • Provide a capped-length lightweight web summary for automated workflows

Best For

  • Developers extending DeepSeek Harness agents with web comprehension
  • Builders needing lightweight web summarization without heavy crawlers
  • Teams integrating external web content into agent workflows