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.
npx agentmods add skills/itamarzand88/cli-anything-web/reddit-clinpx skills add ItamarZand88/CLI-Anything-WEB --skill reddit-cligit clone --depth 1 https://github.com/ItamarZand88/CLI-Anything-WEBWrote this? Show the measurements
A badge for your README with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them.
[](https://agentmods.dev/skills/itamarzand88/cli-anything-web/reddit-cli)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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00091 | $0.01075 |
| Opus 5 | $0.00046 | $0.00537 |
| Sonnet 5 | $0.00018 | $0.00215 |
| Haiku 4.5 | $0.00009 | $0.00108 |
Grade A, and why
reddit-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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.
cli-web-reddit
Browse Reddit without auth; vote, comment, submit, and manage subscriptions after auth login.
Install: pip install cli-web-reddit, then playwright install chromium.
Commands
Read (no auth):
| Command | Purpose | Key options |
|---|---|---|
feed hot|new|top|rising|popular |
Front-page feeds | --limit N (max 100), --after CURSOR; top adds --time hour|day|week|month|year|all |
sub hot|new|top NAME |
Subreddit posts | same as feed |
sub info NAME / sub rules NAME |
Subreddit metadata | |
sub search NAME QUERY |
Search within a subreddit | --sort relevance|hot|top|new|comments, --limit, --after |
search posts QUERY |
Search all of Reddit | --sort, --time, --limit, --after |
search subs QUERY |
Find subreddits | --limit, --after |
post get URL_OR_ID |
Post + full comment tree (expands nested threads) | --sub NAME (required with bare ID), --comments N |
user info|posts|comments USERNAME |
User profiles and activity | --sort hot|new|top|controversial, --time, --limit |
Write (requires login). THING_ID is a fullname: t3_xxx (post) or t1_xxx (comment):
| Command | Purpose |
|---|---|
vote up|down|unvote THING_ID |
Vote |
comment add THING_ID TEXT / comment edit / comment delete |
Comment, reply, edit, delete |
submit text SUB TITLE BODY [--flair ID] / submit link SUB TITLE URL [--flair ID] |
Submit posts; submit flairs SUB lists flair IDs first |
saved save|unsave THING_ID |
Save items |
sub join|leave NAME |
Manage subscriptions |
me profile|saved|upvoted|subscriptions|inbox |
Your account (--limit, --after on lists) |
Examples
# Top posts this week in r/python
cli-web-reddit sub top python --time week --limit 10 --json | jq '.posts[] | {title, score, url}'
# Search posts, then read one with comments
cli-web-reddit search posts "fastapi tutorial" --limit 3 --json
cli-web-reddit post get https://www.reddit.com/r/python/comments/abc123/my_post/ --json
# Submit a flaired text post (get flair IDs first)
cli-web-reddit submit flairs ClaudeCode --json
cli-web-reddit submit text ClaudeCode "My Title" "Body here" --flair abc123 --json
# Upvote a post
cli-web-reddit vote up t3_abc123 --json
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.
- 3d ago First seen · 77 lines · 91 tokens per session scan A 0d6fe3f84756
reddit-cli is a skill published in the GitHub repository ItamarZand88/CLI-Anything-WEB (216 stars, last pushed 10d ago), licensed MIT. It adds 91 tokens to every session and 1,075 once invoked, about $0.0005 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.
Other skills, from other repositories
playwright-cli
Automate browser interactions, test web pages and work with Playwright tests.
scrapling-official
Scrape web pages using Scrapling with anti-bot bypass (like Cloudflare Turnstile), stealth headless browsing, spiders framework, adaptive scraping, and JavaScript rendering. Use when asked to scrape, crawl, or extract data from websites; webfetch fails; the site has anti-bot protections; write Python code to…
playwright-dev
Explains how to develop Playwright - add APIs, MCP tools, CLI commands, and vendor dependencies.
agent-browser
Drive a real browser to inspect or interact with a web page or app — navigate, take screenshots, read console and network, fill simple forms — for verification tasks, not unattended automation.
stagehand-facade
Browse, navigate, inspect, screenshot, and automate websites with the exact fx tools mcpstagehandrun, mcpstagehandsnapshot, and mcpstagehandscreenshot.
playwriter
Control the user own Chrome browser via Playwriter extension with Playwright code snippets in a stateful local js sandbox. Use this over other Playwright MCPs to automate the browser — it connects to the user's existing Chrome instead of launching a new one. Use this cli for navigating JS-heavy websites (Instagram…