Install
$ agentstack add skill-atlasomnia-hermes-custom-pack-daily-news-digests ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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:
- A deterministic script under
~/scripts/or an explicitly requested project folder. - A dated Markdown output directory under the relevant vault area.
- A
latest.mdcopy for quick viewing. - A scheduler:
- macOS local/background:
launchdLaunchAgent. - Hermes/gateway-delivered work: Hermes cron only when delivery or LLM reasoning is needed.
- A verified test run with real output, logs, and exit status.
Source selection pattern
Prefer primary or near-primary feeds before broad web search:
- Official GitHub repo:
- releases
- issues
- pull requests
- commits
- GitHub search
- Atom feeds for releases/commits
- Official docs/blog/release notes RSS or sitemap if available.
- X/Twitter via
xurlwhen installed and authenticated. - Reddit public JSON search for relevant subreddits and global mentions.
- Hacker News Algolia search.
- 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
- 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.
- 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.
- Run syntax validation:
- Python:
python3 -m py_compile.
- Run the script manually and verify:
- Exit code is 0.
- Dated Markdown file exists and is non-empty.
latest.mdexists and is non-empty.- Output includes real collected item counts.
- Schedule it.
- 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.
- Author: AtlasOmnia
- Source: AtlasOmnia/hermes-custom-pack
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.