โ† All skills
Tencent SkillHub ยท Developer Tools

Feed To Md

Convert RSS or Atom feed URLs into Markdown using the bundled local converter script. Use this when a user asks to turn a feed URL into readable Markdown, op...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Convert RSS or Atom feed URLs into Markdown using the bundled local converter script. Use this when a user asks to turn a feed URL into readable Markdown, op...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, _meta.json, scripts/feed_to_md.py, scripts/test_feed_to_md.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.2.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 6 sections Open source page

RSS/Atom to Markdown

Use this skill when the task is to convert an RSS/Atom feed URL into Markdown.

What this skill does

Converts a feed URL to Markdown via a bundled local script Supports stdout output or writing to a Markdown file Supports limiting article count and summary controls

Inputs

Required: RSS/Atom URL Optional: output path max item count template preset (short or full)

Usage

Run the local script: python3 scripts/feed_to_md.py "<feed_url>" Write to file: python3 scripts/feed_to_md.py "https://example.com/feed.xml" --output feed.md Limit to 10 items: python3 scripts/feed_to_md.py "https://example.com/feed.xml" --limit 10 Use full template with summaries: python3 scripts/feed_to_md.py "https://example.com/feed.xml" --template full

Security rules (required)

Never interpolate raw user input into a shell string. Always pass arguments directly to the script as separate argv tokens. URL must be http or https and must not resolve to localhost/private addresses. Every HTTP redirect target (and final URL) is re-validated and must also resolve to public IPs. Output path must be workspace-relative and end in .md. Do not use shell redirection for output; use --output. Safe command pattern: cmd=(python3 scripts/feed_to_md.py "$feed_url") [[ -n "${output_path:-}" ]] && cmd+=(--output "$output_path") [[ -n "${limit:-}" ]] && cmd+=(--limit "$limit") [[ "${template:-short}" = "full" ]] && cmd+=(--template full) "${cmd[@]}"

Script options

-o, --output <file>: write markdown to file --limit <number>: max number of articles --no-summary: exclude summaries --summary-max-length <number>: truncate summary length --template <preset>: short (default) or full

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts1 Config
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/feed_to_md.py Scripts
  • scripts/test_feed_to_md.sh Scripts
  • _meta.json Config