Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/nevergoodstudy-hub/wechat-article-summarizernpx agentmods add skills/nevergoodstudy-hub/wechat-article-summarizer/baoyu-url-to-markdownWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/nevergoodstudy-hub/wechat-article-summarizer/baoyu-url-to-markdown)<a href="https://agentmods.dev/skills/nevergoodstudy-hub/wechat-article-summarizer/baoyu-url-to-markdown"><img src="https://agentmods.dev/badge/skills/nevergoodstudy-hub/wechat-article-summarizer/baoyu-url-to-markdown/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/nevergoodstudy-hub/wechat-article-summarizer/baoyu-url-to-markdown"><img src="https://agentmods.dev/badge/skills/nevergoodstudy-hub/wechat-article-summarizer/baoyu-url-to-markdown.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00072 | $0.03827 |
| Opus 5 | $0.00036 | $0.01913 |
| Sonnet 5 | $0.00014 | $0.00765 |
| Haiku 4.5 | $0.00007 | $0.00383 |
Grade A, and why
baoyu-url-to-markdown scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 325 lines — stays where its author put it; the contents beside it link to each section on GitHub.
URL to Markdown
Fetches any URL via baoyu-fetch CLI (Chrome CDP + site-specific adapters) and converts it to clean markdown.
CLI Setup
Important: The CLI source is vendored in the scripts/vendor/baoyu-fetch/ subdirectory of this skill.
Agent Execution Instructions:
- Determine this SKILL.md file's directory path as
{baseDir} - CLI entry point =
{baseDir}/scripts/vendor/baoyu-fetch/src/cli.ts - Resolve
${BUN_X}runtime: ifbuninstalled →bun; ifnpxavailable →npx -y bun; else suggest installing bun ${READER}=${BUN_X} {baseDir}/scripts/vendor/baoyu-fetch/src/cli.ts- Replace all
${READER}in this document with the resolved value
Preferences (EXTEND.md)
Check EXTEND.md existence (priority order):
# macOS, Linux, WSL, Git Bash
test -f .baoyu-skills/baoyu-url-to-markdown/EXTEND.md && echo "project"
test -f "${XDG_CONFIG_HOME:-$HOME/.config}/baoyu-skills/baoyu-url-to-markdown/EXTEND.md" && echo "xdg"
test -f "$HOME/.baoyu-skills/baoyu-url-to-markdown/EXTEND.md" && echo "user"
# PowerShell (Windows)
if (Test-Path .baoyu-skills/baoyu-url-to-markdown/EXTEND.md) { "project" }
$xdg = if ($env:XDG_CONFIG_HOME) { $env:XDG_CONFIG_HOME } else { "$HOME/.config" }
if (Test-Path "$xdg/baoyu-skills/baoyu-url-to-markdown/EXTEND.md") { "xdg" }
if (Test-Path "$HOME/.baoyu-skills/baoyu-url-to-markdown/EXTEND.md") { "user" }
| Path | Location |
|---|---|
.baoyu-skills/baoyu-url-to-markdown/EXTEND.md |
Project directory |
$HOME/.baoyu-skills/baoyu-url-to-markdown/EXTEND.md |
User home |
| Result | Action |
|---|---|
| Found | Read, parse, apply settings |
| Not found | MUST run first-time setup (see below) — do NOT silently create defaults |
EXTEND.md Supports: Download media by default | Default output directory
First-Time Setup (BLOCKING)
CRITICAL: When EXTEND.md is not found, you MUST use AskUserQuestion to ask the user for their preferences before creating EXTEND.md. NEVER create EXTEND.md with defaults without asking. This is a BLOCKING operation — do NOT proceed with any conversion until setup is complete.
What ships with it
45 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/config/first-time-setup.md 2.4 KB
- scripts/bun.lock 56 KB
- scripts/package.json 157 B
- scripts/vendor/baoyu-fetch/package.json 1.6 KB
- scripts/vendor/baoyu-fetch/README.md 4.4 KB
- scripts/vendor/baoyu-fetch/README.zh-CN.md 4.2 KB
- scripts/vendor/baoyu-fetch/src/adapters/generic/index.ts 2.4 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/hn/index.ts 10 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/index.ts 834 B runs code
- scripts/vendor/baoyu-fetch/src/adapters/types.ts 1.9 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/x/article.ts 12 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/x/index.ts 3.3 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/x/login.ts 2.2 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/x/match.ts 297 B runs code
- scripts/vendor/baoyu-fetch/src/adapters/x/payloads.ts 1.6 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/x/shared.ts 11 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/x/single.ts 2.5 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/x/thread-loader.ts 8.9 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/x/thread.ts 9.0 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/x/types.ts 600 B runs code
- scripts/vendor/baoyu-fetch/src/adapters/youtube/index.ts 898 B runs code
- scripts/vendor/baoyu-fetch/src/adapters/youtube/transcript.ts 13 KB runs code
- scripts/vendor/baoyu-fetch/src/adapters/youtube/utils.ts 6.4 KB runs code
- scripts/vendor/baoyu-fetch/src/browser/cdp-client.ts 6.7 KB runs code
- scripts/vendor/baoyu-fetch/src/browser/chrome-launcher.ts 3.3 KB runs code
- scripts/vendor/baoyu-fetch/src/browser/interaction-gates.ts 4.0 KB runs code
- scripts/vendor/baoyu-fetch/src/browser/network-journal.ts 7.0 KB runs code
- scripts/vendor/baoyu-fetch/src/browser/page-snapshot.ts 3.3 KB runs code
- scripts/vendor/baoyu-fetch/src/browser/profile.ts 4.2 KB runs code
- scripts/vendor/baoyu-fetch/src/browser/session.ts 4.5 KB runs code
- scripts/vendor/baoyu-fetch/src/cli.ts 6.9 KB runs code
- scripts/vendor/baoyu-fetch/src/commands/convert.ts 15 KB runs code
- scripts/vendor/baoyu-fetch/src/extract/document.ts 846 B runs code
- scripts/vendor/baoyu-fetch/src/extract/html-cleaner.ts 11 KB runs code
- scripts/vendor/baoyu-fetch/src/extract/html-extractor.ts 2.2 KB runs code
- scripts/vendor/baoyu-fetch/src/extract/html-to-markdown.ts 21 KB runs code
- scripts/vendor/baoyu-fetch/src/extract/markdown-renderer.ts 4.6 KB runs code
- scripts/vendor/baoyu-fetch/src/media/default-downloader.ts 5.1 KB runs code
- scripts/vendor/baoyu-fetch/src/media/markdown-media.ts 13 KB runs code
- scripts/vendor/baoyu-fetch/src/media/media-utils.ts 6.1 KB runs code
- scripts/vendor/baoyu-fetch/src/media/types.ts 710 B runs code
- scripts/vendor/baoyu-fetch/src/types/defuddle-node.d.ts 605 B runs code
- scripts/vendor/baoyu-fetch/src/types/shims.d.ts 422 B runs code
- scripts/vendor/baoyu-fetch/src/utils/logger.ts 645 B runs code
- scripts/vendor/baoyu-fetch/src/utils/url.ts 300 B runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 325 lines · 72 tokens per session scan A 233c869291d7
baoyu-url-to-markdown is a skill published in the GitHub repository nevergoodstudy-hub/wechat-article-summarizer (5 stars, last pushed 2mo ago), licensed MIT. It adds 72 tokens to every session and 3,827 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
defuddle
Extract clean markdown content from web pages using Defuddle CLI, removing clutter and navigation to save tokens. Use instead of WebFetch when the user provides a URL to read or analyze, for online documentation, articles, blog posts, or any standard web page. Do NOT use for URLs ending in .md — those are already…
defuddle
Plan and, with explicit network consent, use an optional external Defuddle cleaner to extract article-like HTTPS pages as Markdown. Use for defuddle, clean this URL, strip page clutter, readable Markdown from a web page, or preparing a web source for later wiki ingestion.
memory-bridge
Browse and compare wiki knowledge by which AI tool originally produced it. Use this skill when the user says "/memory-bridge", "browse codex memory", "what did codex know about X", "show me claude knowledge", "cross-tool memory", "what does hermes know that claude doesn't", "show me knowledge from ", "compare my AI…
knowledge-base-management
A lifecycle system for managing an Obsidian knowledge base, which is a folder of linked notes. It organizes raw material, AI-maintained wiki pages, and generated views into separate layers.
browser-harness-authoring
Use when mapping a repeatable website workflow into a verified Hermes skill so later runs can follow known steps instead of rediscovering the site. Surveys browser compatibility, semantic targets, failure modes, recovery paths, decision gates, and expiry using dummy data and no irreversible submissions.
reddit-browse-and-post
Let an agent read Reddit by default, and publish only after the user explicitly opts in and approves the exact post. Everything here is account-agnostic: the user supplies credentials through environment variables or a browser login, never through chat.