| name | rss-news-digest |
| description | Use when the user wants RSS-based research/news digests, feed management, or feed health checks. |
| metadata | {"short-description":"RSS digests and feed management"} |
RSS News Digest
Windows Runtime Commands
On native Windows, use the managed Windows runner and the native runtime command target. Set $runtime to the installed runtime root. Multi-agent installs usually use %LOCALAPPDATA%\ai-agents-skills\runtime. Then run:
$runtime = if ($env:AAS_RUNTIME_ROOT) { $env:AAS_RUNTIME_ROOT } else { "$env:LOCALAPPDATA\ai-agents-skills\runtime" }
& "$runtime\run_skill.bat" "skills/rss-news-digest/run_and_summarize.bat" <args>
& "$runtime\run_skill.bat" "skills/rss-news-digest/run_rss_news_digest.bat" <args>
POSIX examples below use run_skill.sh and .sh command targets; use the Windows command target above on native Windows.
Base path
$AAS_RUNTIME_WORKSPACE/skills/rss-news-digest/
Use the managed runtime runner rather than invoking the RSS script directly.
Shared runner:
bash "$AAS_RUNTIME_ROOT/run_skill.sh"
Use cases
- get the research RSS digest
- get jobs/events/general/video digests
- list/search/add/edit/disable feeds
- run feed doctor/health checks
Core execution
bash "$AAS_RUNTIME_ROOT/run_skill.sh" skills/rss-news-digest/run_rss_news_digest.sh <COMMAND AND ARGS>
Common actions
run --tag research
run --all-tags
run --tag jobs --max-items 20 --per-feed-limit 5
list-feeds
add-feed "<URL>" --tag research --priority 5
edit-feed "<URL>" --tag research --priority 5
disable-feed "<URL>" / enable-feed "<URL>"
remove-feed "<URL>"
backup-feeds --reason "REASON"
list-backups
restore-feeds-backup <backup-name-or-path>
export-feeds-tsv --output /tmp/feeds.tsv
import-feeds-tsv /tmp/feeds.tsv
doctor
search-feeds "<query>"
Verified example shapes:
bash "$AAS_RUNTIME_ROOT/run_skill.sh" skills/rss-news-digest/run_rss_news_digest.sh run --tag research --max-items 25 --per-feed-limit 5
bash "$AAS_RUNTIME_ROOT/run_skill.sh" skills/rss-news-digest/run_rss_news_digest.sh add-feed "https://example.com/rss.xml" --tag research --priority 5
After execution
If a digest is produced, read the digest path reported by the command output and summarize the top items for the user.
Writing Style Gate
For any user-facing RSS digest summary, load writing-style-settings.md before
writing. If the digest item or synthesis is mathematical, TCS, graph-theoretic,
Lean-related, or LaTeX manuscript prose, also load math-manuscript-style.md.
Stored summaries should record style_profile_ref, active_overlays,
active_requirement_ids, and style_applied; do not accept a bare
style_applied: true assertion as sufficient evidence.