Last30Days Skill
AI Agents & AssistantsFeatures
- Searches Reddit, X/Twitter, YouTube, TikTok, GitHub and other platforms for recent activity
- Scores results by real user engagement (upvotes, likes, money on prediction markets)
- AI agent aggregates cross‑platform data into a single brief summary
Recent releases
View all 14 releases →- Digg AI 1000 source auto‑enabled when `digg-pp-cli` is on PATH, providing clustered story summaries and X‑post quotes without requiring X authentication.
- --emit=html option for generating shareable, print‑friendly HTML research briefs
Full changelog
Added
- Digg AI 1000 source (auto-enabled when
digg-pp-cliis on PATH). Surfaces clustered story summaries from the AI 1000 leaderboard and pulls attributable X-post quotes into the brief as[@handle](xUrl) via Digg AI 1000: …lines. No X auth required for the inline quotes since they flow through Digg's read-only endpoints. Footer line:⛏️ Digg AI 1000: N clusters │ K posts │ M authors. (#370) --emit=htmlfor shareable, print-friendly HTML research briefs. (#332)
- Added xurl CLI as alternative X search backend (official API v2 via OAuth2)
- Introduced --competitors flag for auto-discovered comparison fan-out
- Implemented vs mode N full passes with automatic competitor discovery and title formatting
Full changelog
What's Changed
- fix: output contract + planner breadth + entity grounding (Hermes Agent Use Cases) by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/285
- feat: inline markdown links on narrative citations by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/289
- [codex] Make memory directory configurable by @davemorin in https://github.com/mvanhorn/last30days-skill/pull/290
- test: skip docs/ in memory-dir-paths sweep by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/291
- feat: attribute top comments with u/ and @ handles in evidence lines by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/292
- fix: Step 0.55 category-peer subreddit expansion by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/305
- feat: add xurl CLI as alternative X search backend (official API v2 via OAuth2) by @chaosreload in https://github.com/mvanhorn/last30days-skill/pull/130
- feat: --competitors flag for auto-discovered comparison fan-out by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/308
- fix: per-entity Step 0.55, LAW 7 sub-run quiet, default 2, canonical SKILL.md by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/311
- feat: vs mode N full passes + --competitors auto-discovery + (/Last30Days) title by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/312
- chore(release): v3.1.0 — consolidate 3.0.10-3.0.14 + OpenClaw republish prep by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/314
New Contributors
- @davemorin made their first contribution in https://github.com/mvanhorn/last30days-skill/pull/290
- @chaosreload made their first contribution in https://github.com/mvanhorn/last30days-skill/pull/130
Full Changelog: https://github.com/mvanhorn/last30days-skill/compare/v3.0.9...v3.1.0
- TikTok and YouTube top comments now render alongside Reddit's top comment in synthesis output
- Added Hermes AI Agent as a first‑class deployment target
- Multi‑key SCRAPECREATORS_API_KEY rotation for automatic failover on rate limits
Full changelog
v3.0.9 - The Self-Debug Release
Highlights
v3.0.9 is live. New user-facing capabilities, broader cross-platform support, and a skill that now runs reliably on Claude Code, Codex, Hermes, Gemini, claude.ai, and OpenClaw. The headline fix: the engine refuses "birthday gift for 40 year old" style queries with a clarifying question instead of 5 minutes of junk output. The headline feature: TikTok and YouTube top comments now render alongside Reddit's, so the most-engaged voice from every source makes it into the synthesis.
The label - "The Self-Debug Release": I handed 5 separate Opus 4.7 instances their own failed outputs and asked them to debug themselves. Three converged on "SKILL.md is too big and the LAWs are too deep." Two converged on "the engine should refuse demographic-shopping queries outright" and "the WebSearch Sources reminder is overriding LAW 1." I copy-pasted their diagnoses into code. Validation: 5/5 canonical compliance on the topics that had failed.
New capabilities
-
TikTok and YouTube top comments render alongside Reddit's. PR #260 made the top-engagement comment from each TikTok video and YouTube video first-class in the output - same prominent
💬 Top commenttreatment Reddit's top comment already got. This is the biggest user-facing output change since 3.0.0 and it was never announced. The community inspiration trace: @uppinote20's original push for richer Reddit comments (PR #143) seeded the pattern; this PR generalized it across TikTok and YouTube. PR #265 followed up by fixing the ScrapeCreatorsurl=param + new response shape for YouTube comments/transcripts so the enrichment actually works. -
last30days runs on Hermes AI Agent now. @stephenmcconnachie's PR (#228) added Hermes as a first-class deploy target.
scripts/sync.shdetects~/.hermes/skills/researchand deploys the full skill (SKILL.md, scripts, lib modules, fixtures) to Hermes's skills directory alongside Claude Code and Codex. This is one of the biggest surface-area expansions in v3 - last30days is now usable inside the Hermes agent's research workflows without any manual wiring. -
Multi-key SCRAPECREATORS_API_KEY rotation. @zaydiscold's PR (#268) added automatic key rotation. Set
SCRAPECREATORS_API_KEY_1,SCRAPECREATORS_API_KEY_2, etc. and the engine rotates when a key hits rate limits instead of failing the whole run. For power users running daily queries, this is the difference between rate-limit 429s and zero-touch reliability. -
The skill works on Windows now. @Chelebii's PR (#227) stabilized the vendored Bird X search client on Windows. Previously the bundled X backend had subtle runtime issues on Windows terminals; now it runs clean. Pair this with @Gujiassh's UTF-8 encoding fix (#225) for saved output and Windows users get the full v3 experience without workarounds.
-
Linux permission checks stopped false-warning. @george231224's PR (#216) fixed
check_permson Linux by preferring GNU stat's syntax over the BSD stat that the skill was calling. Linux users were getting spurious permission warnings on.envfiles that were already correctly 600-chmod'd. Now the check matches reality. -
Gemini CLI got a first-class install path. @hnshah's docs PR (#224) added the Gemini CLI install note and workaround for a rough edge in the Gemini skill loader. Gemini users now have a one-paragraph install flow in the README instead of having to reverse-engineer the plugin layout.
-
Offline quality evaluation. @j-sperling's PR (#233) added
eval_topics.jsonas a fixture. Contributors and I can now run quality-regression checks on synthesis output without burning live API credits. This is the scaffolding that made the plan 015 validation gate affordable - without eval fixtures, testing 5/5 canonical compliance on every release would cost real money every time. Ships as contributor infrastructure but shows up as stability for end users. -
Reddit client got a cleaner HTTP layer. @iliaal shipped three architecture PRs back-to-back (#207, #208, #209) that consolidated Reddit's HTTP handling into
http.get(params=...), rejected garbage input in_parse_date, and unified_sc_headersintohttp.scrapecreators_headers. End-user benefit: fewer flaky timeouts, fewer "weird parse error" crashes, a codebase that's easier for future contributors to touch without breaking Reddit. These aren't sexy PRs; they're the kind of refactor that prevents six future bug reports. -
The
--days=Nflag keeps working. @BryanTegomoh's PR (#230) restored backcompat for the legacy--daysalias so anyone who'd scripted against it in 2.x doesn't break on v3. Small PR, meaningful reliability gain for existing users. -
INCLUDE_SOURCES has a sane default. @hnshah's PR (#223) defaulted the env var to empty string instead of unset. Missing env no longer breaks source inclusion on fresh installs.
-
Version metadata stays in sync. @Gujiassh's PR (#217) aligned the SKILL.md version header with the sync target version, and @shalomma's PR (#229) closed the remaining drift between the SKILL.md header and plugin.json. "Which version am I actually on" is no longer an adventure.
-
Bird X engagement handling got hardened. @j-sperling's PR (#234) made
bird_xskip all-None engagement dicts instead of crashing on them. Rare condition, but the kind of thing that silently kills a run on a specific topic. -
Dev workflow hygiene. @j-sperling's gitignore PR (#232) dropped
.venv,.coverage,htmlcov, and.memsearchfrom the tracked tree. Contributor quality-of-life; keeps PR diffs clean. -
The skill installs to claude.ai. PRs #242 and #244 shipped
scripts/build-skill.shplus the.gitattributes+export-ignoreplumbing that packages last30days into a claude.ai-upload-ready.skillfile under the 200-file cap. The skill is no longer Claude-Code-only - it installs directly on claude.ai, too. README has the upload workflow. -
OpenAI Codex CLI discovers the skill natively. PR #219 added
.agents/skills/last30days/SKILL.mdas a real file (not symlinked - Codex's loader skips symlinks) plus.codex-plugin/plugin.jsonas the namespace marker. The skill now shows up aslast30days:last30dayswhen Codex runs in a checkout. Inspired by @Jah-yee (#153) and @dannyshmueli on X. -
/last30daysas a slash command. PR #267 addedcommands/last30days.mdso plugin users can type/last30days <topic>and Claude Code autocomplete prefix-matches it to the canonical/last30days:last30daysform. No more typing the double-namespace.
The self-debug technique, for anyone rebuilding this elsewhere
The breakthrough wasn't the individual fixes. It was the realization that instead of guessing why the model was ignoring the rules, I should ask the model. Five separate Opus 4.7 sessions debugged their own outputs:
- "Did you read SKILL.md?" → "I tried Read, hit the 25K token cap, and bailed instead of chunked-reading."
- "Why the trailing Sources block?" → "The WebSearch tool's own reminder said MANDATORY. Precedence was unclear."
- "Why the section headers?" → "I had strong priors on Peter Steinberger and wrote my thesis instead of passing through."
- "Why the wrong file?" → "I read
.agents/skills/last30days/SKILL.mdfirst because it appeared in the path glob."
Three of the five said "move the LAWs to the top." Two said "make the engine enforce it so the model can't not comply." I shipped both. That's the whole technique: when the LLM-under-orchestration keeps breaking the contract, don't argue with it - ask it to debug itself, and build structural enforcement around whatever it names as the root cause.
Thank you
Community PR authors since v3.0.0:
- @j-sperling - v3 engine architecture, eval fixtures, gitignore hygiene, Bird X hardening (#232, #233, #234)
- @stephenmcconnachie - Hermes AI Agent support (#228)
- @zaydiscold - Multi-key SCRAPECREATORS rotation (#268)
- @iliaal - Reddit HTTP helper + GitHub date parsing + ScrapeCreators header consolidation (#207, #208, #209)
- @Chelebii - Windows Bird X stability (#227)
- @george231224 - Linux check_perms stat (#216)
- @Gujiassh - UTF-8 saved output + version metadata alignment (#217, #225)
- @hnshah - INCLUDE_SOURCES default + Gemini install docs (#223, #224)
- @shalomma - SKILL.md v3.0.0 version header (#229)
- @BryanTegomoh - --days alias backcompat (#230)
v3 roadmap contributors (issues and PRs that shaped the v3 feature set):
- @uppinote20 - rich Reddit comments (#143)
- @zerone0x - GitHub as a first-class source (#134, #136)
- @thinkun - Reddit enrichment timeout handling (#116)
- @thomasmktong - pure-Python Reddit fallback (#124)
- @fanispoulinakisai-boop - Reddit timeout report (#100)
- @pejmanjohn - plugin directory naming (#99, #78)
- @zl190 - HN trending merge (#115)
- @hnshah - Watchlist features (#84, #85, #86)
- @Jah-yee, @dannyshmueli - Codex CLI discovery
- @Cody-Coyote - marketplace validation bug report (#204)
The five Opus 4.7 instances that debugged their own failures on v3.0.7 and v3.0.8 and converged on the fixes. The convergence was the breakthrough; this release is their diagnosis in code.
Install / Update
/plugin marketplace add mvanhorn/last30days-skill
/plugin install last30days@last30days-skill
Or if already installed:
/plugin update last30days
/reload-plugins
Verify
cat ~/.claude/plugins/cache/last30days-skill/last30days/*/.claude-plugin/plugin.json | grep version
Should print "version": "3.0.9".
Smoke test
/last30days birthday gift for 40 year old
Should ask a clarifying question before running. If it runs the engine anyway, the cache is stale - repeat the plugin update.
Full Changelog: https://github.com/mvanhorn/last30days-skill/compare/v3.0.5...v3.0.9
What's Changed
- feat: multi-key rotation for SCRAPECREATORS_API_KEY by @zaydiscold in https://github.com/mvanhorn/last30days-skill/pull/268
- feat: make default fun level actually surface comedy by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/272
- revert: default fun surfacing (#272) by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/273
- feat: wire compare.sh and CLAUDE.md for /last30days-beta channel by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/276
- feat: release v3.0.6 - promote plans 003-009 from private beta to public by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/277
- fix: v3.0.7 - restore mandatory first-line badge + pin SKILL_ROOT + skill-specificity anchor by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/278
- fix: v3.0.8 - SKILL.md was too big and LAWs too deep (model-self-debug grounded) by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/279
- fix: v3.0.9 - engine refuses Class 1 keyword traps, delete stale SKILL.md files, reinforce LAW 1 over WebSearch by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/280
- docs: v3.0.9 release notes - The Self-Debug Release by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/281
New Contributors
- @zaydiscold made their first contribution in https://github.com/mvanhorn/last30days-skill/pull/268
Full Changelog: https://github.com/mvanhorn/last30days-skill/compare/v3.0.5...v3.0.9
- Remove the now-obsolete skills/last30days-nux/ directory to avoid duplicate autocomplete entries
- Run `/plugin update last30days` followed by `/reload-plugins` after upgrading to v3.0.5
- Added /last30days slash command via commands/last30days.md registration
Full changelog
What's new
Ships `/last30days` as a real Claude Code slash command for plugin users. Type `/last30days ` and Claude Code's autocomplete prefix-matches it to the canonical `/last30days:last30days` form (same way every other plugin command in the ecosystem works).
Recovery
```
/plugin update last30days
/reload-plugins
```
If you were on v3.0.1 - v3.0.3 and saw the `Path escapes plugin directory: ./ (skills)` error, that was fixed in v3.0.4. v3.0.5 adds the slash command on top.
Changes
- Added `commands/last30days.md` for slash-command registration
- Removed `skills/last30days-nux/` (byte-identical duplicate of root `SKILL.md`) that was creating confusing `/last30days:last30days-nux` autocomplete entries
Closes
- #239 (path-escape error)
- Supersedes #257 (workaround obsolete after v3.0.4)
What's Changed
- fix: enforce pre-research protocol + override WebSearch Sources mandate by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/266
- fix(youtube): YouTube comments enrichment broken - SC param + response shape by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/265
- fix: add commands/last30days.md and remove skills/last30days-nux duplicate (v3.0.5) by @mvanhorn in https://github.com/mvanhorn/last30days-skill/pull/267
Full Changelog: https://github.com/mvanhorn/last30days-skill/compare/v3.0.4...v3.0.5
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.