Install
openclaw skills install feed-to-mdConvert 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...
openclaw skills install feed-to-mdUse this skill when the task is to convert an RSS/Atom feed URL into Markdown.
short or full)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
http or https and must not resolve to localhost/private addresses..md.--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[@]}"
-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