freshrss-feed-reader

freshrss-feed-reader is a skill for Claude Code, Codex from Knuckles-Team/freshrss-agent. It costs 124 tokens per session (1,058 once invoked), scanned A, original, MIT.

A read-only connector for FreshRSS, a self-hosted app that collects updates from websites, using its Google Reader-compatible interface. It reads reading lists, feeds, categories, full articles, and unread counts.

In plain words
What is it for?
Use it to review new items, read specific articles, fetch only items newer than a saved timestamp, and check unread totals.
Why use it?
It lets an agent inspect new or unread items without handling FreshRSS requests and response formats directly.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/knuckles-team/freshrss-agent/freshrss-feed-reader
Any agent
npx skills add Knuckles-Team/freshrss-agent --skill freshrss-feed-reader
Clone the repo
git clone --depth 1 https://github.com/Knuckles-Team/freshrss-agent

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for freshrss-feed-reader

README.md
[![agentmods](https://agentmods.dev/badge/skills/knuckles-team/freshrss-agent/freshrss-feed-reader.svg)](https://agentmods.dev/skills/knuckles-team/freshrss-agent/freshrss-feed-reader)
Your own site
<a href="https://agentmods.dev/skills/knuckles-team/freshrss-agent/freshrss-feed-reader"><img src="https://agentmods.dev/badge/skills/knuckles-team/freshrss-agent/freshrss-feed-reader.svg" alt="Measured on agentmods" height="20"></a>
Per session 124 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,058 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00124 $0.01058
Opus 5 $0.00062 $0.00529
Sonnet 5 $0.00025 $0.00212
Haiku 4.5 $0.00012 $0.00106

Measured 4d ago against content hash 8174eb085928, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

freshrss-feed-reader 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 4d 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.

freshrss_agent/skills/freshrss-feed-reader/SKILL.md · 94 lines

How it starts

The opening of the file, as written. The whole thing — 94 lines — stays where its author put it; the contents beside it link to each section on GitHub.

FreshRSS Feed Reader

Read-side access to FreshRSS through the Google Reader compatible API. Prefer these tools over raw HTTP — they normalize each item to a flat, transport-safe text + url so downstream steps read the body directly.

When to use

  • Triage what is new in the reading-list or a specific feed/label.
  • Fetch the full body of specific items.
  • Take a delta since a known timestamp (only items newer than a watermark).
  • Check unread counts per stream.

When NOT to use

  • Subscribe, unsubscribe, label, star, or mark-read → freshrss-subscription-management.
  • Push feed items/sources into the knowledge graph → freshrss-knowledge-ingestion.

Prerequisites & environment

Connect via the mcp-client skill against the freshrss-agent MCP server.

Variable Required Notes
FRESHRSS_URL Base URL of the FreshRSS instance
FRESHRSS_USER GReader account username
FRESHRSS_API_PASSWORD GReader API password (Settings → Profile → API)
FRESHRSS_SSL_VERIFY optional TLS verification toggle

MCP_TOOL_MODE (condensed|verbose|both) selects the condensed surface (used below) vs. the one-to-one verbose tools.

Tools & actions

Prefer the condensed tool; it takes action + a params_json JSON string.

Condensed tool Actions
freshrss_reader stream_contents, item_contents, unread_count

Key parameters (stream_contents)

  • stream_iduser/-/state/com.google/reading-list (all), feed/<feedUrl> (one feed), or user/-/label/<category> (a category). Defaults to the reading-list.
  • count — max items (GReader n, default 100).
  • ordero oldest-first or n newest-first (GReader r).
  • newer_than — unix-seconds watermark; excludes items older than this (GReader ot).
  • continuation — cursor from the previous page to resume.

Recipes (params_json)

Newest 25 items across everything:

{"stream_id":"user/-/state/com.google/reading-list","count":25,"order":"n"}

Delta since a watermark (only items newer than a unix timestamp):

{"stream_id":"user/-/state/com.google/reading-list","newer_than":1719792000,"count":200}

Page 2 using the continuation returned by page 1:

{"stream_id":"user/-/state/com.google/reading-list","count":200,"continuation":"<token>"}

Full bodies for specific item ids:

{"item_ids":["tag:google.com,2005:reader/item/00000000abcd"]}

Read the full file on GitHub · 94 lines

Changes

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.

  1. 4d ago First seen · 94 lines · 124 tokens per session scan A 8174eb085928

Subscribe to this mod's changes

freshrss-feed-reader is a skill published in the GitHub repository Knuckles-Team/freshrss-agent (0 stars, last pushed 7d ago), licensed MIT. It adds 124 tokens to every session and 1,058 once invoked, about $0.0006 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-08-31.

Related

Other skills, from other repositories

freshrss-i18n

Add, move, or format translation strings in FreshRSS. Use when modifying UI text that needs translation (i18n). Handles all supported languages automatically.

FreshRSS/FreshRSS · 39 tokens

freshrss-git

FreshRSS version control, git workflow, branching strategy (edge/latest), diff/compare, PR changes.

FreshRSS/FreshRSS · 28 tokens

rss-digest

Subscribe to RSS/Atom feeds with keyword filters and run digests delivered to Telegram. Use when subscribing to feeds, checking which feeds run, running a digest manually, or adjusting feed keywords.

JansenAnalytics/claudex · 42 tokens

monitor

Manage feed subscriptions that track blogs, repos, and living pages for changes. Use when adding, listing, removing, or checking monitored resources. Also use when the discovery skill flags a resource as monitorable. Triggers on: 'monitor this', 'subscribe to', 'track this repo', 'watch this blog', 'what are we…

joelhooks/joelclaw · 89 tokens

papr-rss

Read, search and triage the user's Papr RSS subscriptions from the shell via the papr CLI. Use when the user wants to catch up on their feeds, find or summarize articles they've subscribed to, check what's unread, star/save articles, subscribe to a new feed, or pull new posts. Triggers on: "what's in my feeds", "any…

l0ng-ai/papr · 113 tokens

podcast

Use when planning, recording, editing or publishing one podcast episode end to end — the run-of-show and guest brief, recording settings, the loudness master, the Podcasting 2.0 sidecars for chapters and transcripts, the RSS item, and timestamped SEO show notes. Covers audio that is quiet on one platform and loud on…

ericrisco/rsc-harness · 118 tokens