reddit-daily

reddit-daily is a command for Claude Code from agamjn/rising. It costs 44 tokens per session (1,454 once invoked), scanned A, original, MIT.

An automated daily workflow for researching Reddit communities and preparing post ideas for a product.

In plain words
What is it for?
Use it to review recent posts, research configured subreddits, and save three tailored post proposals as a dated draft.
Why use it?
It gathers recent engagement and community trends in one run, while checking that the required project files and Reddit settings exist.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Part of the rising plugin — 1 skill, 5 commands, 5 agents shipped together

Good fit Use it to review recent posts, research configured subreddits, and save three tailored post proposals as a dated draft.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/agamjn/rising/reddit-daily
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.

Clone the repo
git clone --depth 1 https://github.com/agamjn/rising

Made for: Claude Code.

Or install rising, the plugin that ships this one along with the rest of its 1 skill, 5 commands, 5 agents.

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 reddit-daily

README.md
[![agentmods](https://agentmods.dev/badge/commands/agamjn/rising/reddit-daily.svg)](https://agentmods.dev/commands/agamjn/rising/reddit-daily)
Your own site
<a href="https://agentmods.dev/commands/agamjn/rising/reddit-daily"><img src="https://agentmods.dev/badge/commands/agamjn/rising/reddit-daily.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,454 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00044 $0.01454
Opus 5 $0.00022 $0.00727
Sonnet 5 $0.00009 $0.00291
Haiku 4.5 $0.00004 $0.00145

Measured 7d ago against content hash 69025e01c50a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

reddit-daily scanned grade A with 1 finding 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 7d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

(Use this `$UA` in every curl below. **Never use WebFetch for Reddit URLs** — it omits the conformant User-Agent and Reddit will reject or rate-limit.)
commands/reddit-daily.md · 123 lines

How it starts

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

You are the daily run command for the rising plugin. Produce 3 post proposals tailored to the user's product, voice, goals, and what's been working for them.

Pre-flight check

Verify the CWD is set up. Look for:

  • product.md, goal.md, writing-style.md, subreddits.md, posts-history.md, .rising/config.json

If any are missing, stop and tell the user: "This folder doesn't look set up. Run /reddit-setup first."

Also get today's date: run date +%Y-%m-%d once and reuse it.

Capture the User-Agent for all Reddit calls in this run:

USERNAME=$(jq -r .reddit_username .rising/config.json)
UA="script:com.github.agamjn.rising:v0.1.0 (by /u/${USERNAME})"

(Use this $UA in every curl below. Never use WebFetch for Reddit URLs — it omits the conformant User-Agent and Reddit will reject or rate-limit.)

Step 1 — Refresh engagement on recent posts

Do NOT ask the user whether they've posted anything new — that flow is owned by the separate /reddit-add-post command and the user is reminded to run it in the wrap-up. The daily run must never block on interactive input.

Read posts-history.md. Identify entries from the last ~30 days (parse the ISO date in each header). For each, re-fetch its post URL via curl in parallel — single message, multiple Bash tool calls. Save each to .rising/cache/post-<id>.json:

curl -sS --fail-with-body -A "$UA" --connect-timeout 10 --max-time 30 \
  "<post-url>.json" \
  -o ".rising/cache/post-<id>.json"

Then update score and num_comments in posts-history.md from the refreshed JSON (in place — don't change titles, bodies, or comments).

If posts-history.md has no entries from the last 30 days, skip Step 2.

Step 2 — Refresh post-categories.md

If any scores were updated in Step 1, launch the reddit-performance-analyzer agent. It will rewrite post-categories.md.

Step 3 — Pre-fetch all subreddit data (orchestrator does this, NOT the researcher agents)

Read subreddits.md to get the full list of subs (both posting and non-posting).

Read the full file on GitHub · 123 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. 7d ago First seen · 123 lines · 44 tokens per session scan A 69025e01c50a

Subscribe to this mod's changes

reddit-daily is a command published in the GitHub repository agamjn/rising (17 stars, last pushed 3mo ago), licensed MIT. It adds 44 tokens to every session and 1,454 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.