Releases: mvanhorn/last30days-skill
v3.0.9 - The Self-Debug Release
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)...
v3.0.5 — /last30days slash command for plugin users
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
What's Changed
- fix: enforce pre-research protocol + override WebSearch Sources mandate by @mvanhorn in #266
- fix(youtube): YouTube comments enrichment broken - SC param + response shape by @mvanhorn in #265
- fix: add commands/last30days.md and remove skills/last30days-nux duplicate (v3.0.5) by @mvanhorn in #267
Full Changelog: v3.0.4...v3.0.5
v3.0.4 — Drop skills key, clear path-escape error on Claude Code v2.1.109+
Fix
Drops the `"skills": ["./"]` line from `.claude-plugin/plugin.json`. That value was accepted by older Claude Code but current versions (v2.1.109 and recent v2.1.x) reject it with `Path escapes plugin directory: ./ (skills)`. Removing the key lets Claude Code auto-discover `skills/*/SKILL.md` the same way every other plugin in the marketplace ecosystem does.
Recovery
```
/plugin update last30days
/reload-plugins
/doctor
```
`/doctor` should now report zero errors for last30days. `/last30days` should appear in autocomplete.
What's Changed
- fix(build): strip skills/ and .claude-plugin/ from .skill bundle (fixes v3.0.3 CI) by @mvanhorn in #263
- fix: drop plugin.json skills key to clear path-escape on Claude Code v2.1.109 (v3.0.4) by @mvanhorn in #264
Full Changelog: v3.0.3...v3.0.4
v3.0.3 — Restore /plugin install (revert v3.0.1 archive breakage)
Who needs this
Anyone who installed or updated last30days between v3.0.1 and v3.0.2 (roughly 2026-04-14 to 2026-04-15 morning). Users on pre-v3.0.1 cached installs are unaffected but should update to stay current.
What happened
v3.0.1 added `.gitattributes` rules that excluded `skills/` and `.claude-plugin/` from `git archive` output, to shrink the claude.ai `.skill` bundle under the 200-file cap. Claude Code's `/plugin install` fetches the same archive, so users installing v3.0.1 or v3.0.2 got a tarball with no plugin manifest and no skill files. Install appeared successful but the plugin was empty.
Proof
```
git archive v3.0.0 | grep 'skills/|.claude-plugin/' | wc -l # 8
git archive v3.0.1 | grep 'skills/|.claude-plugin/' | wc -l # 0
git archive v3.0.2 | grep 'skills/|.claude-plugin/' | wc -l # 0
git archive v3.0.3 | grep 'skills/|.claude-plugin/' | wc -l # 8
```
Recovery
```
/plugin update last30days
/reload-plugins
```
If autoUpdate is on, next session start pulls v3.0.3 automatically.
Credit
Thanks to whoever triggered the diagnosis by installing on Claude Code v2.1.109 where the loader is strict enough to surface the missing-manifest issue.
v3.0.2 — Fix /last30days slash command
Fixes two regressions that silently broke `/last30days` for every user on Claude Code v2.1.105+.
What broke
- `/last30days ` returned `Unknown command` even though `/plugin list` showed the plugin as installed.
- `/doctor` reported: `Path escapes plugin directory: ./ (skills)`.
- Some users ended up with a duplicate phantom `last30days-3@last30days-skill` user-scope install colliding with the correct project-scope install.
What this fixes
- `.claude-plugin/plugin.json` now declares `"skills": ["skills"]` instead of `["./"]`, so the skill loader discovers `skills/last30days-nux/` without triggering the path-escape security check.
- `.claude-plugin/marketplace.json` and `plugin.json` now agree on version `3.0.2` (previously drifted between 3.0.0 and 3.0.1).
How to recover
```
/plugin update last30days
/reload-plugins
```
If `/doctor` still reports errors, uninstall and reinstall the plugin from the marketplace.
See the full changelog entry and PR #261 for details.
What's Changed
- chore: stop publishing internal ce:plan docs to the repo by @mvanhorn in #259
- feat: surface YouTube + TikTok top comments alongside Reddit by @mvanhorn in #260
- fix: restore /last30days slash command on Claude Code v2.1.105+ by @mvanhorn in #261
Full Changelog: v3.0.1...v3.0.2
v3.0.1
What's Changed
- docs(v3): drop redundant What's New list and remove stale @steipete credit by @mvanhorn in #221
- fix(sync): skip OpenClaw variant branch when variants/open is absent by @mvanhorn in #222
- fix(bird_x): skip all-None engagement dicts by @j-sperling in #234
- feat: add eval_topics.json fixture for offline quality evaluation by @j-sperling in #233
- chore: gitignore dev artifacts (.venv, .coverage, htmlcov, .memsearch) by @j-sperling in #232
- fix(cli): restore --days alias compatibility by @BryanTegomoh in #230
- Bump SKILL.md version header from v2.9.5 to v3.0.0 by @shalomma in #229
- feat: add Hermes AI Agent support by @stephenmcconnachie in #228
- fix(cli): Write saved output using UTF-8 encoding by @Gujiassh in #225
- fix: use GNU stat first in check_perms (Linux false-warn) by @george231224 in #216
- docs: add Gemini CLI install note and workaround by @hnshah in #224
- fix: align v3 skill version metadata and sync target by @Gujiassh in #217
- fix(windows): stabilize bundled Bird X search by @Chelebii in #227
- refactor(reddit): migrate to http.get(params=...) helper by @iliaal in #207
- fix(github): reject garbage in _parse_date; consolidate date parsing by @iliaal in #208
- refactor: consolidate _sc_headers into http.scrapecreators_headers by @iliaal in #209
- fix(env): default INCLUDE_SOURCES to empty string by @hnshah in #223
- fix: skill upload 200-file cap + packaging hygiene (3.0.1) by @mvanhorn in #242
- feat: claude.ai distribution push (Units 1-4 of plan 002) by @mvanhorn in #244
New Contributors
- @BryanTegomoh made their first contribution in #230
- @shalomma made their first contribution in #229
- @stephenmcconnachie made their first contribution in #228
- @Gujiassh made their first contribution in #225
- @george231224 made their first contribution in #216
- @Chelebii made their first contribution in #227
Full Changelog: v3.0.0...v3.0.1
v3.0.0: Intelligent search, Best Takes, 13+ sources
The AI world reinvents itself every month. This skill keeps you current.
/last30days researches your topic across Reddit, X, YouTube, TikTok, Instagram, Hacker News, Polymarket, GitHub, and 5+ more sources from the last 30 days, finds what the community is actually upvoting, sharing, betting on, and saying on camera, and writes you a grounded narrative with real citations.
v3 is the intelligent search release
v3 is a ground-up engine rewrite by @j-sperling. The old engine searched keywords. The new engine understands your topic first, then searches the right people and communities.
Type "OpenClaw" and v3 resolves @steipete, r/openclaw, r/ClaudeCode, and the right YouTube channels and TikTok hashtags before a single API call fires. Type "Peter Steinberger" and it resolves his X handle and GitHub profile, switches to person mode, and shows what he shipped this month at 85% merge rate across 22 PRs. None of that was on Google.
Headline features
Intelligent pre-research
The killer feature. A new Python pre-research brain resolves X handles, GitHub repos, subreddits, TikTok hashtags, and YouTube channels before searching. Bidirectional: person to company, product to founder, name to GitHub profile. The right subreddits, the right handles, the right hashtags, all resolved before a single API call.
Best Takes
A second LLM judge scores every result for humor, wit, and virality alongside relevance. Every brief now ends with a Best Takes section surfacing the cleverest one-liners and most viral quotes. The Reddit and X people are funny, and the old engine buried their best stuff.
Cross-source cluster merging
When the same story hits Reddit, X, and YouTube, v3 merges them into one cluster instead of three duplicates. Entity-based overlap detection catches matches even when the titles use different words.
Single-pass comparisons
"X vs Y" used to run three serial passes (12+ minutes). v3 runs one pass with entity-aware subqueries for both sides at once. Same depth, 3 minutes.
GitHub person-mode and project-mode
When the topic is a person, the engine switches from keyword search to author-scoped queries. PR velocity, top repos by stars, release notes for what shipped this month, woven into the narrative alongside X posts and Reddit threads.
When the topic is a project, it pulls live star counts, READMEs, releases, and top issues from the GitHub API. No stale blog posts.
ELI5 mode
Say "eli5 on" after any research run. The synthesis rewrites in plain language. No jargon. Same data, same sources, same citations, just clearer. Say "eli5 off" to go back.
13+ sources
v3 adds Threads, Pinterest, Perplexity, Bluesky, and Parallel AI grounding to the existing Reddit, X, YouTube, TikTok, Instagram, Hacker News, Polymarket, GitHub, and Web lineup. Perplexity Deep Research (--deep-research) gives you 50+ citation reports for serious investigation.
Per-author cap and entity disambiguation
Max 3 items per author prevents single-voice dominance. Synthesis trusts resolved handles over fuzzy keyword matches.
Install
Claude Code:
/plugin marketplace add mvanhorn/last30days-skill
OpenClaw:
clawhub install last30days-official
OpenAI Codex CLI: run codex from a checkout of this repo and v3's skill at .agents/skills/last30days/SKILL.md will be discovered automatically. Or copy SKILL.md to ~/.agents/skills/last30days/SKILL.md for a global install.
Zero config. Reddit, Hacker News, Polymarket, and GitHub work immediately. Run it once and the setup wizard unlocks X, YouTube, TikTok, and more in 30 seconds.
v3 Community
v3 was shaped by community contributors whose PRs and issues inspired core features. Their code wasn't merged directly (v3 was a ground-up rewrite), but their ideas drove what shipped.
Thanks to @uppinote20, @zerone0x, @thinkun, @thomasmktong, @fanispoulinakisai-boop, @pejmanjohn, @zl190, and @hnshah. See CONTRIBUTORS.md for the full list.
Contributors who shaped the release itself:
- @Jah-yee (#153) surfaced the need for a real Codex CLI integration, which shipped in #219
- @Cody-Coyote (#204) reported the marketplace validation bug that needed fixing before v3 could ship cleanly
- @dannyshmueli pushed for v3 and Codex family support publicly on X
Full Added / Changed / Fixed detail lives in CHANGELOG.md under [3.0.0].
Earlier contributors
From the v1 and v2 lineage:
30 days of research. 30 seconds of work. Thirteen sources. Zero stale prompts.
v2.9.0: ScrapeCreators Reddit default, smart discovery, top comments
The AI world reinvents itself every month. This skill keeps you current.
/last30days researches your topic across Reddit, X, YouTube, TikTok, Instagram, Hacker News, Polymarket, and the web from the last 30 days, finds what the community is actually upvoting, sharing, betting on, and saying on camera, and writes you a grounded narrative with real citations.
Three Headline Features in v2.9
1. ScrapeCreators Reddit as default. One SCRAPECREATORS_API_KEY now covers Reddit, TikTok, and Instagram — three sources, one key. No more OPENAI_API_KEY required for Reddit search. Faster, more reliable, and simpler to configure.
2. Smart subreddit discovery. Relevance-weighted scoring replaces pure frequency count. Each candidate subreddit is scored by frequency × recency × topic-word match, and a UTILITY_SUBS blocklist filters noise subs like r/tipofmytongue. Search "Claude Code skills" and get r/ClaudeAI, r/ClaudeCode, r/openclaw — not generic programming subs.
3. Top comments elevated. The best comment on each Reddit thread now carries a 10% weight in engagement scoring and displays prominently with 💬 and upvote counts. Reddit's value is in the comments — now the skill surfaces them.
Plus: Instagram Reels (v2.8), Polymarket prediction markets (v2.5), YouTube transcripts (v2.1), bundled X search — no external CLI needed.
Beta Test Results (v2.9)
| Topic | Time | Threads | Discovered Subreddits |
|---|---|---|---|
| Claude Code skills | 77.1s | 99 | r/ClaudeAI, r/ClaudeCode, r/openclaw |
| Kanye West | 71.7s | 84 | r/hiphopheads, r/NFCWestMemeWar, r/Kanye |
| Anthropic odds | 68.0s | 65 | r/Anthropic, r/ClaudeAI, r/OpenAI |
| Best rap songs lately | 68.9s | 114 | r/BestofRedditorUpdates, r/rap, r/TeenageRapFans |
| Nano Banana Pro | 66.6s | 99 | r/GeminiAI, r/nanobanana2pro, r/macbookpro |
What's New
Added
- ScrapeCreators Reddit backend with keyword search and subreddit discovery
- Smart subreddit discovery with relevance-weighted scoring
- Utility subreddit blocklist (
UTILITY_SUBS) - Top comment scoring (10% engagement weight) and prominent rendering
- Comment excerpts increased to 400 chars, insights raised to 10
Changed
primaryEnv→SCRAPECREATORS_API_KEY(one key for Reddit, TikTok, Instagram)- Reddit engagement scoring:
0.55/0.40/0.05→0.50/0.35/0.05/0.10 - SKILL.md synthesis instructions emphasize quoting top comments
Fixed
- Utility sub noise in subreddit discovery
- Reddit no longer requires
OPENAI_API_KEY
New Contributors
- @JosephOIbrahim -- Windows Unicode fix (#17)
- @levineam -- Model fallback for unverified orgs (#16)
- @jonthebeef --
--days=Nconfigurable lookback (#18)
Credits
- @steipete -- Bird CLI (vendored X search) and yt-dlp/summarize inspiration for YouTube transcripts
- @galligan -- Marketplace plugin inspiration
- @hutchins -- Pushed for YouTube feature
Install
# Claude Code
git clone https://github.com/mvanhorn/last30days-skill.git ~/.claude/skills/last30days
# Codex CLI
git clone https://github.com/mvanhorn/last30days-skill.git ~/.agents/skills/last30days30 days of research. 30 seconds of work. Eight sources. Zero stale prompts.
v2.8.0: Instagram Reels + ScrapeCreators
What's New in v2.8
Instagram Reels is now the 8th signal source. Search any topic and get trending Instagram Reels with views, likes, and spoken-word transcripts — scored and ranked alongside Reddit, X, YouTube, TikTok, HN, Polymarket, and the web.
TikTok migrated to ScrapeCreators API. Same functionality, new backend. Replace APIFY_API_TOKEN with SCRAPECREATORS_API_KEY in your config. One key now covers both TikTok and Instagram.
Setup
Sign up at scrapecreators.com (100 free credits, then PAYG) and add your key:
echo 'SCRAPECREATORS_API_KEY=your_key' >> ~/.config/last30days/.envBreaking Change
APIFY_API_TOKENis no longer used. Replace withSCRAPECREATORS_API_KEY.
Bug Fixes
- Fixed web source URLs leaking into stats display
- Fixed Instagram/TikTok not running when used with
--search=flag
v2.6.0 — Hacker News, Polymarket, X Handle Resolution, Agent Mode
The AI world reinvents itself every month. This skill keeps you current.
`/last30days` researches your topic across Reddit, X, YouTube, Hacker News, Polymarket, and the web from the last 30 days, finds what the community is actually upvoting, sharing, and betting on, and writes you a prompt that works today.
Headline Features
1. Hacker News as a 5th source. Every run now searches HN stories and comments via the Algolia API. No API key, no setup — it just works. Developer and technical topics especially benefit.
2. Polymarket prediction markets as a 6th source. Real money on real outcomes. When markets exist for your topic, odds surface as the highest-signal data points in the research. Outcome-aware scoring finds markets where your topic is an outcome in a broader market, not just the title — so `/last30days Arizona Basketball` finds the NCAA Tournament Winner market even though "Arizona" only appears as an outcome.
3. X handle resolution. For people, brands, and products, the skill automatically resolves the official X handle and searches their posts directly — surfacing content they posted that doesn't mention their own name.
4. Agent-native invocation. The skill can now be called by other agents via the Skill tool. Pass `--agent` for non-interactive report output — skips the intro, clarifying questions, and wait prompts, and returns a complete structured research report the calling agent can use directly.
5. Cross-source linking. Items that appear across multiple platforms (Reddit + HN, X + YouTube) are flagged with `[also on: ...]` tags and weighted higher in synthesis — cross-platform signals are the strongest evidence.
What's New Since v2.1.0
Added
- Hacker News source (Algolia API, free, no auth)
- Polymarket prediction markets source with outcome-aware query expansion
- Polymarket synthesis instructions — odds woven into narrative as supporting evidence
- X handle resolution for person/brand/product topics
- Cross-source linking and YouTube relevance scoring
- `--agent` flag for non-interactive agent-mode report output
- OpenAI 429 rate limiting with exponential backoff (thanks @tjarko)
Fixed
- Zero-result source lines now hidden from stats (no more "0 stories (no results this cycle)")
- HN ordering in stats block
- X search: unfiltered handle search no longer skipped for entity-extracted handles
- Handle resolution broadened to products/tools/brands with parody account detection
- Polymarket: two-pass query expansion for outcome-based market discovery
Changed
- Stats block format: `├─ 📊 Polymarket` with market count + top odds inline
- Synthesis prioritizes cross-platform signals over single-source findings
- Security docs updated: skill is now agent-invocable (inline mode, not forked)
Upgrading
git pullOr reinstall to your skill directories and run `bash scripts/sync.sh`.
Community contributors: @tjarko — OpenAI rate limit fix