freshrss-subscription-management

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

A management connector for FreshRSS, a self-hosted app that collects updates from websites, using its Google Reader-compatible interface. It organizes subscriptions, categories, and item tags.

In plain words
What is it for?
Use it to list subscriptions and categories, subscribe or unsubscribe to feeds, place feeds in categories, and mark or star items.
Why use it?
It removes the need to manage feed subscriptions and reading-status actions through raw API requests.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to list subscriptions and categories, subscribe or unsubscribe to feeds, place feeds in categories, and mark or star items.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/knuckles-team/freshrss-agent/freshrss-subscription-management
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.

Any agent
npx skills add Knuckles-Team/freshrss-agent --skill freshrss-subscription-management
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-subscription-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/knuckles-team/freshrss-agent/freshrss-subscription-management/github.svg)](https://agentmods.dev/skills/knuckles-team/freshrss-agent/freshrss-subscription-management)
Your own site
<a href="https://agentmods.dev/skills/knuckles-team/freshrss-agent/freshrss-subscription-management"><img src="https://agentmods.dev/badge/skills/knuckles-team/freshrss-agent/freshrss-subscription-management/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for freshrss-subscription-management

Your own site · 80×15
<a href="https://agentmods.dev/skills/knuckles-team/freshrss-agent/freshrss-subscription-management"><img src="https://agentmods.dev/badge/skills/knuckles-team/freshrss-agent/freshrss-subscription-management.svg" alt="Reviewed on agentmods" width="80" 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 961 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00124 $0.00961
Opus 5 $0.00062 $0.00481
Sonnet 5 $0.00025 $0.00192
Haiku 4.5 $0.00012 $0.00096

Measured 8d ago against content hash 3e820a693c10, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

freshrss-subscription-management 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 8d 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-subscription-management/SKILL.md · 96 lines

How it starts

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

FreshRSS Subscription Management

Write-side curation of FreshRSS through the Google Reader compatible API. These tools transparently fetch the short-lived GReader POST token required by write actions, so callers never manage it.

When to use

  • List current subscriptions or categories/folders.
  • Subscribe to a new feed (optionally with a title and category).
  • Unsubscribe from a feed.
  • Label an existing feed into a category.
  • Mark items read, or star / unstar an item.

When NOT to use

  • Read stream contents, item bodies, or unread counts → freshrss-feed-reader.
  • Ingest feeds/items 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
FRESHRSS_SSL_VERIFY optional TLS verification toggle

MCP_TOOL_MODE (condensed|verbose|both) selects the condensed surface 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_subscriptions list, categories, subscribe, unsubscribe, label, mark_read, star

Key parameters

  • feed_url — a feed URL, or a feed/<url> stream id (subscribe/unsubscribe/label).
  • title — optional feed title on subscribe.
  • category — category label to assign (subscribe / label).
  • item_ids — one id or a list of ids (mark_read).
  • item_id + starred — id and boolean for star (True to star, False to unstar).

Recipes (params_json)

List all subscriptions:

{}

Subscribe to a feed under a category:

{"feed_url":"https://example.com/rss.xml","title":"Example","category":"News"}

Label an existing feed into a category:

{"feed_url":"feed/https://example.com/rss.xml","category":"Research"}

Mark items read:

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

Star an item:

{"item_id":"tag:google.com,2005:reader/item/00000000abcd","starred":true}

Read the full file on GitHub · 96 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. 8d ago First seen · 96 lines · 124 tokens per session scan A 3e820a693c10

Subscribe to this mod's changes

freshrss-subscription-management is a skill published in the GitHub repository Knuckles-Team/freshrss-agent (0 stars, last pushed 11d ago), licensed MIT. It adds 124 tokens to every session and 961 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

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

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

subscription-management

Track, analyze, and optimize all SaaS subscriptions — renewals, usage analysis, cost optimization, vendor consolidation, and cancellation workflows.

gokulb20/crewm8-cfo-skills · 30 tokens

feed-diet

Audit your information diet across HN and RSS feeds — beautiful reports with category breakdowns, ASCII charts, and personalized recommendations.

cacheforge-ai/cacheforge-skills · 29 tokens

supsub-focus

A SupSub skill for managing focus points, which are topic-based feeds that collect content from multiple subscriptions such as public accounts, websites, and X. It can list, browse, filter, mark as read, and delete these focus points.

SupSub-AI/supsub-cli · 437 tokens

supsub-group

A tool for organising SupSub subscriptions into groups, which work like folders for sources such as websites, public accounts, and Twitter/X accounts.

SupSub-AI/supsub-cli · 227 tokens