Plugin directory / Developer / dsh-web-summary
dsh-web-summary
Unverified lavenleo
What it does
A DeepSeek Harness plugin that fetches a public web page and returns its title and plain-text summary to the agent.
Unverified — not yet verified
A DeepSeek Harness plugin that fetches a public web page and returns its title and plain-text summary to the agent. Not yet verified — install and test it yourself.
“Unverified” means our automated CI has not yet installed this plugin. Feature descriptions and version compatibility are the author’s claims. This is not a security audit and not an endorsement of third-party code.
README
dsh-web-summary
A DeepSeek Harness Host tool plugin that fetches a public web page over HTTPS and returns its <title> and a plain-text summary of the visible content to the agent.
Features
- Registers one model-callable tool:
fetch_page_summary - Accepts an
https://URL and an optionalmaxCharscap (default 4000) - Returns
{ url, title, summary, truncated }; scripts, styles, and markup are stripped - Plain ESM JavaScript — no build step, works from both Git and npm installs
Install
dsh plugin --profile <profile> add github:<owner>/dsh-web-summary
or from npm:
dsh plugin --profile <profile> add dsh-web-summary
Restart the profile afterwards. The tool then appears as fetch_page_summary for the agent.
Usage example
Ask the agent: "Summarize https://example.com". The agent will call fetch_page_summary and receive the title plus up to maxChars characters of visible text.
Development
# verify the file parses as ESM and exports a Cordis plugin
node --check lib/index.js
License
Install
Install the catalog once, then DeepSeek Harness can find and install any plugin from this site automatically:
dsh plugin add dshbase-catalog Then say "install dsh-web-summary for me" — your agent finds it in the directory and installs it. Docs: dshbase-catalog · verified packs.
This plugin is GitHub source (not published to npm) — install it straight from the repo:
Web profile:
dsh plugin --profile web add github:lavenleo/dsh-web-summary Headless (CLI) profile:
dsh plugin --profile headless add github:lavenleo/dsh-web-summary Test report
Not yet L3-verified — see failure note below if we already ran it.