Install
$ agentstack add skill-qingxuantang-tar-engine-url-summarize ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
URL Summarize Skill
Fetch a webpage and return a one-paragraph summary of its content.
When to use
The user wish contains a URL (http:// or https://) AND asks for a summary, gist, or explanation of what the page contains. Examples:
- "summarize https://example.com"
- "what does https://en.wikipedia.org/wiki/AI_agent say?"
- "tell me about this page: https://blog.example.com/foo"
Execution
This skill uses a helper script to fetch the URL safely (with redirect handling and HTML text extraction). Steps:
- Extract the URL from the user's wish.
- Call the fetch script via
run_bash:
`` python3 scripts/fetch.py "" `` The script prints the page's text content to stdout (max 4000 chars).
- Read the script's output.
- Generate a one-paragraph summary based on the text.
- Return the summary as the final response.
Style
- One paragraph, 3-5 sentences max.
- Focus on what the page actually says, not on the URL or technical details.
- If the page is empty, errors out, or has no readable text, say so plainly:
"This page returned no extractable content."
What this skill demonstrates
This SKILL.md + scripts/ pattern is how Claude Code skills work when they need external data or computation. The SKILL.md is the entry point that the LLM reads. Scripts are invoked by the LLM via run_bash, not directly by the engine. This keeps the engine deterministic (it only reads SKILL.md and dispatches tool calls) while letting the LLM decide which scripts to call and with what args.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: qingxuantang
- Source: qingxuantang/tar-engine
- License: Apache-2.0
- Homepage: https://tarai.dev
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.