Bundle
dsh-read-url
DeepSeek Harness URL reader: fetch any webpage, auto-detect encoding (GBK/GB2312/UTF-8/Big5), extract clean main content, output compact text/Markdown to save tokens. Zero runtime dependencies.
- Source
- 2672243194
- stars
- 7 stars
- License
- MIT
- Updated
- Updated 25 days ago
Readme
# dsh-read-url
π **English** | [δΈζ](README.zh.md)

URL reader plugin for DeepSeek Harness: fetch any webpage, **auto-detect encoding (GBK/GB2312/UTF-8/Big5)**, extract the clean main content, and return **token-efficient compact text or structured Markdown**.
Zero dependencies (Node 20+ built-ins), no API key, no server side β install and use.
## Why
DSH agents can search (getting links and snippets) but lack the step of "reading a URL into clean body text". The official `tool-web` `web_fetch` does a **whole-page turndown conversion** (nav/ads/sidebars all preserved) with a default cap of 200,000 characters β a token black hole. This plugin returns only what the model actually needs: **cleaned body + essential metadata**, truncated by default.
### Competitor comparison (measured from source/docs, 2026-08-15)
| Capability | Official `tool-web` web_fetch | dsh-webfetch | dsh-scrape-webpage | **dsh-read-url** |
|---|---|---|---|---|
| Body cleaning (container-level) | β whole page | β οΈ tag-level, nav/footer leak in | β οΈ custom, noisy | β
article/main containers + noise stripping |
| Default output cap | 200,000 chars | 50,000 chars | 30,000 chars | **6,000 chars + paragraph-aligned truncation** |
| Chinese GBK/GB2312 | provider-dependent | β οΈ not normalized, GB2312 garbles | β not handled | β
normalized + mojibake fallback |
| Session-level cache | β | β | β | β
5-min TTL |
| `ctx.web` seam | β
(official core) | β global fetch | β | β
seam-first, fallback included |
| `ctx.effect` unload cleanup | β
| β | β | β
|
| Cooperative timeout (hidden from model) | β
| β οΈ self-managed | β οΈ self-managed | β
`timeoutMs` + `exec.signal` |
| Model-facing output | whole-page Markdown | compact text | 15-field JSON | **compact text (no JSON parsing)** |
| Dependencies | official | TypeScript build | zero deps | zero deps (JS ESM, drop-in) |
| Anti-bot / degraded responses (UA & TLS fingerprint) | β οΈ Node default UA; measured: https intercepted by middlebox TLS fingerprinting, Baidu returns a degraded page without trending topics | β not disclosed | β not disclosed | β
full browser UA; measured: full page fetched (Baidu trending topics intact) |
> Measured 2026-08-16 (local environment): with this plugin removed, the official `web_fetch` hitting `https://www.baidu.com` had its TLS handshake intercepted by a middlebox using program fingerprints (fell back to http to succeed), and Baidu returned a **server-side degraded page** (trending topics moved to JS loading, absent from static HTML). With `dsh-read-url` restored, https worked and trending topics were fully readable. Root cause: the request's UA and TLS characteristics decide whether sites/middleboxes treat you as a bot.
## DSH architecture compliance
Implemented per official docs (`docs/capability-seams.md`, `docs/cordis-primer.md`, `docs/tool-execution-pipeline.md`):
1. **Web access via the `ctx.web` capability seam** β all web requests go through `ctx.web.fetch()` first (provider resolved inside the seam, same as official `tool-web`), falling back to global fetch when the seam is absent. The network layer is replaceable, not bound to any provider;
2. **Reversible side effects** β the session cache is registered under `ctx.effect`, auto-cleared on plugin unload (temporal composability);
3. **Cooperative tool-call timeout** β `ToolDefinition.timeoutMs` declares the budget, `execute(args, exec)` forwards `exec.signal` to fetch; the timeout policy is enforced by the pipeline, never exposed to the model;
4. **Model-facing simplicity** β render emits compact text (`title:` header + body); the model consumes it directly with no JSON parsing. Defaults are the most token-efficient; structured output is opt-in.
## Install
```bash
# From GitHub (recommended, easy updates)
npx @deepseek-ai/dsh plugin --profile web add github:2672243194/dsh-read-url
# Local development
npx @deepseek-ai/dsh plugin --profile web add ./dsh-read-url
```
Restart DSH (Web/TUI); you should see `dsh-read-url` enabled in Settings β Plugins.
## Usage
Just talk to the agent:
```
Read https://example.com/article and summarize the key points
Read https://docs.example.org/guide in markdown mode
```
### Tools
**`read_url(url, maxChars?, offset?, mode?, includeLinks?)`** β fetch and extract clean body
| Param | Type | Default | Description |
|---|---|---|---|
| `url` | string | required | http(s) URL |
| `maxChars` | number | 6000 | Max body characters returned (500β20000) |
| `offset` | number | 0 | Resume reading from this character offset (long-article continuation; served from cache without repeating earlier text) |
| `mode` | string | `text` | `text` = plain (most token-efficient); `markdown` = structured |
| `includeLinks` | boolean | `false` | Also return up to 20 page links (title+URL) |
**`read_url_batch(urls, maxChars?, mode?, includeLinks?)`** β read multiple URLs (1β10) in parallel, each cleaned individually, merged into one compact report
| Param | Type | Default | Description |
|---|---|---|---|
| `urls` | string[] | required | http(s) URL list (1β10) |
| `maxChars` | number | 3000 | Max body characters per page (500β20000) |
| `mode` | string | `text` | `text` = plain; `markdown` = structured |
| `includeLinks` | boolean | `false` | Also return links per page (title+URL) |
- Concurrency capped at 4 (avoids rate-limiting); a failing page is **isolated** (`[ε€±θ΄₯]` + reason in the output) and does not affect the others;
- Reuses every `read_url` capability and the session cache (encoding, cleaning, SPA rendering, 5-min cache β repeat batches hit the cache).
**`read_url_site(url, maxPages?, maxDepth?, includeContent?, maxCharsPerPage?)`** β recursive site crawl: BFS from the entry URL across same-host pages, returns a compact site map
| Param | Type | Default | Description |
|---|---|---|---|
| `url` | string | required | http(s) entry URL |
| `maxPages` | number | 15 | Max pages to crawl (2β50; bounds output) |
| `maxDepth` | number | 2 | Max link depth from entry (1β5) |
| `includeContent` | boolean | `false` | Attach a short body summary per page (default off β structure first, token-efficient) |
| `maxCharsPerPage` | number | 500 | Summary length per page when includeContent=true (200β2000) |
- **Same-host only**; login/API/static-asset paths are skipped; URLs deduped (fragment stripped);
- Concurrency 2 (gentle on the target site); per-page failures recorded as `[ε€±θ΄₯]` without aborting;
- Output is an indented tree: `[depth] title (chars) URL`;
- **No SPA rendering here** (crawling favors speed/breadth) β use `read_url` for JS-only pages.
**`read_url_links(url, limit?)`** β list the page's links without returning body text (lighter; good for sourcing / mapping a site)
| Param | Type | Default | Description |
|---|---|---|---|
| `url` | string | required | http(s) URL |
| `limit` | number | 20 | Max links returned (1β50) |
### Configuration (optional)
Plugin-level config is overridable via the profile's `cordis.patch.yml` (defaults in the plugin's own `cordis.patch.yml`):
```yaml
- id: dsh-read-url
config:
timeoutMs: 15000 # per-request timeout
maxBytes: 3145728 # response body cap (bytes)
maxChars: 6000 # default body truncation
maxLinks: 20 # read_url_links default count
spaRender: true # SPA rendering enhancement (needs playwright installed; degrades with a hint otherwise)
userAgent: '...' # request UA
```
### Output (compact)
```json
{
"url": "...",
"title": "...",
"siteName": "...",
"lang": "zh-CN",
"charset": "gbk",
"mode": "text",
"truncated": true,
"charsTotal": 12990,
"charsReturned": 6000,
"text": "...",
"links": [] // only when includeLinks=true
}
```
### PTC mode
Output is pure JSON and composable; orchestrate parallel multi-URL reads in PTC mode:
```ts
const results = await Promise.all([
read_url({ url: 'https://a.example.com', maxChars: 4000 }),
read_url({ url: 'https://b.example.com', maxChars: 4000 }),
])
```
## Token economy (core)
1. **Body text only by default** β no redundant headings/keywords/images/word-count fields; take them via params only when needed;
2. **Paragraph-aligned truncation + offset continuation** β 6,000 chars by default (~3,000 tokens), cut at paragraph boundaries to keep semantics; output notes a single line `(chars 6000/12990 β truncated, continue via offset)`; resume starts at the given offset, sliced from cache β **no repetition of already-read text** (measured 0+500 β 500+500, no overlap); offset past the end returns empty instead of repeating the head;
3. **`text` mode first** β Markdown structure is opt-in;
4. **Compact text render** β the model sees a `title:` header + body directly, no JSON parsing; `siteName` is omitted when identical to the hostname; every status hint is one short line (truncated / cached / rendered), no verbose paragraphs;
5. **Two-tier cache** β successful results cached per URL for 5 minutes (repeat reads hit cache: fewer network calls and fewer model retries); **failed results cached for 30 seconds** so a broken URL never triggers a re-fetch loop;
6. **KV-cache friendly (DeepSeek cost tuning)** β tool schema/description stay **static text** (no config values embedded), so changing config never invalidates the reusable prompt prefix and KV cache keeps hitting. DeepSeek's cache-hit tokens cost about 1/10 of misses β the more stable the prefix, the cheaper the run (same analysis as the official `tool-web` docs);
7. **Batch shares the cache** β `read_url_batch` reuses the same cache (repeat batches hit it directly) and caps each page at 3,000 chars (below the single-page 6,000) to bound total output.
## Technical notes
- **Encoding**: three-level detection (HTTP `Content-Type` charset β HTML meta β BOM), built-in `TextDecoder` transcoding (Node 20+ full-icu), GB2312 normalized to GBK, auto-fallback to UTF-8 on mojibake;
- **Extraction**: prefers `<article>` / `role="main"`, strips `nav/footer/header/aside/form/iframe` and ad-like containers, heuristic fallback to `<body>`;
- **Markdown**: self-written lightweight tag state machine (headings/paragraphs/lists/blockquotes/code/tables/inline bold-italic-links), zero deps;
- **Safety**: http/https only; no page scripts executed; responses over 3 MB rejected; 15s timeout; structured errors (HTTP status / timeout / unsupported type);
- **Optional enhancement 1 (Firefox Reader Mode algorithm)**: run `npm i @mozilla/readability happy-dom` in the DSH profile directory to auto-enable `@mozilla/readability` (MPL-2.0, referenced unmodified) for higher-quality extraction; falls back to the built-in heuristic when not installed β the core stays zero-dependency;
- **Optional enhancement 2 (SPA page rendering)**: run `npm i playwright && npx playwright install chromium` in the DSH profile directory to auto-enable it. When the extracted body is empty and the page is script-heavy (likely Vue/React client-rendered), the plugin automatically renders it with headless Chromium before extracting (a `rendered` flag tells the model); when not installed it degrades with a clear install hint, never errors β the core stays zero-dependency;
- **Boundaries**: login-walled pages are not readable; SPA pages need the Playwright enhancement; **structured data (e.g. which like-count belongs to which comment) is out of text-extraction scope** β this plugin flattens HTML into readable text, so exact fieldβvalue associations are lost; for precise fields, intercept the page's actual data API (see "Real-world validation" below).
## Real-world validation (2026-08-16)
| Category | Sites | Result |
|---|---|---|
| Portal navigation cleaning | Baidu / QQ / NetEase | β
clean nav + hot searches, no CSS noise |
| Multi-article aggregation | Cnblogs / Ruan Yifeng blog | β
3,580+ chars across articles |
| Encoding detection | People's Daily (UTF-8) / legacy GBK sites | β
correct detection, no mojibake |
| Login wall / 404 / image / PDF | Zhihu / Baidu / W3C | β
clear errors (403 / 404 / type block) |
| **SPA rendering** | Xiaoheihe / Juejin (JS-only) | β
`rendered` flag + post-JS body |
| **offset continuation** | Sina News (12,359 chars) | β
800β800+6000 seamless, no repeat, cache hit |
| **Batch + failure isolation** | 3-URL mix | β
2/3 ok, 403 isolated, cache reused |
| **Site crawl** | Ruan Yifeng blog | β
8/8 pages tree map |
- **27 zero-dep assertions** + **10 SPA-test assertions** all green;
- Real case: on a Xiaoheihe post, comment like-counts (`up` field) could not be attributed from flattened text β **precise fields should come from the page's underlying data API** (e.g. `/bbs/app/link/tree` JSON). This is a shared boundary of text extractors, not a defect.
- **Boundaries**: login-walled pages can't be read; SPA pages need the Playwright enhancement to be rendered (a clear hint is returned when it isn't installed).
## Roadmap
- [x] Single-page continuation (`offset` parameter)
- [x] On-demand SPA rendering (optional Playwright enhancement, auto-enabled once the browser is installed)
- [x] Batch reading (`read_url_batch`)
- [x] Recursive site crawl (`read_url_site`)
## Development
```bash
node test.mjs # zero-dependency self-tests (charset/extract/markdown/truncate)
# End-to-end (requires DSH CLI)
npx @deepseek-ai/dsh plugin --profile headless add . # run from the parent dir of the plugin
npx @deepseek-ai/dsh --profile headless "use read_url to read https://example.com and output the title"
```
Verified against real DSH v0.1.0-rc.6: plugin loads, `read_url` registers, model calls it, real page content returned.
## Support
If dsh-read-url helps you, please give it a β Star on [GitHub](https://github.com/2672243194/dsh-read-url).
- Completely free and open source (MIT): zero dependencies, no API key, fully local processing, no data collection;
- Independently developed and maintained β your Star is the direct signal for whether I keep investing in it;
- More users means more features β the next one might be exactly what you need.
A Star costs nothing but helps this project go further. Thanks β
## License
MIT
Install
dsh plugin --profile web add github:2672243194/dsh-read-url
Profile: web
With the hub plugin installed, ask your agent to install it by name β it resolves the same plan shown here.
dsh plugin --profile web add github:stvlynn/dsh.fish#path:packages/dsh-plugin-hub
install dsh-read-url from the hub
- This source has no pinned commit, so a later push upstream changes what installs. Prefer pinning a commit.