ToolsIntegrations
reader
Jina Reader — turn any URL into clean markdown. Free, fast, no API key required for casual use.
import { reader } from '@agentskit/tools'
const runtime = createRuntime({
adapter,
tools: [...reader()],
})#Sub-tools
| Name | Purpose |
|---|---|
readerFetch | Fetch + clean a single URL via r.jina.ai |
Bundled: reader(config).
#Config
type ReaderConfig = {
apiKey?: string // for higher rate limits
baseUrl?: string // default https://r.jina.ai
fetch?: typeof fetch
}#Example
await runtime.run('Read https://news.ycombinator.com/item?id=40000000 and list the three most upvoted arguments.')#When to reach for reader vs alternatives
- reader — zero-config, text-only, free tier.
- firecrawl — paid, structured markdown + crawl trees.
- fetchUrl — lowest-level; keeps HTML; zero-dep.
- browserAgent — when you need to click / fill / wait.
#Related
Explore nearby
- PeerIntegrations
20+ ready-made connectors for the services agents actually need. Each follows the same contract — install, config, execute — and ships granular sub-tools alongside a bundled set.
- Peergithub
GitHub REST v3 — search issues, create issues, comment. Pairs with HITL for ship-gating bots.
- PeergithubActions
GitHub Actions — list runs and trigger workflow_dispatch events.