{
  "schemaVersion": "1.0",
  "item": {
    "slug": "rssaurus",
    "name": "RSSaurus - Agent-Friendly RSS Feed Reader",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/justinburdett/rssaurus",
    "canonicalUrl": "https://clawhub.ai/justinburdett/rssaurus",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/rssaurus",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rssaurus",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "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. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "rssaurus",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T20:09:11.824Z",
      "expiresAt": "2026-05-14T20:09:11.824Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rssaurus",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rssaurus",
        "contentDisposition": "attachment; filename=\"rssaurus-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "rssaurus"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/rssaurus"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/rssaurus",
    "agentPageUrl": "https://openagent3.xyz/skills/rssaurus/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rssaurus/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rssaurus/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "RSSaurus CLI",
        "body": "Use the installed rssaurus binary on this machine to interact with RSSaurus."
      },
      {
        "title": "Quick checks (when something fails)",
        "body": "Confirm binary exists:\n\nwhich rssaurus\nrssaurus --version || true\n\nConfirm auth works:\n\nrssaurus auth whoami"
      },
      {
        "title": "Privacy note",
        "body": "Do not print (e.g. cat) the RSSaurus CLI config file contents; it can contain API tokens.\nIf auth fails, prefer re-authenticating (rssaurus auth login) or asking the user to paste only non-sensitive details (error output, host, etc.)."
      },
      {
        "title": "List feeds",
        "body": "rssaurus feeds\nrssaurus feeds --json"
      },
      {
        "title": "List items",
        "body": "Unread by default:\n\nrssaurus items --limit 20\n\nFilter by feed:\n\nrssaurus items --feed-id 3 --limit 20\n\nMachine-friendly URL output (one per line):\n\nrssaurus items --limit 20 --urls\n\nCursor paging:\n\nrssaurus items --limit 50 --cursor <cursor>"
      },
      {
        "title": "Open a URL",
        "body": "rssaurus open https://example.com"
      },
      {
        "title": "Mark read/unread",
        "body": "These require item IDs (get them via --json).\n\nrssaurus items --limit 5 --json\nrssaurus read <item-id>\nrssaurus unread <item-id>\n\nBulk mark read:\n\nrssaurus mark-read --all\n# or\nrssaurus mark-read --ids 1,2,3\n# optional\nrssaurus mark-read --all --feed-id 3"
      },
      {
        "title": "Save / unsave",
        "body": "rssaurus save https://example.com --title \"Optional title\"\n\n# unsave requires an id (obtain via --json output from the API response or future saved-items listing)\nrssaurus unsave <saved-item-id>"
      },
      {
        "title": "Output conventions (privacy)",
        "body": "Default human output avoids printing internal DB IDs.\nUse --json output when IDs are required for scripting or write actions."
      },
      {
        "title": "References",
        "body": "CLI repo: https://github.com/RSSaurus/rssaurus-cli\nHomebrew tap: https://github.com/RSSaurus/tap\nToken creation: https://rssaurus.com/api_tokens/new"
      }
    ],
    "body": "RSSaurus CLI\n\nUse the installed rssaurus binary on this machine to interact with RSSaurus.\n\nQuick checks (when something fails)\nConfirm binary exists:\nwhich rssaurus\nrssaurus --version || true\n\nConfirm auth works:\nrssaurus auth whoami\n\nPrivacy note\nDo not print (e.g. cat) the RSSaurus CLI config file contents; it can contain API tokens.\nIf auth fails, prefer re-authenticating (rssaurus auth login) or asking the user to paste only non-sensitive details (error output, host, etc.).\nCommon tasks\nList feeds\nrssaurus feeds\nrssaurus feeds --json\n\nList items\n\nUnread by default:\n\nrssaurus items --limit 20\n\n\nFilter by feed:\n\nrssaurus items --feed-id 3 --limit 20\n\n\nMachine-friendly URL output (one per line):\n\nrssaurus items --limit 20 --urls\n\n\nCursor paging:\n\nrssaurus items --limit 50 --cursor <cursor>\n\nOpen a URL\nrssaurus open https://example.com\n\nMark read/unread\n\nThese require item IDs (get them via --json).\n\nrssaurus items --limit 5 --json\nrssaurus read <item-id>\nrssaurus unread <item-id>\n\n\nBulk mark read:\n\nrssaurus mark-read --all\n# or\nrssaurus mark-read --ids 1,2,3\n# optional\nrssaurus mark-read --all --feed-id 3\n\nSave / unsave\nrssaurus save https://example.com --title \"Optional title\"\n\n# unsave requires an id (obtain via --json output from the API response or future saved-items listing)\nrssaurus unsave <saved-item-id>\n\nOutput conventions (privacy)\nDefault human output avoids printing internal DB IDs.\nUse --json output when IDs are required for scripting or write actions.\nReferences\nCLI repo: https://github.com/RSSaurus/rssaurus-cli\nHomebrew tap: https://github.com/RSSaurus/tap\nToken creation: https://rssaurus.com/api_tokens/new"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/justinburdett/rssaurus",
    "publisherUrl": "https://clawhub.ai/justinburdett/rssaurus",
    "owner": "justinburdett",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/rssaurus",
    "downloadUrl": "https://openagent3.xyz/downloads/rssaurus",
    "agentUrl": "https://openagent3.xyz/skills/rssaurus/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rssaurus/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rssaurus/agent.md"
  }
}