Scan Report
5 /100
hn-news-agent
Hacker News 新闻采集与推送智能体 — fetches HN stories, classifies by topic, supports bilingual output, optional Feishu push
A straightforward Hacker News aggregation agent that fetches HN stories via the official Firebase API and optionally pushes summaries to a Feishu webhook — no shell execution, credential access, or hidden functionality.
Safe to install
No action needed. The skill is safe to use as described.
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Info | SKILL.md lists a classify.py script not present in scripts/ Doc Mismatch | SKILL.md:61 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | READ | ✓ Aligned | fetch_hn.py:9 — imports os, sys only for path manipulation |
| Network | READ | READ | ✓ Aligned | fetch_hn.py:20 — requests.get to HN API; daily_report.py:86 — conditional POST t… |
| Shell | NONE | NONE | — | No subprocess, no os.system, no shell=True calls |
| Environment | NONE | NONE | — | No os.environ access for credential harvesting |
| Skill Invoke | NONE | NONE | — | No cross-skill invocation |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser automation |
| Database | NONE | NONE | — | No database access |
3 findings
Medium External URL 外部 URL
https://open.feishu.cn/open-apis/bot/v2/hook/xxx README.md:24 Medium External URL 外部 URL
https://hacker-news.firebaseio.com/v0 scripts/fetch_hn.py:20 Medium External URL 外部 URL
https://news.ycombinator.com scripts/fetch_hn.py:21 File Tree
5 files · 17.3 KB · 624 lines Python 2f · 400L
Markdown 2f · 203L
JSON 1f · 21L
├─
▾
scripts
│ ├─
daily_report.py
Python
│ └─
fetch_hn.py
Python
├─
config.json
⚠
JSON
├─
README.md
Markdown
└─
SKILL.md
Markdown
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
requests | unpinned | pip | No | Optional import with graceful fallback to text note |
Security Positives
✓ No shell execution (subprocess, os.system, shell=True)
✓ No credential harvesting — feishu_webhook is user-supplied in config.json, never harvested
✓ No obfuscation — all code is plain text, no base64, no eval
✓ No sensitive path access (~/.ssh, ~/.aws, .env)
✓ No data exfiltration — network calls only to legitimate HN API and user-configured Feishu webhook
✓ No supply chain risk — only requests library (optional, with fallback)
✓ SKILL.md accurately describes all capabilities and behavior