AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Daily News Digests

skill-atlasomnia-hermes-custom-pack-daily-news-digests · by AtlasOmnia

daily-news-digests — Build and maintain local scheduled news/research digest scripts that collect fresh items from multiple public sources and save Markdown locally.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-atlasomnia-hermes-custom-pack-daily-news-digests

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-atlasomnia-hermes-custom-pack-daily-news-digests)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Daily News Digests? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Daily News Digests

Use this skill when the user asks for a recurring local news/research monitor that pulls fresh items from X/Twitter, GitHub, Reddit, Hacker News, RSS, release notes, forums, or other public sources and saves a Markdown digest locally.

The deliverable is a working collector plus verified scheduling, not a suggestion list.

Default outcome

Create:

  1. A deterministic script under ~/scripts/ or an explicitly requested project folder.
  2. A dated Markdown output directory under the relevant vault area.
  3. A latest.md copy for quick viewing.
  4. A scheduler:
  • macOS local/background: launchd LaunchAgent.
  • Hermes/gateway-delivered work: Hermes cron only when delivery or LLM reasoning is needed.
  1. A verified test run with real output, logs, and exit status.

Source selection pattern

Prefer primary or near-primary feeds before broad web search:

  1. Official GitHub repo:
  • releases
  • issues
  • pull requests
  • commits
  • GitHub search
  • Atom feeds for releases/commits
  1. Official docs/blog/release notes RSS or sitemap if available.
  2. X/Twitter via xurl when installed and authenticated.
  3. Reddit public JSON search for relevant subreddits and global mentions.
  4. Hacker News Algolia search.
  5. Other forums/community sources only if the topic warrants it.

For X/Twitter, do not read or print ~/.xurl. Check only xurl auth status; if auth is unavailable, make the script skip X cleanly and explain how the user can enable it outside the agent session.

Implementation steps

  1. Decide output path based on domain ownership.
  • Assistant/system monitoring: ~/Notes//
  • Personal: ~/Notes/...
  • Work/finance/safety domains: delegate or ask the owning profile if needed.
  1. Write a standalone script with:
  • Configurable window, e.g. HERMES_NEWS_DAYS.
  • Configurable output directory, e.g. HERMES_NEWS_DIR.
  • Configurable max items per source.
  • Per-source exception handling so one failing source does not kill the digest.
  • Deduplication by canonical URL.
  • Markdown grouped by source.
  • A clear note that collection is not verification.
  1. Run syntax validation:
  • Python: python3 -m py_compile .
  1. Run the script manually and verify:
  • Exit code is 0.
  • Dated Markdown file exists and is non-empty.
  • latest.md exists and is non-empty.
  • Output includes real collected item counts.
  1. Schedule it.
  2. Kickstart/run the scheduled job once and verify scheduler logs.

macOS launchd pattern

Use LaunchAgents for per-user local Markdown collectors:

  • File: ~/Library/LaunchAgents/.plist
  • Validate: plutil -lint
  • Load/reload:

``bash UID_NUM="$(id -u)" launchctl bootout "gui/$UID_NUM/" 2>/dev/null || true launchctl bootstrap "gui/$UID_NUM" "$HOME/Library/LaunchAgents/.plist" launchctl enable "gui/$UID_NUM/" launchctl kickstart -k "gui/$UID_NUM/" ``

  • Verify:

``bash launchctl print "gui/$(id -u)/" tail -50 ~/Library/Logs/.log tail -50 ~/Library/Logs/.err.log ``

Include a robust PATH in the plist EnvironmentVariables so Homebrew/user tools are found:

PATH
/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$HOME/.local/bin

Hermes cron vs launchd

Use launchd when:

  • The task is local-only.
  • It writes files locally.
  • No LLM reasoning or gateway delivery is required.
  • the user asked to “handle it” and “test it.”

Use Hermes cron when:

  • The job should summarize, classify, or decide using an LLM each run.
  • The output should be delivered to Telegram/Discord/etc.
  • The job should chain from another Hermes cron job.

CLI sessions have no live delivery channel. Do not promise that default deliver='origin' cron jobs will message the user in the terminal.

Verification checklist before final response

Report the actual evidence:

  • Script path.
  • Scheduler plist/job path.
  • Output Markdown path.
  • Last scheduler exit code or equivalent status.
  • Log paths.
  • Count of collected items if available.
  • Whether stderr is empty.

Avoid saying “it should run.” Say either “it is loaded and tested” or state the blocker.

Pitfalls

  • Do not stop at a plan; create and run the collector.
  • Do not let X/Twitter auth failure break the whole digest. Skip X with a note.
  • Do not print credentials or auth files.
  • Do not treat collected social posts as verified facts; mark the digest as collection-only.
  • When a terminal command exits non-zero because a final diagnostic command was missing or shell-specific, inspect the useful output first. If service status and logs show success, do not over-correct a working scheduler.
  • — concrete Hermes Agent collector pattern and launchd verification notes from a working setup.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.