Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

rss-generator-skillRSS 生成器技能

Agent Skill

rss-generator-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,854

周安装

324

GitHub Stars

公开资料未说明

下载量

2,566
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rss-generator-skill(RSS 生成器技能)
来源仓库:https://github.com/kidehen/rss-generator-skill
安装命令:
openclaw skills install rss-generator-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install rss-generator-skill

简介

从网页帖子列表自动生成标准RSS或Atom订阅源。

  • 适用于缺乏原生RSS支持的网站内容聚合需求。
  • 自动识别发布时间、标题与正文结构。rss-generator-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需确保目标页面具有稳定的DOM结构以便解析。
  • 生成结果需人工审核后发布供他人订阅。

SKILL.md

name
rss-feed-generator
description
>
license
See LICENSE.txt

RSS / Atom Feed Generator (v1.0.0)

Generates valid RSS 2.0 or Atom 1.0 XML feeds from any web page that lists posts, articles, or news items but does not publish its own feed.


Defaults & Settings

ParameterDefault value
Preferred formatRSS 2.0 (Atom 1.0 on request)
Max items20 (most-recent first)
Date fallbackPage scrape date (ISO 8601, UTC)
DescriptionFirst 280 chars of post excerpt/lede
EncodingUTF-8
Output modesRaw XML · HTML page · Both
Interaction styleFriendly and professional

Trigger Phrases

#User says …Action
T1"Generate an RSS/Atom feed for {url}"Fetch page → detect posts → emit XML
T2"This page has no feed: {url}"Same as T1
T3"Create a feed from {url}"Same as T1
T4"Convert {url} posts to RSS"Same as T1
T5"Make a self-hostable feed for {url}"Emit XML + HTML wrapper
T6"Update / refresh the feed for {url}"Re-scrape and re-emit

Order of Operations

  1. Page Fetch — Retrieve the target URL by invoking the WEB_FETCH function

(defined in https://linkeddata.uriburner.com/chat/functions/openapi.yaml, endpoint /WEB_FETCH). Use whichever available protocol applies — REST, MCP, OPAL, or curl. Required parameter: url. Optional: headers, max_redirects, timeout_seconds. WEB_FETCH retrieves the page just like a web browser and returns the full page content for subsequent processing. See protocol-routing.md for exact invocation patterns per protocol.

  1. Feed Discovery — Check <link rel="alternate"> tags. If a feed already

exists, report it and stop (offer to proxy/mirror instead).

  1. Post Extraction — Use the heuristics in references/extraction-rules.md

to identify post entries (title, URL, date, author, summary).

  1. Feed Assembly — Build XML using the templates in

references/feed-templates.md. Validate structure against the checklist in references/validation-checklist.md.

  1. Output — Present the feed XML in a code block; optionally wrap in the

HTML discovery page template from references/html-wrapper-template.md.

  1. Download Link — Save the .xml file to /mnt/user-data/outputs/ and

present it with present_files.


Extraction Heuristics (summary — full rules in references/)

Structural signals to look for

  • Repeated <article>, <li>, or <div> blocks with consistent class names

(e.g., post, entry, article, blog-post, card)

  • <h1>/<h2>/<h3> headings inside each block → item title
  • <a href> on or near the heading → item link (resolve relative URLs)
  • <time datetime="…"> or text matching date patterns → pubDate
  • First <p> inside the block (≤280 chars) → description / summary
  • <span class="author"> or byline text → author

Date handling

SituationStrategy
<time datetime="…">Use ISO value directly
Human-readable date textParse with locale awareness; emit RFC 822
No date foundUse today's date (UTC) with a <!-- estimated --> comment
Relative ("3 days ago")Calculate from scrape time

URL normalisation

All item <link> values must be absolute. Resolve against the page's <base href> if present, otherwise against the origin of the page URL.


Feed Format Specs

RSS 2.0 required elements

<rss version="2.0">
  <channel>
    <title>, <link>, <description>   ← required channel fields
    <item>
      <title>, <link>, <guid>        ← required per item
      <pubDate>                      ← RFC 822 (e.g. Mon, 01 Jan 2024 00:00:00 +0000)
      <description>                  ← plain text or CDATA-wrapped HTML

Atom 1.0 required elements

<feed xmlns="http://www.w3.org/2005/Atom">
  <title>, <id>, <updated>           ← required feed fields
  <entry>
    <title>, <id>, <updated>         ← required per entry
    <link href="…" rel="alternate"/> ← post URL
    <summary> or <content>           ← excerpt or full body

Full templates → references/feed-templates.md


Output Modes

ModeDescription
xmlRaw feed XML in a fenced code block
fileSave to /mnt/user-data/outputs/<slug>-feed.xml and present link
htmlHTML discovery page with <link rel="alternate"> + embedded XML
bothfile + html wrapper saved as <slug>-feed-page.html

Default: file (saves XML and presents download link).


Error Handling

ProblemResponse
Page returns non-200Report HTTP status; suggest checking URL or auth
No repeating post structure foundShow raw HTML skeleton; ask user to identify the pattern
Feed already existsReport the existing feed URL; offer to mirror/augment
Dates unparseableUse today's date; flag items with <!-- date-estimated -->
Relative URLs unresolvableAsk user for the site's base URL

Commands

CommandDescription
/helpUsage guidance for this skill
`/format [rssatom]`Override output format
/limit [n]Set maximum number of feed items
/fulltextAttempt to embed full post body (fetches each post URL)
/validateRun checklist from references/validation-checklist.md
/previewShow first 3 items as formatted Markdown before XML

Operational Rules

  1. Always check for an existing feed before generating a synthetic one.
  2. Never fabricate post content — only use text found on the page.
  3. Escape &, <, > in text nodes; use CDATA for HTML description bodies.
  4. All <guid> / Atom <id> values must be the canonical post URL.
  5. Sort items newest-first by default (pubDate DESC).
  6. Do not request or store credentials; only scrape publicly accessible pages.
  7. Clearly label generated feeds as synthetic (add <generator> tag).
  8. Respect robots.txt — do not scrape pages that disallow crawlers.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.29%
按下载量换算1,983

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills