NewsBlur: Skill for Claude Code

.agents/skills/newsblur-cli/SKILL.md

newsblur-cli is a skill for Claude Code, Codex from samuelclay/NewsBlur. It costs 67 tokens per session (1,263 once invoked), scanned A, original, MIT.

A command-line tool for reading and managing a NewsBlur account. NewsBlur is a service that collects articles from subscribed websites into feeds.

In plain words
What is it for?
Use it to read feeds, search stories, save or share articles, manage subscriptions, train feed classifiers, discover feeds, and automate workflows.
Why use it?
It lets you work with feeds and stories from scripts or a terminal, with a read-only mode available for safer agent use.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is samuelclay/NewsBlur's own configuration. It tells Claude Code and Codex how to work on NewsBlur itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything NewsBlur configures →

About the project

NewsBlur is a personal RSS news reader and social network that displays stories, the original sites they come from, and tools for filtering and discussing them. Readers use it to follow subscriptions, train story preferences, search and tag articles, share reading, and optionally self-host the service. The catalogue entries provide commands, skills, instructions, hooks, and settings for working with the NewsBlur project.

samuelclay/NewsBlur · 7,612 stars · on GitHub · newsblur.com

Reuse

Borrowing it

Nothing to install: this file belongs to samuelclay/NewsBlur. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/samuelclay/NewsBlur/main/.agents/skills/newsblur-cli/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/samuelclay/NewsBlur

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 newsblur-cli

README.md
[![agentmods](https://agentmods.dev/badge/skills/samuelclay/newsblur/newsblur-cli/github.svg)](https://agentmods.dev/skills/samuelclay/newsblur/newsblur-cli)
Your own site
<a href="https://agentmods.dev/skills/samuelclay/newsblur/newsblur-cli"><img src="https://agentmods.dev/badge/skills/samuelclay/newsblur/newsblur-cli/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 newsblur-cli

Your own site · 80×15
<a href="https://agentmods.dev/skills/samuelclay/newsblur/newsblur-cli"><img src="https://agentmods.dev/badge/skills/samuelclay/newsblur/newsblur-cli.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,263 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00067 $0.01263
Opus 5 $0.00034 $0.00632
Sonnet 5 $0.00013 $0.00253
Haiku 4.5 $0.00007 $0.00126

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

Security

Grade A, and why

newsblur-cli 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 10d 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.

.agents/skills/newsblur-cli/SKILL.md · 273 lines

How it starts

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

NewsBlur CLI

The NewsBlur CLI (newsblur-cli) gives you full access to your NewsBlur account from the terminal. Install it and authenticate before running any commands.

Setup

uv pip install newsblur-cli
newsblur auth login

auth login opens a browser for OAuth authorization. The token is stored at ~/.config/newsblur/.

For self-hosted instances, pass --server or set NEWSBLUR_SERVER:

newsblur --server https://my-newsblur.example.com auth login

Readonly Mode

The CLI has a readonly mode that blocks all write operations (saving, sharing, training, subscribing, marking as read). Useful when handing the CLI to an AI agent.

newsblur auth readonly --on

Check current readonly status:

newsblur auth readonly

Disabling readonly logs you out and requires browser re-authentication. An AI agent cannot silently toggle this off.

newsblur auth readonly --off
# "You have been logged out and must re-authenticate."
newsblur auth login

If you are operating in readonly mode, all write commands will fail with an error. Read commands work normally.

Output Formats

Every command supports these flags:

  • --json — structured JSON output, pipe to jq
  • --raw — unformatted plain text
  • Default — human-readable formatted output

Commands

Stories

List unread stories across all feeds:

newsblur stories list

Filter by folder or limit results:

newsblur stories list --folder Tech --limit 5

Full-text search across your archive:

newsblur stories search "machine learning"

View saved/starred stories, optionally filtered by tag:

newsblur stories saved
newsblur stories saved --tag research

Browse stories from rarely-publishing feeds (easy to miss in a busy river):

newsblur stories infrequent

Fetch the original full article text from the source:

newsblur stories original <story_hash>

View stories you've already read:

newsblur stories read

Read the full file on GitHub · 273 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 273 lines · 67 tokens per session scan A 672999145a4b

Subscribe to this mod's changes

newsblur-cli is a skill published in the GitHub repository samuelclay/NewsBlur (7,612 stars, last pushed 6d ago), licensed MIT. It adds 67 tokens to every session and 1,263 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

argent-settings-permissions

Grant, deny, or reset an app's runtime permissions (camera, microphone, photos, contacts, notifications, calendar, location, location-always, media-library, motion, reminders) on an iOS simulator or Android device using the argent settings-permissions tool - without navigating the system Settings UI. Use when the…

software-mansion/argent · 140 tokens

argent-lens

Propose multiple visual design variants for on-screen elements and let the human pick in the Argent Lens window. Use when the user asks for design alternatives / options / A-B choices for a screen or component, or any time you have produced more than one candidate look for an element and want a human decision before…

software-mansion/argent · 67 tokens

argent-react-native-optimization

Optimizes a React Native app by profiling first to find real bottlenecks, then sweeping for mechanical issues. Entry-point for all performance work. Use when the app feels slow, user asks to optimize, fix re-renders, reduce jank, or improve startup. Delegates to argent-react-native-profiler for measurement.

software-mansion/argent · 71 tokens

mobile-automation

Control Android and iOS devices, emulators and simulators — launch apps, tap, swipe, type, take screenshots, read the accessibility tree. Use when a task involves a mobile device or app, mobile UI testing, or reproducing a bug on a phone.

mobile-next/mobile-mcp · 58 tokens

argent-tv-interact

Control and inspect TV apps via argent — Apple TV (tvOS), Android TV (leanback), and Amazon Fire TV (Vega). Boot the target, read focus, navigate with the D-pad remote, type, screenshot, and on Vega debug the JS runtime (evaluate, console logs, network inspector). Use when a task targets a TV (runtimeKind "tv", or…

software-mansion/argent · 107 tokens

argent-create-flow

Create, record, edit, replay, or repair reusable Argent flow YAML files. Use when the user asks to record or replay a repeatable device path, set up profiling or an A/B comparison, or invoke the authoring engine behind argent-qa-flows. Also use before repeating three or more interactions. For one-off UI checks…

software-mansion/argent · 100 tokens