# Deep Reading

> deep-reading

- Skill: `smartgate-network/deep-reading` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add smartgate-network/deep-reading`
- Raw SKILL.md: https://api.skillmd.com/api/skills/smartgate-network/deep-reading/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: smartgate-network (https://skillmd.com/u/smartgate-network)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/smartgate-network/deep-reading

---

## deep-reading

Purpose: Fetch and compress a single user-known URL into condensed text for Host LLM deep reading, summarization, or Q&A.

When to use:
- Official docs / API reference: OpenAPI specs, SDK docs, product manuals
- Long blog posts or technical articles: preprocess input for single-document reading
- Whitepapers / RFCs: compress before LLM extracts section highlights
- User message already contains a clear link — no search step needed

When NOT to use:
- No definitive URL and multiple sources are needed — use **research-agent**
- Persist conclusions to team memory — read with this workflow, then **remember-and-recall** (action=add)
- Query quota — use **usage-report**

Returns: JSON string. When loader calls `smart_pipe` with `template=read`, top level has `success` and `results`. `results[0]` is fetch: `data.markdown`, `data.title`, `data.url`. `results[1]` is context_gate: `data.compressed`, `data.ratio`, `data.original_tokens`, `data.compressed_tokens`.

Composes with: Host LLM for summaries, Q&A, code examples; output into **remember-and-recall**; **usage-report** (action=check) before very long pages.

