AgentStack
SKILL verified Apache-2.0 Self-run

Url Summarize

skill-qingxuantang-tar-engine-url-summarize · by qingxuantang

Fetch a URL and produce a concise one-paragraph summary. Activates when the user wish contains a URL or asks to "summarize", "read", "fetch", or "tell me what this page says about" a webpage.

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add skill-qingxuantang-tar-engine-url-summarize

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of Url Summarize? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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:

  1. Extract the URL from the user's wish.
  2. Call the fetch script via run_bash:

`` python3 scripts/fetch.py "" `` The script prints the page's text content to stdout (max 4000 chars).

  1. Read the script's output.
  2. Generate a one-paragraph summary based on the text.
  3. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.