Agent Skills
› zzatpku/AgentFactory
› read_url_jina
read_url_jina
GitHub通过 URL 获取网页完整内容并转为 Markdown,弥补搜索摘要信息不足。
Trigger Scenarios
需要获取网页全文
搜索结果仅为摘要需深入阅读
Install
npx skills add zzatpku/AgentFactory --skill read_url_jina -g -y
SKILL.md
Frontmatter
{
"name": "read_url_jina",
"description": "Retrieve the full content of a web page by its URL. The snippets from search are incomplete - always use read_url_jina to get the full page content for relevant results."
}
Open Page Tool
read_url_jina: Retrieve the full, untruncated content of a web page using its URL and convert to Markdown format. Since search tools only return brief snippets that may miss critical information, use read_url_jina on any relevant result to ensure you have the complete content.
Usage
from tools import read_url_jina
content = read_url_jina(url)
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| url | str | required | The web page url obtained from search results |
Returns
document_content (type: str)
Or on error:
{"error": "error message"}
Example
from tools import read_url_jina
# Open the full document
full_content = read_url_jina(url)
if "error" not in full_content:
print(f"Title: {full_content.get('title', 'N/A')}")
print(f"Content: {full_content.get('text', '')[:1000]}...")
Tips
- Always use doc urls from search results, don't guess document urls
- Check for errors in the response before processing
- Full documents can be long; extract relevant sections for analysis
- Always call
read_url_jinafor relevant search results - the snippets from search are incomplete and may miss critical information
Version History
- df92287 Current 2026-07-25 08:38


