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.
git clone --depth 1 https://github.com/agamjn/risingWrote 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.
[](https://agentmods.dev/commands/agamjn/rising/reddit-daily)<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>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.1 | $0.00044 | $0.01454 |
| Opus 5 | $0.00022 | $0.00727 |
| Sonnet 5 | $0.00009 | $0.00291 |
| Haiku 4.5 | $0.00004 | $0.00145 |
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.) 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).
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.
- 7d ago First seen · 123 lines · 44 tokens per session scan A 69025e01c50a
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.
Other commands, from other repositories
performance
Interactive ritual to discover what "done" actually means for you. Run once. Produces your personal Define Done config.
verify-done
5pm ritual. Check today's outcomes, log what shipped, flag what slipped, write tomorrow's 3.
define-done
Plan N days of binary outcomes (3 max/day), apply prompting principles, output branded HTML tracker.
brand-setup
Configure brand voice, terminology, compliance guardrails, and style guide for content production.
output-folder
Print the absolute path to the user-visible ContentForge output folder and open it in the OS file manager.
create-content
Run the full 10-phase content production pipeline — research, draft, fact-check, humanize, and publish.